[SCM] BOINC packaging branch, master, updated. debian/6.10.17+dfsg-3-18-g31f173f

Steffen Moeller moeller at debian.org
Tue Jul 13 22:24:03 UTC 2010


The following commit has been merged in the master branch:
commit 5cfdb8ddec86163bdb7f9565c953865eb9285455
Author: Steffen Moeller <moeller at debian.org>
Date:   Tue Apr 27 00:52:17 2010 +0200

    Imported Upstream version 6.10.44

diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index a985dcd..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,24 +0,0 @@
-Makefile.am
-client/Makefile.am
-clientgui/hyperlink.cpp
-config.guess
-config.sub
-locale/client/ar/BOINC Manager.mo
-sched/Makefile.am
-autoreconf-stamp
-build-boinc-client-stamp
-build-stamp
-client/.deps/
-client/Makefile
-client/Makefile.in
-client/boinc
-client/boinc.optimized
-client/boinc.unmodified
-client/boinc_client
-debian/stamp-patched
-Makefile
-Makefile.in
-aclocal.m4
-version.h
-*/*.o
-*/*/*.o
diff --git a/api/boinc_api.cpp b/api/boinc_api.cpp
index db8e89a..1f6ee56 100644
--- a/api/boinc_api.cpp
+++ b/api/boinc_api.cpp
@@ -1277,4 +1277,3 @@ double boinc_elapsed_time() {
     return running_interrupt_count*TIMER_PERIOD;
 }
 
-const char *BOINC_RCSID_0fa0410386 = "$Id: boinc_api.cpp 18535 2009-07-01 17:35:56Z davea $";
diff --git a/api/gutil.cpp b/api/gutil.cpp
index cf070c8..b989bf6 100644
--- a/api/gutil.cpp
+++ b/api/gutil.cpp
@@ -911,6 +911,3 @@ void print_text(const char* string) {
 	glPopAttrib();
 }
 
-
-
-const char *BOINC_RCSID_12bffca9ae = "$Id: gutil.cpp 17954 2009-04-30 21:48:20Z davea $";
diff --git a/api/reduce_lib.cpp b/api/reduce_lib.cpp
index 3e78e0c..3f2da86 100644
--- a/api/reduce_lib.cpp
+++ b/api/reduce_lib.cpp
@@ -662,4 +662,3 @@ void REDUCED_ARRAY_RENDER::draw_labels() {
 	ortho_done();
 }
 
-const char *BOINC_RCSID_f4749d0d37="$Id: reduce_lib.cpp 16069 2008-09-26 18:20:24Z davea $";
diff --git a/api/reduce_main.cpp b/api/reduce_main.cpp
index 7eac037..7597dbd 100644
--- a/api/reduce_main.cpp
+++ b/api/reduce_main.cpp
@@ -182,4 +182,3 @@ void REDUCED_ARRAY_GEN::add_source_row(float* in) {
     scury++;
 }
 
-const char *BOINC_RCSID_70f1fa52c7 = "$Id: reduce_main.cpp 17388 2009-02-26 00:23:23Z korpela $";
diff --git a/api/texfont.cpp b/api/texfont.cpp
index 9c059b5..fdf2019 100644
--- a/api/texfont.cpp
+++ b/api/texfont.cpp
@@ -518,6 +518,9 @@ void txfRenderGlyph(TexFont * txf, int c){
 void txfRenderString(TexFont * txf, char *string, int len){
 	int i;
 	for (i = 0; i < len; i++) {
+        if (!isascii(string[i])) {
+            string[i] = '?';
+        }
 		txfRenderGlyph(txf, string[i]);
 	}
 }
diff --git a/api/texture.cpp b/api/texture.cpp
index 708a7a1..12438ca 100644
--- a/api/texture.cpp
+++ b/api/texture.cpp
@@ -400,4 +400,3 @@ error:
  	return NULL; 
 }
 
-const char *BOINC_RCSID_97d4f29d84="$Id: texture.cpp 17391 2009-02-26 01:11:37Z davea $";
diff --git a/api/tgalib.cpp b/api/tgalib.cpp
index baa8506..0db2a7f 100644
--- a/api/tgalib.cpp
+++ b/api/tgalib.cpp
@@ -240,4 +240,4 @@ tImageTGA *LoadTGA(const char *filename)
 	// Return the TGA data (remember, you must free this data after you are done)
 	return pImageData;
 }
-const char *BOINC_RCSID_fa7b4ce9be = "$Id: tgalib.cpp 16069 2008-09-26 18:20:24Z davea $";
+
diff --git a/api/txf_util.cpp b/api/txf_util.cpp
index 961a231..7121152 100644
--- a/api/txf_util.cpp
+++ b/api/txf_util.cpp
@@ -69,24 +69,30 @@ void txf_render_string(
 	float fRotY,            // optional rotation vector for Y
 	float fRotZ            // optional rotation vector for Z
 ){
+    // if requested font isn't available, find first one that is
+    //
+    while((i < TXF_NUM_FONT) && !txf[i]) i++;
+	if((i >= TXF_NUM_FONT) || !txf[i]) {
+        // bad font index
+        return;
+    }
 	glPushMatrix();
 	glEnable(GL_TEXTURE_2D);
-	if((i < TXF_NUM_FONT) && txf[i]) {
-	    glBindTexture(GL_TEXTURE_2D, txf[i]->texobj);
-	    glTranslated(x, y, z);
-	    glScalef(1/fscale, 1/fscale, 1/fscale);
-
-		if (fRotAngle != 0.0f) { // we want to rotate around Z y default, which keeps our text in 2D plane
-		   glRotatef(fRotAngle, fRotX, fRotY, fRotZ);
-		}
-	    glEnable(GL_ALPHA_TEST);
-	    // use .1 and .5 for a dark and bright background respectively
-	    glAlphaFunc(GL_GEQUAL, alpha_value);
-	    glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
-	    glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
-	    glColor4fv(col);
-	    txfRenderString(txf[i], s, (int)strlen(s));
-	}
+    glBindTexture(GL_TEXTURE_2D, txf[i]->texobj);
+    glTranslated(x, y, z);
+    glScalef(1/fscale, 1/fscale, 1/fscale);
+    if (fRotAngle != 0.0f) {
+        // we want to rotate around Z y default,
+        // which keeps our text in 2D plane
+       glRotatef(fRotAngle, fRotX, fRotY, fRotZ);
+    }
+    glEnable(GL_ALPHA_TEST);
+    // use .1 and .5 for a dark and bright background respectively
+    glAlphaFunc(GL_GEQUAL, alpha_value);
+    glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
+    glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
+    glColor4fv(col);
+    txfRenderString(txf[i], s, (int)strlen(s));
 	glDisable(GL_TEXTURE_2D);	
 	glPopMatrix();
 }
diff --git a/checkin_notes b/checkin_notes
index 19e7470..c52f17e 100644
--- a/checkin_notes
+++ b/checkin_notes
@@ -1,8302 +1,1072 @@
-David  Jan 2 2009
-    - added a script to make profile.has_picture consistent
-        with the images actually on disk
-
-    html/ops/
-       repair_profile_pictures.php 
-
-David  Jan 2 2009
-    - client: more work-fetch stuff.
-        No more per-project shortfall.
-        It's getting pretty close.
-
-    client/
-        client_state.cpp
-        client_types.cpp,h
-        cs_scheduler.cpp
-        rr_sim.cpp
-        scheduler_op.cpp
-        work_fetch.cpp,h
-    lib/
-        coproc.cpp,h
-
-Janus   Jan 6 2009
-    - Various translation fixes
-    - Added Danish web interface translation
-    - Added some Danish translation texts to the client translation file    
-    - Added Finnish web interface translation (contributed by ORE)
-
-    html/
-    inc/
-        user.inc
-    user/
-        info.php
-    languages/translations
-        da.po (fully rewritten)
-        fi.po (new)
-    locales/da
-    BOINC-Manager.po
-
-Charlie Jan 6 2009
-    - client: preserve ownership when copying files to slot directory. Fixes
-        a problem with Enigma at home which uses the <copy_file/> tag.
-
-    lib/
-        filesys.cpp
-
-Rom    7 Jan 2009
-    - Fix build environment so that it can build the client again
-      (From Nicolás Alvarez)
-      
-    /
-        configure.ac
-        Makefile.am
-    sea/
-        make-tar.sh
-        make-tar_debug.sh
-
-David  7 Jan 2009
-    - get_project_config: don't send error text if no terms_of_use.txt
-    - client: compute and store project work-fetch attributes
-        fixes #820
-
-    client/
-        client_state.h
-        work_fetch.h,cpp
-    html/user/
-        get_project_config.php
-
-Charlie Jan 6 2009
-    - client: fix compiler warnings (formats didn't match data).
-
-    client/
-        work_fetch.cpp
-
-David  9 Jan 2009
-    - client: connected_frac -1 is OK; fixes #821
-
-    client/
-        time_stats.cpp
-
-David  9 Jan 2009
-    - scheduler: add support for resource-specific scheduler requests:
-        - parse new request message elements
-            (CPU and coproc requested seconds and instances)
-        - decide how many jobs to send based on these params
-        - select app version based on these params
-            (may send both CPU and CUDA app versions for the same app!)
-
-    lib/
-        coproc.cpp
-    sched/
-        handle_request.cpp
-        main.cpp,h
-        sched_plan.cpp
-        sched_send.cpp
-        server_types.cpp,h
-
-David  9 Jan 2009
-    - client: debugging CUDA-related stuff
-    - client: if reset a project, clear its overall and per-resource backoffs
-
-    client/
-        client_state.cpp
-        client_types.cpp
-        cs_scheduler.cpp
-        rr_sim.cpp
-        scheduler_op.cpp
-        sim.h
-        work_fetch.cpp,h
-    lib/
-        coproc.cpp
-
-Charlie Jan 10 2009
-    - Mac: Fix build scripts for new locale source directory layout.
-    
-    mac_installer/
-        release_GridRepublic.sh
-        release_boinc.sh
-
-David  Jan 10 2009
-    - client: work_req_seconds is CPU req, not max(CPU req, CUDA req).
-        In order to work with the 6.7 client,
-        projects with both CUDA and CPU jobs must use the newest scheduler code.
-
-    client/
-        work_fetch.cpp
-
-David  Jan 11 2009
-    - scheduler: if a Windows host has a GPU slower than 60 GFLOPS,
-        don't send it CUDA jobs (they may cause BSOD);
-        send user a message to this effect
-
-    sched/
-        sched_plan.cpp
-        sched_send.cpp
-        server_types.h
-
-David  Jan 12 2009
-    - lib: check return values of RSA_*() functions.
-        Also fix a memory leak, missing RSA_free().
-        Fixes #823.
-
-    lib/
-        crypt.cpp
-        error_numbers.h
-        str_util.cpp
-
-Rom    12 Jan 2009
-    - WINSETUP: Update custom actions in case the goofy setup
-        problems are related to old custom actions.  I don't
-        really think this is it, but i'm running out of ideas.
+Charlie  6 Jan 2010
+    - client: Eliminate x86_64 Mac client; i386 client determines if 
+        system supports x86_64 applications and sets HOSTTYPE and 
+        platform accordingly.  This allows us to link with the 32-bit 
+        CUDA libraries.  The one other effect is that the benchmarks 
+        are run in 32-bit mode even on a 64-bit capable Mac.
+    - client: Async get_state RPC was not updating state.have_ati field.
+    - MGR: Rebuild Advanced Menu and Taskbar Menu after connecting to 
+        client, so GPU Activity and Snooze GPU items are displayed if 
+        needed.
         
-    win_build/installerv2/redist/Windows/src/boinccas/
-        boinccas.rc
-    win_build/installerv2/redist/Windows/Win32/
-        boinccas.dll
-        boinccas95.dll
-    win_build/installerv2/redist/Windows/x64/
-        boinccas.dll
-        boinccas95.dll
-
-David  12 Jan 2009
-    - web: add Eric's script for forum RSS
-
-    html/user/
-        forum_rss.php
-
-David  12 Jan 2009
-    - scheduler, file upload handler: fix server runtime message in FCGI case
-
-    sched/
-        file_upload_handler.cpp
-        handle_request.cpp
-        main.cpp
-        sched_util.cpp,h
-        server_types.cpp
-
-David  12 Jan 2009
-    - scheduler: initialize COPROC fields
-
-    lib/
-        coproc.cpp
-
-David  12 Jan 2009
-    - scheduler: if we're not sending work because of the user's "no GPUs" pref,
-        tell them so.
-    - scheduler: fix bug that caused no CUDA jobs to be sent
-
-    lib/
-        coproc.cpp,h
-        common_defs.h
-    sched/
-        handle_request.cpp
-        sched_send.cpp
-        sched_plan.cpp
-        server_types.h
-
-David  12 Jan 2009
-    - scheduler: bug fixes
-
-    sched/
-        handle_request.cpp
-        sched_send.cpp
-
-David  12 Jan 2009
-    - scheduler: bug fixes
-
-    sched/
-        sched_plan.cpp
-
-David  13 Jan 2009
-    - GUI RPC: add the following items to PROJECT_CONFIG
-        (corresponding to the get_project_config.php web RPC):
-        - platforms: list of platforms supported by the project
-        - sched_stopped: scheduler disabled
-        - web_stopped: DB-driven web features disabled
-        - min_client_version
-    - GUI RPC: add the following items to CC_STATE:
-        - platforms: list of platforms supported by the client
-            (this replaces the unused <platform_name>)
-    - GUI RPC: add the following items to PROJECT_LIST_ENTRY
-        (entry in the "all projects" list):
-        - platforms: list of platforms supported by the project
-    - GUI RPC: move APP_VERSION pointer from WORKUNIT to RESULT;
-        include plan class in APP_VERSION lookup.
-        This completes the change of March 2008,
-        and allows the Manager to work correctly when a project
-        has two different app versions of the same (app, platform, version)
-        running on a client at once (e.g., a CPU and a GPU app)
-    - get_project_config.php: remove logic that checks client version.
-        This page is accessed by PHP, not just by client
-    - web: add link to forum page to get forum as RSS
-
     client/
-        cs_statefile.cpp
+        cs_cmdline.cpp
+        cs_platforms.cpp
     clientgui/
-        DlgItemProperties.cpp
-        MainDocument.cpp
-        ViewWork.cpp
-        sg_ViewTabPage.cpp
-    html/user/
-        get_project_config.php
-        forum_rss.php
-        forum_forum.php
-        img/feed_logo.png (new)
-    lib/
-        gui_rpc_client_ops.cpp
-        gui_rpc_client.h
+        AdvancedFrame.cpp
+        AsyncRPC.cpp
+        sg_BoincSimpleGUI.cpp
+        mac/
+            config.h
+     mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
 
-David  13 Jan 2009
-    - client: GPU bug fix; compile warning fixes
+Charlie  7 Jan 2010
+    - Mac: Fix bug in backtrace code which showed up only under OS 10.6.
+    - Mac installer: Add CUDA information to Mac ReadMe files.
 
-    client/
-        client_types.cpp
-    clientgui/
-        BOINCTaskBar.cpp
     lib/
-        filesys.cpp
-        parse.cpp
-
-David  13 Jan 2009
-    - GUI RPC: finish the changed started above;
-        update the way that app versions are identified.
-
-    Old: WORKUNIT contains version_num
-        RESULT contains app_version_num (but only if running)
+        mac/
+            mac_backtrace.C
+    mac_installer/
+        GR-ReadMe.rtf
+        PTP-ReadMe.rtf
+        ReadMe.rtf
 
-    New: Keep old fields so new client works with old manager.
-        RESULT contains version_num, plan_class
-        Manager: if RESULT doesn't have version/plan_class
-        (because talking to old client)
-        look up app version based on WU version num.
+Charlie  7 Jan 2010
+    - Tag for 6.10.26 release (changes from 6.10.25 are Mac only.)
+      boinc_core_release_6_10_26
 
-    clientgui/
-        BOINCTaskBar.cpp
-        sg_ViewTabPage.cpp
-        MainDocument.cpp
-        DlgItemProperties.cpp
-        ViewWork.cpp
-    lib/
-        gui_rpc_client_ops.cpp
-        gui_rpc_client.h
+    /
+        configure.ac
+        version.h
         
-Eric   13 Jan 2009
-    - STILL WORK TO BE DONE TO GET locale STUFF INSTALLED PROPERLY!!!
-    - Update to libtool 1.5.24
-    - build environment:  Major automake changes that I've been warning about
-      for some time.
-    - Now uses libtool to build libraries.
-    - Builds separate boinc_fcgi and sched_fcgi libraries for use with 
-      FCGI server components.
-    - New macro "BOINC_CHECK_LIB_WITH" that executes a "AC_CHECK_LIB" on
-      a library only if --with-libname[=DIR] is specified on the configure
-      command line.  This is to allow inclusion of libraries when the 
-      ssl, gtk, wxWidgets, or other configuration is incorrect for static
-      libraries.
-    - Added a lot of "--with-*" for some libraries that might be required for
-      static builds.
-    - The sea directory has been moved to packages/generic.  Changes to sea
-      and the associated scripts might be required to better make use of the
-      staging mechanism and shared libraries.
-    - Fixed includes of boinc_fcgi.h in many files.
-    - Fixed places where FCGI_FILE needs to be used implicitly.
-    - Fixed missing define of _SC_PAGESIZE on hosts that define only
-      _SC_PAGE_SIZE.
-    - Moved build of boinc_cmd (and source file) from lib to client
-    
-
-  ltmain.sh
-  config.guess
-  config.sub
-  Makefile.incl
-  m4/
-      sah_check_lib.m4
-      check_ssl.m4
-      boinc_gtk.m4 (new)
-      boinc_check_lib_with.m4 (new)
-      libcurl.m4
-      boinc_wxwidgets.m4
-  sea/ (moved to packages/generic/sea)
-  packages/ (new)
-      generic/ (new)
-          sea/ (new)
-        Makefile.am
-  client/
-      Makefile.am
-      hostinfo_unix.cpp
-  sched/
-      edf_sim.cpp
-      sched_shmem.h
-      sched_msgs.h
-      sched_msgs.cpp
-      sched_send.cpp
-      handle_resuest.cpp
-      file_upload_handler.cpp
-      main.cpp
-      sched_assign.cpp
-      Makefile.am
-  lib/
-      boinc_cmd.cpp (moved to client)
-      diagnostics.cpp
-      prefs.cpp
-      msg_log.h
-      cert_sig.cpp
-      Makefile.am
-  zip/
-      Makefile.am
-  samples/
-      example_app/
-          Makefile
-  api/
-      Makefile.am
-  clientgui/
-      Makefile.am
-  tools/
-      backend_lib.cpp
-      Makefile.am
-  doc/
-      manpages/
-          Makefile.am
-
-David  13 Jan 2009
-    - client/manager fixes
+David  18 Dec 2009
+    - client (Mac): it's DYLD_LIBRARY_PATH, not DYLIB_LIBRARY_PATH
 
     client/
-        client_types.cpp
-    lib/
-        gui_rpc_client_ops.cpp
-        gui_rpc_client.h
+        app_start.cpp
 
-David  14 Jan 2009
-    - client: fix bug that caused estimated time to completion to increase
-        while processing suspended
-        Fixes #825
+David  3 Jan 2010
+    - client: ATI available RAM wasn't being detected correctly
 
     client/
-        app_control.cpp
+        coproc_detect.cpp
 
-David  14 Jan 2009
-    - client: clamp long term debts to +- 1 week
-    - client: fix CUDA debt calculation
-    - client: don't accumulate debt if project->dont_request_more_work
-    - client: improves messages
+Charlie  8 Jan 2010
+    - Tag for 6.10.27 release (changes from 6.10.25 are Mac only.)
+      boinc_core_release_6_10_27
 
-    client/
-        rr_sim.cpp
-
-Rom    15 Jan 2009
-    - WINSETUP: Fix the problem introduced where Enable Application
-        execution wasn't working.
-        
-    win_build/installerv2/
-        BOINC.ism
-        BOINCx64.ism
-
-Rom    15 Jan 2009
-    - MGR: Don't convert strings to ANSI juts to have to reconvert them
-        back to Unicode.  Fix several help link issues.
-        Fixes #826
+    /
+        configure.ac
+        version.h
         
-    clientgui/
-        AdvancedFrame.cpp
-        DlgAdvPreferences.cpp
-        sg_BoincSimpleGUI.cpp
-        sg_DlgMessages.cpp
-        sg_DlgPreferences.cpp
-        sg_ProjectsComponent.cpp
-
-David  15 Jan 2009
-    - scheduler: improve message formatting; add <debug_locality> flag
-        for locality scheduling messages
-
-    lib/
-        msg_log.cpp
-    sched/
-        *.cpp
-
-David  15 Jan 2009
-    - GUI RPC: add CUDA info to PROJECT struct
-    - manager: display CUDA info in project properties page
-    - manager: use struct assignment instead of copy() function
+Charlie  12 Jan 2010
+    - client sandbox: set LD_LIBRARY_PATH and DYLD_LIBRARY_PATH in switcher.
+        For unknown reasons, the these 2 environment variables are not 
+        passed in to switcher, though all other environment variables do get 
+        propagated.  
 
     client/
-        boinc_cmd.cpp
-    clientgui/
-        AsyncRPC.cpp
-        DlgItemProperties.cpp
-    lib/
-        gui_rpc_client_ops.cpp
-        gui_rpc_client.h
-
-David  15 Jan 2009
-    - scheduler: remove clause in app_plan() that withholds jobs from slow GPUs.
-        The SETI at home/CUDA app has been fixed so that it works on all GPUs.
-
-    sched/
-        sched_plan.cpp
-
-Eric   15 Jan 2009
-    - build:  Made static linkage of BOINC libraries the default for client,
-      manager, and server components
-
-    configure.ac
-    tools/
-        Makefile.am
-    clientgui/
-        Makefile.am
-    client/
-        Makefile.am
-    samples/
-        example_app/
-        Makefile
-
-Charlie Jan 15 2009
-    - client: boinc_copy ownership fix of 1/6/09 didn't work because it used 
-        system(cp ...) call, which invokes a shell, and POSIX specifies that 
-        shells run from an application use the real UID and GID not the 
-        effective UID and GID.  Under Mac Sandbox security, we need to use 
-        the effective UID and GID.  Changed boinc_copy to copy file directly.
-    - MGR: On Mac, fix problems showing Manager window when it was minimized 
-        to Dock, especially if window was closed using Dock menu.
-    - Mac: Fix XCode project for boinc_cmd.cpp moved to client/ from lib/.
-    
-    client/
-        app_start.cpp
-    clientgui/
-        BOINCBaseFrame.cpp
-        BOINCGUIApp.h
-        BOINCTaskBar.cpp
-    lib/
-        filesys.cpp
+        switcher.cpp
     mac_build/
         boinc.xcodeproj/
             project.pbxproj
 
-David  16 Jan 2009
-    - client: remove limits on LTD.
-
-    client/
-        work_fetch.cpp
-
-David  19 Jan 2009
-    - scheduler: remove the config flag <have_cuda_apps>,
-        and add <cuda_multiplier>.
-        The latter is used in calculating max jobs/day for a host;
-        namely, it's host.max_results_day * (NCPUS + NCUDA*cuda_multiplier).
-        Set it to 10 or so if you have CUDA apps.
-    - scheduler: don't overload effective_ncpus();
-        instead, add two new functions,
-        max_results_day_multiplier() and max_wus_in_progress_multiplier()
-    - scheduler: don't reduce max_results_day if we get an aborted job
-        (it might have been aborted by the project;
-        not appopriate to punish host in this case)
-
-    db/
-        boinc_db.h
-    sched/
-        main.cpp
-        sched_config.cpp,h
-        sched_result.cpp
-        server_types.h
-
-David  20 Jan 2009
-    - client: fix messages
-
-    client/
-        rr_sim.cpp
-        work_fetch.cpp
-
-David  20 Jan 2009
-    - scheduler: improve no-work messages
-    - web: don't use DB conn in mysql_real_escape_string()
-        (otherwise won't work if DB is down)
+Charlie  12 Jan 2010
+    - Tag for 6.10.28 release (changes from 6.10.25 are Mac only.)
+      boinc_core_release_6_10_28
 
-    html/inc/
-        boinc_db.inc
-        db_conn.inc
-    sched/
-        sched_plan.cpp.h
-        sched_send.cpp
-        server_types.h
-
-Charlie Jan 20 2009
-    - Mac client: fix bug in build script so that curl-7.19.2 actually 
-        does build with c-ares 1.6.0.  Fixes #830.
-    
-     mac_build/
-        buildcurl.sh
-
-David  21 Jan 2009
-    - scheduler: accept CUDA version 1.0
-
-    sched/
-        sched_plan.cpp
-
-David  21 Jan 2009
-    - client: fetch work from non-CPU-intensive projects
-
-    client/
-        work_fetch.cpp,h
-
-David  21 Jan 2009
-    - client: compile fix, remove spurious message
-
-    client/
-        work_fetch.cpp,h
-
-Rom    21 Jan 2009
-    - MGR: Make sure the UI thread doesn't call a GUI RPC
-        that uses the SET_LOCALE class.
-        
-    clientgui/
-        BOINCClientManager.cpp
-
-Charlie Jan 22 2009
-    - MGR: fix compile error.
+    /
+        configure.ac
+        version.h
         
-    clientgui/
-        BOINCClientManager.cpp
-
-David  22 Jan 2009
-    - client: if an app has avg_ncpus < 1, run it at above-idle priority
-        even if it doesn't use a coprocessor.
-    - scheduler: added an "nci" (non CPU intensive) plan class
-        to sched_plan.cpp.  It declares the use of 1% of a CPU.
-
-    The above two changes are intended to allow the QCN app to
-    run at above_idle priority, which it needs in order to do 500Hz polling.
-
-    - API: the std::string version of boinc_resolve_filename()
-        acts the same as the char[] version.
+David  9 Jan 2010
+    - client (Mac): append /usr/local/cuda/lib to LD_LIBRARY_PATH
+        and DYLD_LIBRARY_PATH
 
     client/
-        app.cpp
         app_start.cpp
-    lib/
-        app_ipc.cpp
-        gui_rpc_client.cpp
-    sched/
-        sched_plan.cpp
-
-David  22 Jan 2009
-    - web: when using adaptive replication, show a WU's instances
-        if it has a canonical result, not if it's been assimilated
-        (if the assimilator is not working, the latter causes
-        WUs to be hidden longer than needed)
-
-    html/user/
-        workunit.php
 
-David  22 Jan 2009
-    - client: simplify message describing scheduler request;
-        to get work request details, use <sched_op_debug>
-
-    client/
-        scheduler_op.cpp
-
-Eric  22 Jan 2009
-    - build: reordered compiler flags checking.
-        Fixed problems with finding location of wx-config
-        when running with cached configuration.
-        Made sure to check ${prefix}/lib when looking for
-        libGL, libGLU, and libglut.
-
-    m4/
-        boinc_wxwidgets.m4
-        ax_check_glut.m4
-        ax_check_glu.m4
-        ax_check_gl.m4
-        boinc_set_compile_flags.m4 
-
-David  22 Jan 2009
-    - client: when preempting a process, remove it from memory if:
-        1) it uses a coprocessor
-        2) it has checkpointed since the client started
-        3) it's being preempted because of a user action
-            (suspend job, project, or all processing)
-            or user preference (time of day, computer in use)
-    - scheduler: if shared mem seg doesn't exist,
-        report it and don't crash
-
-    client/
-        app.h
-        app_start.cpp
-        app_control.cpp
-        cpu_sched.cpp
-    sched/
-        main.cpp
-
-Charlie Jan 22 2009
-    - client sandbox: add details in switcher_exec "execv failed" message.
-    - MGR: Work around bug in generic list control GetSelectedItemCount() 
-        which caused incorrect update of buttons in Projects tab after 
-        detching from a project; remove redundant UpdateSelection() call.
+Charlie  13 Jan 2010
+    - MGR: The fix of 14 Oct 2009 for "initial first connection problem on 
+        startup" caused the Tools menu to be incorrect when switching from 
+        Simple to Advanced View if using an account manager: solve this by 
+        calling pDoc->IsConnected() in CAdvancedFrame::CreateMenu() instead 
+        of using bool argument bRPCsSafe.  Remove unused bRPCsSafe arg from 
+        CAdvancedFrame::CreateNotebook(), CAdvancedFrame::CreateStatusbar(). 
         
-    client/
-        sandbox.cpp
     clientgui/
-        BOINCBaseView.cpp
-        BOINCListCtrl.cpp,.h
-
-David  23 Jan 2009
-    - client: clear debts when reset project
-    - client: respect work-fetch backoff for non-CPU-intensive projects
-    - client: for non-CPU-intensive project, fetch new job
-        if no currently running jobs
-    - client: skip non-CPU-intensive projects in debt calculations
-    - manager: show resource backoff times correctly
-
-    client/
-        app_control.cpp
-        client_state.cpp
-        client_types.cpp,h
-        work_fetch.cpp,h
-    clientgui/
-        DlgItemProperties.cpp
-
-David  23 Jan 2009
-    - scheduler: for plan class "nci", set flops to CPU speed;
-        this will give consistent completion time estimates for existing WUs.
-
-    sched/
-        sched_plan.cpp
-
-David  23 Jan 2009
-    - scheduler: fix spurious error message when using nci
-
-    sched/
-        sched_plan.cpp,h
-        sched_send.cpp
-
-David  23 Jan 2009
-    - web: fix apps.php so that it knows about plan class
-
-    html/user/
-        apps.php
-
-David  23 Jan 2009
-    - API: possible compile fix for OS/2
-
-    api/
-        boinc_api.cpp
-
-David  23 Jan 2009
-    - scheduler: reduce frequency of calls to work_needed()
-
-    sched/
-        sched_array.cpp
-        sched_send.app
-
-David  23 Jan 2009
-    - scheduler: make NCI app versions preferable to non-plan-class
-
-    sched/
-        sched_plan.cpp
-
-David  23 Jan 2009
-    - scheduler: if client can't do plan class, don't complain about old client
-
-    sched/
-        sched_send.cpp
-
-Charlie Jan 23 2009
-    - MGR: Remove override of GetSelectedItemCount() introduced yesterday;  
-        instead, call DeleteItem() rather than SetItemCount() when number of 
-        rows has been reduced, to allow virtual ListCtrl adjust its list of 
-        selected rows (and thus keep its count in sync with reality.)
-        
-    clientgui/
-        BOINCBaseView.cpp
-        BOINCListCtrl.cpp,.h
-
-David  23 Jan 2009
-    - scheduler: initialize global
-
-    sched/
-        handle_request.cpp
-
-David  23 Jan 2009
-    - scheduler: if anonymous platform, ignore coprocessor requests
-        (since anonymous platforms apps are treated as CPU)
-
-    sched/
-        sched_send.cpp
-        server_types.h
-
-Janus    25 Jan 2009
-    - Fixed a major bug in the translation system which was causing a lot
-      of people to receive the webpages in semi-random languages.
-    - Added the ability for projects to decide whether they want the
-      Q&A and Message Boards merged.
-
-    html/
-        inc/
-        translation.inc
-    user/
-        forum_index.php
-    project_sample/
-        project.inc
+        AdvancedFrame.cpp, .h
 
-David  25 Jan 2009
-    - client: don't request work for a resource if it has no shortfall.
-    - client and server: get rid of coproc_cuda global.
+David  17 Dec 2009
+    - client: show <cpu_sched> message when suspend/resume GPU activity
 
     client/
-        client_state.cpp,h
-        work_fetch.cpp,h
-    lib/
-        coproc.cpp,h
-    sched/
-        handle_request.cpp
-        sched_send.cpp
-        server_types.cpp,h
-
-Rom    26 Jan 2009
-    - MGR: Don't use wxT() to describe parameters passed to GUI RPCs.
-    
-    clientgui/
-        BOINCClientManager.cpp
-
-David  26 Jan 2009
-    - client: if we're doing an RPC (for whatever reason)
-        to a non-CPU-intensive project without a job, ask for one.
+        cs_prefs.cpp
 
-    client/
-        work_fetch.cpp
+David  17 Dec 2009
+	- client: there are oddball cases where the client has an app for which
+		avg_ncpus > ncpus.   Allow such jobs to run; otherwise nothing runs.
 
-Charlie Jan 26 2009
-    - MGR: In CBOINCClientManager::StartupBOINCCore() allow time for Client
-        to start up, to avoid repeated attempts which put spurious messages
-        "Another instance Another instance of BOINC is running" in 
-        stderrdae.txt.
-        
-    clientgui/
-        BOINCClientManager.cpp
+	client/
+		cpu_sched.cpp
 
-David  27 Jan 2009
-    - client: change the LTD policy so that
-        1) net adjustment for eligible projects is zero;
-        2) max LTD is zero
-    - scheduler: fix msgs so disk size is shown in GB
+David  17 Dec 2009
+    - client: in computing "anticipated" STD, scale by ninstances
+        (from John McLeod)
 
     client/
-        work_fetch.cpp
-    sched/
-        sched_send.cpp
+        cpu_sched.cpp
 
-Eric K 27 Jan 2009
-    - SEA:  Fixed problems building SEA
-    - Manager:  Fixed missing includes when building manager on unix.
+Rom    17 Dec 2009
+    - MGR: Deconflict menu item IDs.
     
-    configure.ac
-    packages/
-        generic/
-            sea/
-                Makefile.am
-                make-tar.sh
     clientgui/
-        BOINCClientManager.cpp
-
+        Events.h
 
-David  27 Jan 2009
-    - scheduler: in get_app_version(), if we previously sent a CUDA app,
-        but we don't need to send any more CUDA jobs,
-        delete the BEST_APP_VERSION record and look for another app version.
-        This lets the scheduler send both CUDA and CPU app versions
-        for a given app in a single RPC.
+David  21 Dec 2009
+	- manager/client: show PID in task properties;
+		add PID to RESULT structure in GUI RPC
 
-    client/
-        work_fetch.h
-    sched/
-        sched_send.cpp
+	client/
+		app.cpp
+	clientgui/
+		DlgItemProperties.cpp
+	lib/
+		gui_rpc_client.h
+		gui_rpc_client_ops.cpp
 
-David  27 Jan 2009
-    - client: if we're making an RPC to a project because of user request,
-        clear the resource backoff times so that we potentially
-        can ask the project for work.
+David  22 Dec 2009
+    - client: when parsing cc_config.xml,
+        clear vectors so we don't end up with duplicates
 
     client/
-        cs_scheduler.cpp
-        work_fetch.cpp
-
-Eric K 27 Jan 2009
-    - Manager: fixes to allow compilation on compilers that don't allow string
-      concatenation within the _() macro.
-
-    clientgui/
-        WelcomePage.cpp
-    ProxyInfoPage.cpp
-
-David  27 Jan 2009
-    - lib: comment out perror()s in connection code.
-
-    lib/
-        gui_rpc_client.cpp
+        log_flags.cpp
 
-David  27 Jan 2009
-    - client: remove the "deadlines_missed" and "overworked"
-        clauses from RSC_WORK_FETCH::choose_project()
+David  24 Dec 2009
+    - client: divide LTD deltas by ninstances, same as for STD.
+        This is cosmetic - it won't affect work fetch,
+        but it will prevent LTD from changing faster than real time
 
     client/
-        work_fetch.cpp,h
+        work_fetch.cpp
 
-David  27 Jan 2009
-    - scheduler: don't count host as reliable if avg_turnaround is zero
-    - client: restore notion of overworked;
-        if a project is overworked for a resource R,
-        don't fetch work for R unless there are idle instances
+David  24 Dec 2009
+    - client: add logic to work fetch so that each project
+        will have enough jobs to use its share of resource instances.
+        This avoids situations where e.g. on a 2-CPU system
+        a project has 75% resource share and 1 CPU job,
+        and its STD increases without bound.
+        
+        Did a general cleanup of the logic for computing
+        work request sizes (seconds and instances).
 
     client/
         work_fetch.cpp,h
-    sched/
-        sched_send.cpp
-
-David  28 Jan 2009
-    - GUI RPC: the "get all projects" RPC now also returns account managers
-
-    lib/
-        gui_rpc_client_ops.cpp
-        gui_rpc_client.h
+        rr_sim.cpp
 
-Charlie Jan 28 2009
-    - GUI RPC: Fix compiler warning (missing return value).
+David  30 Dec 2009
+    - client: Unix: if can't create client lock file,
+        report ERR_OPEN rather than ERR_ALREADY_RUNNING
+        fixes #970
 
     lib/
-        gui_rpc_client_ops.cpp
-
-Rom    Jan 29 2009
-    - MGR: Provide a way for skin creators to suppress error messages for
-        missing resources.
-        
-    clientgui/
-        SkinManager.cpp
+        util.cpp
+        filesys.cpp
 
-Rom    Jan 29 2009
-    - MGR: Save and Restore the last email address/user id used to attach
-        to a project or account manager
+David  3 Jan 2010
+    - client: ATI available RAM wasn't being detected correctly
     
-    clientgui/
-        AccountInfoPage.cpp
-
-David  29 Jan 2009
-    - web: anywhere we show info about a host, show its GPUs too
-    - web: add script to parse GPU completed-job log
-        and generate summary data;
-        also add page to display this data.
-
-    html/
-        inc/
-            host.inc
-        ops/
-            analyze_coproc_log.php
-        user/
-            hosts_user.php
-            show_coproc.php
-
-David  29 Jan 2009
-    - client: if user requests RPC, do it even if project is backed off
-    - manager: show backoff interval correctly
-
     client/
-        cs_scheduler.cpp
-        work_fetch.cpp
-    clientgui/
-        DlgItemProperties.cpp
-
-David  29 Jan 2009
-    - scheduler: get effective RAM sizes and running fraction just once
-
-    sched/
-        sched_send.cpp
-        server_types.h
+        coproc_detect.cpp
 
-David  29 Jan 2009
-    - client: update LTD correctly
+David  4 Jan 2010
+    - client: fix format strings for ninstances (can be fraction now)
 
     client/
+        scheduler_op.cpp
         work_fetch.cpp
 
-Rom    29 Jan 2009
-    - MGR: Add a virtual list box to display available account managers.
-    
-    clientgui/
-        AccountManagerInfoPage.cpp, .h
-        AccountManagerProcessingPage.cpp
-        AccountManagerPropertiesPage.cpp
-        ProjectInfoPage.cpp, .h
-        WizardAccountManager.cpp
-    lib/
-        gui_rpc_client_ops.cpp
-
-Rom    29 Jan 2009
-    - MGR: Filter project list so that it shows only projects supported
-        by the core client.
-        
-    clientgui/
-        ProjectInfoPage.cpp, .h
-
-Charlie Jan 29 2009
-    - MGR: call UpdateSelection() from OnListRender() instead of from 
-        RestoreSelections().  Fixes #837.
-
-    clientgui/
-        BOINCBaseView.cpp
-
-Charlie Jan 30 2009
-    - MGR: Suppress Skin Manager error messages by default; enable them 
-        only if the Manager is launched from the command line with an 
-        argument -c or --checkskins.
-        
-    clientgui/
-        BOINCGUIApp.cpp, .h
-        SkinManager.cpp, .h
-
-David  30 Jan 2009
-    - Work fetch / scheduler:
-        There are two mechanisms to prevent the scheduler from
-        sending jobs that won't finish by their deadline.
-        Simple mechanism:
-            The client sends the interval x for which CPUs are projected
-            to be saturated.
-            Given a job with estimated duration y,
-            the scheduler doesn't send it if x + y exceeds the delay bound.
-            If it does send it, x is incremented by y.
-        Complex mechanism:
-            Client sends workload description.
-            Scheduler does EDF simulation, sees if deadlines are missed.
-            The only project using this AFAIK is BOINC alpha test.
-        Neither of these mechanisms takes coprocessors into account,
-        and as a result jobs could be sent that are doomed to
-        miss their deadline.
-        This checkin adds coprocessor awareness to the Simple mechanism.
-
-        Changes:
-        Client:
-            compute estimated delay (i.e. time until non-saturation)
-            for coprocessors as well as CPU.
-            Send them in scheduler request as part of coproc descriptor.
-        Scheduler:
-            Keep track of estimated delays separately for different resources
-    - client: fixed bug that computed CPU estimated delay incorrectly
-    - client: the work request (req_secs) for a resource is the min
-        of the project's share and the shortfall.
-
-    client/
-        cs_scheduler.cpp
-        rr_sim.cpp
-        work_fetch.cpp,h
-    html/inc/
-        translation.inc
-    lib/
-        coproc.cpp,h
-    sched/
-        sched_send.cpp
-        server_types.cpp,h
-
-David  30 Jan 2009
-    - client: computation of # idle CUDA instances was wrong
+David  5 Jan 2010
+    - client: scheduling problem:
+        - a project overestimates job FLOP counts
+        - the client starts jobs in EDF mode
+        - as job progresses and fraction done increases,
+            its completion time estimate decreases until
+            it's no longer a deadline miss.
+        - job gets preempted by other job from that project;
+            you end up with lots of partly completed jobs.
+        Solution (I hope): if an app version has running jobs,
+            compute a "temp DCF" for the app version,
+            which is the min of dynamic/static estimates for its jobs.
+            Apply this scaling factor to completion time estimates
+            for unstarted jobs in RR simulation
+    - client: the estimation of remaining time of running jobs was wrong
+        (how did this bug survive so long?)
 
     client/
+        app.h
+        client_types.h
         rr_sim.cpp
-
-David  30 Jan 2009
-    - scheduler: show message whether miss or meet deadline
-
-    html/user/
-        show_coproc.php
-        top_users.php
-    sched/
-        sched_send.cpp
-
-David  30 Jan 2009
-    - client: tweak work fetch messages
-    - client: buffer 2000 messages instead of 1000
-
-    client/
-        client_msgs.cpp
         work_fetch.cpp
-    lib/
-        coproc.cpp
 
-David  30 Jan 2009
-    - client: work fetch fixes
+David  6 Jan 2010
+    - client: bug in ACTIVE_TASK::est_dur()
 
     client/
         work_fetch.cpp
-        scheduler_op.cpp
-
-David  31 Jan 2009
-    - client: there was a problem with how the round-robin simulator
-        worked in the presence of coprocessors.
-        The simulator maintained per-project queues of pending jobs.
-        When a job finished (in the simulation) it would get
-        one or more jobs from that project's pending queue.
-
-        The problem: this could cause "holes" in the scheduling of GPUs,
-        and produce an erroneous nonzero shortfall for GPUs,
-        leading to infinite work fetch.
-
-        The solution: maintain a separate (per-resource, not per--project)
-        queue of pending coprocessor jobs.
-        When a coprocessor job finishes,
-        start pending jobs from the queue for that resource.
-
-        Another change: the simulator did strict reservation of coprocessors.
-        If there are 2 instances of CUDA,
-        and a 1-instance job is running in the simulation,
-        it wouldn't start an additional 2-instance job.
-        This also can cause erroneous nonzero shortfalls.
-
-        So instead, schedule coprocessors like CPUs, i.e. saturate them.
-        This can cause distorted completion time estimates,
-        but it's better than infinite work fetch.
 
-    client/
-        client_types.cpp,h
-        rr_sim.cpp,h
-        work_fetch.cpp,h
-
-David  1 Feb 2009
-    - client: code cleanup
+David  7 Jan 2009
+	- client: work fetch fix: avoid sending null request in certain cases.
 
-    client/
-        rr_sim.cpp,h
-        work_fetch.cpp,h
+	client/
+		work_fetch.cpp
 
-David  2 Feb 2009
-    - client: code cleanup
+David  12 Jan 2010
+    - client: add <stderr_head> config option;
+        sends the first rather than last 64KB of stderr to server.
+        This doesn't belong here; this choice should come from the server.
+        I may take this out later.
 
     client/
-        rr_sim.cpp,h
-        work_fetch.cpp,h
-
-David  2 Feb 2009
-    - Manager: change terms for STD, LTD
-    - web: change script that locks old threads to exempt team forums
-
-    clientgui/
-        DlgItemProperties.cpp
-    html/ops/
-        autolock.php
+        app_control.cpp
+        log_flags.cpp,h
+    lib/
+        util.cpp
 
-David  3 Feb 2009
-    - client: fix bug that caused infinite sched RPCs if project down
+David  12 Jan 2010
+    - client: small tweak to work fetch:
+        if project has crazy DCF, don't automatically request 1 sec;
+        only request work if there's a shortfall.
 
     client/
-        cs_scheduler.cpp
-        scheduler_op.cpp
-
-Rom    3 Feb 2009
-    - SCROPENGL: Checkin the files needed for the new OpenGL based
-        BOINC screensaver.
-        
-    clientscr/
-        boinc_ss_opengl.h
-        boinc_ss_opengl.rc
-        screensaver_opengl.cpp
-        screensaver_opengl.h
-    win_build/
-        boinc.sln
-        boinc_ss_opengl.vcproj
+        Makefile.am
+        work_fetch.cpp
 
-David  3 Feb 2009
-    - renamed boinc_ss_opengl to ss_app
+Rom    14 Jan 2010
+    - Tag for 6.10.29 release, all platforms
+      boinc_core_release_6_10_29
 
-David  3 Feb 2009
-    - GUI RPC: made password file read into function
-    - lib: minimized FCGI library
+    /
+        configure.ac
+        version.h
 
-    client/
-        boinc_cmd.cpp
-        file_names.h
-    lib/
-        gui_rpc_client.cpp,h
-        common_defs.h
-        Makefile.am
+Charlie  16 Jan 2010
+    - Mac Installer: fix bug launching client when configured as a service.
+    
+    mac_installer/
+        PostInstall.cpp
 
-Charlie Feb 4 2009
-    - SS: Begin work on upgrading screensaver coordinator for new functionality:
-        - add filenames for ss config file and default OpenLG ss executable
-        - add sandbox security support for these 2 files.
+Charlie  22 Jan 2010
+    Mac Sandbox: To keep authenticators private, make all .xml files readable 
+        only by user and group boinc_master; except ss_config.xml is world-
+        readable so screensaver coordinator can access it.  All other files 
+        except gui_rpc_auth.cfg are world-readable to allow access by 
+        screensavers. 
 
-    client/
-        check_security.cpp
-        file_names.h
     clientgui/
         mac/
             SetupSecurity.cpp
     mac_build/
         Mac_SA_Secure.sh
 
-Rom    5 Feb 2008
-    - MGR: Display all projects in the project list but disable the text control
-        is the project doesn't list a supported platform.  If the user clicks
-        on it display a message box stating that once attached the user may not
-        get any work.
-        
-    clientgui/
-        AccountManagerInfoPage.cpp
-        ProjectInfoPage.cpp, .h
-        ProjectListCtrl.cpp, .h
-
-Charlie Feb 5 2009
-    - SS: Implement basic new functionality in screensaver coordinator.
-        - Note: this is tested on Mac only at this point.
-    - SS: Add ss_app to XCode Project, with a temporary icon.
-
-    client/
-        check_security.cpp
-        file_names.h
-    clientscr/
-        screensaver.cpp, .h
-        mac_app_icon.h (added)
-        Mac_Saver_Module.h
-        screensaver_win.h
-    lib/
-        common_defs.h
-    mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
-
-David  5 Feb 2009
-    - manager: use sprintf() instead of WxString::Printf()
-        when copying messages to clipboard, and use tab instead of |
-
-        NOTE TO ROM: use WxWidgets features only where necessary.
-        E.g., for a time that's not going to be displayed,
-        use double instead of WxDateTime
-
-    clientgui/
-        ViewMessages.cpp
-
-Rom    5 Feb 2009
-    - MGR: Back out David's change which broke clipboard functionality
-        on Linux.  Take care of the real performance problem with
-        copying 20000+ records to the clipboard in a Debug build
-        by pre-allocating the buffer.
-        
-    clientgui/
-        ViewMessages.cpp, .h
-
-David  5 Feb 2009
-    - client: redefine "overworked" as
-        debt < -1.5 * work_buf * cpu_sched_period
-    - web: on team page, link to cross-project team stats sites
-
-    api/
-        graphics2_win.cpp
-    client/
-        work_fetch.cpp
-    html/
-        inc/
-            stats_sites.inc
-            team.inc
-        user/
-            team_display.php
-
-Rom    5 Feb 2009
-    - MGR: On newer versions of the wxWidget framework the project list
-        wasn't being properly sized, so create it with a fixed size.
-        
-    clientgui/
-        ProjectListCtrl.cpp
-
-David  5 Feb 2009
-    - client: when accounting job elapsed time,
-        ignore intervals longer than 10 secs;
-        that could only happen if the client or host was suspended/hibernated.
-    - client: in adjust_debts(), ignore intervals longer than
-        2*work fetch period, not 2*CPU sched period.
-        adjust_debts() is called from work fetch.
-
-    client/
-        app_control.cpp
-        client_state.h
-        cpu_sched.cpp
-        cs_scheduler.cpp
-        work_fetch.cpp
-
-David  5 Feb 2009
-    - web: added BOINCstats to list of team stats sites
-
-    html/
-        inc/
-            stats_sites.inc
-            team.inc
-
-David  5 Feb 2009
-    - web: add links to cross-project host stats sites
-        (currently just boincstats)
-
-    html/
-        inc/
-            hosts.inc
-            stats_sites.inc
-            util.inc
-        user/
-            hosts_user.php
-
-David  5 Feb 2009
-    - client: if time intervals for debt adjustment or job elapsed time
-        are negative, ignore (must be clock reset)
-
-    client/
-        app_control.cpp
-        cpu_sched.cpp
-
-David  5 Feb 2009
-    - web: must have a DB connection before calling mysql_real_escape_string()
-
-    html/inc/
-        boinc_db.inc
-
-David  5 Feb 2009
-    - web: add another team stats link
-    - client: if ncpus is zero in cc_config.xml, honor it.
-
-    client/
-        cpu_sched.cpp
-        log_flags.cpp
-    html/inc/
-        stats_sites.inc
-        team.inc
-
-David  5 Feb 2009
-    - client: it the state file or an RPC reply has an app version
-        using a coprocessor we don't know about, ignore it
-        (and all results using that app_version will be flushed).
-        This deals with the situation where we have some GPU jobs,
-        but the GPU card is removed (previously this resulted in a crash).
-        This requires some code shuffling so that we check for coprocessors
-        before reading state file.
-
-    client/
-        client_types.cpp,h
-        client_state.cpp
-        cs_scheduler.cpp
-        cs_statefile.cpp
-
-David  5 Feb 2009
-    - screensaver: flesh out new SS a bit
-
-    clientscr/
-        ss_app.cpp
-
-Charlie Feb 5 2009
-    - SS: Continue work on screensaver coordinator.
-    - SS: Fix ss_app compile errors on Mac.
-
-    clientscr/
-        screensaver.cpp
-        mac_saver_module.cpp
-        Mac_Saver_Module.h
-        screensaver_win.h
-        ss_app.cpp
-    mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
-
-David  5 Feb 2009
-    - web: fix bug in cached user page stuff from 12/29/08
-
-    client/
-        time_stats.cpp
-    html/
-        inc/
-            pm.inc
-            user.inc
-        user/
-            show_user.php
-
-Charlie Feb 5 2009
-    - SS: Screensaver coordinator reads ss_config.xml file.
-    - SS: If coordinator runs default screensaver during science phase because 
-        no science graphics are available, then shorten the next default 
-        graphics phase by that much time. 
-
-    clientscr/
-        screensaver.cpp, .h
-        Mac_Saver_Module.h
-        screensaver_win.h
-        ss_config.xml (added)
-
-David  6 Feb 2009
-    - web: don't show x-project links for anonymous hosts; fix &bull's
-
-    html/inc/
-        host.inc
-        user.inc
-
-Rom    7 Feb 2009
-    - MGR: fix build break for GCC based compilers.
-    
-    clientgui/
-        ProjectInfoPage.cpp
-
-David  8 Feb 2009
-    - web: remove <nobr> around user links; doesn't play well
-        with long user names
-    html/inc
-        util.inc
-
-David  9 Feb 2009
-    - client: all scheduler RPCs except user request are subject to backoff.
-    - client: if a project-requested RPC doesn't return work,
-        don't do resource backoff.
-    - client: if a user-requested scheduler RPC errors out, clear the request
-
-    client/
-        cs_scheduler.cpp
-        scheduler_op.cpp
-        work_fetch.cpp
-
-Charlie 10 Feb 2009
-    - SS: Fix new screensaver coordinator to work properly on Windows.
-
-    clientscr/
-        Mac_Saver_Module.h
-        screensaver.cpp
-        screensaver_win.h
-
-David  10 Feb 2009
-    - client: add SCHEDULER_OP::rpc_failed();
-        this gets called when the op fails,
-        either at initialization or later on;
-        it clears the project's sched_rpc_pending flag if needed.
-        This fixes a bug that caused user-requested RPCs
-        to retry every 10 seconds
-        when the network is down.
-    - client: if debt-adjust period is too long, reset accounting.
-        Otherwise we'll get this infinitely.
-    - API: all optional alpha argument to TEXTURE_DESC::draw()
-
-
-    api/
-        gutil.cpp,h
-    client/
-        cpu_sched.cpp
-        file_xfer.cpp
-        gui_http.cpp
-        http_curl.cpp,h
-        scheduler_op.cpp,h
-    clientscr/
-        ss_app.cpp
-
-David  10 Feb 2009
-    - client: if master file doesn't have URLs, clear RPC request
-
-    client/
-        work_fetch.cpp
-        cs_scheduler.cpp
-        scheduler_op.cpp
-
-David  10 Feb 2009
-    - client: show proxy info correctly on startup
-    - client: fix minor bug that produced spurious
-        adjust debt interval too long messages when zero projects
-
-    client/
-        client_state.cpp
-        cpu_sched.cpp
-        cs_scheduler.cpp
-
-Charlie 11 Feb 2009
-    - SS: Fix new screensaver coordinator sandbox permissions.
-    - ss_app: Replace temporary icon with standard BOINC icon.
-    - ss_app: Fix compiler warning.
-    - lib: add time stamps to BOINCTRACE on non-Windows systems.
+Charlie  26 Jan 2010
+    - Mac Sandbox: The init_data.xml file in each slot directory also contains 
+        an authenticator; to keep these private, change ownership of the "slots" 
+        directory to boinc_master:boinc_project and eliminate read and execute 
+        permissions of this directory for "other".  For consistency, make the 
+        same changes to the "projects" directory.  The individual slot and 
+        project directories are still world-executable and they and their 
+        contents are still world-readable, so the Client can still read files 
+        created by project apps with ownership boinc_project:boinc_project.
+      - NOTE: I believe this should not cause any problems for either BOINC or 
+        project applications, but it needs to be tested thoroughly.
 
     client/
         check_security.cpp
+        file_names.cpp
     clientgui/
         mac/
             SetupSecurity.cpp
-    clientscr/
-        mac_app_icon.h
-    lib/
-        diagnostics.cpp
+    doc/
+        sandbox.php
     mac_build/
+        Mac_SA_Insecure.sh
         Mac_SA_Secure.sh
 
-David  11 Feb 2009
-    - client: change the formula for debt update
-        so that largest debt among eligible projects tends towards zero
-    - client: change definition of "overworked"; debt must be < 1 day
-
-    client/
-        work_fetch.cpp
-
-David  11 Feb 2009
-    - client: change garbage collection so that an app version
-        is deleted only if there's another version *of the same plan class*
-        with a higher version number
-
-    client/
-        client_state.cpp
-
-David  11 Feb 2009
-    - client and API: eliminate dynamically-allocated parts of GLOBAL_PREFS.
-        This fixes a double-free bug in the API.
+Charlie  27 Jan 2010
+    - MGR: Fix minor bugs in Mac accessibility reporting kAXWindowAttribute and 
+        kAXTopLevelUIElementAttribute.
 
-    lib/
-        prefs.cpp,h
-
-David  11 Feb 2009
-    - boinc_zip: put null arg at end of argv.
-        Fixes crashing bug.
-        From Michael Tyka.
-
-    zip/
-        boinc_zip.cpp
-        unzip/
-            unzip.c
-
-Rom    11 Feb 2009
-    - MGR: Check to see if the app version pointer is legit before attempting
-        to use it.
-        
     clientgui/
-        ViewWork.cpp
-
-David  11 Feb 2009
-    - lib: implement APP_INIT_DATA::copy() with assignments instead of
-        memcpy().  This protects against any future double-free bugs.
-
-    lib/
-        app_ipc.h,cpp
+        mac/
+            MacAccessiblity.cpp
 
-Rom    11 Feb 2009
-    - MGR: Remove remaining UI thread calls to setlocale which could
-        confuse the parsing system or vise versa.
+Rom    27 Jan 2009
+    - MGR: Separators should appear between radio button groupings for cross-platform
+        compatibility.
         
     clientgui/
         AdvancedFrame.cpp
-        DlgItemProperties.cpp
-        ViewWork.cpp
 
-David  11 Feb 2009
-    - client, API: populate APP_INIT_DATA::hostid.
-        Remove userid and teamid fields, since the client doesn't know these.
+Rom    27 Jan 2010
+    - Tag for 6.10.30 release, all platforms
+      boinc_core_release_6_10_30
 
-    client/
-        app_start.cpp
-    lib/
-        app_ipc.cpp,h
+    /
+        configure.ac
+        version.h
 
-Charlie 11 Feb 2009
-    - SS: Graphics executables need a Mac icon only if they can be run in 
-        a window, to allow the user to bring it to the front or control it.  
-        Since the new boincscr app runs only as a screensaver, the Dock is 
-        not visible when it is running so there is no reason to have an icon.
-        So restore the previous permissions settings (non-writable).
-    - ss_app: Remove code which adds a Mac icon.
-    - ss_app: Fix compiler warning.
-    - ss_app: Change Windows build executable file name to boincscr.exe.
+Charlie  28 Jan 2010
+    - Mac Sandbox: SetupAuthorizationExecuteWithPrivileges() forks to run chmod and chown, 
+        leaving zombie processes which can exceed the system-imposed limit of processes 
+        MAXUPRC for a user.  Call waitpid() to clear these zombies.
+    - Mac Sandbox: fix comment in Mac_SA_Secure.sh script.
 
-    client/
-        check_security.cpp
     clientgui/
         mac/
             SetupSecurity.cpp
-    clientscr/
-        mac_app_icon.h (deleted)
     mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
         Mac_SA_Secure.sh
-    win_build/
-        ss_app.vcproj
-
-Charlie 12 Feb 2009
-    - SS: Continue refining screensaver coordinator logic.
 
-    clientscr/
-        screensaver.cpp
+Charlie  2 Feb 2010
+    - Mac Installer: update, fix bugs in script for building GridRepublic Installer. 
 
-David  12 Feb 2009
-    - client: debt_eligible() was returning false if the backoff was max.
-        This can lead to a situation where a project never gets work.
-        Remove that clause.
+    mac_installer/
+        make_GridRepublic.sh
+    
+David  15 Jan 2010
+    - client: tiny code shuffle
 
     client/
         work_fetch.cpp
-
-David  12 Feb 2009
-    - client, web: add preference for not using GPU while computer busy
-
-    client/
         cpu_sched.cpp
-    html/inc/
-        prefs.inc
-    lib/
-        prefs.cpp,h
 
-David  12 Feb 2009
-    - client: bug fix for GPU pref
+David  18 Jan 2010
+    - API: fix crashing bug.  Don't memset(0) APP_INIT_DATA;
+        it contains HOST_INFO, which now contains COPROCS,
+        which has a vector.
+        Define a clear() for APP_INIT_DATA.
 
-    client/
-        cpu_sched.cpp
-        sim.h
     lib/
-        prefs.cpp
-
-Charlie 13 Feb 2009
-    - ss_app: Under sandbox security, set boincscr permissions the same as 
-        for BOINC Manager: setgid to boinc_master but do not setuid; this 
-        allows the screensaver coordinator to kill boincscr but still gives 
-        boincscr access to GUI RPC password file and so to all GUI RPCs.
-    - SS: On Windows, add code to get paths to BOINC data and executable 
-        directories from Windows registry; expects boincscr in BOINC  
-        executable directory and ss-config.xml in BOINC data directory.
-
-    client/
-        check_security.cpp
-    clientgui/
-        mac/
-            SetupSecurity.cpp
-    clientscr/
-        screensaver.cpp
-        screensaver_win.cpp,.h
-    mac_build/
-        Mac_SA_Secure.sh
-
-David  13 Feb 2009
-    - GUI RPC: "get prefs" RPC was messed up by yesterdays's checkin;
-        also, change all bools to <foo>0|1</foo> rather than <foo/>
-
-    lib/
-        prefs.cpp
+        app_ipc.cpp,h
 
-David  13 Feb 2009
-    - Manager: add GPU preference to advanced prefs dialog
+David  18 Jan 2010
+	- client: initial checkin for "don't compute if CPU usage above X"
 
-    clientgui/
-        DlgAdvPreferences.cpp
-        DlgAdvPreferencesBase.cpp,h
+	client/
+		app.cpp,h
+		coproc_detect.cpp
+		cs_prefs.cpp
+	lib/
+		common_defs.h
+		procinfo_win.cpp
+	win_build/
+		libboinc.vcproj
 
-David  13 Feb 2009
-    - client: fix bug where master fetch failure doesn't clear request flag,
-        leading to infinite retry without backoff
+David  18 Jan 2010
+    - client: finish the above.
+        Should add the Adv Prefs dialog as well.
 
     client/
-        scheduler_op.cpp,h
-
-David  13 Feb 2009
-    - client: fix bug in time-of-day limit prefs (both CPU and network)
-
+        cs_prefs.cpp
     lib/
         prefs.cpp,h
 
-David  13 Feb 2009
-    - GUI RPC: add master_url and local_revision to PROJECT_CONFIG struct.
-        The former will allow the Manager to verify project URLs
+Rom    19 Jan 2010
+    - lib: Don't allow the diagnostics threads to be suspended, if a crash happens within
+        the remaining thread the process will deadlock.
 
     lib/
-        gui_rpc_client_ops.cpp
-        gui_rpc_client.h
-
-Charlie 13 Feb 2009
-    - SS: On Windows, make path strings Unicode compatible in ss coordinator.
-
-    clientscr/
-        screensaver.cpp
-
-Rom    16 Feb 2009
-    - WINBUILD: Remove ReleaseSigned build depends.
-    - WINBUILD: Add NVAPI to the list of static libraries to include during
-        the build process.  Driver version detection.
-        
-    /
-        <Various Files>
-
-David  16 Feb 2009
-    - client: detect NVIDIA driver version number, show it on startup,
-        and include it with CUDA coprocessor descriptor in request msgs
-
-    lib/
-        coproc.cpp,h
-    win_build/
-        libboinc.vcproj
-
-Charlie 16 Feb 2009
-    - client: fix compile break on Mac.
-
-    lib/
-        coproc.cpp
+        diagnostics.h
+        diagnostics_win.cpp
+        win_util.cpp
 
-David  16 Feb 2009
-    - client: add a debug flag <dcf_debug> for seeing changes in DCF
-    - scheduler: add a limit on NVIDIA driver version for CUDA apps
-        (default 17500)
+David  19 Jan 2010
+    - client simulator: further fiddling around.  Not done.
 
     client/
+        sim.cpp
         work_fetch.cpp
-        log_flags.cpp,h
         cpu_sched.cpp
-    sched/
-        sched_send.cpp
-        sched_plan.cpp,h
 
-David  17 Feb 2009
-    - client: don't ignore jobs with fraction_done=1 (but still running)
-        in RR simulation; we may need to mark them as deadline miss.
-    - web: replace & with &amp; various places
+David  19 Jan 2010
+    - client simulator: done for now
 
     client/
+        sim.cpp
         rr_sim.cpp
-    html/
-        inc/
-            prefs.inc
-            results.inc
-            stats_sites.inc
-        ops/
-            update_profile_pages.php
-        user/
-            edit_forum_preferences.php
-            edit_passwd_form.php
-            hosts_user.php
-            pm.php
-            prefs_remove.php
-            profile_menu.php
-            top_hosts.php
-            top_teams.php
-            top_users.php
-
-David  18 Feb 2009
-    - client: if "no more work" checked, don't request more work (duh!)
 
-    client/
-        work_fetch.cpp
-    tools/
-        make_project
-
-David  18 Feb 2009
-    - client: adjust debts at least every minute.
-        This fixes a bug that can cause debts to NEVER get updated.
-    - client: added "abort_jobs_on_exit" feature
-        (available by --abort_jobs_on_exit cmdline
-        or <abort_jobs_on_exit> in cc_config.xml).
-        If set, when the client is exited by user request
-        (this includes signals on Unix)
-        it marks all pending jobs as aborted,
-        and does a scheduler RPC to all projects with jobs.
-        When these are completed the client exits.
-        This is useful when BOINC is being used on grids
-        where it is wiped clean after each run.
-
-    client/
-        client_state.cpp,h
-        cpu_sched.cpp
-        cs_cmdline.cpp
-        cs_prefs.cpp
-        cs_scheduler.cpp
-        log_flags.cpp
-        main.cpp
-        work_fetch.cpp
-    lib/
-        error_numbers.h
-
-David  18 Feb 2009
-    - web tweaks
-
-    html/
-        inc/
-            host.inc
-            result.inc
-        user/
-            workunit.php
-            result.php
-
-David  19 Feb 2009
-    - scheduler: make host.p_features available to app_plan()
-
-    db/
-        boinc_db.h
-    sched/
-        server_types.cpp
-
-David  19 Feb 2009
-    - web: in lists of tasks, give the option of showing names instead of IDs
-
-    html/
-        inc/
-            host.inc
-            result.inc
-        user/
-            results.php
-            workunit.php
-
-David  19 Feb 2009
-    - client: add more info to <work_fetch_debug> messages
-
-    client/
-        work_fetch.cpp
-
-David  19 Feb 2009
-    - client: don't complain that master URLs differ if it's only in case
-
-    client/
-        cs_scheduler.cpp
-
-Charlie 19 Feb 2009
-    - screensaver: Implement --test and --retry_connect command-line arguments
-        as requested by Rom.
-
-    clientscr/
-        ss_app.cpp
-
-Charlie 20 Feb 2009
-    - screensaver: Implement new screensaver coordinator logic as requested by Rom:
-        If the coordinator cannot connect to the core client:
-            - coordinator retries connecting every 10 seconds 
-            - coordinator launches the default graphics application with the 
-                argument --retry_connect, so the default graphics app will continue 
-                running and will also retry connecting every 10 seconds.
-        If the coordinator successfully connected to the core client, it launches the 
-            default graphics application without the argument --retry_connect.  If the 
-            default graphics application can't connect, it will return immediately 
-            with the exit code ERR_CONNECT.  In that case, the coordinator assumes 
-            the default graphics app was blocked by a firewall and so the coordinator 
-            will run only project (science) graphics.
-
-    clientscr/
-        mac_saver_module.cpp
-        Mac_Saver_Module.h
-        screensaver.cpp,.h
-        screensaver_win.cpp,.h
-        ss_app.cpp
-
-Charlie 20 Feb 2009
-    - lib: Fix build break on Windows.
-
-    win_build/
-        libboinc.vcproj
-        libboinc_staticcrt.vcproj
-
-David  20 Feb 2009
-    - client: if a project is at max backoff for a resource,
-        stop accumulating debt if it's at or around zero.
-        This prevents other projects from being driven unboundedly negative.
-    - client: if the number of overworked projects exceeds the number
-        of device instances, clear debts; this indicates that an earlier
-        client was buggy and produced bad debt values.
-
-    client/
-        client_state.h
-        cpu_sched.cpp
-        sim.h
-        work_fetch.cpp,h
-
-David  20 Feb 2009
-    - client: new work-fetch policy:
-        1) if an instance is idle, get work from highest-debt project,
-            even if it's overworked.
-        2) if resource has a shortfall, get work from highest-debt
-            non-overworked project
-        3) if there's a fetchable non-overworked project with no runnable jobs,
-            get from from the highest-debt one.
-        (each step is done first for GPU, then CPU)
-        Clause 3) is new.
-        It will cause the client to get jobs for as many projects as possible,
-        even if there is no shortfall.
-        This is necessary to make the notion of "overworked" meaningful
-        (otherwise, any project with long jobs can become overworked).
-        It also maintains as much variety as possible (like pre-6.6 clients).
-
-        Also (small bug fix) if a project is overworked for resource R,
-        request work for R only in case 1).
-
-    client/
-        work_fetch.cpp,h
-
-David  20 Feb 2009
-    - client: remove the "debt repair" mechanism added earlier today.
-        There are situations where multiple projects can legitimately
-        have large negative LTD on a uniprocessor.
-        Instead...
-    - client: add <zero_debts> option to cc_config.xml
-
-    client/
-        log_flags.cpp,h
-        work_fetch.cpp,h
-
-David  20 Feb 2009
-    - client: fix bug that can cause no GPU jobs to be scheduled
-        even when a GPU is free
+David  19 Jan 2010
+    - client: brute-force attempt at eliminating domino-effect preemption:
+        if job A is unstarted and EDF,
+        and there's a job B that is later in the list,
+        is started, has the same app version,
+        and has the same arrival time,
+        move A after B.
+    - client: remove the "temp_dcf" mechanism,
+        which had the same goal but didn't work.
+    - client: in computing overall debt for a project,
+        subtract a term that reflects pending work.
+        This should reduce repeated fetches from the same project.
+    - client simulator: tweaks
 
     client/
+        client_types.h
         cpu_sched.cpp
-
-Charlie 20 Feb 2009
-    - Update various source files to GPL 3.  Note: I've only updated those 
-        files which I created or have been maintaining.  There are many 
-        others which still have the GPL 2.1 license.
-        
-    clientgui/
-        mac/
-            browser_safari.mm
-            MacGUI.pch
-            SystemMenu.m
-        res/
-            macbadgemask.xpm
-            macdisconnectbadge.xpm
-    clientscr/
-        Mac_Saver_ModuleView.m
-        screensaver.cpp
-    mac_build/
-        buildcurl.sh
-        buildjpeg.sh
-        buildc-ares.sh
-        BuildMacBOINC.sh
-        buildWxMac.sh
-        Make_BOINC_Service.sh
-        Mac_SA_Insecure.sh
-        Mac_SA_Secure.sh
-        setupForBOINC.sh
-    mac_installer/
-        release_boinc.sh
-        release_GridRepublic.sh
-        make_GridRepublic.sh
-    samples/
-        example_app/
-            MakeMacExample.sh
-
-David  20 Feb 2009
-    - add a few GPL 3 notices
-
-    clientsrc/
-        screensaver.cpp
-    lib/
-        coproc.h
-        boinc_fcgi.cpp,h
-
-David  21 Feb 2009
-    - client: tweak the LTD calculation so that the largest debt
-        always tends towards zero
-
-    client/
-        work_fetch.cpp
-
-David  22 Feb 2009
-    - client: print message if downloaded file has wrong size
-    - client: associate file xfer messages with a project; fixes #848
-
-    client/
-        cs_files.cpp
-        file_xfer.cpp
-        pers_file_xfer.cpp
-
-David  22 Feb 2009
-    - client: more instances of showing project with message.  Fixes #848
-
-    client/
-        app_start.cpp
-        app_graphics.cpp
-        file_xfer.cpp
-        cs_account.cpp
-        cs_scheduler.cpp
-        scheduler_op.cpp
-        app.cpp
-        app_control.cpp
-
-Rom    22 Feb 2009
-    - WINSCR: Fix the BOINC text displayed is the screensaver control
-        panel applet
-    - WINSCR: Get rid of the 'Up to 5 second wait' for the data thread
-        to terminate.  Force terminate the thread and clean up the
-        graphics app in a clean-up routine.  Forcing the user to wait
-        when they return to the system isn't a good idea.
-    - WINSCR: Fix screensaver issue where the screensaver locks up
-        when the graphics application deadlocks for one reason or
-        another.
-        
-        Create two new threads:
-          1. Monitor system for keyboard and mouse events.
-          2. Shuffle window z-order positions if needed.
-          
-        The keyboard/mouse event monitor is isolated from either
-          the core client getting stuck in a loop and not returning
-          the results of an RPC or the window shuffling code which
-          can get stuck if the graphics application dead locks.
-          
-        The window shuffle code is isolated due to the
-          BroadcastSystemMessage() API using something akin to
-          SendMessage() which waits for a return value from the
-          target windows winproc.  If a graphics application
-          deadlocks for one reason or another it'll cause
-          the thread to stall.  This isn't terminal and so we
-          just wait for the next time the data thread chooses
-          a new application and terminates the old one which
-          will cause the thread to resume.
-          
-        This should resolve all outstanding issues with the
-          screensaver not exiting when the mouse or keyboard
-          is used.
-          
-    clientscr/
-        boinc_ss.rc
-        screensaver.cpp
-        screensaver_win.cpp, .h
-        
-David  22 Feb 2009
-    - client: fix work-fetch bug that caused infinite fetch;
-        cleanup/reorganization of work fetch logic
-
-    client/
-        work_fetch.cpp,h
-
-David  22 Feb 2009
-    - client: work-fetch bug fix: if we're fetching work for a starved
-        project, it most have no runnable jobs for ANY resource.
-    - client: work-fetch bug fix: when setting requests in the
-        shortfall case, don't request anything if project is backed off
-        or overworked for the resource.
-
-    client/
         rr_sim.cpp
+        sim.cpp,h
+        sim_util.cpp
         work_fetch.cpp,h
 
-Charlie 22 Feb 2009
-    - screensaver: Code consolidation, fix bug terminating default graphics 
-        application on screensaver exit.
-        
-     clientscr/
-        screensaver.cpp
-
-David  22 Feb 2009
-    - scheduler: include driver version in the CUDA description string
-        storing in the database;
-    - web: display the above
-
-    client/
-        cpu_sched.cpp
-        work_fetch.h
-    html/inc/
-        host.inc
-    lib/
-        coproc.cpp
-
-Charlie 22 Feb 2009
-    - screensaver: Fix a bug I introduced during code consolidation.
-        
-     clientscr/
-        screensaver.cpp
-        screensaver_win.cpp
-
-Rom    24 Feb 2009
-    - WINSCR: Remove the progress indication code from the coordinator.
-        It is now handled by the default screensaver app.
-    - WINSCR: Clean-up some of the thread cleanup logic.
-    
-    clientscr/
-        screensaver_win.cpp
-
-Rom    25 Feb 2009
-    - WINSCR: Remove unneeded header files
-    - SCR: Shuffle headers around so that it'll build on both Windows and
-        Mac without having to put in duplicate entries.
-        
-    clientscr/
-        screensaver.cpp
-
-David  25 Feb 2009
-    - client: fix bugs in "abort_jobs_on_exit" feature:
-        - clear project backoffs when start abort sequence
-        - don't back off projects if in abort sequence
-
-    client/
-        client_state.cpp
-        main.cpp
-        scheduler_op.cpp
-
-David  25 Feb 2009
-    - boinccmd: fix bug in --set_proxy_settings command
-        (it wasn't setting the "use_XXX" flags).  Fixes #776
-    - client: you can now include a <proxy_info> element
-        in your cc_config.xml options.
-
-    TODO: the whole proxy info thing needs an overhaul:
-    - no separate "use_XXX" flags;
-        non-empty http_server_name implies using HTTP proxy, etc.
-    - merge PROXY_INFO and GR_PROXY_INFO classes
-    - use XML_PARSER for parsing
-    - no PROXY_INFO element in HTTP_OP; just use gstate.proxy_info
-
-    client/
-        boinc_cmd.cpp
-        http_curl.cpp
-    lib/
-        parse.h
-        proxy_info.cpp
+David  22 Jan 2010
+    - client bug fixes
 
-Rom    25 Feb 2009
-    - MGR: Remove the /s parameter from the argument list on Linux
-        until we know it is supported.  Fixes #615
-        
-    clientgui/
-        BOINCGUIApp.cpp
-
-
-Eric K 25 Feb 2009
-    - Added checks for net/*.h, arpa/*.h, netinet/*.h and code to figure out
-      which of those files to include
-    - Modified MAC address check to work on some non-Linux unixes.
-      (mac_address.cpp)
-    - Added suggested change to "already attached to project" checking.
-      (ProjectInfoPage.cpp)
-    - changed includes of standard c header files to their c++ equivalents
-      (i.e. replaced <stdio.h> with <cstdio>) for namespace protection.
-    - replaced "using namespace std;" with more explicit "using std::function" in
-      several files.
-    - Fixed bug in checking whether the os is OS/2 and added conditional OS_OS2
-      to the build environment. (boinc_platform.m4,configure.ac)
-    - Changed build environment to not use -nostandardlibs unless we are using
-      G++ and static linkage is specified. (configure.ac)
-    - Added makefiles and package building files for solaris CSW package manager.
-    - Fixed bug with attempting to find login name using logname. (configure.ac)
-    - Added ifdef HAVE_* protection around some include files commonly found in
-      sys.
-    - Added support for unified binary for x86_64/i686-pc-solaris.
-      (cs_platforms.cpp)
-    - generate_host_cpid() now uses MAC address on non-linux unix.
-      (hostinfo_network.cpp)
-    - Macro BOINC_SET_COMPILE_FLAGS now doesn't check gcc only flags on non-gcc
-      compilers. (boinc_set_compile_flags.m4)
-    - Library compiles no longer depend upon the library extension or require
-      the library to be prefixed with lib.
-    - More fixes for fcgi builds.
-    - Added declaration of "struct ether_addr" and ether_ntoa().  Have not yet
-      implemented ether_ntoa() for machines that don't have it, or where it is
-      buggy.  (unix_util.h)
-    - Added FCGI::perror() which calls FCGI_perror(). (boinc_fcgi.{h,cpp})
-    - Fixed library Makefiles so that all required headers get installed.
-
-    version.h
-    configure.ac
-    api/
-        boinc_api.cpp
-        graphics2_unix.cpp
-        gutil.cpp
-        gutil.h
-        gutil_text.cpp
-        make_app_icon_h.cpp
-        Makefile.am
-        reduce_main.cpp
-        texfont.cpp
-        texture.cpp
-        tgalib.h
-        x_opengl.cpp
     client/
-        app.h
         app_start.cpp
-        client_types.h
-        cs_account.cpp
-        cs_benchmark.cpp
-        cs_cmdline.cpp
-        cs_platforms.cpp
-        cs_scheduler.cpp
-        gui_rpc_server.cpp
-        gui_rpc_server_ops.cpp
-        hostinfo_network.cpp
-        hostinfo_unix_test.cpp
-        log_flags.h
-        scripts/boinc-client.in
-        setprojectgrp.cpp
-        switcher.cpp
-    clientgui/
-        ProjectInfoPage.cpp
-    clientscr/
-        gfx_switcher.cpp
-    lib/
-        boinc_fcgi.cpp
-        boinc_fcgi.h
-        boinc_win.h
-        common_defs.h
-        coproc.cpp
-        crypt.h
-        diagnostics.cpp
-        filesys.cpp
-        filesys.h
-        gui_rpc_client.h
-        gui_rpc_client_ops.cpp
-        mac_address.cpp
-        Makefile.am
-        md5_file.cpp
-        mem_usage.cpp
-        mfile.cpp
-        msg_queue.cpp
-        msg_queue.h
-        network.cpp
-        parse.h
-        procinfo_mac.cpp
-        procinfo_unix.cpp
-        shmem.cpp
-        synch.cpp
-        unix_util.cpp
-        unix_util.h
-        util.cpp
-    m4/
-        boinc_platform.m4
-        boinc_set_compile_flags.m4
-    packages/
-        solaris/
-            CSW/
-                build_packages.sh
-                Makefile.am
-                boincclient/
-                    boinc.1
-                    boinc_client.1
-                    boinc-client.conf
-                    boinc_cmd.1
-                    boinccmd.1
-                    depend
-                    Makefile.am
-                    pkginfo.in
-                    postinstall
-                    preinstall
-                    prototype.in
-                boincdevel/
-                    depend
-                    Makefile.am
-                    pkginfo.in
-                    prototype.in
-                boinclibs/
-                    depend
-                    Makefile.am
-                    pkginfo.in
-                    prototype.in
-                boincmanager/
-                    boinc_manager.1
-                    boincmgr.1
-                    depend
-                    Makefile.am
-                    pkginfo.in
-                    prototype.in
-                boincserver/
-                    Makefile.am
-    sched/
-        census.cpp
-        db_purge.cpp
-        fcgiapp.h
-        file_deleter.cpp
-        file_upload_handler.cpp
-        handle_request.cpp
-        hr_info.cpp
-        main.cpp
-        Makefile.am
-        message_handler.cpp
-        sched_config.h
-        sched_locality.cpp
-        sched_send.cpp
-        sched_timezone.cpp
-        sched_util.cpp
-        server_types.cpp
-        time_stats_log.cpp
-        time_stats_log.h
-        transitioner.cpp
-        validator.cpp
-    tools/
-        dir_hier_move.cpp
-        dir_hier_path.cpp
-        kill_wu.cpp
-        poll_wu.cpp
-        updater.cpp
-    zip/
-        Makefile.am
-
-David  25 Feb 2009
-    - client: if you put <host_venue> in global_prefs_override.xml,
-        it should select the venue from the network prefs.
-        Now it does.
-
-    client/
-        gui_rpc_server.cpp
-        cs_prefs.cpp
-
-David  25 Feb 2009
-    - API: file descriptor leak in obscure case.
-        fixes #103
-
-    api/
-        texture.cpp
-
-Charlie 25 Feb 2009
-    - MGR: Fix compiler warning.
-    - lib: Fix compiler error: Please do not use unmatched single quotes 
-        (I changed don't to don`t in #warning statement to fix this.)
-    clientgui/
-        ProjectInfoPage.cpp
-    lib/
-        mac_address.cpp
-
-David  25 Feb 2009
-    - scheduler: slight code cleanup
-
-    sched/
-        server_types.h
-        sched_*.cpp
-        handle_request.cpp
-        server_types.cpp
-
-David  25 Feb 2009
-    - client: make timeout values into #defines
-
-    client/
-        (several).cpp
-
-David  26 Feb 2009
-    - client: tag messages with project where possible; fixes #852
-    - client: show fetch share rather than run share in wfd message
-
-    client/
-        client_types.h
-        work_fetch.cpp
-        cs_prefs.cpp
-        cs_scheduler.cpp
-        cpu_sched.cpp
-
-David  26 Feb 2009
-    - client: abort jobs that are unstarted and past deadline
-    - client: abort runaway jobs based on elapsed time instead of CPU time.
-        Specifically, abort jobs for which
-        elapsed time > WU.rsc_fpops_bound / app_version.flops
-        This policy works for
-        1) GPU jobs (which may use little CPU time)
-        2) jobs that run but because of bugs use little CPU time
-            (e.g., because they're sleeping)
-        whereas the old policy didn't.
-
-    client/
-        client_state.cpp,h
-        app.cpp,h
-        app_control.cpp
-    lib/
-        error_numbers.h
-        str_util.cpp
-
-David  26 Feb 2009
-    - client: skip the above elapsed-time check for non-CPU-intensive jobs
-
-    client/
-        app_control.cpp
-
-Rom    26 Feb 2009
-    - MGR: Remove the ability to display graphics on a remote computer,
-        or from a remote computer on *nix machines using v5 graphics.
-        fixes #674
-        
-    clientgui/
-        ViewWork.cpp
 
-David  26 Feb 2009
-    - client: fix bug where if a GPU job is running,
-        and a 2nd GPU job with an earlier deadline arrives,
-        neither job is executed ever.
-        Reorganized things so that scheduling of GPU jobs is
-        done independently of CPU jobs.
-        The policy for GPU jobs:
-        - always EDF
-        - jobs are always removed from memory, regardless of checkpoint
-        (GPU memory is not paged, so it's bad to leave an idle app in memory)
+David  25 Jan 2010
+    - client: when launching app, delete init_data.xml using switcher
+        prior to trying to write it,
+        in case it's owned by another user (e.g., boinc_project)
 
     client/
-        app.cpp,h
         app_start.cpp
-        client_state.h
-        cpu_sched.cpp
-    sched/
-        handle_request.cpp
 
-David  26 Feb 2009
-    - client: shuffle the startup code to avoid showing wrong prefs info
-        on first-time startup.
-    - client: don't do an RPC until we've done CPU benchmarks.
-        We need the benchmark values to fill in app_version.flops
+David  27 Jan 2010
+    - client: fix small bug that could interfere with work fetch
+        on hosts with both NVIDIA and ATI GPU
 
     client/
-        client_state.cpp
-        cs_scheduler.cpp
-
-David  26 Feb 2009
-    - screensaver: show correct info if CPU throttling;
-        show correct window title;
-        show "no projects" message.
-
-    api/
-        graphics2.h
-        graphics2_win.cpp
-    clientscr/
-        ss_app.cpp
-
-David  26 Feb 2009
-    - boinccmd: make --get_messages output more readable
-
-    client/
-        boinc_cmd.cpp
-
-Charlie 27 Feb 2009
-    - screensaver: remove from the coordinator error codes and messages 
-        which will now be handled by default graphics app, add new error 
-        codes for problems in default graphics app.
-    - Mac screensaver: improve logic to stop drawing BOINC logo when a 
-        graphics app covers coordinator window.
-    
-    clientscr/
-        mac_saver_module.cpp
-        Mac_Saver_Module.h
-        Mac_Saver_ModuleView.m, .h
-        screensaver.cpp, .h
-        screensaver_win.h
-
-David  27 Feb 2009
-    - manager: fix roundoff error in Advanced Prefs; fixes #613
-
-    clientgui/
-        DlgAdvPreferences.cpp
+        work_fetch.cpp
 
-Rom    27 Feb 2009
-    - MGR: Make CTRL-SHIFT-A the accelerator in the simple GUI that
-        switches back to the advanced view.
-        refs #147
+David  27 Jan 2010
+	- client: fix work fetch bug that prevented getting work
+		from an overworked project,
+		even if idle instance or major shortfall.
 
-    clientgui/
-        sg_BoincSimpleGUI.cpp, .h
+	client/
+		work_fetch.cpp,h
 
-David  27 Feb 2009
-    - client: fix bug that could cause scheduler RPC
-        to ask for work inappropriately,
-        and tell user that it wasn't asking for work.
-        Here's what was going on:
-        There are two different structures with work request fields
-        (req_secs, req_instances, estimated_delay):
-        COPROC_CUDA *coproc_cuda
-        and
-        RSC_WORK_FETCH cuda_work_fetch.
-        WORK_FETCH::choose_project() copied from cuda_work_fetch to coproc_cuda,
-        but only if a project was selected.
-        WORK_FETCH::clear_request() clears cuda_work_fetch but not coproc_cuda.
-
-        Scenario:
-        - a scheduler op is made to project A requesting X>0 secs of CUDA
-        - later, a scheduler op is made to project B for reason
-            other than work fetch (e.g., user request)
-        - choose_project() doesn't choose anything,
-            so the value of coproc_cuda->req_secs remains X
-        - clear_request() is called but that doesn't change *coproc_cuda
-
-        Solution: work-fetch code no longer knows about internals of
-            COPROC_CUDA and is not responsible for settings its request fields.
-            The copying of request fields from RSC_WORK_FETCH to COPROC
-            is done at a higher level,
-            in CLIENT_STATE::make_scheduler_request()
-
-        Additional bug fix: estimated_delay wasn't being cleared in some cases.
+David  27 Jan 2010
+    - client: remove debug msgs
 
     client/
-        cs_scheduler.cpp
-        scheduler_op.cpp
-        work_fetch.cpp
+        app.cpp
 
-David  27 Feb 2009
-    - client: RR sim FLOPS estimate for GPU jobs should reflect
-        fraction of time BOINC is running.
+David  28 Jan 2010
+    - client: if a project has zero resource share,
+        treat it as a "backup project":
+        fetch work from it only if there is an idle instance
+        and no other projects have work.
 
     client/
+        acct_mgr.cpp
+        client_types.cpp,h
         rr_sim.cpp
         work_fetch.cpp
 
-David  1 Mar 2009
-    - client: if we're going to do a scheduler RPC for reasons
-        other than work fetch (e.g., user request, project request)
-        temporarily clear resource backoffs while deciding
-        whether to request work.
-        The backoffs are there only to delay RPCs,
-        and we're going an RPC anyway.
-
-    client/
-        work_fetch.cpp
-
-David  1 Mar 2009
-    - web: link to 3rd-party signature sources on community prefs page
-
-    html/
-        inc/
-            stats_sites.inc
-        user/
-            edit_form_preferences_form.php
+David  28 Jan 2010
+	- client: fix my last checkin
 
-David  1 Mar 2009
-    - web: fix buggy changeset 17278
+	client/
+		client_types.cpp
+		cs_statefile.cpp
 
-    html/user/
-        edit_form_preferences_form.php
-
-David  1 Mar 2009
-    - manager and GUI RPC: always show resource debt and backoff even if zero;
-        also show backoff interval
-
-    clientgui/
-        DlgItemProperties.cpp
-    lib/
-        gui_rpc_client.h
-        gui_rpc_client_ops.cpp
-
-David  2 Mar 2009
-    - fix bugs in the above.
-    - GUI RPC: remove unused items from get_state RPC: host_info, time_stats,
-        net_stats, host_venue
-
-    NOTE: any change to a GUI RPC struct requires changing AsyncRPC.cpp.
-    This is undesirable.
-
-    client/
-        cs_statefile.cpp
-    clientgui/
-        AsyncRPC.cpp
-    lib/
-        gui_rpc_client_ops.cpp
-
-David  2 Mar 2009
-    - Manager: scheduling params are not defined for non-CPU-intensive projects;
-        don't show them.
-
-    clientgui/
-        DlgItemProperties.cpp
-
-Rom    2 Mar 2009
-    - Update to OpenSSL 0.9.8j for Win32 and Win64
-    
-    openssl/
-        <Various Files>
-
-David  2 Mar 2009
-    - scheduler: replace choose_download_url_by_timezone with
-        replace_download_url_by_timezone.
-        From Bernd M.
-
-    sched/
-        sched_timezone.cpp
-        sched_config.cpp,h
-        sched_send.cpp
-
-Rom    2 Mar 2009
-    - Update to LibCurl 7.19.3 for Win32 and Win64
-    
-    curl/
-        <Various Files>
-
-David  2 Mar 2009
-    - scheduler/feeder: add <locality_scheduler_fraction> option;
-        lets you intermix locality and job-cache scheduling
-        From Bernd M.
-    - file_deleter: add --appid option
-
-    sched/
-        feeder.cpp
-        file_deleter.cpp
-        handle_request.cpp
-        sched_config.cpp,h
-        sched_send.cpp
-
-David  2 Mar 2009
-    - scheduler: add <locality_scheduling_sticky_file>
-        and <locality_scheduling_workunit_file> options
-        From Bernd M.
-    sched/
-        sched_config.cpp,h
-        sched_locality.cpp
-
-Charlie 2 Mar 2009
-    - client: Revise Apple idle time detection for compatibility with OS 10.6.
-
-    client/
-        hostinfo_unix.cpp
-    lib/
-        hostinfo.h
-
-Charlie 3 Mar 2009
-    - Mac: Update libCurl to 7.19.4.
-
-    mac_build/
-        buildcurl.sh
-        HowToBuildBOINC_XCode.rtf
-        setupForBOINC.sh
-        boinc.xcodeproj/
-            project.pbxproj
-
-Charlie 3 Mar 2009
-    - WINSCR: fix an error I introduced.
-    - Mac screensaver: logic to stop Data Management thread even if hung on 
-        an RPC.
-    
-    clientscr/
-        mac_saver_module.cpp
-        screensaver.cpp, .h
-        screensaver_win.cpp
-
-David  3 Mar 2009
-    - scheduler: add locality_scheduling arg to add_result_to_reply();
-        eliminate the need to diddle around with config.locality_scheduling.
-
-    sched/
-        sched_array.cpp
-        sched_assign.cpp
-        sched_locality.cpp
-        sched_resend.cpp
-        sched_send.cpp,h
-
-David  3 Mar 2009
-    - scheduler: don't need to set wreq->infeasible_only in send_work()
-
-    sched/
-        sched_send.cpp
-
-Rom    3 Mar 2009
-    - Update to LibCurl 7.19.4 for Win32 and Win64
-    
-    curl/
-        <Various Files>
-
-David  3 Mar 2009
-    - client: fix message: "idle instance" => "starved"
+David  29 Jan 2010
+    - client: allow zero resource share
 
     client/
         work_fetch.cpp
+        makefile_sim
 
-David  3 Mar 2009
-    - manager: when filtering messages by project,
-        show messages not tagged with a project (fixes #852)
-    - web: show X-project stats links as icons
-
-    clientgui/
-        ViewMessages.cpp
-    html/
-        inc/
-            host.inc
-            team.inc
-            stats_sites.inc
-        user/
-            img/
-                freedc_icon.png
-                boincstats_icon.png
-            white.css
-
-David  3 Mar 2009
-    - client: change garbage-collect logic.
-        old: reference-count files involved in a PERS_FILE_XFER
-        new: if a PERS_FILE_XFER refers to an unreferenced file,
-            delete it (and the associated FILE_XFER and HTTP_OP if present)
-        May fix #366
+Rom    2 Feb 2010
+    - Tag for 6.10.31 release, all platforms
+      boinc_core_release_6_10_31
 
-    client/
-        client_state.cpp
-
-David  4 Mar 2009
-    - client: run CPU benchmarks and contact ref site if platform changes
-
-    client/
-        client_state.cpp
-
-David  4 Mar 2009
-    - client: show duration estimates for CPU and CUDA separately
-    - web: reverse Reply and Delete buttons in private msg page
-        fixes #858
-
-    client/
-        cs_scheduler.cpp
-    html/user/
-        pm.php
-
-David  4 Mar 2009
-    - client: get rid of CPU_PESSIMISM_FACTOR; it wasn't actually being used.
-    - manager: compile fix for gcc4.4
-        (this works on my computer; Rom/Charlie, please verify)
-
-    client/
-        rr_sim.cpp
-        sim.h
-    clientgui/common/
-        wxFlatNotebook.cpp
-
-David  4 Mar 2009
-    - client: don't allow coproc apps in app_info.xml.
-        Otherwise we'll get stuck in a loop where the client asks for CPU work,
-        and the scheduler sends jobs for what it thinks is a CPU app
-        but is actually a coproc app.
-
-        Eventually we should add coproc info to the app descriptions
-        send in scheduler request,
-        so that you can use anonymous platform for coproc apps.
-        But let's wait on this.
-
-    - scheduler: compile fix for gcc 4.4.  Fixes #854
-
-    client/
-        cs_statefile.cpp
-    sched/
-        sched_driver.cpp
-        sched_util.cpp
-
-David  4 Mar 2009
-    - client: reorganize and improve the logic for deciding
-        when to do a scheduler RPC:
-        if user request or acct mgr request, ignore backoff and suspend via GUI;
-        in all other cases honor both of these.
-
-    client/
-        cs_scheduler.cpp
-        scheduler_op.cpp
-
-David  4 Mar 2009
-    - scheduler: use simpler variables in HOST_USAGE
-
-    sched/
-        server_types.cpp,h
-        sched_send.cpp
-        sched_plan.cpp
-
-David  5 Mar 2009
-    - scheduler: add support for anonymous-platform coproc apps.
-        Old: although the request message contained all info
-            about the app version (flops, coproc usage etc.)
-            the server ignored this info,
-            and assumed that all anonymous platform apps where CPU.
-            With 6.6 client, this could produce infinite work fetch:
-            - client uses anon platform, has coproc app
-            - client has idle CPU, requests CPU work
-            - scheduler sends it jobs, thinking they will be done by CPU app
-            - client asks for more work etc.
-        New: scheduler parses full info on anon platform app versions:
-            plan class, FLOPS, coprocs.
-            It uses this info to make scheduling decisions;
-            in particular, if the request is for CUDA work,
-            if will only send jobs that use a CUDA app version.
-            The <result> records it returns contain info
-            (plan_class) that tells the client which app_version to use.
-        This will work correctly even if the client has multiple app versions
-        for the same app (e.g., a CPU version and a GPU version)
-
-    sched/
-        handle_request.cpp
-        server_types.cpp,h
-        sched_send.cpp
-
-David  5 Mar 2009
-    - client: if using anonymous platform, ignore (and complain about)
-        app versions in scheduler reply
-    - client: when reporting anonymous platform apps in sched request,
-        don't include <file_info>s (not relevant to server)
-
-    client/
-        client_types.cpp,h
-        cs_scheduler.cpp
-        cs_statefile.cpp
-
-David  5 Mar 2009
-    - scheduler: parse and return platform name in anon platform apps.
-        Otherwise, if an app version has a platform different from
-        the client's primary platform, the client won't find it.
-
-    sched/
-        server_types.cpp,h
-
-David  5 Mar 2009
-    - manager: show version minor numbers as 0n
-
-    clientgui/
-        ViewWork.cpp
-
-David  5 Mar 2009
-    - client: anon plaform app versions can specify coprocs
-
-    client/
-        cs_statefile.cpp
-
-Rom    5 Mar 2009
-    - MGR: Remove previous implementations of the already attached
-        to projects detection code.
-    - MGR: Prevent the user from progressing beyond the project
-        selection page if they are already attached to the
-        project they are trying to attach to.  Display a dialog
-        box telling they are already attached to that project
-        and to choose a different project.  This skips a bunch
-        of steps if they meant to attach to a different project.
-        
-    clientgui/
-        AlreadyAttachedPage.cpp, .h
-        BOINCWizards.h
-        ProjectInfoPage.cpp
-        ProjectPropertiesPage.cpp, .h
-        WizardAttachProject.cpp, .h
-    win_build/
-        boincmgr_curl.vcproj
+    /
+        configure.ac
+        version.h
 
-Rom    5 Mar 2009
-    - MGR: Account for new error code returned by the CC in response
-        to a get_project_config.php request.  It was causing the
-        wizards to throw a temp unavailable error page instead
-        of the not a boinc project page. Fixes #640
+Rom    2 Feb 2010
+    - client: newer ATI drivers crash if struct_size isn't filled out
+        before the structure is used.
         
-    clientgui/
-        AccountManagerPropertiesPage.cpp
-        ProjectPropertiesPage.cpp
-
-Rom    5 Mar 2009
-    - MGR: Newer versions of the server-side software publish their
-        master url in the response to the get_project_config.php
-        request.  If it exists use it over what was specified
-        by the user.  Fixes #259
-        
-    clientgui/
-        AccountManagerProcessingPage.cpp
-        ProjectProcessingPage.cpp
-
-David  5 Mar 2009
-    - scheduler: get work request parameters before resend_lost_jobs();
-        otherwise get NaNs for CPU fraction, etc.
-    - scheduler: show reasons in English when send job aborts
-
-    html/user/
-        top_hosts.php
-    sched/
-        sched_send.cpp,h
-        sched_resend.cpp
-        handle_request.cpp
-
-David  5 Mar 2009
-    - scheduler: move all send-work setup stuff (including messages)
-        into a function that's called before resend_lost_results()
-
-    sched/
-        sched_send.cpp,h
-        handle_request.cpp
-
-Rom    5 Mar 2009
-    - MGR: Saving and Restoring window diminisions is not a Mac only
-        operation when starting up or shutting down the client. Increase
-        the frequency of the auto-save state timer from 5 minutes to
-        5 seconds.  Fixes #69, Fixes #735, Fixes #790, 
-    - MGR: Lengthen the connected to client status field. Fixes #632
-    - MGR: Properly update the connected to client status field
-        even after a change to the simple view. Fixes #688
-        
-    clientgui/
-        AdvancedFrame.cpp
-        sg_BoincSimpleGUI.cpp, .h
-
-Rom    5 Mar 2009
-    - MGR: Don't display the Simple GUI 'Remove Project' menu item
-        if it was attached via an account manager. Fixes #261
-    
-    clientgui/
-        sg_StatImageLoader.cpp
-
-David  5 Mar 2009
-    - client: with anonymous platforms, app versions are identified
-        by app/platform/version/plan-class, same as normal
-
     client/
-        client_state.cpp
-
-Rom    5 Mar 2009
-    - MGR: Set the dial-up and VPN connection list box to a static
-        size so that a scroll bar will appear if the number of items
-        exceeds the space to display them. Fixes #96
-    
-    clientgui/
-        DlgOptions.cpp
-
-Charlie 5 Mar 2009
-    - Mac: Remove obsolete files AlreadyAttachedPage.cpp, .h from 
-        XCode project.
-    - MGR: On Mac, revert to auto-save frequency of 5 minutes because:
-        * The 3 bugs did not occur on the Mac, and 
-        * The saved info is written to a file on the Mac, but the file 
-            is not flushed to disk until the Manager is closed, so the 
-            extra auto-saves have no effect but only waste CPU cycles.
-    
-    clientgui/
-        AdvancedFrame.cpp
-     mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
+        coproc_detect.cpp
 
-David  6 Mar 2009
-    - GUI RPC: the Jan 13 checkin removed some items from the
-        get_state() reply which are not included in our client interface.
-        However, it turns out that BoincView uses these items; put them back.
-    - GUI RPC: set_debt() can set CUDA LTD as well as CPU
+Rom    2 Feb 2010
+    - Tag for 6.10.32 release, all platforms
+      boinc_core_release_6_10_32
 
-    client/
-        gui_rpc_server_ops.cpp
-        cs_statefile.cpp
-
-David  6 Mar 2009
-    - scheduler: fix bugs in support for anonymous platform + coprocs
-        (app versions don't have a <coprocs> around coproc elements,
-        may an oversight but let's stick with it).
-        Anyway, I think it's working now.
-    - lib: remove "owner" array from COPROC.
-        This was used in client to keep track of assignment of
-        coprocessors to tasks, but we got rid of the reserve/free scheme.
-        NOTE: this breaks the mechanism for passing --device N to apps;
-        I'll have to do this another way.  Stay tuned.
-
-    client/
-        app_start.cpp
-        cpu_sched.cpp
-    lib/
-        coproc.cpp,h
-    sched/
-        sched_array.cpp
-        sched_send.cpp
-        server_types.cpp
-
-Rom    6 Mar 2009
-    - MGR: Don't hide the main window after attaching to an account manager
-        if we don't support the system tray on that platform. refs #844
-        
-    clientgui/
-        AdvancedFrame.cpp
-
-David  6 Mar 2009
-    - client: add a new mechanism for assigning coproc instances to tasks,
-        and passing them the corresponding --device N cmdline args.
-        This fixes a bug introduced in 17402 (Feb 26)
-        that broke the --device feature,
-        presumably causing problems on systems with multiple GPUs.
-
-    client/
-        app_start.cpp
-        client_types.h
-    lib/
-        coproc.h
-
-David  6 Mar 2009
-    - client: fix crash
-    lib/
-        coproc.h
+    /
+        configure.ac
+        version.h
 
-Charlie 6 Mar 2009
-    - client: Fix compiler warning on Mac.
+Charlie  4 Feb 2010
+    - Mac Installer: when adding non-admin users to group boinc_master, also add 
+        them to group boinc_project; this fixes permissions error -1200 for non-
+        admin users; show "Please wait" alert if WaitPermissions takes > 15 seconds.
 
     client/
-        app_start.cpp
-    
-David  6 Mar 2009
-    - scheduler: fix bugs that caused only 1 job to be sent
-
-    sched/
-        sched_array.cpp
-        sched_config.cpp,h
-        sched_send.cpp,h
-        sched_locality.cpp
+        check_security.cpp
+    mac_installer/
+        AddRemoveUser.cpp
+        PostInstall.cpp
+        WaitPermissions.cpp
 
-David  8 Mar 2009
-    - client, GUI RPC: put <host_venue> back in get_state reply;
-        it's used by BoincView
+Charlie  5 Feb 2010
+    - Tag for 6.10.33 release (changes from 6.10.32 are Mac only.)
+      boinc_core_release_6_10_33
 
-    client/
-        cs_statefile.cpp
-
-Rom    8 Mar 2009
-    - MGR: Fix a long standing bug where the pie control in the
-        disk usage tab was being created but a default pie part
-        wasn't being added to the control.  This caused the
-        control to display black circles during window
-        initialization on slower systems.  This issue has been
-        around since we started using the pie control based disk
-        usage tab.
-    
-    clientgui/
-        ViewResources.cpp
-
-Rom    9 Mar 2009
-    - MGR: Set the window size through the window creation routine
-        instead of calling SetSize() after the fact.  It removes
-        all the flicker out of the Advanced GUI.
-    - MGR: Consolidate all the window position restore functionality
-        for both the Simple GUI and Advanced GUI in BOINCGUIApp.cpp
-        instead of having duplicate copies in each view.
-    - MGR: Have the Advanced GUI remember position across restarts.
-    - MGR: Create new window events that will save and restore
-        window state for both GUIs.  This avoids multiple UI
-        updates.  Each time you would change window size from within
-        a OnShow or OnSize event it would spawn an update of its own.
-        Sometimes certain controls would ignore the event because
-        it believed it was already processing the event.
-        
-    clientgui/
-        AdvancedFrame.cpp, .h
-        BOINCBaseFrame.cpp, .h
-        BOINCGUIApp.cpp
-        sg_BoincSimpleGUI.cpp, .h
-        ViewStatistics.cpp
-    win_build/
-        boincmgr_curl.vcproj
+    /
+        configure.ac
+        version.h
 
-Rom    9 Mar 2009
-    - MGR: Restore state even if we are not going to display the
-        window.  Otherwise when restoring from the system tray
-        we'll end up on the resources tab.
-    - MGR: Save state before exit.
+Rom    5 Feb 2010
+    - WINSCR: cleanup configuration dialog text.
     
-    clientgui/
-        BOINCBaseFrame.cpp
-        BOINCGUIApp.cpp
-
-Charlie 9 Mar 2009
-    - MGR: CBOINCBaseFrame::FireRestoreState() calls ProcessEvent() 
-        on Mac instead of AddPendingEvent() to avoid displaying Disk 
-        tab for an instant when showing the Window on manual launch.
-    - MGR: suspend periodic RPCs only when displaying SafeMessageBox() 
-        not for all dialogs, so tabs can update during Preferences 
-        dialog, etc.
-
-    clientgui/
-        BOINCBaseFrame.cpp
-        BOINCGUIApp.h
-        MainDocument.cpp
-
-David  9 Mar 2009
-    - scheduler: msg tweak
-
-    sched/
-        sched_array.cpp
-
-David  9 Mar 2009
-    - client: backoff overrides project-requested scheduler RPC.
-        Otherwise, if scheduler is down, we'll retry infinitely every 10 secs
-    - client: remove auto_update.poll() (not used)
-
-    client/
-        client_state.cpp
-        cs_scheduler.cpp
-        scheduler_op.cpp
-
-David  11 Mar 2009
-    - Manager: show elapsed time instead of CPU time in Task tab.
-        CPU time is visible in task Properties.
-    - Manager: in task Properties, show final CPU and elapsed times
-        if job is finished
-    - client: honor backoff for account-manager-requested scheduler RPCs
-    - client: keep track of final elapsed time for results
-    - GUI RPC: report final elapsed time
-
-    client/
-        app_control.cpp
-        client_types.cpp,h
-        cs_scheduler.cpp
-    clientgui/
-        DlgItemProperties.cpp
-        ViewWork.cpp
-    lib/
-        gui_rpc_client.h
-        gui_rpc_client_ops.cpp
-
-Charlie 12 Mar 2009
-    - MGR: Simplify the fixes for saving and restoring window sizes and other 
-        settings; eliminate unnecessary new events EVT_FRAME_RESTORESTATE and 
-        EVT_FRAME_SAVESTATE, etc; call SaveState() and RestoreState() directly.
-    - MGR: Handle EVT_END_SESSION event to call SaveState() on Windows logout 
-        or shutdown; this fixes a long-standing problem where current settings 
-        were not being saved.
-
-    clientgui/
-        AdvancedFrame.cpp, .h
-        BOINCBaseFrame.cpp, .h
-        BOINCGUIApp.cpp, .h
-        sg_BoincSimpleGUI.cpp, .h
+    clientscr/
+        boinc_ss.rc
 
-Rom    13 Mar 2009
-    - MGR: Add the basic infrastructure for the up and comming news tab in
-        the advanced frame.
-        
-    clientgui/
-        AdvancedFrame.cpp
-        BOINCGUIApp.cpp
-        Events.h
-        stdwx.h
-        ViewNews.cpp, .h (Added)
-        ViewResources.cpp
-    win_build/
-        boincmgr_curl.vcproj
-
-David  16 Mar 2009
-    - scheduler: in get_app_version() we check if our current best
-        app version is a CUDA app and we don't need more CUDA work.
-        Need to do this for CPU as well.
-
-    sched/
-        sched_send.cpp
-
-David  16 Mar 2009
-    - web: in pages that show results, combine "server state",
-        "client state", and "outcome" into a single status.
-        The fact that there are three separate status fields
-        is an implementation detail that users don't need to see.
-
-    html/
-        inc/
-            result.inc
-        user/
-            results.php
-
-David  16 Mar 2009
-    - validator utilities: improvements to two_credit()
-        (used for deciding how much credit to grant
-        when there are 2 valid results).
-        From Kevin Reed
-
-    sched/
-        validate_util.cpp
-
-David  16 Mar 2009
-    - scheduler: app_plan() is not the right place to check for
-        "don't use GPU" pref; do it at a higher level
-
-    sched/
-        sched_plan.cpp,h
-        sched_send.cpp
-
-Charlie 16 Mar 2009
-    - MGR: Fix possible deadlock when exiting manager.
+Charlie  8 Feb 2010
+    - Mac SS: change configuration dialog text to match new Windows wording.  
     
-    clientgui/
-        AsyncRPC.cpp
-
-Charlie 17 Mar 2009
-    - MGR: Delete RPCThread::OnExit() because it is not called on Windows 
-        for some reason.
-    - Mac: add new source files ViewNews.cpp, ViewNews.h to XCode Project.
+    clientscr/
+        res/
+            BOINCSaver.nib
+
+Charlie  10 Feb 2010
+    - Mac installer: If installing an acct_mgr_url.xml file, don't install it 
+        directly into the BOINC Data directory.  Instead, put it into the 
+        installer's resources and have the postinstall or postupgrade script 
+        copy it to the BOINC Data directory.  This fixes a problem which would 
+        happen if the user later ran the standard BOINC installer without an 
+        acct_mgr_url.xml file: the Apple installer would then delete the file, 
+        causing BOINC to detach from the account manager.
+    - Mac Installer: add .txt extension to copyright files in GUI installer extras.
     
-    clientgui/
-        AsyncRPC.cpp
-    mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
-
-Eric K  17 Mar 2009
-    - Linux: client: Added code to detect capability to run 64-bit binaries
-        from 32-bit BOINC client, and capability to run 32-bit binaries on 
-    a 64-bit linux system.
-
-    client/
-        cs_platforms.cpp
+    mac_installer/
+        make_GridRepublic.sh
+        make_ProgThruProc.sh
+        postinstall
+        postupgrade
 
-Charlie 17 Mar 2009
-    - MGR: CMainDocument::KillRPCThread() defers to RPC thread before testing 
-        if thread has exited on its own.
+Charlie  10 Feb 2010
+    - Mac Installer: Fix receipt name for GridRepublic installer so we can remove it.
     
-    clientgui/
-        AsyncRPC.cpp
-
-David  18 Mar 2009
-    - client: consider fetching work from overworked projects
-        if resource is saturated for < work_buf_min()
-        (rather than saturated for 0).
-        So now the only significance of "overworked" is that we
-        won't ask overworked projects for work if resource is saturated
-        more than work_buf_min() but less than work_buf_total()
-
-    client/
-        work_fetch.cpp,h
-
-David  18 Mar 2009
-    - client: in RR simulation, use app_version.flops
-        instead of host_info.fpops as the FLOPS estimate for non-GPU apps.
-        I don't see why this would make any difference
-        (these two are equal for non-GPU apps)
-        but people have reported that this change improves estimates.
-
-    client/
-        rr_sim.cpp
-
-David  18 Mar 2009
-    - scheduler and web: add a project preference for whether to use the CPU.
-        This complements the "use GPU?" pref.
-        Neither should be necessary, but what the heck.
-
-    db/
-        boinc_db.h
-        server_types.cpp,h
-        sched_send.cpp
-    html/project.sample/
-        project_specific_prefs.inc
-
-David  18 Mar 2009
-    - web: job lists can be filtered by status
-
-    html/
-        inc/
-            result.inc
-        user/
-            results.php
-
-David  19 Mar 2009
-    - scheduler: move app-version selection and score-based scheduling
-        to new files.
-
-    sched/
-        Makefile.am
-        sched_version.cpp,h (new)
-        sched_score.cpp,h (new)
-        various others
-
-David  19 Mar 2009
-    - client: work fetch: in RR sim, keep track of the number
-        of device instances used by jobs that miss deadline.
-        Don't do "variety" work fetch if this is >= # of instances
-
-    client/
-        rr_sim.cpp
-        work_fetch.cpp,h
-
-Rom    19 Mar 2009
-    - client: initial support for detecting the CPU L2 cache
-        size on Windows.
-        
-    client/
-        client_state.cpp
-        cs_benchmark.cpp
-        hostinfo_win.cpp
-
-David  20 Mar 2009
-    - client: reduce frequency of writing state file:
-        1) multiply checkpoint period by # of cores (or GPUs)
-        2) don't write statefile after schedule_cpus()
-            (we write it after enforce_schedule() if anything
-            started or stopped, and that's all that matters)
-    - client: add new log flag <statefile_debug>;
-        tells you when and why statefile is written
-
-    client/
-        app_start.cpp
-        client_state.cpp
-        cpu_sched.cpp
-        cs_statefile.cpp
-        log_flags.cpp,h
-
-David  20 Mar 2009
-    - client: add --no_priority_change cmdline arg
-        (and <no_priority_change> flag in cc_config.xml).
-        If set, run apps at same priority as client.
-
-    client/
-        app_start.cpp
-        cs_cmdline.cpp
-        log_flags.cpp,h
-
-David  20 Mar 2009
-    - API (win): TerminateProcess() apparently can return in some cases,
-        causing process to go into infinite "no heartbeat" loop.
-        Try sleeping for 1 sec, then calling DebugBreak()
-
-    api/
-        boinc_api.cpp
+    mac_installer/
+        PostInstall.cpp
 
-David  20 Mar 2009
-    - API: add some #ifdef'd debug messages
+David  1 Feb 2010
+    - graphics API: if font missing, find one that isn't (from Kevin)
 
     api/
-        boinc_api.cpp
-
-David  20 Mar 2009
-    - web: fix X-project links in Computer page
+        txf_util.cpp
 
-    html/inc/
-        host.inc
+David  3 Feb 2010
+    - client: if GPU get available RAM fails, don't use the GPU
 
-David  22 Mar 2009
-    - client: garbage collect after scheduler RPC;
-        if project sent some irrelevant FILE_INFOs,
-        this will avoid starting transfers for them.
-    api/
-        boinc_api.cpp
     client/
-        cs_scheduler.cpp
-        gui_rpc_server_ops.cpp
-    samples/multi_thread/
-        multi_thread.cpp
-
-David  23 Mar 2009
-    - API: don't try to unlock lockfile if we failed to lock it
-    - API: more detailed message if failed to lock
-
-    api/
-        boinc_api.cpp
-    html/project.sample/
-        project_news.inc
-    lib/
-        filesys.cpp,h
-
-David  23 Mar 2009
-    - new screensaver: don't show jobs if suspended
-
-    clientscr/
-        ss_app.cpp
-
-David  23 Mar 2009
-    - API: more lockfile messages
-
-    lib/
-        filesys.cpp
-    api/
-        boinc_api.cpp
-
-David  23 Mar 2009
-    - client (linux): if don't find libcudart.so in the current dir,
-        look for it in the library search path.  Fixes #863
-
-    lib/
-        coproc.cpp
+        client_types.cpp
 
-Rom    24 Mar 2009
-    - client: handle power events on Windows via a seperate thread and
-        hidden window.  The basic code was already in place to handle
-        logoff events on Win9x but now it is enabled for all Windows
-        versions.
+Rom    8 Feb 2010
+    - client: detect CPU information via the cpuid instruction instead of
+        the registry.  This change is only for Windows but I haven't tested
+        this with GCC.
         
     client/
-        app_control.cpp
-        main.cpp, .h
-
-David  24 Mar 2009
-    - small code shuffle
-    - fix manager build on unix
-
-    clientgui/
-        Makefile.am
-        ViewWork.cpp
-    lib/
-        util.cpp
-    samples/wrapper/
-        wrapper.cpp
-    api/
-        boinc_api.cpp
+        hostinfo_win.cpp
 
-David  24 Mar 2009
-    - remove wait arg of resume_client()
+David  9 Feb 2010
+	- client: undo [17160].  <ncpus>0</ncpus> in cc_config.xml
+		no longer means simulate zero CPUs.
+		There are several places that divide by ncpus.
+		Zero CPUs doesn't make any sense anyway.
 
-    client/
-        main.cpp,h
-
-David  24 Mar 2009
-    - upgrade and make_project scripts: run update_translations.php,
-        which compiles the translation files into the form
-        used by the web code.
-        Projects that don't use "upgrade" will need to do this manually
-        whenever translation files change.
-    - make_project: create an initial db_revision file.
-        Otherwise make_project followed by upgrade will try
-        to do DB upgrades, which will error out
-
-    html/
-        inc/
-            translation.inc
-        ops/
-            update_translations.php
-        user/
-            language_select.php
-    tools/
-        upgrade
-        make_project
-
-David  24 Mar 2009
-    - web: updated the master translation file
-
-    html/
-        ops/
-            build_po.php
-        languages/translations/
-            en.po
-        user/
-            home.php
-
-David  24 Mar 2009
-    - web: remove spurious translation files
-
-David  24 Mar 2009
-    - web: clean out translation directories before updating
-        (to get rid of bad translation files)
-
-    html/ops/
-        update_translations.php
-    py/Boinc/
-        setup_project.py
-
-David  24 Mar 2009
-    - web: translation system didn't compile BOINC and
-        project-specific translations correctly.
-
-    html/
-        ops/
-            update_translations.php
-        inc/
-            translation.inc
-
-David  25 Mar 2009
-    - improve msgs in file upload handler
-
-    sched/
-        file_upload_handler.cpp
-
-David  25 Mar 2009
-    - client: give highest work-fetch priority to resources with idle instances
+	client/
+		cpu_sched.cpp
+		work_fetch.cpp
 
-    client/
-        work_fetch.cpp
-
-Charlie 25 Mar 2009
-    - MGR: Remove erroneous call of locale in main thread which may be causing 
-        undesired chanegs in date and numeric formatting due to conflicts 
-        between threads; also set locale only on a per-thread basis if available.
-    - MGR: Rename method CMainDocument::CopyProjectsToStateFile() to 
-        CMainDocument::CopyProjectsToStateBuffer() for clarity.
+Rom    9 Feb 2010
+    - client: some more CPU detection cleanup.
     
-    clientgui/
-        AsyncRPC.cpp
-        BOINCGUIApp.cpp
-        MainDocument.h
-    lib/
-        gui_rpc_client.h
-
-Charlie 26 Mar 2009
-    - Mac: revise XCode project to use OS 10.4 SDK for building PowerPC
-        libraries and executables so that we can use weak-linking for
-        APIs not available before OS 10.4, such as uselocale().
-    - MGR: Modify SET_LOCALE constructor and destructor to change locale
-        only on those systems without support for setting locale
-        on a per-thread basis, such as OS 10.3.9.
-    NOTE: At this point it appears that Ubuntu and Fedora both support
-        uselocale().  If any platform does not support it, see the 
-        comments at NO_PER_THREAD_LOCALE in lib/gui_rpc_client.h for info 
-        on allowing for that.
-
-    clientgui/
-        AsyncRPC.cpp
-    lib/
-        gui_rpc_client.h
-    mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
-
-David  26 Mar 2009
-    - client: clear resource backoffs on user-requested RPC
-    - client: randomize resource backoffs to avoid lockstep
-
-    client/
-        cs_scheduler.cpp
-        work_fetch.cpp
-
-David  26 Mar 2009
-    - client: when a job finishes,
-        clear the project's backoff for its resource type.
-        This fixes a problem where a project has a "max jobs in progress"
-        limit, and we're backed off because of that.
-        We'll now fetch work immediately instead of waiting 24 hrs.
-
-    client/
-        app.cpp
-
-Charlie 26 Mar 2009
-    - Mac: Additional changes to make sure BOINC libraries will continue to 
-        build on the Mac using either XCode on OS 10.5 or config / make on 
-        OS 10.3 and later, though the config / make method is still not 
-        recommended on the Mac.
-    - MGR & lib: Provide a cleaner way to specify that a platform does not 
-        support uselocale() API or other per-thread locale.  See the comments 
-        at NO_PER_THREAD_LOCALE in lib/gui_rpc_client.h for details.
-    - Samples: Fix build breaks and warnings when using MakeMacExample.sh 
-        script or Makefile_mac2 make file to build example_app on Mac.  These 
-        errors were probably introduced when boinc_samples was moved into 
-        boinc/samples. 
-        
-     clientgui/
-        AsyncRPC.cpp
-    lib/
-        gui_rpc_client.h
-    mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
-    samples/
-        example_app/
-            Makefile_mac
-            Makefile_mac2
-            MakeMacExample.sh
-
-David  27 Mar 2009
-    - manager: display versions as x.xx
-
-    clientgui/
-        DlgItemProperties.cpp
-
-David  27 Mar 2009
-    - API: add function boinc_msg_prefix() that returns
-        time of day and process ID.
-        This should prefix all messages written to stderr
-        by applications or by the runtime system.
-
-    api/
-        boinc_api.cpp,h
-        graphics2_win.cpp
-        graphics2_unix.cpp
-    samples/
-        wrapper/
-            wrapper.cpp
-        multi_thread/
-            multi_thread.cpp
-        example_app/
-            uc2.cpp
-
-David  27 Mar 2009
-    - manager: fix message
-
-    clientgui/
-        ProjectInfoPage.cpp
-
-David  27 Mar 2009
-    - client: typo in work fetch code; may cause minor errors
-
-    client/
-        work_fetch.cpp
-
-David  30 Mar 2009
-    - boinc_submit (single-job submission):
-        set the job params to reasonable values (see below),
-        and make it easy to change these values in the script
-    - create_work (function and script): change default job params:
-        FLOPs est: 1e9 => 3600e9
-        FLOPs bound: 1e10 => 86400e9
-        mem bound 100MB => 500MB,
-        disk bound 100MB => 1GB
-        delay bound: 100000s => 1 week
-
-    client/
-        work_fetch.cpp
-    tools/
-        boinc_submit
-        create_work.cpp
-
-David  30 Mar 2009
-    - GUI RPC: client side: if parse a RESULT and CPU is nonzero
-        but elapsed time is zero, we must be talking to an old client;
-        set elapsed = CPU
-
-    lib/
-        gui_rpc_client_ops.cpp
-
-David  31 Mar 2009
-    - client: (unix): if host name lookup fails, call res_init().
-        This is an attempt to fix a problem on Linux where,
-        if the client starts before a VPN is set up, it can never communicate
-
-    client/
-        http_curl.cpp
-    lib/
-        network.cpp,h
-
-Charlie 31 Mar 2009
-    - Mac: Add -lresolv to XCode linker flags for client and manager to link 
-        with libresolv.dylib for new res_init() call.
-
-    mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
-
-Charlie 1 Apr 2009
-    - Mac: Add -lresolv to XCode linker flags for screensaver, ss_app and 
-        boinccmd.
-    - MGR: on Mac, implement standard Preferences item under BOINC menu 
-        with standard keyboard shortcut; same as Advanced/Preferences.
-
-    clientgui/
-        AdvancedFrame.cpp
-        mac/
-            MacSysMenu.cpp
-    mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
-
-David  1 Apr 2009
-    - client: show project name in "backoff ended" msg
-
     client/
-        app.cpp
-        cpu_sched.cpp
-        cs_scheduler.cpp
-
-Charlie 1 Apr 2009
-    SS: Under Mac Sandbox security, launch default screensaver graphics app 
-        as user and group boinc_master via gfx_switcher, not via setgid.
-
-    client/
-        check_security.cpp
-    clientgui/
-        mac/
-            SetupSecurity.cpp
-    clientscr/
-        gfx_switcher.cpp
-        screensaver.cpp
-    mac_build/
-        Mac_SA_Secure.sh
-
-Charlie 2 Apr 2009
-    SS: Under Mac Sandbox security, terminate default screensaver graphics 
-        app via gfx_switcher.  This is safer because the man page for kill() 
-        says the user ID of the process sending the signal must match that 
-        of the target process, though in practice that seems not to be true 
-        on the Mac.
-
-    clientscr/
-        gfx_switcher.cpp
-        mac_saver_module.cpp
-        Mac_Saver_Module.h
-        screensaver.cpp
-        screensaver_win.h
-    mac_build/
-        Mac_SA_Secure.sh
-
-David  2 Apr 2009
-    - web: in filtered job lists,
-        "pending" should include "inconclusive",
-        and "invalid" should include "too late to validate"
-
-    html/inc/
-        result.inc
-
-Rom    2 Apr 2009
-    - WINSCR: It appears newer notebook models with multiple video
-        chipsets exhibit an interesting situation.  It appears as though
-        in certain conditions a single monitor machine actually reports
-        itself as having three monitors.  Normally the monitor that
-        contains the primary window (coord 0,0) is on monitor 0, but on
-        these machines coord 0,0 is actually on monitor 2.  This led to the
-        screensaver not properly exiting when keyboard and/or mouse activity
-        was detected.  Now when we detect that keyboard and/or mouse activity
-        has happened we send the WM_INTERRUPTSAVER event to all windows
-        on all monitors.
-        
-    clientscr/
-        screensaver_win.cpp, .h
+        hostinfo_win.cpp
 
-David  3 Apr 2009
-    - get_project_config.php: include plan classes in platform list;
-        i.e., list both win/x86 and win/x86 + NVIDIA.
-        This will allow the manager to show which projects can
-        use the hosts's coprocessors,
-        and also graying out projects that require an absent coproc.
-    - fix compile warnings
+David  11 Feb 2009
+    - client: if a project is anonymous platform and it has no
+        app versions that use a resource,
+        don't request work from it for that resource.
 
-    api/
-        graphics2.h
-        graphics2_util.cpp
     client/
-        boinc_cmd.cpp
         work_fetch.cpp,h
-    html/user/
-        get_project_config.php
-
-David  6 Apr 2009
-    - make_project: get rid of verbosity-level stuff
-        and fancy overwriting of stdout lines
-
-    tools/
-        make_project
-    html/inc/
-        translation.inc
-    py/Boinc/
-        setup_project.py
-
-Rom    6 Apr 2009
-    - WINSETUP: When uninstalling, don't migrate the client data back
-        to the 5.x location.
-        
-    win_build/installerv2/redist/Windows/src/boinccas/
-        CAMigrateBOINCData.cpp
-
-Rom    7 Apr 2009
-    - WINSETUP: On some setups, how we were including the 'Everyone' well
-        known security ID in the boinc_users group didn't work properly.
-        
-        From now on include the 'Everyone' security ID in the various
-        ACLs instead.  This will probley clean up a wide range of
-        various issues with multi-user installs.
-        
-    win_build/installerv2/redist/Windows/src/boinccas/
-        boinccas.rc
-        CACreateBOINCGroups.cpp
-        CASetPermissionBOINC.cpp
-        CASetPermissionBOINCData.cpp
-        CASetPermissionBOINCDataProjects.cpp
-        CASetPermissionBOINCDataSlots.cpp
-    win_build/installerv2/redist/Windows/Win32/
-        boinccas.dll
-        boinccas95.dll
-    win_build/installerv2/redist/Windows/x64/
-        boinccas.dll
-        boinccas95.dll
-
-David  7 Apr 2009
-    - web and client: change the default for "run_gpu_if_user_active"
-        from true to false.
-        Currently running CUDA apps on NVIDIA GPUs causes
-        a significant slowdown in GUI response.
-        
-    html/inc/
-        prefs.inc
-    lib/
-        prefs.cpp
-    tools/
-        make_project
-
-David  7 Apr 2009
-    - client: we were setting config defaults after parsing cmdline.
-        This meant that the cmdline args that set config params weren't working:
-            --allow_multiple_clients
-            --report_results_immediately
-            --no_priority_change
-            --start_delay
-
-    client/
         client_state.cpp
-        cs_cmdline.cpp
-        log_flags.cpp,h
-
-Eric   7 Apr 2009
-    - API:  Added new function boinc_set_credit_claim() for use by projects that
-      want to grant approximately fixed credits, but don't want to express them in 
-      terms of FPOPS and IOPS.  This API just calls 
-      boinc_ops_cumulative(N*8.64000e+11,0).
-
-    api/
-        boinc_api.cpp,h
-
-Charlie 7 Apr 2009
-    MGR: Fix compatibility problem with sizing of all-projects list in Attach 
-        Project Wizard when using wxWidgets 2.8.8 or later.
-
-    clientgui/
-        ProjectListCtrl.cpp
-
-David  8 Apr 2009
-    - Add "html/ops/purge_profile.php" script to help admins locate
-        and remove spam profiles
-
-    html/
-        inc/
-            email.inc
-        ops/
-            purge_profile.php
-        user/
-            mail_passwd.php
-
-David  8 Apr 2009
-    - client: back out res_init() change; it didn't work
-
-    client/
-        http_curl.cpp
-    lib/
-        network.cpp.h
-
-Charlie 8 Apr 2009
-    - Mac MGR: build with wxWidgets 2.8.10.
-    - Mac: Remove -lresolv from XCode linker flags for client, manager, 
-        ss_app, screensaver and boinccmd since res_init() call is removed.
-
-    mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
-
-Charlie 9 Apr 2009
-    - Mac client: fill in command field of PROCINFO struct so <exclusive_app> 
-        log flag works properly on Mac.
-
-    lib/
-        procinfo_mac.cpp
-
-David  9 Apr 2009
-    - client: for each app version,
-        keep track of the largest WSS of tasks using it.
-        In checking whether tasks fit in RAM,
-        use this as an estimate for tasks that haven't started yet.
-        This avoids a situation where the client starts a lot of
-        tasks in sequence, only to find that each one doesn't fit in RAM.
-
-    client/
-        client_types.h
-        cpu_sched.cpp
-
-David  9 Apr 2009
-    - manager: show execution directory in task properties
-
-    clientgui/
-        DlgItemProperties.cpp
-
-Rom    9 Apr 2009
-    - WINSETUP 'Everyone' is not just a group, it is a well known
-        group.
-        
-    win_build/installerv2/redist/Windows/src/boinccas/
-        CASetPermissionBOINC.cpp
-        CASetPermissionBOINCData.cpp
-        CASetPermissionBOINCDataProjects.cpp
-        CASetPermissionBOINCDataSlots.cpp
-    win_build/installerv2/redist/Windows/Win32/
-        boinccas.dll
-        boinccas95.dll
-    win_build/installerv2/redist/Windows/x64/
-        boinccas.dll
-        boinccas95.dll
-
-David  9 Apr 2009
-    - graphics API: add rotation arg to txf_render_string()
-        (from Carl C.)
-
-    api/
-        txf_util.cpp,h
-
-Rom    10 Apr 2009
-    - WINSETUP: Be sure to define INSTALLDIR if it isn't already
-        defined by the system or the transform.  DATADIR was
-        already being handled.
-    - WINSETUP: Save setup state at the end of the execution phase
-        as well as the end of the UI phase.
-        
-    win_build/installerv2/
-        BOINC.ism
-        BOINCx64.ism
-    win_build/installerv2/redist/Windows/src/boinccas/
-        CAValidateSetupType.cpp
-    win_build/installerv2/redist/Windows/Win32/
-        boinccas.dll
-        boinccas95.dll
-    win_build/installerv2/redist/Windows/x64/
-        boinccas.dll
-        boinccas95.dll
-
-David  10 Apr 2009
-    - client: for coproc jobs, don't start a job while a quit is pending.
-        Otherwise the new job may fail on memory allocation.
-
-    client/
-        cpu_sched.cpp
-
-David  10 Apr 2009
-    - client: instead of scheduling coproc jobs EDF:
-        - first schedule jobs projected to miss deadline in EDF order
-        - then schedule remaining jobs in FIFO order
-        This is intended to reduce the number of preemptions of coproc jobs,
-        and hence (since they are always preempted by quit)
-        to reduce the wasted time due to checkpoint gaps.
-    - client: the CPU scheduling policy made use of the number
-        of deadline misses in various places.
-        This should include only the deadline misses of CPU jobs.
-        So move "deadlines_missed" from RR_SIM_STATUS and PROJECT
-        to RSC_PROJECT_WORK_FETCH so that we have separate counts
-        for CPU and coproc jobs, and use the count for CPU jobs.
-    - GUI RPC: removed the rr_sim_deadlines_missed field
-        from project descriptor.
-        This is no longer meaningful, and it didn't seem to be used anywhere.
-
-    client/
-        client_types.cpp,h
-        cpu_sched.cpp
-        rr_sim.cpp,h
-        work_fetch.cpp,h
-    lib/
-        gui_rpc_client.h
-        gui_rpc_client_ops.cpp
-
-David  10 Apr 2009
-    - GUI RPC and manager: send slot and show it in task properties
-        rather than slot path
-        (slot_path is defined only for apps with graphics app).
-
-    clientgui/
-        DlgItemProperties.cpp
-    lib/
-        gui_rpc_client.h
-        gui_rpc_client_ops.cpp
-
-Rytis  11 Apr 2009
-    - web: allow login from subdirectories of the site (expects login_form.php
-        to be located in the URL_BASE).
-    
     html/inc/
-        util.inc
-
-David  12 Apr 2009
-    - client: put back the call to res_init() on lookup failure.
-        Apparently it worked after all.
-
-    client/
-        http_curl.cpp
-    lib/
-        network.cpp,h
-
-Charlie 13 Apr 2009
-    - Mac: Add -lresolv to XCode linker flags for client, manager, boinccmd, 
-        screensaver and ss_app to link with libresolv.dylib for res_init() 
-        call (again).
-
-    mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
-
-David  14 Apr 2009
-    - client: eliminate the need to write the state file on each checkpoint.
-        Instead, write the info into a file in the slot directory,
-        and check for these files on startup.
-        This should reduce the overhead of state-file writing
-        on machines with lots of cores.
-        There will still be a flurry of writes each time a job finishes,
-        but reducing that overhead would be a larger job.
-    - client: make sure we write the state file after a failed RPC
-
-    client/
-        app.cpp,h
-        app_control.cpp
-        cs_scheduler.cpp
-        file_names.h
-        scheduler_op.cpp
-
-Charlie 15 Apr 2009
-    SS: Under Mac Sandbox security, launch default screensaver graphics app 
-        via gfx_switcher as user and group boinc_project rather than 
-        boinc_master, since none of the default screensaver's RPC calls 
-        requires access to the password in gui_rpc_auth.cfg.
-
-    clientscr/
-        gfx_switcher.cpp
-        screensaver.cpp
-
-Rom    15 Apr 2009
-    - Fix compiler errors
-      ( From: Sascha Manns )
-      
-    client/
-        hostinfo_unix.cpp
-    clientgui/
-        DlgAdvPreferences.cpp
-
-David  15 Apr 2009
-    - web: improve the appearance of buttons
-    - web: divide the stylesheet into "main.css"
-        (which has formatting stuff, rounded corners etc.)
-        and "white.css" (which has colors).
-        The above two from Simek.
-    - scheduler: change default min NVIDIA driver version
-        from 17500 to 17700
-
-    html/
-        inc/
-            util.inc
-        user/
-            main.css (new)
-            sample_index.php
-            user_search.php
-            white.css
-            img/
-                white_grad.png (new)
-    sched/
-        sched_plan.cpp
-
-David  15 Apr 2009
-    - Unix build: make it work if "diff" is missing (??)
-        from Michael Tughan
-
-    lib/
-        Makefile.am
-
-David  15 Apr 2009
-    - web: increase button text size a little
-
-    html/user/
-        main.css
-
-David  15 Apr 2009
-    - web: update black.css
-
-    html/user/
-        black.css
-
-Rom    15 Apr 2009
-    - Add ICU to the BOINC depends list.  It is needed for
-        SQLLite3 which will be needed for reading Firefox
-        3.x cookies.
-        
-    icu/
-        <Various Files>
-
-Charlie 15 Apr 2009
-    Mac MGR: Add keyboard shortcuts command-shift-S to switch to Simple View
-        and command-shift-A to switch back to Advanced View.
-        
-    clientgui/
-        AdvancedFrame.cpp, .h
-        sg_BoincSimpleGUI.cpp, .h
-
-David  15 Apr 2009
-    - client: fixed a crash caused by using %f to write
-        working-set size into a fixed-size buffer.
-        Use %e instead.
-        TODO: figure out why WSS was huge.
-    - web: if "en" is primary language, don't read translation files
-
-    client/
-        app_control.cpp
-    html/inc/
-        translation.inc
-    samples/example_app/
-        uc2.cpp
-
-David  16 Apr 2009
-    - client: another try at fixing the above crash
-    - web: don't show plan class in separate column in apps list; fixes #874
-
-    client/
-        app_control.cpp
-    html/user/
-        apps.php
-
-David  16 Apr 2009
-    - upgrade script: do DB update even if stop_web is present,
-        rather than spewing an HTML error message.
-        Fixes #875
-
-    html/
-        inc/
-            boinc_db.inc
-            util.inc
-        ops/
-            db_update.php
-        user/
-            apps.php
-
-David  16 Apr 2009
-    - client: if detach a project, adjust debts and trigger
-        CPU sched and work fetch
-
-    client/
-        client_state.cpp
-        cpu_sched.cpp
-
-Charlie 17 Apr 2009
-    Mac MGR: Changes to build with full Unicode support with wxWidgets-2.8.10.
-
-    mac_build/
-        buildWxMac.sh
-        setupForBOINC.sh
-    clientgui/
-        BOINCClientManager.cpp
-        SkinManager.cpp
-        mac/
-            MacGUI.pch
-
-Charlie 18 Apr 2009
-    MGR: Put keyboard shortcuts CTRL+SHIFT+S and CTRL+SHIFT+A in View Menu so 
-        their functionality is not hidden.  (On the Mac, this translates to 
-        COMMAND-SHIFT-A and COMMAND-SHIFT-S.)
-        
-    clientgui/
-        AdvancedFrame.cpp, .h
-
-David  19 Apr 2009
-    - client: improve CPU sched debug messages
-        (say what kind of job and why we're scheduling it)
-    - client: log messages describing GPUs: one line per GPU; fixes #879
-
-    client/
-        cpu_sched.cpp
-    lib/
-        coproc.cpp,h
-
-David  20 Apr 2009
-    - web: swap positions of reply/delete buttons in private message display
-
-    html/user/
-        pm.php
-
-David  20 Apr 2009
-    - db_purge: improve error-checking; if we're failing to write archives,
-        quit immediately so that we don't delete unarchived DB records
-
-    sched/
-        db_purge.cpp
+        prefs.inc
 
-David  20 Apr 2009
-    - partial checkin so I can edit locally (bad network connection)
+David  14 Feb 2010
+    - client: include CPU usage of client in BOINC total.
+        Also include manager if its name includes "boinc"
+        (can't figure out another way)
 
     lib/
-        coproc.cpp,h
+        procinfo*.cpp
 
-Rom    21 Apr 2009
-    - WINBUILD: Update Project files for new layout.
-    
-    win_build/
-        boinc_cli_curl.vcproj
-        boinc_dll.vcproj
-        boinc_setup.vdproj (Deleted)
-        boinc_setup_auto.vdproj (Deleted)
-        boinc_ss.vcproj
-        boinccmd.vcproj
-        boincmgr_curl.vcproj
-        boincsvcctrl.vcproj
-        boinctray.vcproj
-        gr_boinc_cli_curl.vcproj (Deleted)
-        gr_boinc_dll.vcproj (Deleted)
-        gr_boinc_ss.vcproj (Deleted)
-        gr_boinccmd.vcproj (Deleted)
-        gr_boincmgr_curl.vcproj (Deleted)
-        GridRepublic.sln (Deleted)
-        libboinc.vcproj
-        libboinc_staticcrt.vcproj
-        sim.vcproj
-        ss_app.vcproj
-        updater.vcproj
-
-David  21 Apr 2009
-    - client: new approach to handling multiple GPUs.
-        old: find fastest GPU, and pretend that others are the same.
-            Problem: other GPUs might be less capable,
-            and not able to handle jobs sent by server.
-        new: find the most "capable" GPU, use others that are equivalent,
-            don't use those that are not.
-            "Capable" is defined by
-            - compute capability (i.e., hardware version)
-            - driver version
-            - memory size
-            - FLOPs
-            in that priority order.
-        See comments in lib/coproc.h
-
-    client/
-        app_start.cpp
-    lib/
-        coproc.cpp,h
-
-David  21 Apr 2009
-    - client: fix crash bug in CUDA init
-
-    lib/
-        coproc.cpp
-
-Rom    22 Apr 2009
-    - WINBUILD: More project file fixes
-    - WINBUILD: Create a new configuration for building the Unicode
-        version of the BOINC Manager.
-        
-    win_build
-        boinc_cli_curl.vcproj
-        boinc_dll.vcproj
-        boinc_ss.vcproj
-        boinccmd.vcproj
-        boincmgr_curl.vcproj
-        boincsvcctrl.vcproj
-        boinctray.vcproj
-        libboinc.vcproj
-        libboinc_staticcrt.vcproj
-        sim.vcproj
-        ss_app.vcproj
-        updater.vcproj
-
-Rom    22 Apr 2009
-    - WIN: First pass through the code to fix compliation errors when
-        building in a Unicode enabled environment.
-        
-        NOTE: For files that are shared between the core client and
-          the manager, it was simpliar to just call the ANSI versions
-          of the specific Windows API functions then to monkey with
-          all of the string handling code and convert between ANSI
-          and UCS-2 strings.  CreateFile becomes CreateFileA instead
-          of the default of CreateFileW.
-          
-        Down to 11 compile time errors from over 100.
+David  16 Feb 2010
+    - manager: first whack at "suspend if CPU load exceeds x" in dialog
 
     clientgui/
-        BOINCBaseFrame.cpp
-        BOINCTaskBar.cpp
-        browser.cpp
-        browser.h
-        sg_StatImageLoader.cpp
-    lib/
-        boinc_win.h
-        diagnostics_win.cpp
-        filesys.cpp
-        gui_rpc_client_ops.cpp
-        proc_control.cpp
-        stackwalker_imports.h
-        stackwalker_win.cpp
-        str_util.cpp
-        util.cpp
-        win_util.cpp, .h
+        DlgAdvPreferences*
 
-David  22 Apr 2009
-    - client: When a preemptable task wasn't preempted
-        (e.g. because it hadn't finished its time slice)
-        we were failing to mark it as scheduled.
+David  16 Feb 2010
+	- screensaver: fix bug where sometimes no tasks are shown;
+		change font sizes for max of 2 sizes at a time
 
-    client/
-        cpu_sched.cpp
-
-Rom    23 Apr 2009
-    - WINBUILD: More project file cleanup.
-    - WINBUILD: Move wxWidgets include directives from the
-        FlatNotebook to the pre-compiled header. Try and avoid
-        a compilation problems when two different sets of
-        wxWidgets build environments are on the system and have
-        been setup differently.
-        
-    clientgui/common/
-        wxFNBDropTarget.h
-    clientgui/
-        stdwx.h
-    win_build/
-        boincmgr_curl.vcproj
+	clientscr/
+		ss_app.cpp
 
-David  24 Apr 2009
-    - client: message tweak
-    - ops: don't import teams if using invitation codes
+David  18 Feb 2010
+    - client: don't accumulate LTD for projects w/ suspended jobs
 
     client/
         work_fetch.cpp
-    html/ops/
-        team_import.php
-
-David  24 Apr 2009
-    - client: tweak to 4/21 checkin.
-        After finding the "most capable" GPU,
-        ignore FLOPS in deciding what GPUs are equivalent to it.
-        This opens up the possibility that the client will get jobs
-        that it won't be able to finish in time.
-        But it still avoids getting jobs that will crash.
-
-    lib/
-        coproc.cpp
-
-David  24 Apr 2009
-    - fix typo in compare_cuda()
-
-    lib/
-        coproc.cpp
-
-David  26 Apr 2009
-    - team import: error out if account creation disabled
-
-    html/ops/
-        team_import.php
-
-David  27 Apr 2009
-    - link fix
-    html/inc/
-        stats_sites.inc
-
-David  27 Apr 2009
-    - client: show message when user does a project or task op
-        (suspend, resume, update, etc.)
-
-    client/
-        gui_rpc_server_ops.cpp
-
-David  27 Apr 2009
-    - client: add <use_all_gpus> config option.  If set, use GPUs
-        even if they're not equivalent to the most capable one.
-    - Validator: fix one_pass_N_WU option.
-
-    client/
-        client_state.cpp
-        log_flags.cpp,h
-    lib/
-        coproc.cpp,h
-    sched/
-        validator.cpp
-
-David  28 Apr 2009
-    - DB code: fixed three places where we accessed a MYSQL_ROW
-        after freeing the MYSQL_RES it came from.
-        (this didn't appear to cause any problems, but not good form).
-        Fixes #883
-
-    db/
-        db_base.cpp
-
-David  30 Apr 2009
-    - Changes to get the client to build on IRIX:
-        don't use the variable name "sgi";
-        include <xxx.h> instead of <cxxx>; the latter just adds
-        overloaded functions that we avoid.
-
-    api/
-        gutil.cpp
-        gutil_text.cpp
-    client/
-        boinc_cmd.cpp
-        hostinfo_unix.cpp
-        whetstone.cpp
-    html/inc/
-        stats_sites.inc
-    lib/
-        diagnostics.h
-        gui_rpc_client_ops.cpp
-        str_util.cpp
-
-Rom    30 Apr 2009
-    - MGR: Turn GetViewName into the unlocalized version of the view
-        name, so the configuration group name is consistant across
-        all languages and does not cause conversion issues on
-        different platforms where the configuration information
-        is treated differently when compiled Unicode vs. ANSI.
-        
-    clientgui/
-        ViewMessages.cpp
-        ViewNews.cpp
-        ViewProjects.cpp
-        ViewResources.cpp
-        ViewStatistics.cpp
-        ViewTransfers.cpp
-        ViewWork.cpp
-
-David  1 May 2009
-    - removed outdated translation files; updated template
-
-David  1 May 2009
-    - sample bitwise validator: make it work for binary files
-        fixes #886, #887
-
-    lib/
-        md5_file.h
-        util.cpp,h
-    sched/
-        sample_bitwise_validator.cpp
-
-Rytis  3 May 2009
-    - user web: add a hook project_user_links() to user_links() to easily
-        extend user links (very useful for adding project badges).
-    
-    html/inc/
-        util.inc
-
-David  4 May 2009
-    - client: view 2 GPUs as equivalent if their memory differs by <30%.
-        (maybe their memory differed slightly from the most capable one)
-
-    lib/
-        coproc.cpp
-
-David  4 May 2009
-    - client: simplify enforce_schedule(), and maybe fix bugs.
-        New approach: take the "ordered_schedule_results" list,
-        add running jobs that haven't finished their time slice,
-        and order the result appropriately.
-        Then run jobs in order until CPUs are filled.
-        Simpler and clearer than the old way.
-
-    client/
-        client_types.h
-        client_state.h
-        cpu_sched.cpp
-
-David  5 May 2009
-    - client: enforce_schedule() wasn't starting GPU jobs
-
-    client/
-        cpu_sched.cpp
-
-David  5 May 2009
-    - Change Makefiles to use "$(LN) foo ." instead of "ln foo"
-
-    zip/
-        Makefile.am
-    api/
-        Makefile.am
-
-Rom    5 May 2009
-    - It appears Pootle is looking for a comment line ahead of
-        each message to translate, if it doesn't have some form
-        of comment it skips over it.
-        
-    doc/
-        build_po.php
-
-Charlie 5 May 2009
-    Mac: Modify wxWidgets build script to fix a problem in wxMac-2.8.10 
-        which made the Manager extremely slow to update or respond to 
-        user input, by patching wxMac-2.8.10/src/mac/carbon/thread.cpp.
-        wxMac developer Stefan Csomor has checked my change into the 
-        wxWidgets 2.8 branch, so this should be fixed in wxMac-2.8.11.
-
-    mac_build/
-        buildWxMac.sh
-
-Charlie 5 May 2009
-    MGR: Add comments and slightly reorder code for clarity.
-
-    clientgui/
-        AsyncRPC.cpp
-
-David  6 May 2009
-    - client: write message (and show new config info) when config file reread
-    - client: improve cpu_sched_debug messages
-    - web translation: code wasn't handling multi-line tokens
-
-    client/
-        gui_rpc_server_ops.cpp
-        cpu_sched.cpp
-
-David  6 May 2009
-    - feeder: add -appids option: lets you specify which apps to
-        get jobs for (default it all).
-        Useful if you're mixing locality and regular scheduling.
-    - a little E at h-specific stuff
-    From Bernd Machenschalk.
-
-    sched/
-        feeder.cpp
-        handle_request.cpp
-        sched_send.cpp
-
-David  7 May 2009
-    - client, Mac: don't do res_init().  It causes a crash.
-    - client (Unix): if client crashes while benchmark processes are going,
-        make sure they detect this and exit.
-    - back-end programs: remove hardwired assumptions about
-        what directory they run in, and hence where config.xml is.
-        E.g., daemons look for it in "..", others expect it in current dir.
-        New approach: all the programs look for the project dir as follows:
-        1) the environment var BOINC_PROJECT_DIR, if defined
-        2) the current dir, if config.xml is there.
-        3) else ".."
-        This means you can run programs in either proj/bin/ or proj/,
-        or (using BOINC_PROJECT_DIR) you can keep executables
-        outside of the project dir.
-
-    client/
-        cpu_sched.cpp
-        cs_benchmark.cpp
-    lib/
-        network.cpp
-    sched/
-        *.cpp
-    tools/
-        backend_lib.cpp
-        create_work.cpp
-        dir_hier_path.cpp
-
-Bernd 7 May 2009
-    - <cstdio> is a C++ haeder - moved it to __cplusplus section
-    lib/
-        filesys.h
-
-Rytis  7 May 2009
-    - user web: remove an undocumented feature where anyone could do a
-        recompile of language files by just knowing an URL parameter.
-    
-    hmtl/inc/
-        translation.inc
-
-Charlie 7 May 2009
-    - Mac: Remove -lresolv from XCode linker flags for client, manager, boinccmd 
-        and screensaver which linked with libresolv.dylib for res_init() call.
-    - Mac client: fix parent died test in benchmark_time_to_stop().
-
-    client/
-        cs_benchmark.cpp
-    mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
-
-Rom    8 May 2009
-    - WINBUILD: Cleanup the Unicode configurations
-    - WINBUILD: Make building Unicode version of BOINC Manager the
-        default.
-        
-    win_build
-        boinc_cli.vcproj
-        boinc_dll.vcproj
-        boinc_ss.vcproj
-        boinccmd.vcproj
-        boincmgr.vcproj
-        boincsvcctrl.vcproj
-        boinctray.vcproj
-        libboinc.vcproj
-        libboinc_staticcrt.vcproj
-        sim.vcproj
-        ss_app.vcproj
-        updater.vcproj
-        
-
-David  9 May 2009
-    - update translation file
-
-    locale/templates/
-        BOINC-Project-Generic.pot
-
-Rom    12 May 2009
-    - MGR: Include support for Firefox 3.x cookie support for
-        the attach to project wizard.
-    - MGR: Include support for a cookie based attach to
-        account manager wizard.
-        
-    clientgui/
-        browser.cpp, .h
-    clientgui/mac/
-        browser_safari.mm
-    win_build/
-        boinc_post_bld_rules.cmd
-        boincmgr.vcproj
-
-Rom    12 May 2009
-    - WINBUILD: Have the new installers include the new BOINC OpenGL
-        based screensaver, as well as the logo and font files.
-    - WINBUILD: Include sqlite3.dll in the BOINC Manager component.
-    
-    win_build/installerv2/
-        BOINC.ism
-        BOINCx64.ism
-    win_build/
-        ss_app.vcproj
-
-David  12 May 2009
-    - file deleter: improved log messages (from Bernd M)
 
-    sched/
-        file_deleter.cpp
+David  18 Feb 2010
+	- API: in txfRenderString, replace non-ASCII chars with ?.
+		Otherwise it calls abort()!
 
-David  12 May 2009
-    - scheduler: the multiplier for both #jobs/day and #jobs in progress
-        is #CPUs + config.cuda_multiplier * #GPUs
+	api/
+		texfont.cpp
 
-    sched/
-        sched_send.cpp
+David  18 Feb 2010
+	- client: fix bug in "suspend if CPU load too high" feature.
+		Forgot to convert between fraction and percentage
 
-Charlie 13 May 2009
-    - Mac MGR: Fix compile error.
-    - Mac MGR: Add -lsqlite3 to XCode linker flags for manager.
+	client/
+		app.cpp
+		cs_prefs.cpp
+		log_flags.cpp
 
-    clientgui/
-        mac/
-            browser_safari.mm
-    mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
-
-Charlie 13 May 2009
-    - MGR: Merge "Attach to account manager" functionality into "Attach to 
-        project" wizard.  I have not yet merged the Synchronize with account 
-        Manager" or "Remove from account manager" into the "Attach to project" 
-        wizard; after doing that I will remove the obsolete classes and files.
-        
-    clientgui/
-        AccountInfoPage.cpp
-        AccountManagerProcessingPage.cpp
-        AccountManagerPropertiesPage.cpp
-        BOINCBaseWizard.cpp, .h
-        BOINCWizards.h
-        WelcomePage.cpp, .h
-        WizardAttachProject.cpp, .h
-    lib/
-        gui_rpc_client_ops.cpp
-
-David  13 May 2009
-    - web: make build_po.php usable for projects
-
-    html/ops/
-        build_po.php
-
-Charlie 13 May 2009
-    - MGR: Always treat quit RPCs as non-demand so Manager can exit when 
-        client is not responding; don't remove currently active RPC request 
-        from queue when receiving a quit RPC request.
-    
-    clientgui/
-        AsyncRPC.cpp
-
-David  14 May 2009
-    - scheduler: add <report_max> config parameter;
-        limits the # of completed results handled per scheduler RPC.
-        This may be needed to avoid crashes due to memory allocation
-        failure (each reported result uses about 128KB memory).
-    - web: In showing result lists,
-        include "Validate error" results in the "Invalid" category.
-        (Previously they didn't appear in any category)
-
-    html/inc/
-        result.inc
-    sched/
-        sched_config.cpp,h
-        sched_result.cpp
-
-David  14 May 2009
-    - web: check for mismatched "'s in translation files
-    - build_po.php: add LANG_NAME strings
-
-    html/
-        inc/
-            translation.inc
-        ops/
-            build_po.php
-
-Charlie 15 May 2009
-    Fix compiler warning.
-
-    lib/
-        util.cpp
-
-Charlie 15 May 2009
-    - MGR: Finish merging "Attach to account manager" functionality into "Attach 
-        to project" wizard: "Synchronize with account Manager" and "Remove from 
-        account manager." Remove the obsolete classes and files.
-        NOTE: The "Remove from account manager" functionality in the wizard 
-        (action == ACCOUNTMANAGER_DETACH) was no longer used, so I removed this 
-        block of code.
-        
-    clientgui/
-        AccountInfoPage.cpp
-        AccountManagerProcessingPage.cpp
-        AccountManagerPropertiesPage.cpp
-        AdvancedFrame.cpp, .h
-        BOINCBaseWizard.cpp, .h
-        BOINCWizards.h
-        CompletionPage.cpp
-        Events.h
-        Makefile.am
-        sg_BoincSimpleGUI.cpp
-        sg_ProjectsComponent.cpp
-        WelcomePage.cpp
-        WizardAccountManager.h
-        WizardAttachProject.cpp, .h
-        WizardAccountManager.cpp, .h (Deleted)
-    mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
-    win_build/
-        boincmgr.vcproj
-
-Charlie 15 May 2009
-    - MGR: Update m_dtCachedCCStatusTimestamp only when RPC completes.
-    - MGR: CBOINCClientManager::IsBOINCCoreRunning() tests whether the Client 
-        process exists, rather than doing an RPC.  We can't use an async RPC 
-        here because we may not yet be connected to the Client, and the direct
-        RPC which was being done would hang the Manager if the Client was 
-        running but not responding.  This should fix some of the situations 
-        where the manager would become unresponsive.
-    - MGR: Add an "Exit BOINC" button ("Quit BOINC" on Mac) to async RPC 
-        "Communicating with BOINC Client. Please wait..." dialog.  This allows 
-        users to exit BOINC more easily when Client is unresponsive.
-    
-    clientgui/
-        AsyncRPC.cpp, .h
-        BOINCClientManager.cpp
-        MainDocument.cpp
+Rom    2 Feb 2010
+    - Tag for 6.10.34 release, all platforms
+      boinc_core_release_6_10_34
 
-David  15 May 2009
-    - scheduler: enforce max_wus_to_send config parameter
-        for jobs being resent (as well as new jobs)
-
-    sched/
-        sched_resend.cpp
+    /
+        configure.ac
+        version.h
 
-Charlie 16 May 2009
-    - MGR: Fix bug which prevented skin change from being saved if exiting Manager 
-        while in Simple View.
+Charlie  24 Feb 2010
+    - Mac Installer: add missing .txt extension to copyright files in 
+        installer build script.
 
-    clientgui/
-        BOINCGUIApp.cpp
-
-David  17 May 2009
-    - web: fix formatting in [pre].  Fixes #891
-
-    html/inc
-        text_transform.inc
-
-David  17 May 2009
-    - upgrade: don't crash if file copy fails
-    - db_update.php: select database (not clear if this ever worked)
-    - translation: fix bug if have both BOINC and project translation
-
-    html/
-        inc/
-            boinc_db.inc
-            translation.inc
-        ops/
-            update_translations.php
-            db_update.php
-    py/Boinc
-        setup_project.py
-
-David  17 May 2009
-    - web: use read-only replica when possible
-
-    html/user/
-        pending.php
-        results.php
-        show_host_detail.php
-        workunit.php
-
-Rom    18 May 2009
-    - MGR: Take care of numerious compiler warning for Linux builds
-        and update license information on a bunch of files.
-        
-    clientgui/res/
-        <Numberious Files>
-    win_build/
-        boincmgr.vcproj
-
-Charlie 20 May 2009
-    - Mac: Fix build scripts for new screensaver.
-    
     mac_installer/
-        release_GridRepublic.sh
         release_boinc.sh
 
-David  20 May 2009
-    - web: in RSS feeds, replace images with [Image link]
-        but allow other tags (like <a>).
-        Note: if the image is itself inside a <a href=x>,
-        then the [Image link] will be linked to x, not to the image.
-
-    html/
-        inc/
-            text_transform.inc
-        user/
-            sample_rss_main.php
-
-Rom    20 May 2009
-    - MGR: Fix bug where *nix platforms using UCS2 Unicode encoding
-        were not able to display graphics as one or more null bytes
-        seperate each character.
+Charlie  25 Feb 2010
+    - MGR: Fix a long-standing bug that made sizers fail on Mac for Advanced 
+        Preferences dialog: I added bSizer1->Fit(this) to end of constructor. 
+        To work around this bug, the dialog had been made resizeable and the 
+        height and width were saved in the Manager settings.  But this meant 
+        that when we add an item to the dialog, it is too small until the 
+        user expands it.  And Modal dialogs like this should not be resizeable.
+        I also made the dialog no longer resizeable by the user.
+        Remove second "between" in "Switch between applications between every".
         
     clientgui/
-        MainDocument.cpp
+        DlgAdvPreferences.cpp
+        DlgAdvPreferencesBase.cpp, .h
 
-Rom    20 May 2009
-    - MGR: Fix bug where there was no trailing backslash before
-        'symbols' was appended to the end of the symbol path.  This
-        caused the stack tracing code not to download the actual
-        symbol files needed to debug a problem.  I have no idea
-        when this bug was introduced.
+Rom    25 Feb 2010
+    - WIN: Add some missing CPU features to the feature list
+    - WIN: Make sure the Brand string for a CPU is printable. Older Intel
+        processors have some control characters.
         
-    lib/
-        stackwalker_win.cpp
-
-David  20 May 2009
-    - web: the logic for using read-only DB replicas was messed up
-
-    html/inc/
-        boinc_db.inc
-
-Rom    22 May 2009
-    - MGR/client: Enable cookie support for Account Managers
-
     client/
-        gui_rpc_server_ops.cpp
-    clientgui/
-        AccountManagerProcessingPage.cpp
-        AccountManagerPropertiesPage.cpp
-        browser.cpp
-        MainDocument.cpp
-        WizardAttachProject.cpp
-
-Rom    20 May 2009
-    - Tag for 6.7.5 release, all platforms
-      boinc_core_release_6_7_5
-
-    /
-        configure.ac
-        version.h
-    
-David  22 May 2009
-    - web: escape forum RSS entries instead of stripping tags
-        (from Nicolas; fixes #899)
-
-    html/user/
-        forum_rss.php
-
-David  22 May 2009
-    - web: clarify build_po.php
-
-    html/ops/
-        build_po.php
-        build_po_boinc.php (new)
-
-David  22 May 2009
-    - web: fix host-merge logic.  Fixes #893
-
-    html/inc
-        host.inc
-
-David  22 May 2009
-    - fix display problem when talking to old clients
-
-    lib/
-        gui_rpc_client_ops.cpp
-
-David  25 May 2009
-    - web: fix regular expression for "images as links"
-
-    html/inc/
-        text_transform.inc
-
-David  26 May 2009
-    - DB: for tables w/ fulltext indices, specify engine as MyISAM
-        from Nicolas; fixes #904
-
-    db/
-        schema.sql
-
-David  26 May 2009
-    - Mac installer: fix off-by-1 error
-
-    mac_installer/
-        CustomInstall.cpp
-
-David  27 May 2009
-    - lib: compile fix for C
-
-    lib/
-        filesys.h
-
-David  27 May 2009
-    - compile fixes for Haiku
-
-    lib/
-        network.h
-        gui_rpc_client.h
-        diagnostics.cpp
-        shmem.cpp,h
-    zip/unzip/unix/
-        unix.c
-
-David  27 May 2009
-    - compile fixes for Haiku
-
-    lib/
-        shmem.cpp
-
-David  28 May 2009
-    - scheduler: return better message if client has
-        too little GPU RAM, wrong driver version, etc.
-        (tell them what the specific requirement is)
-
-    sched/
-        sched_plan.cpp,h
-        sched_version.cpp
-
-David  28 May 2009
-    - client: fixed nasty bug that caused GPU jobs to crash on startup
-        when they're preempting another GPU job.
-        The problem was as follows:
-        - job A is chosen to preempt job B
-        - we tell job B to quit, and initialize job A but don't start it;
-            however, we set if scheduler state to SCHEDULED
-            (rather than UNINITIALIZED)
-        - job B exits, and we start job A.
-            Since its state is not UNITIALIZED, we don't set up its slot dir.
-        - job A runs in an empty slot dir, doesn't find its files, and bombs out.
-    - client: add <slot_debug> option (prints messages about
-        allocation of slots, creating/removing files in slot dirs).
-
-    client/
-        app.cpp,h
-        app_control.cpp
-        app_start.cpp
-        cpu_sched.cpp
-        file_names.cpp
-        sandbox.cpp,.h
-        sim_util.cpp
-    clientgui/
-        ViewWork.cpp
-
-Charlie 28 May 2009
-    - Mac MGR: Eliminate erroneous references to wxMac-2.8.7 in XCode (now 
-        building with wxMac-2.8.10).
-
-    mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
-
-Charlie 28 May 2009
-    SS: Add new optional boolean xml tag <default_ss_first>; if true, then launch 
-        default screensaver graphics app first, else run science graphics first.
-
-    clientscr/
-        screensaver.cpp, .h
-        Mac_Saver_Module.h
-        screensaver_win.h
+        hostinfo_win.cpp
 
-Rom    29 May 2009
-    - Change version number to 6.9.x
+Rom    25 Feb 2010
+    - Tag for 6.10.35 release, all platforms
+      boinc_core_release_6_10_35
 
     /
         configure.ac
         version.h
 
-David  29 May 2009
-    - updated python assimilator
-
-    sched/
-        assimilator.py
-
-David  31 May 2009
-    - lib: return proper error codes from boinc_rename() and boinc_mkdir()
-    - client: Haiku support (from Urias McCullough)
-    - client: include plan class in other_result list in sched request
-        (for resource-specific jobs-in-progress limit)
+Charlie  26 Feb 2010
+    - MGR: Save and restore height and width of Properties dialog; fix comments.
 
-    client/
-        cs_scheduler.cpp
-        hostinfo_unix.cpp
-    lib/
-        filesys.cpp
-
-David  1 June 2009
-    - scheduler: add new config option <max_wus_in_progress_gpus>.
-        The limit on jobs in progress is now
-            max_wus_in_progress * NCPUS
-            + max_wus_in_progress * NGPUS
-        where NCPUS and NGPUS reflect prefs and are capped.
-        Furthermore: if the client reports plan class for in-progress jobs
-        (see checkin of 31 May 2009)
-        then these limits are enforced separately;
-        i.e. the # of in-progress CPU jobs is <= max_wus_in_progress*NCPUS,
-        and the # of in-progress GPU jobs is <= max_wus_in_progress_gpu*NGPUS
-    - scheduler config: rename <cuda_multiplier> to <gpu_multiplier>
-    - scheduler: <max_wus_to_send> is now scaled by
-        (NCPUS + gpu_multiplier*NGPUS)
-    - scheduler: don't keep scanning array if !work_needed()
-    - scheduler: moved array-scan logic from sched_send.cpp to sched_array.cpp
-    - scheduler: don't say "no work available" if jobs are available
-        but work_needed() is initially false
-
-    sched/
-        handle_request.cpp
-        sched_array.cpp,h
-        sched_config.cpp,h
-        sched_plan.cpp,h
-        sched_resend.cpp
-        sched_score.cpp
-        sched_send.cpp,h
-        server_types.cpp,h
-
-David  1 June 2009
-    - feeder: process array slots even if enum has ended;
-        this is needed to handle stale entries and slots
-        reserved by now-dead PIDs
-    - client: unify code for writing soft link files
-
-    client/
-        app_start.cpp
-        client_types.cpp
-        file_names.cpp,h
-    sched/
-        feeder.cpp
-        main.cpp
-
-Charlie 1 June 2009
-    - Mac MGR: Fix per-thread-locale logic on Mac.
-    - MGR: In Async RPC logic, change calling order for wxCondition and 
-        wxMutex from <Set Boolean, Lock, Unlock, Signal> to <Lock, 
-        Set Boolean, Signal, Unlock> to be consistent with examples in 
-        literature, hoping this might fix an intermittent hang in 
-        wxCondition::Wait().
-    - Mac MGR: Mac OS 10.3.9 does not have sqlite3, so we must weak-link.
-    
     clientgui/
-        AsyncRPC.cpp
-        browser.cpp
-
-David  1 June 2009
-    - python DB code: add clear cache method, and fix equality crash
-        (from Jeremy Cowles)
-
-    py/Boinc/
-        boinc_db.py
-
-David  1 June 2009
-    - client: if scheduler request didn't request work, don't report 0 tasks
-    - scheduler: fix crash if anonymous platform
-
-    client/
-        cs_scheduler.cpp
-    sched/
-        sched_send.cpp
+        DlgAdvPreferences.cpp
+        DlgItemProperties.cpp, .h
 
-David  1 June 2009
-    - Updated Python assimilator (from Jeremy Cowles)
+David  26 Feb 2009
+	- client: if suspend a file xfer, set upload_offset to -1;
+		that way it will query server for file length when it resumes,
+		rather than uploading from the beginning
 
-    sched/
-        assimilator.py
-        testasm.py
+	client/
+		file_xfer.cpp
+		pers_file_xfer.cpp
 
-David  2 June 2009
-    - client: show "est. delay" correctly in work fetch debug msgs
-    - client: show times correctly in rr_sim debug msgs
-    - client: in "requesting new tasks" msg,
-        say what resources we're requesting (if there's more than CPU)
-    - client: estimated delay was possibly being calculated incorrectly
-        because of roundoff error
+David  27 Feb 2009
+    - client: if have coproc jobs but coproc is missing,
+        skip those jobs in RR sim.
+        Otherwise we add stuff to uninitialized data structures,
+        and a crash can result.
+    - client: initialize the above data structures anyway
 
     client/
-        cs_scheduler.cpp
-        rr_sim.cpp
-        scheduler_op.cpp
         work_fetch.cpp
+        rr_sim.cpp
 
-David  2 June 2009
-    - client: add a 1e-6 slop factor in deciding if
-        a resource is fully utilized.
+David  27 Feb 2009
+    - client: fix bug that interfered with work fetch
+        for particular resources in anonymous platform case.
 
     client/
         work_fetch.cpp
-    sched/
-        file_upload_handler.cpp
-
-Charlie 2 June 2009
-    - MGR: cosmetic changes to combined attach wizard, partial fix 
-        to "Forgot password" link for account managers.
-        
-    clientgui/
-        AccountInfoPage.cpp
-        AccountManagerInfoPage.cpp
-        ProjecttInfoPage.cpp
-        ProjectListCtrl.cpp, .h
-        WelcomePage.cpp
-
-Charlie 3 June 2009
-    - MGR: finish changes to combined attach wizard, change "Forgot 
-        password" link for account managers to a link to AM's home 
-        page, add static text that you must register at web site 
-        before proceeding or go to web site for forgotten password.
-        
-    clientgui/
-        AccountInfoPage.cpp, .h
-        BOINCWizards.h
-
-David  3 June 2009
-    - client: include device number in message describing NVIDIA GPU,
-        and call it "NVIDIA GPU" rather than "CUDA device"
-        fixes #879
-
-    lib/
-        coproc.cpp
-
-David  3 June 2009
-    - web: align field name/value at top
-
-    html/user/
-        main.css
-
-David  3 June 2009
-    - make update_translations.php executable; fixes #770
-
-    html/ops/
-        update_translations.php
-    tools/
-        make_project
-        upgrade 
-
-David  3 June 2009
-    - client: tweak messages
-
-    client/
-        client_types.cpp
-        cs_scheduler.cpp
-        cs_statefile.cpp
-
-David  3 June 2009
-    - fix python scripts; fixes #770 (from Nicolas)
-
-    tools/
-        make_project
-        upgrade
-
-David  3 June 2009
-    - client: when parsing app_info.xml, make sure coprocessors are present.
-        fixes #911
-
-    client/
-        cs_statefile.cpp
-
-David  3 June 2009
-    - web: make [pre] work similar to [code].  fixes #798
-        Note: I had to move [pre] to the top of the
-        preg list to make this work.  Not sure why.
-
-    html/
-        inc/
-            text_transform.inc
-        user/
-            main.css
-
-Charlie 3 June 2009
-    - GR Installer: Update make_GridRepublic.sh script for new default 
-        screensaver.
-        
-    mac_installer/
-        make_GridRepublic.sh
-
-Charlie 3 June 2009
-    - client: Fix missing argument in printf statements.
-    
-    lib/
-        coproc.cpp,h
-
-David  3 June 2009
-    - fix to the above
-
-    lib/
-        coproc.cpp,h
-
-Rom    3 June 2009
-    - MGR: Accept Unicode input for usernames and password in the
-        manager now that the manager is Unicode enabled.  Input will
-        show up as UTF-8 strings in the CC and project.
-        
-        Fixes #452
-        
-    clientgui/
-        AccountInfoPage.cpp
-        AccountManagerInfoPage.cpp
-        ProjectInfoPage.cpp
-
-Rom    4 June 2009
-    - MGR: Fix bug in browser cookie detection code where firefox v3
-        cookie detection was returning true even for cookies that don't
-        exist.
-        
-    clientgui/
-        browser.cpp, .h
-
-Rom    4 June 2009
-    - MGR: Add some basic validation for account manager cookie detection.
-        
-    clientgui/
-        browser.cpp
-
-David  4 June 2009
-    - web: typo in filtered results (from R. Haselgrove)
-
-    html/inc/
-        result.inc
-
-David  4 June 2009
-    - web: improve appearance of results page
-
-    html/user/
-        results.php
-
-David  4 June 2009
-    - GUI RPC: add active_only option to get_results() RPC
-
-    client/
-        client_state.h
-        cs_statefile.cpp
-        gui_rpc_server_ops.cpp
-    lib/
-        gui_rpc_client.h
-        gui_rpc_client_ops.cpp
-
-David  4 June 2009
-    - client: read app_info.xml's AFTER scanning GPUs.
-        Otherwise we'll discard all GPU apps and results.
-
-    client/
-        client_state.cpp
-
-David  4 June 2009
-    - lib: fix compile warning
-
-    lib/
-        crypt.cpp
-
-Charlie 4 June 2009
-    - MGR: Fix compile errors.
-    - MGR: Remove authenticator validity test from detect_cookie_safari() since 
-        it is now used for additional cookies; this had already been done for 
-        other browsers.
-
-    clientgui/
-        browser.cpp, .h
-        mac/
-            browser_safari.mm
-
-Charlie 5 June 2009
-    - MGR: CBOINCClientManager::ProcessExists() finds the process by name if 
-        we don't have a pid (Mac, Linux) or process HANDLE (Windows).  On Mac
-      and Linux, it returns the pid if the process was found.
-    
-    clientgui/
-        BOINCClientManager.cpp, .h
-    win_build/
-        boincmgr.vcproj
-
-David  5 June 2009
-    - scheduler: improve example app plan function for multithread
-
-    sched/
-        sched_plan.cpp,h
-
-Charlie 5 June 2009
-    - MGR: Use code like get_client_mutex() to determine if client is running.  
-        New CBOINCClientManager::KillClient() uses process name to kill client 
-        if we don't have a pid (Mac, Linux) or process HANDLE (Windows).  
-        NOTE: Windows implementation not yet finished.
-    
-    clientgui/
-        BOINCClientManager.cpp, .h
-
-Charlie 5 June 2009
-    - MGR: Implement CBOINCClientManager::KillClient() and IsBOINCRunning() 
-        for Windows.
-        NOTE: I have confirmed that the "ps -a -x -c -o command,pid" command
-        as used in IsBOINCRunning() should works in Ubuntu under VMWare, but 
-        it needs to be tested on other Linux platforms.
-        
-    clientgui/
-        BOINCClientManager.cpp, .h
-    win_build/
-        boincmgr.vcproj
-
-Charlie 5 June 2009
-    - lib: Fix FILE_LOCK::unlock() to reset fd to -1 so FILE_LOCK works 
-        correctly with repeated calls.
 
-    lib/
-        filesys.cpp
-
-Charlie 8 June 2009
-    - lib: Fix compiler error on Windows.
-
-    lib/
-        filesys.cpp
-
-David  8 June 2009
-    - GUI RPC: include hostid in PROJECT
-    - web: include timed-out and "client detached" results in error category
-
-    html/inc/
-        result.inc
-    lib/
-        gui_rpc_client.h
-        gui_rpc_client_ops.cpp
-
-David  8 June 2009
-    - Manager: show host ID in project properties
-
-    clientgui/
-        DltItemProperties.cpp
-
-Charlie 8 June 2009
-    - Mac MGR: In Async RPC logic, use posix mutexes and conditions instead 
-        of wxWidgets implementations on the Mac, as this appears to fix an 
-        intermittent hang in wxCondition::Wait().
-    
-    clientgui/
-        AsyncRPC.cpp, .h
-        MainDocument.cpp. .h
-
-Rom    9 June 2009
-    - DIAG: Policy change: Only include the BOINC symbol store for BOINC
-        binaries.  The old policy was kept around as a backwards compatibility
-        thing before a new flag was added to the diagnostics to identify
-        project applications.
-        
-    lib/
-        stackwalker_win.cpp
-
-Charlie 9 June 2009
-    - lib: FILE_LOCK::lock() makes lockfile group-writable so both client and 
-        manager can create and write it under sandbox security.
-
-    lib/
-        filesys.cpp
-
-Charlie 10 June 2009
-    - Mac screensaver: Add support for ProgressThruProcessors (PTP) branding.
-    - Mac PTP Installer: Add support for ProgressThruProcessors (PTP) installer.
-
-    clientscr/
-        mac_saver_module.cpp
-    mac_installer/
-        PostInstall.cpp
-        uninstall.cpp
-
-David  10 June 2009
-    - file deleter: detect cases where the upload/download dir doesn't exist,
-        and treat it as a recoverable error (i.e., retry).
-        The file deleter may run on a host that NSF-mounts
-        the upload/download dirs, and NSF mounts can file.
-    - scheduler: include WU#ID in log msgs for handled results
-
-    sched/
-        file_deleter.cpp
-        sched_config.cpp
-        sched_result.cpp
-
-David  10 June 2009
-    - web: allow projects to ban email addresses in certain domains.
-        Add the following to html/project/project.inc:
-
-        $banned_email_domains = array(
-            "foo.bar",
-            "blah"
-        );
-
-        Email addresses ending with any of those strings will be disallowed.
-    - Web RPCs: have am_set_info.php and create_account.php
-        do the same checking for email addresses (invalid, banned)
-        as the other web code
-
-    html/
-        inc/
-            user.inc
-        user/
-            am_set_info.php
-            create_account.php
-            edit_email_form.php
-            edit_email_action.php
-
-David  10 June 2009
-    - update_versions: add --sign and --force options to enable automation
-        (from Jeremy Cowles)
-
-    tools/
-        update_versions
-
-David  10 June 2009
-    - make_project and upgrade: add --srcdir option so you
-        can run these commands from any directory
-        (mostly from Gabor Gombas; added a fix for svnversion)
-
-    configure.ac
-    py/Boinc/
-        boinc_path_config.py.in
-        database.py
-        setup_project.py
-    test/
-        testbase.py
-    tools/
-        make_project
-        upgrade
-
-David  10 June 2009
-    - web: don't show user ID next to posts
-    - web: fix [pre] bbcode
-
-    html/
-        inc/
-            text_transform.inc
-            forum.inc
-        user/
-            show_coproc.cpp
-            main.css
-
-Charlie 10 June 2009
-    - MGR: use branded Manager name in async RPC Please Wait dialog.
-    
-    clientgui/
-        AsyncRPC.cpp
-
-Charlie 10 June 2009
-    - Mac screensaver: Change "ProgressThruProcessors" to "Progress Thru Processors".
-    - Mac PTP Installer: Change "ProgressThruProcessors" to 
-        "Progress Thru Processors"
-        New script to convert BOINC installer to Progress Thru Processors installer.
-
-    clientscr/
-        mac_saver_module.cpp
-    mac_installer/
-        make_ProgThruProc.sh (added)
-        PostInstall.cpp
-        uninstall.cpp
+Rom    1 Mar 2010
+    - Tag for 6.10.36 release, all platforms
+      boinc_core_release_6_10_36
 
-Charlie 11 June 2009
-    Mac: Fix script to properly handle UTF-16 encoded InfoPlist.strings files.
-    Mac: Update copyright date in InfoPlist.strings files to 2009.
-
-    clientgui/
-        mac/
-            SetVersion.cpp
-    mac_installer/
-        make_ProgThruProc.sh
-
-David  11 June 2009
-    - server: move python modules from PROJECT/bin to PROJECT/py/Boinc.
-        make_project now generates PROJECT/bin/boinc_path_config.py
-        to ensure that the interpreter will find the modules.
-        From Gabor Gombas.
-
-    py/Boinc/
-        setup_project.py
-    sched/
-        start
-        testasm.py
-        assimilator.py
-    tools/
-        parse_config
-        xadd
-        update_versions
-
-David  11 June 2009
-    - server: Use distutils for installing the python modules,
-        and move files not part of the BOINC package from py/Boinc to py/
-        From Gabor Gombas.
-
-    configure.ac
-    py/
-        Makefile.am
-        boinc_path_config.py.in (moved here)
-        db_def_to_py (moved here)
-
-David  11 June 2009
-    - server: make the python code honor BOINC_PROJECT_PATH.
-        It is now possible to use the same set of tools for multiple
-        projects by setting BOINC_PROJECT_PATH.
-        From Gabor Gombas.
-
-    py/Boinc/
-        boinc_project_path.py
-    tools/
-        parse_config
-        update_versions
-    sched/
-        start
-        assimilator.py
-
-David  11 June 2009
-    - server: 'start' now looks for programs to execute in $PATH,
-        so the same set of binaries can be used to handle multiple projects.
-        <projectroot>/bin is always prepended to $PATH
-        to ensure that project-specific binaries always take precedence.
-        From Gabor Gombas.
-
-    sched/
-        start
-
-David  11 June 2009
-    - server: Tools that should run by hand are installed under $(bindir).
-        Daemons that are managed by 'start' go to $(libexecdir)/sched.
-        The (F)CGI stuff goes to $(libexecdir)/cgi-bin.
-        Finally, example applications go under $(libexecdir)/examples.
-
-    apps/
-        Makefile.am
-    sched/
-        Makefile.am
-    tools/
-        Makefile.am
-
-Rom    11 June 2009
-    PTP: Introduce 'Progress Thru Processors' to the Windows build
-      environment. Use GridRepublic skin until the new one is available.
-      
-    client/win/
-        boinc_cli.rc
-        boinc_cmd.rc
-    client/win/res/
-        progress.ico (Added)
-    clientctrl/
-        boincsvcctrl.rc
-    clientgui/
-        BOINCGUIApp.rc
-    clientgui/res/
-        progress.ico (Added)
-    clientgui/skins/Progress Thru Processors
-        <Various Files>
-    clientlib/win/
-        boinc_dll.rc
-    clientscr/
-        boinc_ss.rc
-    clientscr/res/
-        boinc.jpg (Deleted)
-    clientscr/res/
-        progress.bmp (Added)
-        progress.ico (Added)
-        Scricon3.ico (Deleted)
-    clienttray/
-        boinc_tray.rc
-    win_build/
-        Progress.sln
-        ptp_boinc_cli.vcproj
-        ptp_boinc_dll.vcproj
-        ptp_boinc_ss.vcproj
-        ptp_boinccmd.vcproj
-        ptp_boincmgr.vcproj
-        ptp_boincsvcctrl.vcproj
-        ptp_boinctray.vcproj
-
-Rom    11 June 2009
-    PTP: Add the 'Progress Thru Processors' screensaver to the
-      source tree.
-      
-    clientscr/progress
-        <Added Various Files>
-
-David  11 June 2009
-    - server: suppress verbosity of update_translations
-        in make_project and upgrade
-
-    html/ops/
-        update_translations.php
-    tools/
-        make_project
-        upgrade
-
-Rom    11 June 2009
-    - SCR: Update default values per BOINC defaults.
-    - PTP: Add files needed by the installer(s).
-    
-    clientscr/progress/
-        <Added and Deleted various files>
-    clientscr/
-        screensaver.h
-    win_build/installerv2/
-        Progress.ism
-        Progressx64.ism
-    win_build/installerv2/redist/0409/
-        ptp-eula.rtf
-    win_build/installerv2/redist/Progress/
-        acct_mgr_url.xml
-        progress.ico
-        ss_config.xml
-
-Charlie 11 June 2009
-    - Mac MGR: strip /n from command field of PROCINFO struct so <exclusive_app> 
-        log flag works properly on Mac.
-    - MGR: Change CBOINCClientManager::KillClient() to get client pid from 
-        procinfo_setup() on all non-Windows platforms.
-    - SCR: restore boinc.jpg file erroneously removed from SVN.
-
-    clientgui/
-        BOINCClientManager.cpp
-    clientscr/
-        res/
-            boinc.jpg (restored)
-    lib/
-        procinfo_mac.cpp
-    mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
-
-David  11 June 2009
-    - server: improve the Python assimilator framework;
-        add an assimilator for PyMW (Python master/worker);
-        remove old C++ PyMW assimilator
-        (from Jeremy Cowles)
-
-    sched/
-        Makefile.am
-        assimilator.py
-        pymw_assimilator.py
-        testasm.py
-
-David  11 June 2009
-    - web: country flags
-
-    html/inc/
-        countries.inc
-        forum.inc
-
-Charlie 12 June 2009
-    Mac Sandbox: check_security() writes path of bad file to stderr for some  
-        error codes.
-        
-    client/
-        check_security.cpp
-    clientgui/
-        BOINCGUIApp.cpp
+    /
+        configure.ac
+        version.h
 
-Rom    12 June 2009
-    - WINSETUP: Change the install validation code so that it reads the MSI
-        database to determine what executable names to check instead of
-        hard coding them. BOINCMGR is renamed to Progress Thru Process or
-        in the case of GridRepublic it would be GridRepublic Desktop.
-        
-    win_build/installerv2/
-        Progress.ism
-    win_build/installerv2/redist/Windows/src/boinccas/
-        boinccas.cpp, .h
-        CAValidateInstall.cpp
-        CAVerifyInstallDirectories.cpp
-    win_build/installerv2/redist/Windows/Win32/
-        boinccas.dll
-        boinccas95.dll
-    win_build/installerv2/redist/Windows/x64/
-        boinccas.dll
-        boinccas95.dll
-
-David  12 June 2009
-    - web: fix up country flags a little
-
-    html/
-        inc/
-            forum.inc
-            countries.inc
-        user/
-            main.css
-
-Rom    12 June 2009
-    - PTPSCR: Updates from Carl
-    
-    clientscr/progress/win/x86/
-        boincscr.exe
-        gradient.jpg
-
-Rom    12 June 2009
-    - MGR: Introduce the notion of a Return URL to the attach to
-        account manager wizard.  When successfully attached the
-        account manager can have the manager launch a browser to
-        a given URL by way of a cookie. It only works if the logon
-        credentials were also given to the manager by way of a cookie.
-        
-    clientgui/
-        AccountInfoPage.cpp
-        AccountManagerProcessingPage.cpp
-        browser.cpp, .h
-        CompletionPage.cpp
-        WizardAttachProject.cpp, .h
-
-Rom    12 June 2009
-    - MGR: Introduce the cookie detection failure URL to the
-        acct_mgr_logon.xml file. If the cookies cannot be found provide
-        a hyperlink control on the AcctountInfo page in the wizard
-        which will point to a fallback URL the user can go to to
-        find out what logon credentials to use.
+Charlie  2 Mar 2010
+    - MGR: Save & restore size information of properties dialogs separately 
+        for project and task property dialogs, also save and restore dialog 
+        positions on Mac.
         
-    client/
-        acct_mgr.cpp, .h
-        gui_rpc_server_ops.cpp
-    clientgui/
-        AccountInfoPage.cpp, .h
-        BOINCWizards.h
-        WizardAttachProject.cpp, .h
-    lib/
-        gui_rpc_client.h
-        gui_rpc_client_ops.cpp
-
-David  12 June 2009
-    - server: backed out recent changes to "start"; they broke something
-
-    sched/
-        start
-
-Rom    12 June 2009
-    - MGR: The ReturnURL cookie is optional, not required.
-    
     clientgui/
-        browser.cpp
+        DlgItemProperties.cpp, .h
 
-Charlie 12 June 2009
-    - MGR: update Wizard text to fit in dialog on Mac and to be more general.
-    - Sandbox: Fix permissions for branded screensaver coordinators.
-    - Mac Installer: check that brandID is valid.
-    - Mac Uninstaller: don't delete BOINC Data directory or users' Manager 
-        settings.  Check in Rez source for uninstaller resources instead of 
-        resource file, to make it easier to modify on newer versions of XCode.
+Charlie  2 Mar 2010
+    - Mac: explicitly specify compiler as GCC 4.0 instead of system default in 
+        build settings to allow building with XCode 3.2 on OS 10.6 as well as 
+        XCode 3.1 on OS 10.5.8.
 
-    client/
-        check_security.cpp
-    clientgui/
-        AccountInfoPage.cpp
-        mac/
-            SetupSecurity.cpp
-    mac_installer/
-        PostInstall.cpp
-        uninstall.cpp
-        Uninstaller.rsrc     
-        Uninstaller.r (added)
     mac_build/
         boinc.xcodeproj/
             project.pbxproj
 
-Charlie 13 June 2009
-    - MGR: Wizard retries acct_mgr_rpc() if acct_mgr_rpc_poll() sets ERR_RETRY.
+Charlie  4 Mar 2010
+    - MGR: Instead of alternating gray and white backgrounds in lists, 
+        create CBOINCListCtrl with wxLC_HRULES flag.  This avoids theme 
+        color conflicts with our backgrounds.  It also eliminates the 
+        need to set item attributes, since the default attribute setting 
+        already uses theme colors. 
 
     clientgui/
-        AccountManagerProcessingPage.cpp
+        BOINCBaseView.cpp,.h
+        BOINCListCtrl.cpp, .h
 
-Rom    13 June 2009
-    - MGR: Fix browser cookie detection on Windows machines where UAC is turned
-        on.  It appears it has never worked, and I imagine it would effect
-        70% of our Windows Vista and Windows 7 user base.
-
-    clientgui/
-        browser.cpp
-    lib/
-        miofile.cpp, .h
-
-Rom    13 June 2009
-    - MGR: Expand on Charlie's last checkin to include the rest of the polling
-        RPCs in the wizard. The polling RPCs would return ERR_RETRY when
-        the CC was in the middle of some other GUI_HTTP op (version check,
-        project list download).
-    
-    clientgui/
-        AccountManagerProcessingPage.cpp
-        AccountManagerPropertiesPage.cpp
-        ProjectProcessingPage.cpp
-        ProjectPropertiesPage.cpp
-
-Charlie 14 June 2009
-    - MGR: When automatically running Synchronize AM Wizard ar Manager launch, 
-        hide the main window only if it was not previously shown.
-    - Mac Installer: check in a copy of GR / PTP signing key with UNIX / Mac 
-        line endings.
+Rom    4 Mar 2010
+    - MGR: Remove some hacks to deal with early wxGTK bugs which have since
+        been fixed.
 
     clientgui/
         AdvancedFrame.cpp
-    mac_installer/
-        Progress/
-            acct_mgr_url.xml (added)
-
-Rom    14 June 2009
-    - INSTALL: Make sure both installers have the cookie required flag so that
-        the correct information is displayed on the AccountInfo page in the
-        Wizard, if and when a browsers cookie could not be detected.
-        
-    mac_installer/Progress/
-        acct_mgr_url.xml
-    win_build/installerv2/redist/progress/    
-        acct_mgr_url.xml
-
-David  14 June 2009
-    - web RPC: tweak to forum_get_data.php
-
-    html/user/
-        forum_get_data.php
-
-Charlie 15 June 2009
-    - MGR: If LOCKFILE doesn't already exist, core client isn't running so skip 
-        further testing.  This avoids a very rare possible race condition and is 
-        more efficient.
-
-    clientgui/
-        BOINCClientManager.cpp
-
-David  15 June 2009
-    - python scripts: fix bugs, restore latest version of "start"
-
-    sched/
-        start
-    py/Boinc/
-        boinc_project_path.py
-
-David  15 June 2009
-    - wrapper: fix bug in passing wrapper's args to subjobs
-
-    samples/wrapper/
-        wrapper.cpp
-
-David  16 June 2009
-    - web: change "CPU time" to "run time"
-
-    html/inc/
-        result.inc
-
-David  16 June 2009
-    - client: don't require that file upload URLs contain "file_upload_handler".
-
-    client/
-        client_types.cpp,h
-
-David  16 June 2009
-    - don't include config.h from network.h (Gabor Gombas)
-
-    client/
-        gui_rpc_server.cpp
-    m4/
-        boinc_getsockopt.m4
-    lib/
-        network.cpp,h
-
-David  16 June 2009
-    - don't include config.h from parse.h
-    - manager: compile fix
-
-    clientgui/
-        BOINCClientManager.cpp
-    lib/
-        parse.h
-        util.cpp
-
-David  16 June 2009
-    - build system: don't install config.h
-
-    Makefile.am
-    lib/
-        Makefile.am
-
-David  16 June 2009
-    - python assimilator fix
-
-    sched/
-        assimilator.py
-
-David  16 June 2009
-    - client: prepend rather than append to LD_LIBRARY_PATH;
-        on Mac, change DYLIB_LIBRARY_PATH also.
-
-    client/
-        app_start.cpp
-
-Charlie 16 June 2009
-    - MGR: Compile fix of Rom's fix to David's compile fix.
-
-    clientgui/
-        BOINCClientManager.cpp
-
-David  16 June 2009
-    - lib: created a new file for declaring "replacements"
-        for functions like strlcpy() etc.
-        config.h is included here rather than in str_util.h
-
-    lib/
-        str_replace.h (new)
-    ... and a lot of .cpp's
-
-David  16 June 2009
-    - pymw assimilator fixes from Jeremy
-
-    sched/
-        pymw_assimilator.py
-
-David  16 June 2009
-    - compile fixes for Linux
-
-    client/
-        gui_rpc_server.cpp
-    lib/
-        network.h
-        
-Charlie 16 June 2009
-    - MGR: Fix Mac compile error in addition of DYLIB_LIBRARY_PATH.
-    - MGR: Fix several Mac build breaks due to addition of str_replace.h 
-        (had to add ../lib to search paths of several targets.)
-        
-    client/
-        app_start.cpp
-    mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
-
-David  17 June 2009
-    - SS: remove unused func
-
-    clientscr/
-        ss_app.cpp
-
-Rom    18 June 2009
-    - MGR: Fix browser cookie lookup bug I introduced when I added
-        support for looking up cookies in Internet Explorer low rights
-        environments. InternetGetCookie expects the hostname and
-        domainname to be presented as URLs.
-        
-    clientgui/
-        browser.cpp
-
-Rom    18 June 2009
-    - MGR: Fix the case where user visits Grid Republic with IE 7 and
-        has a space character in their username.  IE6 and below kept
-        the space as part of the filename, IE7 and above replace the
-        space with an underscore.
-        
-    clientgui/
-        browser.cpp
-
-David  18 June 2009
-    - setup script: remove old pymw stuff
-
-    py/Boinc/
-        setup_project.py
-
-Rom    19 June 2009
-    - MGR: Massive wizard cleanup
-        - Remove diagnostic framework, it wasn't being used anymore
-            and basically cluttered things up.
-        - Remove the notion of the Account Manager Remove wizard,
-            it hasn't ever been used.
-        - Simplify the welcome page
-        - Trim down the height of the wizard by hiding the new
-            cookie controls on the Account Info page.  The wizard
-            needs to stay compatible with small displays.
-    - MGR: Only display the 'This is not a BOINC project' on an
-        HTTP 404 error.  For a gethostbyname, xml parsing, and
-        socket connect error display the 'project is temporarly
-        unavailable'.
-        
-    clientgui/
-        AccountInfoPage.cpp
-        AccountManagerInfoPage.cpp
-        AccountManagerProcessingPage.cpp
-        AccountManagerPropertiesPage.cpp
-        BOINCBaseWizard.cpp, .h
-        BOINCWizards.h
-        CompletionPage.cpp
-        ProjectInfoPage.cpp
-        ProjectListCtrl.cpp
-        ProjectProcessingPage.cpp
-        ProjectPropertiesPage.cpp, .h
-        UnavailablePage.cpp
-        WelcomePage.cpp, .h
-        WizardAttachProject.cpp
-
-Rom    19 June 2009
-    - MGR: Fix a long standing bug where the project list control
-        for the account manager info page and the project info page
-        was not consuming available screen space.  Previously
-        we hacked around it by setting an explicit size.
-        
-        Note: this works on Windows, I don't yet know about Mac and
-          Linux.
-          
-    clientgui/
-        AccountManagerInfoPage.cpp, .h
-        ProjectInfoPage.cpp
-        ProjectListCtrl.cpp, .h
-
-Charlie 19 June 2009
-    - MGR: Fix fatal error which caused crash in Account Manager Wizard.
-    - Mac Installer: Fix bugs in scripts for converting BOINC installer to 
-        Progress Thru Processors installer and to GridRepublic installer.
-
-    clientgui/
-        AccountManagerInfoPage.cpp
-    mac_installer/
-        make_GridRepublic.sh
-        make_ProgThruProc.sh
-
-Rom    19 June 2009
-    - MGR: Make the Account Manager Properties page and the Project
-        Properties page the start for all automated wizard processes
-        so that we can successfully handle the need to check for
-        proxy servers.  When directly advancing to the Processing
-        pages the proxy server checks were being skipped.
-    - MGR: Add some more smarts to the terms of use page which should
-        advance to the processing pages and skip the Account Info
-        page when the desired credentials are already known.
-
-    clientgui/
-        AccountInfoPage.cpp
-        AccountManagerPropertiesPage.cpp, .h
-        ProjectPropertiesPage.cpp, .h
-        TermsOfUsePage.cpp, .h
-        WelcomePage.cpp
-        WizardAttachProject.cpp
-
-David  19 June 2009
-    - install: don't install std_fixes.h or msg_queue.cpp
-    - remove some unused code
-    - scheduler: small code cleanup
-
-    lib/
-        Makefile.am
-        network.u
-        util.h
-    sched/
-        sched_send.cpp
-
-Rom    19 June 2009
-    - WINSETUP: Provide a mechinism in the installer where the installer
-        can override the previous stored state from a previous installation.
-        
-        NOTE: Needed becuase PTP isn't going to be supporting 'Application
-          execution mode', at least not with the initial installer.
-          
-    win_build/installerv2/redist/Windows/src/boinccas/
-        boinccas.rc
-        CARestoreSetupState.cpp
-    win_build/installerv2/redist/Windows/Win32/
-        boinccas.dll
-        boinccas95.dll
-    win_build/installerv2/redist/Windows/x64/
-        boinccas.dll
-        boinccas95.dll
-
-David  19 June 2009
-    - scheduler: fix <max_wus_in_progress> code
-
-    sched/
-        sched_send.cpp
-
-Rom    19 June 2009
-    - MGR: Keep the wizard state mahine from prematurly moving on without
-        checking network connectivity and whether credentials have been
-        detected.
-        
-    clientgui/
-        AccountManagerPropertiesPage.cpp
-        ProjectPropertiesPage.cpp
-
-Rom    19 June 2009
-    - Mac Install: Fix an off by one error reported during a security audit
-    
-    mac_install/
-        CustomInstall.cpp
-
-David  22 June 2009
-    - Mac install: fix things a better way
-    - install: don't install internal .h files
-    - scheduler: fix spurious "reached limit of 0 GPU tasks" message,
-        slight code cleanup
-
-    lib/
-        Makefile.am
-    mac_installer/
-        CustomInstall.cpp
-    sched/
-        sched_send.cpp
-        sched_plan.cpp
-        server_types.cpp
-
-David  22 June 2009
-    - make_project/upgrade: install pymw assimilator
-    - make pymw_assimilator.py executable
-
-    py/Boinc/
-        setup_projects.py
-    sched/
-        pymw_assimilator.py (set svn:executable)
-
-Rom    23 June 2009
-    - MGR: First stab at making the ProjectList control keyboard
-        navigatable.  Tab order isn't quite right yet for the
-        Project Info page or the Account Manager Info page, but
-        that'll be another commit. refs #442
-        
-    clientgui/
-        AccountManagerInfoPage.cpp, .h
-        ProjectInfoPage.cpp, .h
-        ProjectListCtrl.cpp, .h
-
-David  23 June 2009
-    - web: add buttons for BBCode editing.
-        From John Hallissey
-
-    html/
-        inc/
-            bbcode_bbdodehtml.inc
-            pm.inc
-            util.inc
-        user/
-            bbcode_toolbar.js
-            forum_edit.php
-            forum_post.php
-            forum_reply.php
-
-David  23 June 2009
-    - web: code cleanup
-
-Jeff 23 June 2009
-    Added table state_counts. This will allow application programs
-    that make decisions based on the count of WUs or results by state
-    to do so by querying this very small table rather than by doing 
-    expensive count queries on the WU and result tables.   
-
-    Of course some other program will have to do the count queries 
-    periodically in order to update the state_counts table. But, 
-    depending on the application, this can result in fewer such queries 
-    overall. The motivation for this change was the speed up of SETI at Home 
-    work generation.
-    
-    db/
-        boinc_db.cpp
-        boinc_db.h
-        schema.sql
-    html/
-        ops/
-            db_update.php
-
-Rom    23 June 2009
-    - MGR: Remove event handlers for wxEVT_SET_FOCUS and wxEVT_KILL_FOCUS,
-        we are no longer removing the highlight on a project unless
-        a new project is selected.  This continues to show that a certain
-        project is still selected even when you switch to the ProjectURL
-        control.  Anyways, the Mac doesn't like the focus events.
-        
-        clientgui/
-            ProjectListCtrl.cpp, .h
-
-Charlie 23 June 2009
-    - PTP: check in new PTP Mac icons and images.
-    
-    clientgui/
-        mac/
-            ProgThruProg.tiff
-        res/
-            ProgThruProc.icns
-            PTP_install.icns
-            PTP_uninstall.icns
-    clientscr/
-        res/
-            ProgThruProc_ss_logo.png
-
-David  26 June 2009
-    - client: when suspending a GPU job,
-        always remove it from memory, even if it hasn't checkpointed.
-        Otherwise we'll typically run another GPU job right away,
-        and it will bomb out or revert to CPU mode because it
-        can't allocate video RAM
-
-    client/
-        app.cpp
-
-Charlie 27 June 2009
-    Mac: Fix missing file name characters in script to make PTP installer.
-
-    mac_installer/
-        make_ProgThruProc.sh
-
-David  27 June 2009
-    - fix typo in schema
+        Events.h
 
-    db/
-        schema.sql
+Rom    4 Mar 2010
+    - MGR: Restore wxGTK hacks, bug is still alive and well.
 
-Rom    29 June 2009
-    - MGR: My first attempt to handle the project list control was turning
-        into a mess and becoming very complicated, as my former mentor used
-        to say "if you are having to try too hard, you are doing it wrong."
-        
-        Reimplement the project list control as a wxHtmlListBox which handles
-        keyboard navigation correctly and allows us to have variable height
-        list items.  Another perk is the ability to detect when different
-        HTML elements are clicked on which might be useful for anonymous
-        attach at some point in time in the future.
-        
     clientgui/
-        AccountManagerInfoPage.cpp
         AdvancedFrame.cpp
-        BOINCGUIApp.cpp
-        BOINCWizards.h
-        ProjectInfoPage.cpp
-        ProjectListCtrl.cpp, .h
-        stdwx.h
-
-Rom    29 June 2009
-    - WINSETUP: Add the PTP executable to the list of processes to terminate
-        when setup is launched.
-        
-    win_build/installerv2/redist/Windows/src/boinccas/
-        boinccas.rc
-        CAShutdownBOINCManager.cpp
-    win_build/installerv2/redist/Windows/Win32/
-        boinccas.dll
-        boinccas95.dll
-    win_build/installerv2/redist/Windows/x64/
-        boinccas.dll
-        boinccas95.dll
-
-Charlie 29 June 2009
-    - Mac Uninstaller: add blank lines between items user should delete; 
-        fix cosmetic bug.
-    
-    mac_installer/
-        uninstall.cpp
-
-Charlie 29 June 2009
-    - MGR: fix compile breaks on non_Windows systems.
-        NOTE: wxUSE_ACCESSIBILITY is defined as 0 on the Mac, use 
-        "#if wxUSE_ACCESSIBILITY", not "#ifdef wxUSE_ACCESSIBILITY".
-        
-    clientgui/
-        ProjectListCtrl.cpp, .h
-
-Rytis  30 June 2009
-    - Sched: config option not to store stderr_out if exit_status==0 (to
-        save on DB size). With help from Nicolas Alvarez.
-    
-    sched/
-        sched_config.cpp
-        sched_config.h
-        sched_result.cpp
-
-Rom    30 June 2009
-    - MGR: Remove project list randomization, sort on name.
-    
-    lib/
-        gui_rpc_client.h
-        gui_rpc_client_ops.cpp
-
-David  30 June 2009
-    - client: record the time results are received.
-        Process non-EDF GPU jobs in this order.
-
-    client/
-        client_types.cpp,h
-        cpu_sched.cpp
-        cs_scheduler.cpp
-    clientgui/
-        DltItemProperties.cpp
-    lib/
-        gui_rpc_client_ops.cpp
-        gui_rpc_client.h
-
-Rom    30 June 2009
-    - MGR: Previous sorting method wasn't working, use a sort
-        function pointer instead.
-        
-    lib/
-        gui_rpc_client.h
-        gui_rpc_client_ops.cpp
-    
-
-David  30 June 2009
-    - manager: if a project is down, say that instead of unknown error msg
-        Programming style notes:
-        1)
-            x = y;
-
-            instead of
-
-            if (y) {
-                x = true;
-            } else {
-                x = false;
-            }
-
-        2) use a descriptive name instead, not bSuccessfulCondition.
-            Variables are free.
-    clientgui/
-        ProjectPropertiesPage.cpp
-        UnavailablePage.cpp
+        Events.h
 
-David  1 July 2009
-    - API: add boinc_elapsed_time() to get elapsed time since start of episode;
-        add APP_INIT_DATA::starting_elapsed_time to get
-        elapsed time from previous episodes
+David  5 Mar 2010
+    - client: revisit the domino-effect preemption problem.
+        Removed my changes of 19 Jan 2010, which didn't work.
+        Added new mechanism: keep track of whether a job J has ever run in EDF.
+        If so, and if another job of the same project and resource type as J
+        is marked as deadline miss, then mark J as deadline miss,
+        so that it won't get preempted.
 
-    api/
-        boinc_api.cpp,h
     client/
+        client_types.h
         app.cpp,h
-        app_control.cpp
-        app_start.cpp
-    lib/
-        app_ipc.cpp,h
-
-David  1 July 2009
-    - PyMW assimilator fixes from Jeremy
-
-    sched/
-        pymw_assimilator.py
-
-David  6 July 2009
-    - fix client simulator
-    - web: if DB server down, say so
-
-    client/
-        sim_util.cpp
-    html/inc/
-        boinc_db.inc
-
-Charlie 7 July 2009
-    - Mac Installer: use escaped form of branded screensaver name when needed.
-
-    mac_installer/
-        PostInstall.cpp
-
-David  7 July 2009
-    - GUI RPC: add get_message_seqno() RPC.  fixes #931
-
-    client/
-        work_fetch.cpp
-        boinc_cmd.cpp
-        gui_rpc_server_ops.cpp
-    lib/
-        gui_rpc_client_ops.cpp
-        gui_rpc_client.h
-
-Charlie 8 July 2009
-    - Mac Installer: If BOINC screensaver is not set for every user, set it 
-        for all users after getting approval from installing user.
-    - Mac Installer: fix bug in scripts to create branded installers.
-
-    mac_installer/
-        make_GridRepublic.sh
-        make_ProgThruProc.sh
-        PostInstall.cpp
-        GR-ReadMe.rtf
-        PTP-ReadMe.rtf (added)
-        ReadMe.rtf
-
-David  9 July 2009
-    - client: error if a <file_info> in app_info.xml has any URLs
-    - client: don't write file_infos with no URLs to client_state.xml
-        for anon platform project; they must be from app_info.xml
-        
-    client/
-        cs_statefile.cpp
-    sched/
-        assimilate_handler.h
-
-David  10 July 2009
-    - client: restored code for project-wide backoff on file
-        uploads and downloads.
-        I originally added this on 30 Sept 2005
-        and disabled it 2 weeks later because there were reports of problems.
-        However, we need this functionality
-        (e.g. on GPU hosts with hundreds of files to upload,
-        we need to back off after a few failures, not try all of them).
-        I added messages (<file_xfer_debug>) so you can see what's going on.
-        Fixes #932.
-
-    client/
-        client_types.cpp,h
-        pers_file_xfer.cpp
-
-David  10 July 2009
-    - client: if malloc fails in MFILE writes, exit.
-        We don't check the return values of printf() anywhere,
-        and it's dangerous for the client to continue if it
-        thinks something got written that didn't.
-        Fixes #281
-
-    lib/
-        mfile.cpp
-
-Eric K  14 July 2009
-    - libraries:  Moved crypt.o out of libboinc and into libboinc_crypt.
-      Applications that need crypt.o will need to explicitly link
-      libboinc_crypt.
-
-    client/
-        Makefile.am
-    lib/
-    Makefile.am
-    Makefile.incl
-
-
-Rom    15 July 2009
-    - client: Remove backwards compatible CPU feature detection code
-        since we no longer support Win9x
-        
-    client/
-        hostinfo_win.cpp
-
-Rom    15 July 2009
-    - clientlib: Remove backwards compatible mouse and keyboard activity
-        detection code since we no longer support Win9x
-        
-    clientlib/win/
-        boinc_dll.cpp
-        IdleTracker.cpp
-        stdafx.h
+        cpu_sched.cpp
 
-David  16 July 2009
-    - client: code cleanup for project-level file xfer backoff
+David  9 Mar 2010
+    - client: if a GPU job is blocked on available mem,
+        don't fetch more jobs for that resource type
 
     client/
         client_types.cpp,h
-        client_state.cpp
-        gui_rpc_server_ops.cpp
-        pers_file_xfer.cpp
-
-David  16 July 2009
-    - client/manager/GUI RPC: show project-level backoffs
-
-    clientgui/
-        DlgItemProperties.cpp
-    client/
-        client_types.cpp
-    lib/
-        gui_rpc_client_ops.cpp
-        gui_rpc_client.h
-
-David  16 July 2009
-    - client: changed file upload logic
-        Old: each upload attempt consists of two HTTP requests:
-            the 1st to get the current file size on server,
-            the 2nd to upload the remainder of the file.
-        Problem:
-            a) if the upload server is overloaded and requests
-                are succeeding with probability X,
-                then the chance of both requests succeeding is X^2.
-                So e.g. a per-request success rate of 0.1
-                becomes an overall success rate of 0.01.
-            b) the "get file size" request can be avoided in some cases.
-        New:
-            If we've already queried the file size
-            and haven't uploaded any additional bytes,
-            don't query the file size again.
-
-    client/
-        pers_file_xfer.cpp
-
-David  16 July 2009
-    - client: if file < 8KB, upload it in its entirety and skip size check
-    - client: (refinement to previous checkin)
-        don't skip file size check if file has multiple upload URLs.
-        We might have uploaded different amounts on different servers.
-
-    client/
-        client_types.cpp
-        file_xfer.cpp,h
-        pers_file_xfer.cpp
-
-David  16 July 2009
-    - client: change the way a resource's "estimated delay"
-        (passed to server for crude deadline check) is computed.
-        Old: estimated delay is the interval for which the resource
-            is fully used (i.e., all instances busy).
-        Problem: this may cause unnecessary project starvation.
-            example: 1 CPU machine, has a month-long CPDN job
-            with a 1-year deadline (it's not in deadline trouble).
-            Then the CPU estimated delay will be 1 month,
-            and the client won't get any work from projects
-            with deadlines shorter than 1 month.
-        New: estimated delay is the latest time at which the
-            resource is fully used and is being used by at least 1 job
-            that is projected to miss its deadline under RR.
-
-        Note: this isn't precise, but I don't think we can improve it
-        much without getting a lot more complex.
-
-    client/
-        rr_sim.cpp
-        work_fetch.cpp,h
-
-Rom    17 July 2009
-    - Remove boinc_zip(InfoZip) from the main BOINC tree
-    - Remove boinc_zip from the build system
-    
-    /
-        configure.ac
-        Makefile.am
-
-David  17 July 2009
-    - client: 2nd try on my last checkin.
-        We need to estimate 2 different delays for each resource type:
-        1) "saturated time": the time the resource will be fully utilized
-            (new name for the old "estimated delay").
-            This is used to compute work requests.
-        2) "busy time": the time a new job would have to wait
-            to start using this resource.
-            This is passed to the scheduler and used for a crude deadline check.
-            Note: this is ill-defined; a single number doesn't suffice.
-            But as a very rough estimate, I'll use the sum of
-                (J.duration * J.ninstances)/ninstances
-            over all jobs that miss their deadline under RR sim.
-
-    client/
-        work_fetch.cpp,h
-        rr_sim.cpp
-        cs_scheduler.cpp
-
-David  20 July 2009
-    - lib: gcc 4.4 fix; fixes #854
-    lib/
-        str_replace.h
-
-David  22 July 2009
-    - client: add a bunch of debugging messages (<task_debug>)
-        for showing how GPU instances are being reserved
-    - scheduler: add "sse3" plan class example
-    - web: add option (NO_TEAMS constant) for suppressing teams
-
-    client/
-        app_start.cpp
-        hostinfo_network.cpp
-    sched/
-        sched_plan.cpp,h
-    html/inc/
-        user.inc
-    lib/
-        coproc.cpp
-        str_util.h
-
-David  22 July 2009
-    - client: define "too many uploads" (for work fetch) as
-        2 * max(ncpus, ngpus);
-        show this in the state displayed by <work_fetch_debug>
-    - manager: show project-wide backoff in transfers tab
-
-    client/
-        client_types.h
         work_fetch.cpp
-    clientgui/
-        ViewTransfers.cpp
-
-Rom    23 July 2009
-    - client: Remove some more Win9x code.
-    - client: Add some messages while handling Windows power events.
-    
-    client/
-        main.cpp
-
-Rom    23 July 2009
-    - client: Treat power events similiar to the snooze events, assign
-        a timeout so that when we resume from suspend/hibernate we
-        restore the previous activity states.
-        
-    client/
-        main.cpp
+        cpu_sched.cpp
 
-Rom    23 July 2009
-    - WINSETUP: Prevent a pathing problem with the client_auth.xml
-        creation by prepending a \ in front of the filename.
+Charlie  10 Mar 2010
+    - MGR: Improve performance when reducing number of rows in lists (as  
+        when selecting "Show active tasks") by calling ClearSelections() 
+        and SetItemCount() instead of repeatedly calling DeleteItem().
         
-    winbuild/installerv2/redist/Windows/src/boinccas/
-        boinccas.rc
-        CACreateClientAuthFile.cpp
-    winbuild/installerv2/redist/Windows/Win32/
-        boinccas.dll
-        boinccas95.dll
-    winbuild/installerv2/redist/Windows/x64/
-        boinccas.dll
-        boinccas95.dll
-
-David  23 July 2009
-    - manager: fix typos in attach project wizard
-
-    clientgui/
-        ProjectProcessingPage.cpp
-
-David  24 July 2009
-    - client: in get_project_config_poll() GUI RPC,
-        return ERR_IN_PROGRESS if the reference site check is in progress.
-        This hopefully fixes a bug where:
-        - the user is connected via a proxy
-        - the manager is run for the first time, and an attach is tried
-        - the get_project_config.php fetch fails because no proxy config
-        - the manager gets the CC_STATUS before the ref site check has
-            finished, so it thinks there's a network connection,
-            and it doesn't ask the user for proxy info
-
-    client/
-        gui_rpc_server_ops.cpp
-        net_stats.cpp,h
     clientgui/
-        ProjectPropertiesPage.cpp
-    html/
-        inc/
-            util.inc
-        user/
-            login_action.php
-
-Rom    24 July 2009
-    - lib: more code cleanup
-    
-    lib/
-        win_util.cpp, .h
+        BOINCBaseView.cpp
 
-Rom    24 July 2009
-    - lib: revert previous commit, things in lib end up being linked
-        into project applications, projects may want to continue
-        supporting Win9x.
-        
-    lib/
-        win_util.cpp, .h
-
-Rom    24 July 2009
-    - WINSCR: Remove Win9x compatibility code from the screen saver.
-
-    clientscr/    
-        screensaver.cpp
-        screensaver_win.cpp
-        screensaver_win.h
-
-Rom    25 July 2009
-    - MGR: Use the BOINC Service Control utility (boincsvcctrl.exe) to
-        start/stop the BOINC Service on Windows now.  Starting with
-        Windows Vista a normal admin account is started with a
-        restricted token, meaning that a process has to be elevated
-        in order to start and stop services.  The recommended way to
-        handle this whole process is to create a stub application that
-        has an application manifest embedded within it that tells
-        Windows that full admin rights are required and then launch
-        that program (boincsvcctrl.exe) from the application 
-        (boincmgr.exe) which normally runs with the restricted token.
-        
-    clientctrl/
-        boincsvcctrl.cpp
-    clientlib/win/
-        Service.cpp
-
-Rom    25 July 2009
-    - MGR: Be sure to launch the default screensaver in test mode
-        when the manager is starting up, otherwise the default
-        screensaver might lock up waiting on user input to approve
-        firewall updates to the rule set.
+Charlie  11 Mar 2010
+    - MGR: Fix a bug which caused unnecessary demand RPCs on some platforms: 
+        set RPC time stamps to 1 rather than 0 in RefreshRPCs() so a not to 
+        trigger initialization code.
         
     clientgui/
-        BOINCGUIApp.cpp, .h
-        sg_BoincSimpleGUI.cpp
-
-Rom    25 July 2009
-    - MGR: Refine yesterdays checkin with support for the BOINC
-        Service Control utility, use ShellExecuteEx instead of
-        CreateProcess.  CreateProcess doesn't have the ability
-        to elevate processes.
-
-    clientlib/win/
-        Service.cpp
-
-Rom    25 July 2009
-    - MGR: Refine todays checkin with support for the BOINC
-        Service Control utility, don't use the runas verb on systems
-        older than Vista.
-
-    clientlib/win/
-        Service.cpp
-
-David  27 July 2009
-    - client: fix crashing bug introduced in [18605]
-
-    client/
-        pers_file_xfer.cpp
+        MainDocument.cpp
 
-Eric K 27 July 2009
-    - server: fix for build of fcgi_file_upload_handler
+David  10 Mar 2010
+    - client: don't suspend non-CPU-intensive jobs because of CPU load
 
     lib/
-        crypt.h
-    sched/
-        file_upload_handler.cpp
-
-Rom    27 July 2009
-    - client: Remove Win9x compatibility code from memory detection
-        routine.
-        
-    client/
-        hostinfo_win.cpp
-
-Rom    27 July 2009
-    - MGR: Special case ERR_GETHOSTBYNAME errors in the wizard, majority
-        case for DNS failures suggest that the user might need a proxy
-        to be defined instead or this project is unavailable or this
-        account manager is unavailable.
-        
-    clientgui/
-        AccountManagerPropertiesPage.cpp, .h
-        ProjectPropertiesPage.cpp, .h
-
-Rom    27 July 2009
-    - client: There was already a way to check if the reference site
-        check was in progress, I missed it through my first pass
-        through the manager code while trying to debug the proxy problem
-        get_cc_config returns NETWORK_STATUS_LOOKUP_PENDING which
-        then causes the manager to call get_cc_status again.
-        
+        common_defs.h
     client/
         gui_rpc_server_ops.cpp
-        net_stats.cpp, .h
-
-Rom    27 July 2009
-    - MGR: Don't make ERR_FILE_NOT_FOUND part of the requirements
-        to detect the need for a proxy server.
-        
-    clientgui/
-        AccountManagerPropertiesPage.cpp
-        ProjectPropertiesPage.cpp
-
-Rom    28 July 2008
-    - MGR: Fix an endless loop during wizard creation, any automatic
-        true conditions in the GetNext() GetPrev() logic causes
-        the wizard to traverse the page and then look for the next
-        page.
-        
-    clientgui/
-        AccountManagerPropertiesPage.cpp
-        ProjectPropertiesPage.cpp
-
-David  28 July 2009
-    - client (Linux): when launching apps, put a relative path
-        to the executable (../../projects/x/y) into argv[0],
-        not just the executable filename.
-        Apparently the new NVIDIA drivers have a bug that cause
-        CUDA apps to crash unless this is done.
-    - Scheduler: in no-host-ID case, don't mark results as "detached"
-        if request contains any in-progress results
-
-    client/
-        app_start.cpp
-    sched/
-        handle_request.cpp
-
-David  28 July 2009
-    - client: if an HTTP op fails within 30 sec of client startup,
-        don't skip the reference site check.
-        Instead, defer the reference site check until 30 secs after startup.
-        Also, if during this interval (when the check has been requested
-        but not started) return net status as LOOKUP_PENDING
-
-    client/
-        net_stats.cpp
-
-David  28 July 2009
-    - scheduler: improved messages for debug_send
-
-    sched/
-        sched_send.cpp
+        cs_prefs.cpp
+        time_stats.cpp
+        app_control.cpp
 
-Rom    29 July 2009
-    - MGR: Re-enable the ability for the manager to detect a temporary
-        name failure vs needing a proxy server or something like that.
+Rom    11 Mar 2010
+    - MGR: Prevent flicker and lack of display by using the regular tooltip
+        for the Project List control on Windows.
         
     clientgui/
-        AccountManagerPropertiesPage.cpp, .h
-        ProjectPropertiesPage.cpp, .h
-
-David  29 July 2009
-    - scheduler: Gianni requested a feature where jobs have a
-        "min # of GPU processors" attribute (stored in batch)
-        and are sent only to hosts whose GPUs have at least this #.
-
-        The logical place for this is in the scoring function, JOB::get_score().
-        I added a clause (#ifdef'd out) that does this.
-        It rejects the WU if #procs is too small,
-        otherwise it adds min/actual to the score.
-        This favors sending jobs that need lots of procs to GPUs that have them.
-        
-    sched/
-        sched_score.cpp
-        server_types.h
-
-David  29 July 2009
-    - scheduler: on second thought, it would be better to add the above
-        feature without requiring use of score-based scheduling.
-        So add a new customizable function, wu_is_infeasible_custom(),
-        where projects can put job-specific checks.
-
-        Also, move customizable functions (of which there are now 4)
-        to a new file, sched_customize.cpp.
-
-    sched/
-        Makefile.am
-        sched_customize.cpp,h
-        sched_version.cpp
-        sched_send.cpp
-        handle_request.cpp
-
-David  29 July 2009
-    - client: to enumerate CUDA devices, use the functions in libcuda.so
-        (which ships with driver) rather than libcudart.so
-        (this eliminates the need to bundle libcudart.so with the client)
-        The functions are documented here:
-        http://developer.download.nvidia.com/compute/cuda/2_3/toolkit/docs/online/index.html
+        ProjectListCtrl.cpp, .h
 
-    lib/
-        coproc.cpp
+David  1 Mar 2010  
+    - client: if suspending apps because of CPU benchmarks,  
+        leave them in memory  
+ 
+    client/  
+        app.h  
+        app_control.cpp  
+        cs_prefs.cpp  
 
-Rom    29 July 2009
-    - client: Initial swipe at automatic proxy server configuration
-        detection on Windows.  Fixes #35
+Charlie  11 Mar 2010
+    - MGR: Fix to my previous checkin: RefreshRPCs() shouldn't change time stamp 
+        if it was zero, as this is a special vslue to indicate the RPC has never 
+        been called.
         
-    client/
-        cs_cmdline.cpp
-        http_curl.cpp
-        http_curl.h
-    lib/
-        boinc_win.h
-        proxy_info.cpp
-        proxy_info.h
-        util.cpp
-        win_util.h
-
-David  30 July 2009
-    - scheduler: compile fixes
-
-    sched/
-        sched_customize.cpp
-
-David  31 July 2009
-    - file upload handler: don't treat zero-length file as an error!
-        (This bug has been there since 28 Oct 2004)
-    - GUI RPC and manager: include project backoff in FILE_TRANSFER,
-        so that manager gets up-to-date value
-
     clientgui/
-        ViewTransfers.cpp
-    client/
-        file_xfer.cpp
-        client_types.cpp
-    sched/
-        file_upload_handler.cpp
-    lib/
-        gui_rpc_client_ops.cpp
-        gui_rpc_client.h
+        MainDocument.cpp
 
-Rom    2 Aug 2009
-    - client: refactor the CC startup process, move majority of the
-        windows code into sysmon_win.cpp, .h
+Rom    12 Mar 2010
+    - Remove BOINC_RCSID tags from source files, we are doing branching and tagging
+        properly.
         
-    client/
-        client_state.cpp, .h
-        cpp.h
-        http_curl.cpp
-        main.cpp, .h
-        net_stats.cpp
-        sysmon_win.cpp, .h
-
-David  3 Aug 2009
-    - scheduler: add plan class for CUDA 2.3
-
-    sched/
-        sched_customize.cpp,h
-        sched_version.cpp
-
-Charlie 3 Aug 2009
-    - client: fix compiler warning (too few args for print format)
-    - Mac: fix compile breaks
-    
-    client/
-        app_start.cpp
-        main.cpp
-    clientgui/
-        mac/
-            config.h
-
-Charlie 3 Aug 2009
-    - Mac client: client would crash if an older version (< 2.3) of CUDA 
-        driver is installed because __cuDriverGetVersion does not exist, 
-        so test for that and display a message if driver is out of date.
-
-    lib/
-        coproc.cpp
-
-Charlie 7 Aug 2009
-    - client: More efficient implementation of active_only flag in 
-        get_results RPC.
-    - MGR: Implement "Show active tasks / Show all tasks" button.
-    
-    client/
-        cs_statefile.cpp
-    clientgui/
-        AsyncRPC.cpp, .h
-        Events.h    
-        MainDocument.cpp, .h
-        ViewWork.cpp,.h
-    lib/
-        gui_rpc_client_ops.cpp
+    <Various Files>
 
-Rom    7 Aug 2009
-    - client: Second pass through the automatic proxy detection code.
+Rom    12 Mar 2010
+    - client: add missing CPU scheduler code
+    - client: fix formatting in app_control.cpp
+    - MGR: fix build break
     
-        During the first pass we learned that the whole process of
-        proxy detection on Win XP machines could take a few seconds
-        even with no proxies to be detected, now the proxy detection
-        code is executed in the same thread that is monitoring for
-        power change events.
-        
-    client/
-        cs_cmdline.cpp
-        http_curl.cpp
-        http_curl.h
-        http_curl_win.h
-        net_stats.cpp
-        sysmon_win.cpp, .h
-    lib/
-        parse.cpp, .h
-        proxy_info.cpp, .h
-
-Charlie 7 Aug 2009
-    - client fix crash bug introduced by changing PROXY_INFO strings 
-        from char[] to std::string.
-    - client: fix compiler warnings "call will abort at run time."
-    - Sandbox: add a couple of casts for compiler warnings.
-      
-    client/
-        app_start.cpp
-        check_security.cpp
-        client_state.cpp
-        http_curl.cpp
-    clientgui/
-        mac/
-            SetupSecurity.cpp
-
-Charlie 7 Aug 2009
-    - MGR: Test two changes which might avoid a problem when the client 
-        is heavily loaded (e.g, very many tasks), where the RPC Wait 
-        dialog may appear continuously:
-        (1) Delay periodic RPCs for 1 second after the dialog closes.
-        (2) In functions to retrieve cached RPC data, don't do a demand 
-            RPC just because the time since th last such RPC exceeds the 
-            normal periodic RPC rates.  We still force the RPC if the 
-            this RPC has never been called since the Manager was launched 
-            or if (for some RPCs) called with the bForce argument TRUE.
-            This change #2 can be removed by setting USE_CACHE_TIMEOUTS
-            to 0.
-            
-    clientgui/
-        AsyncRPC.cpp
-        MainDocument.cpp, .h
-
-David  9 Aug 2009
-    - validator: prepare for code cleanup
-
-    sched/
-        validate_util.cpp
-        validator.cpp
-
-David  12 Aug 2009
-    - server code: moved everything related to credit-granting to credit.cpp,
-        where it can be used by trickle handlers as well as by validators.
-
-    sched/
-        credit.cpp,h
-        validate_util.cpp,h
-        validator.cpp
-
-David  12 Aug 2009
-    - GUI RPC: fix memory leak in authorize()
-
-    lib/
-        gui_rpc_client.cpp
-
-David  13 Aug 2009
-    - client (Unix): fix bug that caused GPU reservation to not work.
-        The problem: we were doing the reservation after the fork(),
-        so that the data structure it changed was the app's, not the client's.
-
-    client/
-        app_start.cpp
-
-David  13 Aug 2009
-    - start: don't print "XML parse error" message if run_state file
-        doesn't exist (e.g. when start new project)
-
-    py/Boinc/
-        boincxml.py
-
-David  13 Aug 2009
-    - scheduler: fixes for cuda23 plan class
-
-    sched/
-        sched_customize.cpp
-
-David  14 Aug 2009
-    - client: try to fix situations where the scheduler
-        runs GPU jobs in a seemingly random order,
-        or preempts GPU jobs needlessly.
-        The change has two parts:
-        1) sort the "results" vector by received_time,
-            so that the RR simulation processes GPU jobs FIFO
-            (in case of tie, use something deterministic: result name)
-        2) in the CPU scheduler (earliest_deadline_result())
-            instead of choosing the earliest-deadline GPU job that
-            misses its deadline,
-            pick the earliest_deadline GPU from a project that
-            has a deadline miss for that GPU type
-            (this is what's done in the CPU case)
-    - client: fix bug where if you have an exclusive app,
-        then remove it from cc_config.xml and do "update config",
-        it doesn't go away.
-        Need to clear the list before parsing.
-
-    client/
-        client_state.h
-        cpu_sched.cpp
-        cs_statefile.cpp
-        log_flags.cpp,h
-        rr_sim.cpp
-        work_fetch.h
-
-David  14 Aug 2009
-    - client: don't try to maintain GPU work for all projects,
-        since use FIFO rather than RR schedling for GPUs
-
-    client/
-        work_fetch.cpp
-
-David  14 Aug 2009
-    - client: in the final stage of CPU scheduling,
-        give preference to multi-threaded jobs.
-        Avoid running N-1 1-thread jobs and 1 N-thread job on N CPUs
-    - client: change file transfer giveup time from 14 to 90 days
-
     client/
+        app_control.cpp
         cpu_sched.cpp
-        pers_file_xfer.h
-
-David  14 Aug 2009
-	- client: ATI GPU detection code (from Crunch3r)
-
-	lib/
-		coproc.cpp,h
-		cal.h
-
-David  14 Aug 2009
-    - client: clean up ATI code and make it work (or at least compile)
-        under Linux
-
-    lib/
-        coproc.cpp,h
-
-David  14 Aug 2009
-    - client: ATI tweaks
-
-    lib/
-        coproc.cpp,h
-
-David  17 Aug 2009
-    - client: add ATI support to job scheduling and work fetch
-
-    client/
-        app.cpp
-        app_start.cpp
-        client_state.cpp,h
-        client_type.cpp,h
-        cs_scheduler.cpp
-        rr_sim.cpp
-        work_fetch.cpp,h
-    lib/
-        coproc.cpp,h
-
-David  17 Aug 2009
-    - scheduler: add support for ATI GPUs
-
-    sched/
-        handle_request.cpp
-        sched_customize.cpp,h
-        sched_send.cpp
-        sched_types.cpp,h
-        sched_version.cpp
-
-David  17 Aug 2009
-    - client: fix calculation of ATI flops
-
-    lib/
-        coproc.cpp,h
-
-David  17 Aug 2009
-    - client/manager: add ATI stuff to GUI RPCs and manager display
-
-    client/
-        cs_statefile.cpp
-        schedule_op.cpp
     clientgui/
-        DltItemProperties.cpp
-    lib/
-        gui_rpc_client.h
-        gui_rpc_client_ops.cpp
-        
-Rom    18 Aug 2009
-    - Change version number to 6.10.x
-
-    /
-        configure.ac
-        version.h
-
-Rom    18 Aug 2009
-    - MGR: Remove News page.
-    
-    clientgui/
-        AdvancedFrame.cpp
-        ViewNews.cpp, .h (Deleted)
-
-Rom    18 Aug 2009
-    - Tag for 6.10.0 release, all platforms
-      boinc_core_release_6_10_0
-
-    /
-        configure.ac
-        version.h
-
-Charlie 18 Aug 2009
-    - Mac SS: Changes for compatibility with OS 10.6 while maintaining 
-        OS 10.3.9 compatibility.
-        
-    clientscr/
-        mac_saver_module.cpp
-        Mac_Saver_ModuleView.m
-    mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
-
-Charlie 21 Aug 2009
-    - Mac: Add x86_64 screensaver for Snow Leopard OS 10.6.
-        Note: OS 10.6 is not yet released, so I am building the x86_64 
-        screensaver separately using a beta version of OS 10.6 and its 
-        development tools, then merging it into the current build, so 
-        this change is to the release script.
-    
-    mac_installer/
-        release_boinc.sh
+        BOINCTaskBar.cpp
 
-Rom    21 Aug 2009
-    - client: Attempt to prevent a crash via a C++ exception by checking
-        for a -1 index before attempting erase the rest of the proxy
-        list.
+Charlie  16 Mar 2010
+    - Mac Sandbox: Fix bug in my changes of 26 Jan 2010 to set projects directory 
+        and slots directory to group boinc_project, not boinc_master.
         
     client/
-        sysmon_win.cpp
-
-Charlie 21 Aug 2009
-    - Mac client: in procinfo_setup(), use rss keyword not rsz in ps command 
-        for compatibility with OS 10.6 while keeping OS 10.3.9 compatibility.
-
-    lib/
-        procinfo_mac.cpp
-
-David  18 Aug 2009
-    - manager: allow 24:00 to be used in advanced prefs dialog
-        (from Ian Hay; fixes #357)
-
-    clientgui/
-        DlgAdvPreferences.cpp
-
-David  19 Aug 2009
-    - client and scheduler: lay the groundwork for "fractional coproc jobs",
-        e.g. the Milkyway at home ATI app, of which we can typically run
-        2 or 3 instances at once on a GPU.
-        Changes include:
-        - In APP_VERSION, don't use a COPROCS to represent the GPU
-            requirements; just use doubles ncudas and natis.
-        - sufficient_coprocs() etc. are no longer members of COPROCS
-        - in HOST_USAGE, ncudas and natis are doubles
-        - in scheduler request, req_instances is now a double
-
-        This checkin doesn't include the job scheduling logic,
-        i.e. assigning jobs to GPUs.  That will follow.
-
-    client/
-        app_start.cpp
-        client_types.cpp,h
-        cpu_sched.cpp
-        cs_scheduler.cpp
-        scheduler_op.cpp
-    lib/
-        coproc.h
-    sched/
-        sched_customize.cpp
-        sched_types.cpp,h
-
-David  19 Aug 2009
-    - client: finish the implementation of fractional coproc jobs.
-        - different data structure for keeping track of coproc usage;
-            instead of COPROC having per-instance pointers to ACTIVE_TASK,
-            ACTIVE_TASK now has an array of device number indices
-            for each instance that it's using.
-        - in enforce_schedule(), we call a new function assign_coprocs()
-            that decides what coproc instances each job will use,
-            and prunes jobs for which we can't get an assignment.
-            This function embodies lots of subtlety.
-        - coproc_cmdline() no longer deals with reserving instances;
-            it just has to generate the --device X cmdline
-
-    client/
-        app.h
-        app_start.cpp
-        cpu_sched.cpp
-    lib/
-        coproc.h
-
-David  24 Aug 2009
-    - client: use the right library name for ATI on Linux
-    - client: check return values from ATI device detection functions
-
-    lib/
-        coproc.cpp
+        file_names.cpp
 
-David  24 Aug 2009
-    - client: in parsing <coproc> elements in <app_version>,
-        use a new type COPROC_REQ for which the count field is a double.
-        Otherwise fractional GPU jobs don't work.
+David  15 Mar 2010
+    - client: in computing non-BOINC CPU time,
+        exclude any process whose executable includes "boinc", case-insensitive.
+        Fix problem with BoincTasks.exe
+        NOTE: this affects only Win and Linux;
+        Mac already had case-insensitive comparison.
 
-    client/
-        client_types.cpp
     lib/
-        coproc.cpp,h
-
-Rom    26 Aug 2009
-    - Tag for 6.10.1 release, all platforms
-      boinc_core_release_6_10_1
-
-    /
-        configure.ac
-        version.h
-
-Charlie 26 Aug 2009
-    MGR: on Linux, check list of running processes from procinfo_setup() 
-        to determine if BOINC core client is running.
-    MGR: on Linux, accept 2 optional arguments:
-          "--clientdir=<dir>" or "-e <dir>" for directory containing client executable, 
-            default is the directory containing the manager executable.
-          "--datadir=<dir>" or "-d <dir>" for BOINC data directory, default is the 
-            directory containing the client executable.
-          These are used by the manager when launching the client.
-
-    clientgui/
-        BOINCClientManager.cpp
-        BOINCGUIApp.cpp,.h
-
-Charlie 26 Aug 2009
-    MGR: Bug fixes for Linux.
-
-    clientgui/
-        AsyncRPC.cpp
-        BOINCBaseView.cpp
-        BOINCClientManager.cpp
-        MainDocument.cpp,.h
-        sg_DlgMessages.cpp
-        ViewMessages.cpp
+        procinfo_unix.cpp
+        procinfo_win.cpp
 
-Charlie 27 Aug 2009
-    - Tag for 6.10.2 release, all platforms
-      boinc_core_release_6_10_2
+Rom    16 Mar 2010
+    - Tag for 6.10.38 release, all platforms
+      boinc_core_release_6_10_38
 
     /
         configure.ac
         version.h
 
-David  28 Aug 2009
-    - reverted changes to PROXY_INFO which broke various things
+David  16 Mar 2010
+    - fix bugs in strcasestr(), which apparently had never been tested
 
-    client/
-        http_curl.cpp,h
-        client_state.cpp
-        net_stats.cpp
-        cs_cmdline.cpp
     lib/
-        proxy_info.cpp,h
-
-David  28 Aug 2009
-    - client: fix work fetch log message for ATI GPU
-
-    client/
-        work_fetch.cpp
-
-David  28 Aug 2009
-    - client: NVIDIA offers an API which tells you whether a GPU
-        is running a graphics application.
-        Change the semantics of the "don't use GPU while computer in use" pref
-        to "don't use a GPU that's running a graphics app while
-        computer is in use".
-        This will increase GPU utilization on multi-GPU systems.
-
-    client/
-        client_state.cpp
-        cpu_sched.cpp
-    lib/
-        coproc.cpp,h
-
-David  29 Aug 2009
-    - client: various bug fixes in job scheduling and work fetch for ATI.
-        From Crunch3r.
-
-    client/
-        cpu_sched.cpp
-        gui_rpc_server_ops.cpp
-
-David  30 Aug 2009
-    - client:  if project is anonymous platform, set the overall work req
-        to the max of the requests for different resource types.
-        Otherwise projects with old schedulers won't send us work.
-
-    client/
-        cs_scheduler.cpp
-        work_fetch.cpp,h
-
-Charlie 31 Aug 2009
-    - Mac installer: add logic for setting BOINC as screensaver under OS 10.6.
-    
-    mac_installer/
-        PostInstall.cpp
-
-Charlie 1 Sept 2009
-    - Mac Sandbox: Security fixes for Mac OS 10.6 Snow Leopard.
-        Mac OS 10.6 requires administrator authorization to run setgid 
-        applications if they use the AppKit (Cocoa) framework.  The Mac 
-        installer adds all users with admin privileges (members of group 
-        admin) to group boinc_master.  Since the Manager doesn't need to 
-        run setgid boinc_master if the user is a member of that group, 
-        we eliminate the setgid.
-        This means that non-admin users will be able to run the Manager 
-        only if the sysadmin adds them to group boinc_master, so we now 
-        create a login item or set the screensaver only for those users 
-        who are members of group boinc_master.
-        If a user who is not a member of that group runs the Manager, it 
-        displays an alert saying that in order to administer BOINC, he 
-        needs to ask the sysadmin to add him to group boinc_master.
-    
-    client/
-        check_security.cpp
-    clientgui/
-        BOINCGUIApp.cpp
-        mac/
-            SetupSecurity.cpp
-    mac_build/
-        Mac_SA_Insecure.sh
-        Mac_SA_Secure.sh
-    mac_installer/
-        PostInstall.cpp
-
-Rom    1 Sept 2009
-    - client: autoproxy detection should happen at startup too.
-    - client: when autoproxy detection is in progress don't attempt to use
-        old values
-    - client: user defined proxies should take presidence over automatically
-        detected ones.
-    - lib: Re-implement the assignment operator for proxy_info, http_curl.cpp
-        uses it to clone the proxy information for each http op.  See set_proxy();
-
-    client/
-        client_state.cpp
-        http_curl.cpp
-        net_stats.cpp
-    lib/
-        proxy_info.cpp, .h
+        str_util.cpp
 
-David  1 Sept 2009
-    - client:
-        - remove HTTP_OP::pi; just use gstate.proxy_info
-        - remove HTTP_OP::set_proxy()
-        - remove PROXY_INFO::operator=; struct assignment works
+Rom    16 Mar 2010
+    - Define HAVE_ALLOCA in boinc_win.h so that any component using
+      strcasestr in str_util.cpp uses stack allocations instead of
+      more expensive heap allocations.
+    - Move remaining HAVE_* defines from project files to boinc_win.h
 
-    client/
-        http_curl.cpp,h
-        gui_http.cpp
-        pers_file_xfer.cpp
-        scheduler_op.cpp
     lib/
-        proxy_info.cpp,h
-
-Rom    1 Sept 2009
-    - client: Use HTTP_OP::pi to avoid a crash when using a proxy. libcurl uses
-        the proxy information after the PROXY_INFO struct in setup_proxy_session()
-        had been popped off the stack.
-        
-    client/
-        http_curl.cpp,h
-
-Rom    2 Sept 2009
-    - Tag for 6.10.3 release, all platforms
-      boinc_core_release_6_10_3
-
-    /
-        configure.ac
-        version.h
-
-David  2 Sept 2009
-    - client: fix to [18945]; we only want to max the overall request
-        with a GPU request if project is anonymous platform
-        AND it has an app for that GPU type
-    - client: report overall work request as well as per-resource-type requests
-
-    client/
-        cs_scheduler.cpp
-        work_fetch.cpp,h
-
-David  2 Sept 2009
-    - client: add <sched_op_debug> msg for ATI work request
-
-    client/
-        scheduler_op.cpp
-
-David  2 Sept 2009
-    - client: fix crashing bug in proxy autodetect
-
-    client/
-        sysmon_win.cpp
-
-David  2 Sept 2009
-    - client: fix log messages about scheduler RPC work req
-    - client: missing reset for ATI debt accounting
-
-    client/
-        client_state.cpp
-        cpu_sched.cpp
-        scheduler_op.cpp
-
-David  2 Sept 2009
-    - client: fix bug where client runs too many CPU jobs
-
-    client/
-        cpu_sched.cpp
-
-David  3 Sept 2009
-    - client: improve the estimation of "busy time" (see 17 July checkin).
-        If you have 2 CPUs and a 1-day job in EDF mode,
-        the busy time should be zero, not .5 days.
-
-        Add a class BUSY_TIME_ESTIMATOR that makes a somewhat better
-        (though still fairly crude) estimate.
-
-    client/
-        cs_scheduler.cpp
-        work_fetch.cpp,h
-
-David  5 Sept 2009
-    - client: in choosing GPU jobs in FIFO order,
-        use job name as tiebreaker if received times are the same.
-        This makes the order deterministic.
-
-    client/
-        cpu_sched.cpp
-
-David  5 Sept 2009
-    - client: update of time stats was broken by [17166]
-
-    client/
-        time_stats.cpp
+        boinc_win.h
+    win_build/
+        *.vcproc
 
-Rom    8 Sept 2009
-    - Tag for 6.10.4 release, all platforms
-      boinc_core_release_6_10_4
+Rom    16 Mar 2010
+    - Tag for 6.10.39 release, all platforms
+      boinc_core_release_6_10_39
 
     /
         configure.ac
         version.h
 
-Charlie 10 Sept 2009
-    - client: don't display processor cache if we don't know it.
-    - client: skip ATI detection stuff and error messages on Macs because 
-        ATI doesn't yet have a CAL library for Mac.
-
-    client/
-        client_state.cpp
-    lib/
-        coproc.cpp
-
-Charlie 11 Sept 2009
-    - Mgr: skip exit confirmation dialog if user pressed emergency Exit button 
-        on AsyncRPCDlg.
+Charlie  18 Mar 2010
+    - MGR: Allow separate compile-time choice of rules and / or alternating gray 
+        and white background stripes in lists by defining BASEVIEW_RULES and 
+        BASEVIEW_STRIPES (in BOINCBaseView.h); set each to 1 to enable or 0 to 
+        disable; currently both are set to 1 for both stripes and rules.
 
     clientgui/
-        AsyncRPC.cpp
-        BOINCGUIApp.cpp
+        BOINCBaseView.cpp,.h
+        BOINCListCtrl.cpp, .h
 
-Charlie 16 Sept 2009
-    - Mac installer: ask user whether to allow non-administrative users to run 
-        and control BOINC.
+Rom    18 Mar 2010
+    - MGR: Change previous commit to strips only for the next build. Things look
+        wonky with both stripes and rules around the margins.
         
     clientgui/
-        mac/
-            SetupSecurity.cpp,.h
-    mac_installer/
-        PostInstall.cpp
+        BOINCBaseView.cpp,.h
 
-Charlie 17 Sept 2009
-    - Mac installer: create a new command-line tool AddRemoveUser to add users 
-        to or remove users from group boinc_master.  It also adjusts the users' 
-        login item and screensaver selection.  Updated ReadMe file to explain 
-        changes for Unicode and for OS 10.6 Snow Leopard.
-        
-    mac_installer/
-        AddRemoveUser.cpp
-        ReadMe.rtf
-    mac_build/
-        boinc.xcodeproj/
-            project.pbxproj
-    tools/
-        make_project
-
-David  8 Sept 2009
-    - client: add code for faking ATI GPUs
-
-    client/
-        client_state.cpp
-        work_fetch.cpp
-    lib/
-        coproc.cpp,h
-
-David  8 Sept 2009
-    - client: cap time_stats dt at 2 weeks,
-        so people upgrading to 6.10 won't get big drop in on_frac.
+David  18 Mar 2010
+	- client (and anything else using MFILE): Win efficiency fix.
+		Shockingly, realloc() wasn't doing exponential growth.
+		So create realloc_aux() that does.
 
-    client/
-        time_stats.cpp
-
-David  8 Sept 2009
-    - client: fix bug in RR simulation:
-        start only enough jobs to fill CPUs per project,
-        not all the CPU jobs at once.
-        I'm not sure how much difference this makes,
-        but this is how it's supposed to work.
-    - client: if app_info.xml doesn't specify flops,
-        use an estimate that takes GPUs into account.
-    - client: if it's been more than 2 weeks since time stats update,
-        don't decay on_frac at all.
-
-    client/
-        client_state.cpp
-        rr_sim.cpp
-        time_stats.cpp
-        work_fetch.cpp
-    lib/
-        coproc.cpp,h
-
-David  10 Sept 2009
-    - client: save space in req msg.  Didn't make much difference.
-
-    client/
-        cs_scheduler.cpp
-
-David  11 Sept 2009
-    - client: in startup msgs, show resource shares, don't show prefs details
-
-    client/
-        client_state.cpp
-
-David  12 Sept 2009
-    - client: fix bug in FIFO selection of coproc jobs
-        (senility setting in?)
-
-    client/
-        cpu_sched.cpp
-
-David  12 Sept 2009
-    - client: add <fraction_done> to boinc_task_state.xml
-
-    client/
-        app_control.cpp
-
-David  13 Sept 2009
-    - client: change order in poll loop so that:
-        1) job finishes
-        2) job gets marked as "ready to report"
-        3) scheduler RPC is initiated
-        Hopefully this won't have an unintended side-effect
-
-    client/
-        client_state.cpp
-
-David  16 Sept 2009
-    - client: tweak policy for device busy time.
-        Should eliminate some spurious "job won't complete by deadline" msgs.
-
-    client/
-        work_fetch.h
-
-David  16 Sept 2009
-    - client and scheduler RPC: add optional <cpu_backoff>, <cuda_backoff>,
-        and <ati_backoff> elements to scheduler reply.
-        These specify backoffs for the resource types,
-        overriding the existing backoff mechanism.
-        Projects can supply these if they don't have apps of a particular type
-        and don't want to get periodic requests for them.
-
-    client/
-        cs_scheduler.cpp
-        schedule_op.cpp,h
-        work_fetch.cpp,h
-    lib/
-        coproc.cpp
-
-David  16 Sept 2009
-    - client: cap project-supplied backoffs at 28 days
-    - client: anal-retentive alphabetization
-
-    client/
-        log_flags.cpp,h
-        scheduler_op.cpp
-
-Rom    17 Sept 2009
-    - Tag for 6.10.5 release, all platforms
-      boinc_core_release_6_10_5
-
-    /
-        configure.ac
-        version.h
-
-David  17 Sept 2009
-    - client: if project-supplied backoff > 28 days, cap rather than ignore
-
-    client/
-        scheduler_op.cpp
-
-David  17 Sept 2009
-    - client: don't print error message if output file with <copy_file>
-        attribute is missing.  That's the app's problem, not BOINC's
-    - sample assimilator: if a canonical instance has no output files,
-        rather than quitting create a file named WU_NAME_no_output_files
-
-    client/
-        app_start.cpp
-    sched/
-        sample_assimilator.cpp
-
-David  17 Sept 2009
-    - client: fixed failure to initialize CPU backoff;
-        leads to huge CPU backoff.
-        Cap backoff when read statefile.
-
-    client/
-        client_types.cpp
-        scheduler_op.cpp
-
-David  17 Sept 2009
-    - client: oops, backoff time is absolute not relative
-
-    client/
-        client_types.cpp
-
-David  18 Sept 2009
-    - client/API: add autosetup proxy info to init_data.xml
-
-    client/
-        http_curl.cpp
-        sysmon_win.cpp
-    lib/
-        proxy_info.cpp,h
-
-David  18 Sept 2009
-    - client: in choosing coproc jobs to run (FIFO) give priority
-        to whether job is already running.
-        This addresses a bug where several jobs are returned by sched RPC,
-        and one with a lexicographically greater name
-        happens to finish downloading first.
-
-    client/
-        cpu_sched.cpp
-
-David  18 Sept 2009
-    - client: comment out [18942], which changed the meaning of
-        "don't use GPUs while computer is in use" to
-        "don't use GPUs running graphics apps while computer is in use"
-        for NVIDIA GPUs.
-        NVIDIA's API for seeing if a GPU is running a graphics app
-        doesn't seem to reflect GPU use by the OS.
-
-    client/
-        client_state.cpp
-        cpu_sched.cpp
-
-David  18 Sept 2009
-    - client: fix bug introduced in [19035] that causes wrong nidle instances
-        (and resulting work fetch problems)
-
-    client/
-        rr_sim.cpp
-
-David  18 Sept 2009
-    - client: don't print error msg if file is wrong size on startup
-
-    client/
-        cs_files.cpp
-        work_fetch.cpp
-
-Rom    18 Sept 2009
-    - Tag for 6.10.6 release, all platforms
-      boinc_core_release_6_10_6
-
-    /
-        configure.ac
-        version.h
-
-Charlie 17 Sept 2009
-    - client: fix compiler warning.
-
-    client/
-        app_start.cpp
-
-David  18 Sept 2009
-    - client: if a file fails verification, delete it.
-
-    client/
-        pers_file_xfer.cpp
-
-David  21 Sept 2009
-    - client: tweak CPU scheduling policy to avoid running
-        multithread apps overcommitted.
-        Actually: allow overcommitment but only a fractional CPU
-        (so that, e.g., we can run a GPU app and a 4-CPU app on a 4-CPU host)
-        
-    client/
-        cpu_sched.cpp
-
-David  22 Sept 2009
-    - client: fix bug that caused unstarted coproc jobs to preempt
-        ones already running.
-        The problem: we considered a job as started if it has an ACTIVE_TASK.
-        However, we were creating ACTIVE_TASKS for jobs before deciding
-        to run them, because we needed a place to store the coproc reservations.
-        This caused the above bug, and also had the undesirable effect
-        of creating slot directories before they're needed.
-
-        Solution: store coprocessor reservations in RESULT
-        rather than ACTIVE_TASK.
-
-    client/
-        app.h
-        app_start.cpp
-        client_types.h
-        cpu_sched.cpp
-
-David  22 Sept 2009
-    - client: extra debug msgs (remove when done)
-
-    client/
-        cpu_sched.cpp
-
-David  22 Sept 2009
-    - client: fix preemption bug, this time fer sure!
-
-    client/
-        cpu_sched.cpp
+	lib/
+		mfile.cpp
 
-Rom    23 Sept 2009
-    - Tag for 6.10.7 release, all platforms
-      boinc_core_release_6_10_7
+Rom    18 Mar 2010
+    - Tag for 6.10.40 release, all platforms
+      boinc_core_release_6_10_40
 
     /
         configure.ac
         version.h
 
-David  23 Sept 2009
-    - client: removed extra msgs
-
-    client/
-        cpu_sched.cpp
-
-David  23 Sept 2009
-    - client: on Linux, run CPU-intensive jobs with the SCHED_BATCH scheduler.
-        Improves interactive response of system when jobs running.
-        From Clive Messer.
-
-    configure.ac
-
-    client/
-        app_start.cpp
-
-David  23 Sept 2009
-    - client: revert [19110]: don't delete files that fail verification;
-        they might be partly downloaded.
-
-    client/
-        pers_file_xfer.cpp
-
-David  24 Sept 2009
-    - client: in GPU enumeration, separate warning msgs from GPU descriptions.
-        Show warning msgs only if log_flags.coproc_debug
-
-    client/
-        client_state.cpp
-        log_flags.h
-    lib/
-        coproc.cpp,h
-
-David  24 Sept 2009
-    - client: for ATI enumeration, use only aticalrt.dll
-        (amdcalrt.dll is old version w/ funky DLL names)
-    - client: make GPU enumeration warnings more consistent
-        (e.g., "NVIDIA" instead of "CUDA").
-
-    lib/
-        coproc.cpp
+David  18 Mar 2010
+	- unix compile fix
 
-Rom    25 Sept 2009
-    - client: Add support for checking for both amd* prefixed CAL libraries
-        and ati* prefixed CAL libraries.
-    - scheduler: redefine ati class plans again.
-        ati: CAL 1.0+, amd* prefixed libraries
-        ati13amd: CAL 1.3+, amd* prefixed libraries
-        ati13ati: CAL 1.3+, ati* prefixed libraries
-        ati14: CAL 1.4+, ati* prefixed libraries
-
-    lib/
-        coproc.cpp, .h
+	lib/
 
-Rom    25 Sept 2009
-    - lib: fix build break.
+Charlie  18 Mar 2010
+    - MGR: Derive messages tab colors from base class colors.
     
-    lib/
-        coproc.cpp
-
-David  25 Sept 2009
-    - client: improve ATI-related msgs
-
-    lib/
-        coproc.cpp
-
-David  25 Sept 2009
-    - client: improve ATI description strings (from Andreas)
-
-    lib/
-        coproc.cpp
-
-Rom    25 Sept 2009
-    - client: report the different Windows 7 and Windows 2008
-        "R2" correctly.
-        
-    client/
-        hostinfo_win.cpp
+     clientgui/
+        ViewMessages.cpp
 
-Rom    25 Sept 2009
-    - Tag for 6.10.8 release, all platforms
-      boinc_core_release_6_10_8
+Rom    18 Mar 2010
+    - Tag for 6.10.41 release, all platforms
+      boinc_core_release_6_10_41
 
     /
         configure.ac
         version.h
 
-Rom    25 Sept 2009
-    - win_build: In the future be very careful about with project
-        you choose to be the basis for a new executable.
-        boincsvcctrl.exe was overwriting the PDB file for boinc.exe
-        which causes all call stack handling code for boinc.exe
-        to stop working.
+Rom    19 Mar 2010
+    - MGR: Switch background color for the list view stripes back to 
+        the original color (240, 240, 240) from (247, 247, 247).
         
-    win_build/
-        boincsvcctrl.vcproj
+    clientgui/
+        BOINCBaseView.cpp,.h
 
-Rom    25 Sept 2009
-    - Tag for 6.10.9 release, all platforms
-      boinc_core_release_6_10_9
+Rom    19 Mar 2010
+    - Tag for 6.10.42 release, all platforms
+      boinc_core_release_6_10_42
 
     /
         configure.ac
         version.h
 
-David  25 Sept 2009
-    - client: fix crashing bug in GPU message display
-    - client: show a couple more config flags on startup
-
-    client/
-        client_state.cpp
-        log_flags.cpp
-
-David  26 Sept 2009
-    - client: fix bug in CPU prefs enforcement:
-        enforce "suspend if no recent input" and "exclusive apps"
-        only if overall mode is RUN_MODE_AUTO (run according to prefs) 
-
-    client/
-        cs_prefs.cpp
-
-David  27 Sept 2009
-    - client/scheduler/web: add per-project preferences for whether
-        to accept CPU, NVIDIA and ATI jobs.
-        These prefs are shown only where relevant:
-        e.g., only for processor types for which the project has app versions,
-        and if it has versions for only one type, no pref is shown.
-
-        These prefs affect both client and scheduler.
-        The client won't ask for work for a device blocked by prefs,
-        and the scheduler won't send it.
-
-        This replaces earlier optional project-specific prefs for
-        "no CPU jobs" and "no GPU jobs".
-        (However, these prefs continue to be honored on the server side).
-
-    - client: if NVIDIA driver is unknown, say that rather than 0
-
-    client/
-        client_state.cpp
-        client_types.cpp,h
-        cs_account.cpp
-        work_fetch.cpp,h
-    lib/
-        coproc.cpp
-
-Rom    28 Sept 2009
-    - client: add missing Windows SKUs.
-        From Robert Kreß
+Rom    19 Mar 2010
+    - MGR: Deconflict menu IDs
     
-    client/
-        hostinfo_win.cpp
+    clientgui/
+        AdvancedFrame.cpp
 
-Rom    28 Sept 2009
-    - Tag for 6.10.10 release, all platforms
-      boinc_core_release_6_10_10
+Rom    19 Mar 2010
+    - Tag for 6.10.43 release, all platforms
+      boinc_core_release_6_10_43
 
     /
         configure.ac
         version.h
 
-David  28 Sept 2009
-    - client: fix crash with <ncpus>0</ncpus>
-
-    client/
-        work_fetch.h
-
-Rom    29 Sept 2009
-    - client: fix bug in coproc summary string.
+Rom    22 Mar 2010
+    - MGR: Add event map to the properties dialog.
     
-    lib/
-        coproc.cpp
-
-Rom    29 Sept 2009
-    - Tag for 6.10.11 release, all platforms
-      boinc_core_release_6_10_11
-
-    /
-        configure.ac
-        version.h
-
-David  30 Sept 2009
-    - client: if downloaded project list file is garbage, ignore it.
-    - all: accept <foo /> as an XML bool
-
-    client/
-        acct_setup.cpp
-    lib/
-        parse.cpp
-
-Rom    30 Sept 2009
-    - client: Apparently it is valid for the autoproxy to return
-        successful API completeion but a null proxy list.  Check
-        for the null instead of crashing.
-        
-    client/
-        sysmon_win.cpp
-
-Rom    1 Oct 2009
-    - client: only support one of the ati13* plan classes at a time.
-        A couple users had not updated their amdcal* runtime libraries
-        after upgrading catalyst drivers.  This was leading to crashes
-        of the project applications when work was supplied looking
-        for the old DLL names.
-        
-    lib/
-        coproc.cpp
-
-Rom    1 Oct 2009
-    - client: fix a handle leak I just introduced.
-        (From: Andreas a.k.a Gipsel)
-        
-    lib/
-        coproc.cpp
-
-Rom    1 Oct 2009
-    - lib: Fix memory/resource leak.
-        (From Nicolás Alvarez)
-        
-    lib/
-        shmem.cpp
-
-Rom    1 Oct 2009
-    - lib: Add additional ATI descriptions.
-    - lib: Fix some inaccurate ATI capabilities in certain cards.
-        (From: Andreas a.k.a Gipsel)
-        
-    lib/
-        coproc.cpp
-
-Rom    1 Oct 2009
-    - lib: Fix memory/resource leak.
-        (From Nicolás Alvarez)
-        
-    lib/
-        shmem.cpp
-
-David  2 Oct 2009
-    - client: restore calDeviceGetInfo(), add its info to COPROC_ATI struct
-        (some plan class might need to know this).
-        Code cleanup.
-
-    lib/
-        Makefile.am
-        coproc.cpp,h
-
-David  2 Oct 2009
-    - client: better behavior if a GPU goes away:
-        1) if an APP_VERSION is missing a coprocessor,
-            don't delete it and its files.
-            (If the coprocessor returns, we won't need to re-download)
-        2) if a RESULT uses an app version that is missing a coprocessor,
-            abort it (rather than deleting it).
-            The client will report the result on the next scheduler RPC,
-            and the server will make a new instance.
-
-    client/
-        client_types.cpp
-        cs_scheduler.cpp
-        cs_statefile.cpp
-    lib/
-        error_numbers.h
-
-David  2 Oct 2009
-    - client: fix bug where if you change project "no CPU/NVIDIA/ATI"
-        prefs and update, the change wouldn't take effect until client restart.
-    - client: fix bug in enforcement of "no CPU/NVIDIA/ATI" prefs
-
-    client/
-        client_state.cpp
-        cs_account.cpp
-        work_fetch.cpp
-    lib/
-        coproc.cpp
-
-David  2 Oct 2009
-    - client: if GPU is removed while jobs in progress,
-        don't show messages as internal errors.
-
-    client/
-        app.cpp
-        cs_statefile.cpp
-
-David  2 Oct 2009
-    - client: make the order of the result vector
-        consistent with the order used to select coproc jobs
-
-    client
-        client_state.h
-        cs_scheduler.cpp
-        cs_statefile.cpp
-        cpu_sched.cpp
-
-David  3 Oct 2009
-    - client: improve coproc_debug messages
-
-    client/
-        app_start.cpp
-        cpu_sched.cpp
-
-David  3 Oct 2009
-    - client: if a task is running, uses a GPU, and the system has >1 GPU,
-        append text to its resource string saying which GPU it's using
-    - manager: tweak Task properties text
-
-    client/
-        client_types.cpp,h
     clientgui/
-        DlgItemProperties.cpp
-
-Rom    5 Oct 2009
-    - DIAG: Suspend threads right before extracting their context and then
-        resume them afterwords.  Otherwise we could end up in a deadlock state
-        where both the main thread and a support thread are attempting to use
-        the same system resource and the thread that owns the resource becomes
-        suspended. In the last situation it was way down in Winsock.
-        
-    lib/
-        diagnostics_win.cpp
-
-Rom    5 Oct 2009
-    - DIAG: Don't resume after the thread has been suspended, otherwise the
-        thread stack may be trashed after extracting the context.  This should
-        still be okay though as by the time the diagnostics framework
-        has gotten here it has already downloaded all the symbols it'll need.
-
-    lib/
-        diagnostics_win.cpp
-
-Rom    5 Oct 2009
-    - Tag for 6.10.12 release, all platforms
-      boinc_core_release_6_10_12
-
-    /
-        configure.ac
-        version.h
-
-Rom    5 Oct 2009
-    - client: Fix a missed checkin that prevents a crash during autoproxy
-        detection.
-        
-    client/
-        sysmon_win.cpp
+        DlgItemProperties.cpp, .h
 
-Rom    5 Oct 2009
-    - Tag for 6.10.13 release, all platforms
-      boinc_core_release_6_10_13
-
-    /
-        configure.ac
-        version.h
-
-Rom    7 Oct 2009
-    - MGR: Fix the Statistics page Save/Restore project display feature.
+Charlie  23 Mar 2010
+    - MGR: Change Advanced Menu item "Run GPU never" to "Suspend GPU".
     
     clientgui/
-        ViewStatistics.cpp
+        AdvancedFrame.cpp
 
-Charlie 7 Oct 2009
-    - MGR: If aborting multiple tasks, ask "Are you sure?" only once.
+Rom    24 Mar 2010
+    - MGR: Revert menu change until after the next public release.
     
     clientgui/
-        ViewWork.cpp
-
-Rom    5 Oct 2009
-    - client: Fix crash that was introduced 7 months ago.
-        (From Nicolás Alvarez)
-        
-    client/
-        app_control.cpp
-
-David  6 Oct 2009
-    - client: remove redundant 0s in job log
-
-    client/
-        client_types.cpp
+        AdvancedFrame.cpp
 
-David  6 Oct 2009
-    - scheduler: skip deadline check for non-CPU-intensive projects
-
-    sched/
-        sched_send.cpp
-
-David  7 Oct 2009
-    - client: add --unsigned_apps_ok cmdline option
-        and <unsigned_apps_ok> config option.
-        This tells the client to allow unsigned apps.
-        For testing.
-        No file xfers or other network traffic will be allowed if set.
-    - client: add <exit_after_finish> option (same as cmdline flag)
-    - client: add <skip_cpu_benchmarks> option (same as cmdline flag)
-    - client: print message if abort past-deadline unstarted job
-    - client: improve message when have NVIDIA drivers but no GPU
+Rom    31 Mar 2010
+    - MGR: Only execute a set mode when the menu item has been checked.
+        On Linux the act of checking and unchecking menu items
+        programatically causes events to be fired and processed just
+        like user input. This causes the menu items to flip flop
+        back and forth between different modes.
         
-    client/
-        app_start.cpp
-        client_state.cpp,h
-        cs_cmdline.cpp
-        cs_prefs.cpp
-        log_flags.cpp
-    lib/
-        coproc.cpp
-    samples/
-        client_state_save.xml (new)
-
-David  7 Oct 2009
-    - client: if anonymous platform description (app_info.xml)
-        doesn't specify FLOPS for a GPU app,
-        assume that it runs at CPU peak speed rather than GPU peak speed.
-        Better to be conservative, otherwise job might be aborted
-        due to time limit exceeded.
-
-    client/
-        client_state.cpp
-
-David  12 Oct 2009
-    - client: on startup, if a coproc needed by a job is missing,
-        set a "coproc_missing" flag rather than aborting the job.
-        If use removes a GPU board while there's a large queue of GPU jobs,
-        they'll stay queued (until their deadline passes).
-
-        Note: this doesn't fix the situation where user connects via
-        Remote Desktop while GPU jobs are running or queued.
-        We should check for Remote Desktop every minute or so, and stop GPU jobs.
-
-    client/
-        client_state.cpp
-        client_types.cpp,h
-        cs_statefile.cpp
-        work_fetch.cpp
-    clientgui/
-        ViewWork.cpp
-    lib/
-        gui_rpc_client.h
-        gui_rpc_client_ops.cpp
-
-David  12 Oct 2009
-    - client: the get_all_projects_list() RPC doesn't require auth
-
-    client/
-        gui_rpc_server_ops.cpp
-
-David  12 Oct 2009
-    - client: don't multiply checkpoint interval (i.e., "disk interval" pref)
-        by # processors.
-
-    client/
-        app_start.cpp
-
-David  12 Oct 2009
-    - actually, make it
-        "Tasks checkpoint to disk at most every ..."
-        and change it in the advanced prefs dialog too
-
     clientgui/
-        DlgAdvPreferencesBase.cpp
+        AdvancedFrame.cpp
 
-Rom    13 Oct 2009
-    - LIB: Make the is_remote_desktop compilable for all VS versions
-        and SKUs.
+Rom    1 Apr 2010
+    - MGR: Reduce generated events on Linux.
         
-    lib/
-        win_util.cpp, .h
-
-Rom    14 Oct 2009
-    - MGR: Fix initial first connection problem on startup.  I'm not sure why
-        it was only happening at startup, there might have been a few crashes
-        because of this issue as well.  The basic problem is that wxWidgets
-        had an exception handler around the initial frame creation and when
-        the first GUI RPC was issues to detect whether or not we were atached
-        to an account manager during menu creation the GUI thread would go
-        about doing idle processing while waiting for the GUI RPC thread to
-        initialize.  During this time the frame pointer is NULL and was getting
-        dereferenced which would halt window construction and stay there until
-        some other event was fired.
-    - MGR: Initial dose of code cleanup and shuffling.  Order the menu functions
-        in the order in which they are displayed in the menu.
-
-    clientgui/
-        AdvancedFrame.cpp, .h
-        BOINCBaseFrame.cpp
-        BOINCBaseView.cpp
-        Events.h
-        ProjectListCtrl.cpp
-        sg_BoincSimpleGUI.cpp, .h
-        sg_ProjectsComponent.cpp, .h
-        WizardAttachProject.cpp
-
-David  14 Oct 2009
-    - client: address the situation where GPUs become unusable
-        for certain periods (e.g. when Remote Desktop is used on Win).
-        - add is_usable() member function to COPROC.
-            Currently this just calls the respective (CUDA or CAL)
-            initialization function.
-            We need to check whether this works and/or causes problems.
-        - in enforce_schedule(), check whether usability has changed
-            for each GPU type.
-            If we've gone from usable to unusable,
-            flag all jobs for that GPU as coproc_missing
-            (so they won't get run, and will quit if they're running).
-            If we've gone from unusable to usable, clear the flag.
-        This should deal with all cases except where
-        the client is started up with GPUs unusable.
-
-    client/
-        cpu_sched.cpp
-    lib/
-        coproc.cpp,h
-
-David  14 Oct 2009
-    - client: bug fixes to the above.
-        Don't fetch work for an unable resource.
-
-    client/
-        cpu_sched.cpp
-        cs_scheduler.cpp
-        work_fetch.cpp
-
-David  14 Oct 2009
-    - update cal.h to current ATI code
-
-    lib/
-        coproc.cpp,h
-
-David  14 Oct 2009
-    - undo the above
-
-David  15 Oct 2009
-    - client/scheduler: standardize the FLOPS estimate between NVIDIA and ATI.
-        Make them both peak FLOPS,
-        according to the formula supplied by the manufacturer.
-
-        The impact on the client is minor:
-        - the startup message describing the GPU
-        - the weight of the resource type in computing long-term debt
-
-        On the server, I changed the example app_plan() function
-        to assume that app FLOPS is 20% of peak FLOPS
-        (that's about what it is for SETI at home)
-
-    client/
-        client_state.cpp
-        work_fetch.cpp
-    lib/
-        coproc.cpp,h
-
-David  15 Oct 2009
-    - client: the weight of GPU debt in computing total debt should be
-        (estimated throughput of all GPUs)/(estimated throughput of all CPUs)
-        rather than the ratio of 1 GPU to 1 CPU.
-        This change will hopefully cause ratios of granted credit
-        to more closely match resource shares.
-
-    client
-        work_fetch.cpp,h
-
-David  15 Oct 2009
-    - client: multi-thread jobs were being given too high priority;
-        in particular, they were preempting jobs in the middle of time slice.
-        Solution:
-        1) don't use MT in the sort order defined by more_important().
-        2) add a 2nd reordering in which MT jobs are moved ahead
-            of non-MT jobs, but only if #CPUs used is < #CPUs
-            (see promote_multi_thread_jobs())
-    - client: the seqno of jobs in progress but not selected
-        was being set to zero.  It should be runnable_jobs.size().
-        This could potentially cause wrong scheduling decisions.
-
-    client/
-        cpu_sched.cpp
-
-Charlie 16 Oct 2009
-    - MGR: Fix build break on Mac.
-
     clientgui/
-        mac/
-            MacSysMenu.cpp
-
-Rom    16 Oct 2009
-    - Tag for 6.10.14 release, all platforms
-      boinc_core_release_6_10_14
-
-    /
-        configure.ac
-        version.h
-
-Rom    19 Oct 2009
-    - client: Use is_remote_desktop() instead of the various GPU functions
-        to determine when the client software has been switched into Remote
-        Desktop mode and shutsdown GPU apps.  This will prevent App crashes.
-        
-    lib/
-        coproc.cpp
-
-Rom    19 Oct 2009
-    - Tag for 6.10.15 release, all platforms
-      boinc_core_release_6_10_15
-
-    /
-        configure.ac
-        version.h
+        AdvancedFrame.cpp
 
-Rom    20 Oct 2009
-    - client: Use the ANSI version of WTSQuerySessionInformation to determine
-        is Remote Desktop is in use.
+Rom    1 Apr 2010
+    - MGR: Reduce even more generated events on Linux.
         
-    lib/
-        coproc.cpp
+    clientgui/
+        AdvancedFrame.cpp
 
-Rom    19 Oct 2009
-    - Tag for 6.10.16 release, all platforms
-      boinc_core_release_6_10_16
+Rom    1 Apr 2010
+    - Tag for 6.10.44 release, all platforms
+      boinc_core_release_6_10_44
 
     /
         configure.ac
         version.h
 
-Rom    21 Oct 2009
-    - WINSETUP: Remove the 'SeDebugPrivilege' prev from the list of privs
-        the installer sets for BOINC.
-        
-    win_build/installerv2/redist/Windows/Win32/
-        boinccas.dll
-        boinccas95.dll
-    win_build/installerv2/redist/Windows/x64/
-        boinccas.dll
-        boinccas95.dll
-
-Rom    23 Oct 2009
-    - MGR: Change the shortcut key for switching to the simple view.
+Charlie  1 Apr 2010
+    - Mac: Update build instructions to replace dead link for 
+        downloading JPEG 6b sources.  (Checked in to 6.10.44 tag.)
     
-    clientgui/
-        AdvancedFrame.cpp
-
-Rom    23 Oct 2009
-    - client: If an administrator has deployed proxy settings at runtime or
-        during a VPN connection allow the client to read the new proxy
-        configuration from the registry.
-        
-    client/
-        sysmon_win.cpp
+     mac_build/
+        HowToBuildBOINC_XCode.rtf
 
-Charlie 26 Oct 2009
-    - MGR: Add View menu with Cmd+Shift+A to Mac Simple GUI for disabled users 
-        because Mac manager cannot eliminate menu bar or detect active screen 
-        reader.  On Windows, manager prevents switch to Simple GUI if screen 
-        reader is active.
+Charlie  3 Apr 2010
+    - Mac: Build with c-ares 1.6.0 instead of c-ares 1.7.0, because the newer 
+        c-ares has problems resolving host names on OS 10.6 with default 
+        settings when used with AT&T U-Verse 2Wire gateway routers and Airport.
+        (Checked in to 6.10.44 tag.)
         
-    clientgui/
-        sg_BoincSimpleGUI.cpp, .h
-
-Rom    26 Oct 2009
-    - WININSTALL: Abort install if Win9x detected.
-    
-    win_build/installerv2/
-        BOINC.ism
-        BOINCx64.ism
-
-Rom    26 Oct 2009
-    - Tag for 6.10.17 release, all platforms
-      boinc_core_release_6_10_17
-
-    /
-        configure.ac
-        version.h
+     mac_build/
+        buildc-ares.sh
+        buildcurl.sh
+        HowToBuildBOINC_XCode.rtf
+        setupForBoinc.sh
+        boinc.xcodeproj/
+            project.pbxproj
diff --git a/checkin_notes_2009 b/checkin_notes_2009
new file mode 100644
index 0000000..d027a0b
--- /dev/null
+++ b/checkin_notes_2009
@@ -0,0 +1,9434 @@
+David  Jan 2 2009
+    - added a script to make profile.has_picture consistent
+        with the images actually on disk
+
+    html/ops/
+       repair_profile_pictures.php 
+
+David  Jan 2 2009
+    - client: more work-fetch stuff.
+        No more per-project shortfall.
+        It's getting pretty close.
+
+    client/
+        client_state.cpp
+        client_types.cpp,h
+        cs_scheduler.cpp
+        rr_sim.cpp
+        scheduler_op.cpp
+        work_fetch.cpp,h
+    lib/
+        coproc.cpp,h
+
+Janus   Jan 6 2009
+    - Various translation fixes
+    - Added Danish web interface translation
+    - Added some Danish translation texts to the client translation file    
+    - Added Finnish web interface translation (contributed by ORE)
+
+    html/
+    inc/
+        user.inc
+    user/
+        info.php
+    languages/translations
+        da.po (fully rewritten)
+        fi.po (new)
+    locales/da
+    BOINC-Manager.po
+
+Charlie Jan 6 2009
+    - client: preserve ownership when copying files to slot directory. Fixes
+        a problem with Enigma at home which uses the <copy_file/> tag.
+
+    lib/
+        filesys.cpp
+
+Rom    7 Jan 2009
+    - Fix build environment so that it can build the client again
+      (From Nicolás Alvarez)
+      
+    /
+        configure.ac
+        Makefile.am
+    sea/
+        make-tar.sh
+        make-tar_debug.sh
+
+David  7 Jan 2009
+    - get_project_config: don't send error text if no terms_of_use.txt
+    - client: compute and store project work-fetch attributes
+        fixes #820
+
+    client/
+        client_state.h
+        work_fetch.h,cpp
+    html/user/
+        get_project_config.php
+
+Charlie Jan 6 2009
+    - client: fix compiler warnings (formats didn't match data).
+
+    client/
+        work_fetch.cpp
+
+David  9 Jan 2009
+    - client: connected_frac -1 is OK; fixes #821
+
+    client/
+        time_stats.cpp
+
+David  9 Jan 2009
+    - scheduler: add support for resource-specific scheduler requests:
+        - parse new request message elements
+            (CPU and coproc requested seconds and instances)
+        - decide how many jobs to send based on these params
+        - select app version based on these params
+            (may send both CPU and CUDA app versions for the same app!)
+
+    lib/
+        coproc.cpp
+    sched/
+        handle_request.cpp
+        main.cpp,h
+        sched_plan.cpp
+        sched_send.cpp
+        server_types.cpp,h
+
+David  9 Jan 2009
+    - client: debugging CUDA-related stuff
+    - client: if reset a project, clear its overall and per-resource backoffs
+
+    client/
+        client_state.cpp
+        client_types.cpp
+        cs_scheduler.cpp
+        rr_sim.cpp
+        scheduler_op.cpp
+        sim.h
+        work_fetch.cpp,h
+    lib/
+        coproc.cpp
+
+Charlie Jan 10 2009
+    - Mac: Fix build scripts for new locale source directory layout.
+    
+    mac_installer/
+        release_GridRepublic.sh
+        release_boinc.sh
+
+David  Jan 10 2009
+    - client: work_req_seconds is CPU req, not max(CPU req, CUDA req).
+        In order to work with the 6.7 client,
+        projects with both CUDA and CPU jobs must use the newest scheduler code.
+
+    client/
+        work_fetch.cpp
+
+David  Jan 11 2009
+    - scheduler: if a Windows host has a GPU slower than 60 GFLOPS,
+        don't send it CUDA jobs (they may cause BSOD);
+        send user a message to this effect
+
+    sched/
+        sched_plan.cpp
+        sched_send.cpp
+        server_types.h
+
+David  Jan 12 2009
+    - lib: check return values of RSA_*() functions.
+        Also fix a memory leak, missing RSA_free().
+        Fixes #823.
+
+    lib/
+        crypt.cpp
+        error_numbers.h
+        str_util.cpp
+
+Rom    12 Jan 2009
+    - WINSETUP: Update custom actions in case the goofy setup
+        problems are related to old custom actions.  I don't
+        really think this is it, but i'm running out of ideas.
+        
+    win_build/installerv2/redist/Windows/src/boinccas/
+        boinccas.rc
+    win_build/installerv2/redist/Windows/Win32/
+        boinccas.dll
+        boinccas95.dll
+    win_build/installerv2/redist/Windows/x64/
+        boinccas.dll
+        boinccas95.dll
+
+David  12 Jan 2009
+    - web: add Eric's script for forum RSS
+
+    html/user/
+        forum_rss.php
+
+David  12 Jan 2009
+    - scheduler, file upload handler: fix server runtime message in FCGI case
+
+    sched/
+        file_upload_handler.cpp
+        handle_request.cpp
+        main.cpp
+        sched_util.cpp,h
+        server_types.cpp
+
+David  12 Jan 2009
+    - scheduler: initialize COPROC fields
+
+    lib/
+        coproc.cpp
+
+David  12 Jan 2009
+    - scheduler: if we're not sending work because of the user's "no GPUs" pref,
+        tell them so.
+    - scheduler: fix bug that caused no CUDA jobs to be sent
+
+    lib/
+        coproc.cpp,h
+        common_defs.h
+    sched/
+        handle_request.cpp
+        sched_send.cpp
+        sched_plan.cpp
+        server_types.h
+
+David  12 Jan 2009
+    - scheduler: bug fixes
+
+    sched/
+        handle_request.cpp
+        sched_send.cpp
+
+David  12 Jan 2009
+    - scheduler: bug fixes
+
+    sched/
+        sched_plan.cpp
+
+David  13 Jan 2009
+    - GUI RPC: add the following items to PROJECT_CONFIG
+        (corresponding to the get_project_config.php web RPC):
+        - platforms: list of platforms supported by the project
+        - sched_stopped: scheduler disabled
+        - web_stopped: DB-driven web features disabled
+        - min_client_version
+    - GUI RPC: add the following items to CC_STATE:
+        - platforms: list of platforms supported by the client
+            (this replaces the unused <platform_name>)
+    - GUI RPC: add the following items to PROJECT_LIST_ENTRY
+        (entry in the "all projects" list):
+        - platforms: list of platforms supported by the project
+    - GUI RPC: move APP_VERSION pointer from WORKUNIT to RESULT;
+        include plan class in APP_VERSION lookup.
+        This completes the change of March 2008,
+        and allows the Manager to work correctly when a project
+        has two different app versions of the same (app, platform, version)
+        running on a client at once (e.g., a CPU and a GPU app)
+    - get_project_config.php: remove logic that checks client version.
+        This page is accessed by PHP, not just by client
+    - web: add link to forum page to get forum as RSS
+
+    client/
+        cs_statefile.cpp
+    clientgui/
+        DlgItemProperties.cpp
+        MainDocument.cpp
+        ViewWork.cpp
+        sg_ViewTabPage.cpp
+    html/user/
+        get_project_config.php
+        forum_rss.php
+        forum_forum.php
+        img/feed_logo.png (new)
+    lib/
+        gui_rpc_client_ops.cpp
+        gui_rpc_client.h
+
+David  13 Jan 2009
+    - client: GPU bug fix; compile warning fixes
+
+    client/
+        client_types.cpp
+    clientgui/
+        BOINCTaskBar.cpp
+    lib/
+        filesys.cpp
+        parse.cpp
+
+David  13 Jan 2009
+    - GUI RPC: finish the changed started above;
+        update the way that app versions are identified.
+
+    Old: WORKUNIT contains version_num
+        RESULT contains app_version_num (but only if running)
+
+    New: Keep old fields so new client works with old manager.
+        RESULT contains version_num, plan_class
+        Manager: if RESULT doesn't have version/plan_class
+        (because talking to old client)
+        look up app version based on WU version num.
+
+    clientgui/
+        BOINCTaskBar.cpp
+        sg_ViewTabPage.cpp
+        MainDocument.cpp
+        DlgItemProperties.cpp
+        ViewWork.cpp
+    lib/
+        gui_rpc_client_ops.cpp
+        gui_rpc_client.h
+        
+Eric   13 Jan 2009
+    - STILL WORK TO BE DONE TO GET locale STUFF INSTALLED PROPERLY!!!
+    - Update to libtool 1.5.24
+    - build environment:  Major automake changes that I've been warning about
+      for some time.
+    - Now uses libtool to build libraries.
+    - Builds separate boinc_fcgi and sched_fcgi libraries for use with 
+      FCGI server components.
+    - New macro "BOINC_CHECK_LIB_WITH" that executes a "AC_CHECK_LIB" on
+      a library only if --with-libname[=DIR] is specified on the configure
+      command line.  This is to allow inclusion of libraries when the 
+      ssl, gtk, wxWidgets, or other configuration is incorrect for static
+      libraries.
+    - Added a lot of "--with-*" for some libraries that might be required for
+      static builds.
+    - The sea directory has been moved to packages/generic.  Changes to sea
+      and the associated scripts might be required to better make use of the
+      staging mechanism and shared libraries.
+    - Fixed includes of boinc_fcgi.h in many files.
+    - Fixed places where FCGI_FILE needs to be used implicitly.
+    - Fixed missing define of _SC_PAGESIZE on hosts that define only
+      _SC_PAGE_SIZE.
+    - Moved build of boinc_cmd (and source file) from lib to client
+    
+
+  ltmain.sh
+  config.guess
+  config.sub
+  Makefile.incl
+  m4/
+      sah_check_lib.m4
+      check_ssl.m4
+      boinc_gtk.m4 (new)
+      boinc_check_lib_with.m4 (new)
+      libcurl.m4
+      boinc_wxwidgets.m4
+  sea/ (moved to packages/generic/sea)
+  packages/ (new)
+      generic/ (new)
+          sea/ (new)
+        Makefile.am
+  client/
+      Makefile.am
+      hostinfo_unix.cpp
+  sched/
+      edf_sim.cpp
+      sched_shmem.h
+      sched_msgs.h
+      sched_msgs.cpp
+      sched_send.cpp
+      handle_resuest.cpp
+      file_upload_handler.cpp
+      main.cpp
+      sched_assign.cpp
+      Makefile.am
+  lib/
+      boinc_cmd.cpp (moved to client)
+      diagnostics.cpp
+      prefs.cpp
+      msg_log.h
+      cert_sig.cpp
+      Makefile.am
+  zip/
+      Makefile.am
+  samples/
+      example_app/
+          Makefile
+  api/
+      Makefile.am
+  clientgui/
+      Makefile.am
+  tools/
+      backend_lib.cpp
+      Makefile.am
+  doc/
+      manpages/
+          Makefile.am
+
+David  13 Jan 2009
+    - client/manager fixes
+
+    client/
+        client_types.cpp
+    lib/
+        gui_rpc_client_ops.cpp
+        gui_rpc_client.h
+
+David  14 Jan 2009
+    - client: fix bug that caused estimated time to completion to increase
+        while processing suspended
+        Fixes #825
+
+    client/
+        app_control.cpp
+
+David  14 Jan 2009
+    - client: clamp long term debts to +- 1 week
+    - client: fix CUDA debt calculation
+    - client: don't accumulate debt if project->dont_request_more_work
+    - client: improves messages
+
+    client/
+        rr_sim.cpp
+
+Rom    15 Jan 2009
+    - WINSETUP: Fix the problem introduced where Enable Application
+        execution wasn't working.
+        
+    win_build/installerv2/
+        BOINC.ism
+        BOINCx64.ism
+
+Rom    15 Jan 2009
+    - MGR: Don't convert strings to ANSI juts to have to reconvert them
+        back to Unicode.  Fix several help link issues.
+        Fixes #826
+        
+    clientgui/
+        AdvancedFrame.cpp
+        DlgAdvPreferences.cpp
+        sg_BoincSimpleGUI.cpp
+        sg_DlgMessages.cpp
+        sg_DlgPreferences.cpp
+        sg_ProjectsComponent.cpp
+
+David  15 Jan 2009
+    - scheduler: improve message formatting; add <debug_locality> flag
+        for locality scheduling messages
+
+    lib/
+        msg_log.cpp
+    sched/
+        *.cpp
+
+David  15 Jan 2009
+    - GUI RPC: add CUDA info to PROJECT struct
+    - manager: display CUDA info in project properties page
+    - manager: use struct assignment instead of copy() function
+
+    client/
+        boinc_cmd.cpp
+    clientgui/
+        AsyncRPC.cpp
+        DlgItemProperties.cpp
+    lib/
+        gui_rpc_client_ops.cpp
+        gui_rpc_client.h
+
+David  15 Jan 2009
+    - scheduler: remove clause in app_plan() that withholds jobs from slow GPUs.
+        The SETI at home/CUDA app has been fixed so that it works on all GPUs.
+
+    sched/
+        sched_plan.cpp
+
+Eric   15 Jan 2009
+    - build:  Made static linkage of BOINC libraries the default for client,
+      manager, and server components
+
+    configure.ac
+    tools/
+        Makefile.am
+    clientgui/
+        Makefile.am
+    client/
+        Makefile.am
+    samples/
+        example_app/
+        Makefile
+
+Charlie Jan 15 2009
+    - client: boinc_copy ownership fix of 1/6/09 didn't work because it used 
+        system(cp ...) call, which invokes a shell, and POSIX specifies that 
+        shells run from an application use the real UID and GID not the 
+        effective UID and GID.  Under Mac Sandbox security, we need to use 
+        the effective UID and GID.  Changed boinc_copy to copy file directly.
+    - MGR: On Mac, fix problems showing Manager window when it was minimized 
+        to Dock, especially if window was closed using Dock menu.
+    - Mac: Fix XCode project for boinc_cmd.cpp moved to client/ from lib/.
+    
+    client/
+        app_start.cpp
+    clientgui/
+        BOINCBaseFrame.cpp
+        BOINCGUIApp.h
+        BOINCTaskBar.cpp
+    lib/
+        filesys.cpp
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+David  16 Jan 2009
+    - client: remove limits on LTD.
+
+    client/
+        work_fetch.cpp
+
+David  19 Jan 2009
+    - scheduler: remove the config flag <have_cuda_apps>,
+        and add <cuda_multiplier>.
+        The latter is used in calculating max jobs/day for a host;
+        namely, it's host.max_results_day * (NCPUS + NCUDA*cuda_multiplier).
+        Set it to 10 or so if you have CUDA apps.
+    - scheduler: don't overload effective_ncpus();
+        instead, add two new functions,
+        max_results_day_multiplier() and max_wus_in_progress_multiplier()
+    - scheduler: don't reduce max_results_day if we get an aborted job
+        (it might have been aborted by the project;
+        not appopriate to punish host in this case)
+
+    db/
+        boinc_db.h
+    sched/
+        main.cpp
+        sched_config.cpp,h
+        sched_result.cpp
+        server_types.h
+
+David  20 Jan 2009
+    - client: fix messages
+
+    client/
+        rr_sim.cpp
+        work_fetch.cpp
+
+David  20 Jan 2009
+    - scheduler: improve no-work messages
+    - web: don't use DB conn in mysql_real_escape_string()
+        (otherwise won't work if DB is down)
+
+    html/inc/
+        boinc_db.inc
+        db_conn.inc
+    sched/
+        sched_plan.cpp.h
+        sched_send.cpp
+        server_types.h
+
+Charlie Jan 20 2009
+    - Mac client: fix bug in build script so that curl-7.19.2 actually 
+        does build with c-ares 1.6.0.  Fixes #830.
+    
+     mac_build/
+        buildcurl.sh
+
+David  21 Jan 2009
+    - scheduler: accept CUDA version 1.0
+
+    sched/
+        sched_plan.cpp
+
+David  21 Jan 2009
+    - client: fetch work from non-CPU-intensive projects
+
+    client/
+        work_fetch.cpp,h
+
+David  21 Jan 2009
+    - client: compile fix, remove spurious message
+
+    client/
+        work_fetch.cpp,h
+
+Rom    21 Jan 2009
+    - MGR: Make sure the UI thread doesn't call a GUI RPC
+        that uses the SET_LOCALE class.
+        
+    clientgui/
+        BOINCClientManager.cpp
+
+Charlie Jan 22 2009
+    - MGR: fix compile error.
+        
+    clientgui/
+        BOINCClientManager.cpp
+
+David  22 Jan 2009
+    - client: if an app has avg_ncpus < 1, run it at above-idle priority
+        even if it doesn't use a coprocessor.
+    - scheduler: added an "nci" (non CPU intensive) plan class
+        to sched_plan.cpp.  It declares the use of 1% of a CPU.
+
+    The above two changes are intended to allow the QCN app to
+    run at above_idle priority, which it needs in order to do 500Hz polling.
+
+    - API: the std::string version of boinc_resolve_filename()
+        acts the same as the char[] version.
+
+    client/
+        app.cpp
+        app_start.cpp
+    lib/
+        app_ipc.cpp
+        gui_rpc_client.cpp
+    sched/
+        sched_plan.cpp
+
+David  22 Jan 2009
+    - web: when using adaptive replication, show a WU's instances
+        if it has a canonical result, not if it's been assimilated
+        (if the assimilator is not working, the latter causes
+        WUs to be hidden longer than needed)
+
+    html/user/
+        workunit.php
+
+David  22 Jan 2009
+    - client: simplify message describing scheduler request;
+        to get work request details, use <sched_op_debug>
+
+    client/
+        scheduler_op.cpp
+
+Eric  22 Jan 2009
+    - build: reordered compiler flags checking.
+        Fixed problems with finding location of wx-config
+        when running with cached configuration.
+        Made sure to check ${prefix}/lib when looking for
+        libGL, libGLU, and libglut.
+
+    m4/
+        boinc_wxwidgets.m4
+        ax_check_glut.m4
+        ax_check_glu.m4
+        ax_check_gl.m4
+        boinc_set_compile_flags.m4 
+
+David  22 Jan 2009
+    - client: when preempting a process, remove it from memory if:
+        1) it uses a coprocessor
+        2) it has checkpointed since the client started
+        3) it's being preempted because of a user action
+            (suspend job, project, or all processing)
+            or user preference (time of day, computer in use)
+    - scheduler: if shared mem seg doesn't exist,
+        report it and don't crash
+
+    client/
+        app.h
+        app_start.cpp
+        app_control.cpp
+        cpu_sched.cpp
+    sched/
+        main.cpp
+
+Charlie Jan 22 2009
+    - client sandbox: add details in switcher_exec "execv failed" message.
+    - MGR: Work around bug in generic list control GetSelectedItemCount() 
+        which caused incorrect update of buttons in Projects tab after 
+        detching from a project; remove redundant UpdateSelection() call.
+        
+    client/
+        sandbox.cpp
+    clientgui/
+        BOINCBaseView.cpp
+        BOINCListCtrl.cpp,.h
+
+David  23 Jan 2009
+    - client: clear debts when reset project
+    - client: respect work-fetch backoff for non-CPU-intensive projects
+    - client: for non-CPU-intensive project, fetch new job
+        if no currently running jobs
+    - client: skip non-CPU-intensive projects in debt calculations
+    - manager: show resource backoff times correctly
+
+    client/
+        app_control.cpp
+        client_state.cpp
+        client_types.cpp,h
+        work_fetch.cpp,h
+    clientgui/
+        DlgItemProperties.cpp
+
+David  23 Jan 2009
+    - scheduler: for plan class "nci", set flops to CPU speed;
+        this will give consistent completion time estimates for existing WUs.
+
+    sched/
+        sched_plan.cpp
+
+David  23 Jan 2009
+    - scheduler: fix spurious error message when using nci
+
+    sched/
+        sched_plan.cpp,h
+        sched_send.cpp
+
+David  23 Jan 2009
+    - web: fix apps.php so that it knows about plan class
+
+    html/user/
+        apps.php
+
+David  23 Jan 2009
+    - API: possible compile fix for OS/2
+
+    api/
+        boinc_api.cpp
+
+David  23 Jan 2009
+    - scheduler: reduce frequency of calls to work_needed()
+
+    sched/
+        sched_array.cpp
+        sched_send.app
+
+David  23 Jan 2009
+    - scheduler: make NCI app versions preferable to non-plan-class
+
+    sched/
+        sched_plan.cpp
+
+David  23 Jan 2009
+    - scheduler: if client can't do plan class, don't complain about old client
+
+    sched/
+        sched_send.cpp
+
+Charlie Jan 23 2009
+    - MGR: Remove override of GetSelectedItemCount() introduced yesterday;  
+        instead, call DeleteItem() rather than SetItemCount() when number of 
+        rows has been reduced, to allow virtual ListCtrl adjust its list of 
+        selected rows (and thus keep its count in sync with reality.)
+        
+    clientgui/
+        BOINCBaseView.cpp
+        BOINCListCtrl.cpp,.h
+
+David  23 Jan 2009
+    - scheduler: initialize global
+
+    sched/
+        handle_request.cpp
+
+David  23 Jan 2009
+    - scheduler: if anonymous platform, ignore coprocessor requests
+        (since anonymous platforms apps are treated as CPU)
+
+    sched/
+        sched_send.cpp
+        server_types.h
+
+Janus    25 Jan 2009
+    - Fixed a major bug in the translation system which was causing a lot
+      of people to receive the webpages in semi-random languages.
+    - Added the ability for projects to decide whether they want the
+      Q&A and Message Boards merged.
+
+    html/
+        inc/
+        translation.inc
+    user/
+        forum_index.php
+    project_sample/
+        project.inc
+
+David  25 Jan 2009
+    - client: don't request work for a resource if it has no shortfall.
+    - client and server: get rid of coproc_cuda global.
+
+    client/
+        client_state.cpp,h
+        work_fetch.cpp,h
+    lib/
+        coproc.cpp,h
+    sched/
+        handle_request.cpp
+        sched_send.cpp
+        server_types.cpp,h
+
+Rom    26 Jan 2009
+    - MGR: Don't use wxT() to describe parameters passed to GUI RPCs.
+    
+    clientgui/
+        BOINCClientManager.cpp
+
+David  26 Jan 2009
+    - client: if we're doing an RPC (for whatever reason)
+        to a non-CPU-intensive project without a job, ask for one.
+
+    client/
+        work_fetch.cpp
+
+Charlie Jan 26 2009
+    - MGR: In CBOINCClientManager::StartupBOINCCore() allow time for Client
+        to start up, to avoid repeated attempts which put spurious messages
+        "Another instance Another instance of BOINC is running" in 
+        stderrdae.txt.
+        
+    clientgui/
+        BOINCClientManager.cpp
+
+David  27 Jan 2009
+    - client: change the LTD policy so that
+        1) net adjustment for eligible projects is zero;
+        2) max LTD is zero
+    - scheduler: fix msgs so disk size is shown in GB
+
+    client/
+        work_fetch.cpp
+    sched/
+        sched_send.cpp
+
+Eric K 27 Jan 2009
+    - SEA:  Fixed problems building SEA
+    - Manager:  Fixed missing includes when building manager on unix.
+    
+    configure.ac
+    packages/
+        generic/
+            sea/
+                Makefile.am
+                make-tar.sh
+    clientgui/
+        BOINCClientManager.cpp
+
+
+David  27 Jan 2009
+    - scheduler: in get_app_version(), if we previously sent a CUDA app,
+        but we don't need to send any more CUDA jobs,
+        delete the BEST_APP_VERSION record and look for another app version.
+        This lets the scheduler send both CUDA and CPU app versions
+        for a given app in a single RPC.
+
+    client/
+        work_fetch.h
+    sched/
+        sched_send.cpp
+
+David  27 Jan 2009
+    - client: if we're making an RPC to a project because of user request,
+        clear the resource backoff times so that we potentially
+        can ask the project for work.
+
+    client/
+        cs_scheduler.cpp
+        work_fetch.cpp
+
+Eric K 27 Jan 2009
+    - Manager: fixes to allow compilation on compilers that don't allow string
+      concatenation within the _() macro.
+
+    clientgui/
+        WelcomePage.cpp
+    ProxyInfoPage.cpp
+
+David  27 Jan 2009
+    - lib: comment out perror()s in connection code.
+
+    lib/
+        gui_rpc_client.cpp
+
+David  27 Jan 2009
+    - client: remove the "deadlines_missed" and "overworked"
+        clauses from RSC_WORK_FETCH::choose_project()
+
+    client/
+        work_fetch.cpp,h
+
+David  27 Jan 2009
+    - scheduler: don't count host as reliable if avg_turnaround is zero
+    - client: restore notion of overworked;
+        if a project is overworked for a resource R,
+        don't fetch work for R unless there are idle instances
+
+    client/
+        work_fetch.cpp,h
+    sched/
+        sched_send.cpp
+
+David  28 Jan 2009
+    - GUI RPC: the "get all projects" RPC now also returns account managers
+
+    lib/
+        gui_rpc_client_ops.cpp
+        gui_rpc_client.h
+
+Charlie Jan 28 2009
+    - GUI RPC: Fix compiler warning (missing return value).
+
+    lib/
+        gui_rpc_client_ops.cpp
+
+Rom    Jan 29 2009
+    - MGR: Provide a way for skin creators to suppress error messages for
+        missing resources.
+        
+    clientgui/
+        SkinManager.cpp
+
+Rom    Jan 29 2009
+    - MGR: Save and Restore the last email address/user id used to attach
+        to a project or account manager
+    
+    clientgui/
+        AccountInfoPage.cpp
+
+David  29 Jan 2009
+    - web: anywhere we show info about a host, show its GPUs too
+    - web: add script to parse GPU completed-job log
+        and generate summary data;
+        also add page to display this data.
+
+    html/
+        inc/
+            host.inc
+        ops/
+            analyze_coproc_log.php
+        user/
+            hosts_user.php
+            show_coproc.php
+
+David  29 Jan 2009
+    - client: if user requests RPC, do it even if project is backed off
+    - manager: show backoff interval correctly
+
+    client/
+        cs_scheduler.cpp
+        work_fetch.cpp
+    clientgui/
+        DlgItemProperties.cpp
+
+David  29 Jan 2009
+    - scheduler: get effective RAM sizes and running fraction just once
+
+    sched/
+        sched_send.cpp
+        server_types.h
+
+David  29 Jan 2009
+    - client: update LTD correctly
+
+    client/
+        work_fetch.cpp
+
+Rom    29 Jan 2009
+    - MGR: Add a virtual list box to display available account managers.
+    
+    clientgui/
+        AccountManagerInfoPage.cpp, .h
+        AccountManagerProcessingPage.cpp
+        AccountManagerPropertiesPage.cpp
+        ProjectInfoPage.cpp, .h
+        WizardAccountManager.cpp
+    lib/
+        gui_rpc_client_ops.cpp
+
+Rom    29 Jan 2009
+    - MGR: Filter project list so that it shows only projects supported
+        by the core client.
+        
+    clientgui/
+        ProjectInfoPage.cpp, .h
+
+Charlie Jan 29 2009
+    - MGR: call UpdateSelection() from OnListRender() instead of from 
+        RestoreSelections().  Fixes #837.
+
+    clientgui/
+        BOINCBaseView.cpp
+
+Charlie Jan 30 2009
+    - MGR: Suppress Skin Manager error messages by default; enable them 
+        only if the Manager is launched from the command line with an 
+        argument -c or --checkskins.
+        
+    clientgui/
+        BOINCGUIApp.cpp, .h
+        SkinManager.cpp, .h
+
+David  30 Jan 2009
+    - Work fetch / scheduler:
+        There are two mechanisms to prevent the scheduler from
+        sending jobs that won't finish by their deadline.
+        Simple mechanism:
+            The client sends the interval x for which CPUs are projected
+            to be saturated.
+            Given a job with estimated duration y,
+            the scheduler doesn't send it if x + y exceeds the delay bound.
+            If it does send it, x is incremented by y.
+        Complex mechanism:
+            Client sends workload description.
+            Scheduler does EDF simulation, sees if deadlines are missed.
+            The only project using this AFAIK is BOINC alpha test.
+        Neither of these mechanisms takes coprocessors into account,
+        and as a result jobs could be sent that are doomed to
+        miss their deadline.
+        This checkin adds coprocessor awareness to the Simple mechanism.
+
+        Changes:
+        Client:
+            compute estimated delay (i.e. time until non-saturation)
+            for coprocessors as well as CPU.
+            Send them in scheduler request as part of coproc descriptor.
+        Scheduler:
+            Keep track of estimated delays separately for different resources
+    - client: fixed bug that computed CPU estimated delay incorrectly
+    - client: the work request (req_secs) for a resource is the min
+        of the project's share and the shortfall.
+
+    client/
+        cs_scheduler.cpp
+        rr_sim.cpp
+        work_fetch.cpp,h
+    html/inc/
+        translation.inc
+    lib/
+        coproc.cpp,h
+    sched/
+        sched_send.cpp
+        server_types.cpp,h
+
+David  30 Jan 2009
+    - client: computation of # idle CUDA instances was wrong
+
+    client/
+        rr_sim.cpp
+
+David  30 Jan 2009
+    - scheduler: show message whether miss or meet deadline
+
+    html/user/
+        show_coproc.php
+        top_users.php
+    sched/
+        sched_send.cpp
+
+David  30 Jan 2009
+    - client: tweak work fetch messages
+    - client: buffer 2000 messages instead of 1000
+
+    client/
+        client_msgs.cpp
+        work_fetch.cpp
+    lib/
+        coproc.cpp
+
+David  30 Jan 2009
+    - client: work fetch fixes
+
+    client/
+        work_fetch.cpp
+        scheduler_op.cpp
+
+David  31 Jan 2009
+    - client: there was a problem with how the round-robin simulator
+        worked in the presence of coprocessors.
+        The simulator maintained per-project queues of pending jobs.
+        When a job finished (in the simulation) it would get
+        one or more jobs from that project's pending queue.
+
+        The problem: this could cause "holes" in the scheduling of GPUs,
+        and produce an erroneous nonzero shortfall for GPUs,
+        leading to infinite work fetch.
+
+        The solution: maintain a separate (per-resource, not per--project)
+        queue of pending coprocessor jobs.
+        When a coprocessor job finishes,
+        start pending jobs from the queue for that resource.
+
+        Another change: the simulator did strict reservation of coprocessors.
+        If there are 2 instances of CUDA,
+        and a 1-instance job is running in the simulation,
+        it wouldn't start an additional 2-instance job.
+        This also can cause erroneous nonzero shortfalls.
+
+        So instead, schedule coprocessors like CPUs, i.e. saturate them.
+        This can cause distorted completion time estimates,
+        but it's better than infinite work fetch.
+
+    client/
+        client_types.cpp,h
+        rr_sim.cpp,h
+        work_fetch.cpp,h
+
+David  1 Feb 2009
+    - client: code cleanup
+
+    client/
+        rr_sim.cpp,h
+        work_fetch.cpp,h
+
+David  2 Feb 2009
+    - client: code cleanup
+
+    client/
+        rr_sim.cpp,h
+        work_fetch.cpp,h
+
+David  2 Feb 2009
+    - Manager: change terms for STD, LTD
+    - web: change script that locks old threads to exempt team forums
+
+    clientgui/
+        DlgItemProperties.cpp
+    html/ops/
+        autolock.php
+
+David  3 Feb 2009
+    - client: fix bug that caused infinite sched RPCs if project down
+
+    client/
+        cs_scheduler.cpp
+        scheduler_op.cpp
+
+Rom    3 Feb 2009
+    - SCROPENGL: Checkin the files needed for the new OpenGL based
+        BOINC screensaver.
+        
+    clientscr/
+        boinc_ss_opengl.h
+        boinc_ss_opengl.rc
+        screensaver_opengl.cpp
+        screensaver_opengl.h
+    win_build/
+        boinc.sln
+        boinc_ss_opengl.vcproj
+
+David  3 Feb 2009
+    - renamed boinc_ss_opengl to ss_app
+
+David  3 Feb 2009
+    - GUI RPC: made password file read into function
+    - lib: minimized FCGI library
+
+    client/
+        boinc_cmd.cpp
+        file_names.h
+    lib/
+        gui_rpc_client.cpp,h
+        common_defs.h
+        Makefile.am
+
+Charlie Feb 4 2009
+    - SS: Begin work on upgrading screensaver coordinator for new functionality:
+        - add filenames for ss config file and default OpenLG ss executable
+        - add sandbox security support for these 2 files.
+
+    client/
+        check_security.cpp
+        file_names.h
+    clientgui/
+        mac/
+            SetupSecurity.cpp
+    mac_build/
+        Mac_SA_Secure.sh
+
+Rom    5 Feb 2008
+    - MGR: Display all projects in the project list but disable the text control
+        is the project doesn't list a supported platform.  If the user clicks
+        on it display a message box stating that once attached the user may not
+        get any work.
+        
+    clientgui/
+        AccountManagerInfoPage.cpp
+        ProjectInfoPage.cpp, .h
+        ProjectListCtrl.cpp, .h
+
+Charlie Feb 5 2009
+    - SS: Implement basic new functionality in screensaver coordinator.
+        - Note: this is tested on Mac only at this point.
+    - SS: Add ss_app to XCode Project, with a temporary icon.
+
+    client/
+        check_security.cpp
+        file_names.h
+    clientscr/
+        screensaver.cpp, .h
+        mac_app_icon.h (added)
+        Mac_Saver_Module.h
+        screensaver_win.h
+    lib/
+        common_defs.h
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+David  5 Feb 2009
+    - manager: use sprintf() instead of WxString::Printf()
+        when copying messages to clipboard, and use tab instead of |
+
+        NOTE TO ROM: use WxWidgets features only where necessary.
+        E.g., for a time that's not going to be displayed,
+        use double instead of WxDateTime
+
+    clientgui/
+        ViewMessages.cpp
+
+Rom    5 Feb 2009
+    - MGR: Back out David's change which broke clipboard functionality
+        on Linux.  Take care of the real performance problem with
+        copying 20000+ records to the clipboard in a Debug build
+        by pre-allocating the buffer.
+        
+    clientgui/
+        ViewMessages.cpp, .h
+
+David  5 Feb 2009
+    - client: redefine "overworked" as
+        debt < -1.5 * work_buf * cpu_sched_period
+    - web: on team page, link to cross-project team stats sites
+
+    api/
+        graphics2_win.cpp
+    client/
+        work_fetch.cpp
+    html/
+        inc/
+            stats_sites.inc
+            team.inc
+        user/
+            team_display.php
+
+Rom    5 Feb 2009
+    - MGR: On newer versions of the wxWidget framework the project list
+        wasn't being properly sized, so create it with a fixed size.
+        
+    clientgui/
+        ProjectListCtrl.cpp
+
+David  5 Feb 2009
+    - client: when accounting job elapsed time,
+        ignore intervals longer than 10 secs;
+        that could only happen if the client or host was suspended/hibernated.
+    - client: in adjust_debts(), ignore intervals longer than
+        2*work fetch period, not 2*CPU sched period.
+        adjust_debts() is called from work fetch.
+
+    client/
+        app_control.cpp
+        client_state.h
+        cpu_sched.cpp
+        cs_scheduler.cpp
+        work_fetch.cpp
+
+David  5 Feb 2009
+    - web: added BOINCstats to list of team stats sites
+
+    html/
+        inc/
+            stats_sites.inc
+            team.inc
+
+David  5 Feb 2009
+    - web: add links to cross-project host stats sites
+        (currently just boincstats)
+
+    html/
+        inc/
+            hosts.inc
+            stats_sites.inc
+            util.inc
+        user/
+            hosts_user.php
+
+David  5 Feb 2009
+    - client: if time intervals for debt adjustment or job elapsed time
+        are negative, ignore (must be clock reset)
+
+    client/
+        app_control.cpp
+        cpu_sched.cpp
+
+David  5 Feb 2009
+    - web: must have a DB connection before calling mysql_real_escape_string()
+
+    html/inc/
+        boinc_db.inc
+
+David  5 Feb 2009
+    - web: add another team stats link
+    - client: if ncpus is zero in cc_config.xml, honor it.
+
+    client/
+        cpu_sched.cpp
+        log_flags.cpp
+    html/inc/
+        stats_sites.inc
+        team.inc
+
+David  5 Feb 2009
+    - client: it the state file or an RPC reply has an app version
+        using a coprocessor we don't know about, ignore it
+        (and all results using that app_version will be flushed).
+        This deals with the situation where we have some GPU jobs,
+        but the GPU card is removed (previously this resulted in a crash).
+        This requires some code shuffling so that we check for coprocessors
+        before reading state file.
+
+    client/
+        client_types.cpp,h
+        client_state.cpp
+        cs_scheduler.cpp
+        cs_statefile.cpp
+
+David  5 Feb 2009
+    - screensaver: flesh out new SS a bit
+
+    clientscr/
+        ss_app.cpp
+
+Charlie Feb 5 2009
+    - SS: Continue work on screensaver coordinator.
+    - SS: Fix ss_app compile errors on Mac.
+
+    clientscr/
+        screensaver.cpp
+        mac_saver_module.cpp
+        Mac_Saver_Module.h
+        screensaver_win.h
+        ss_app.cpp
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+David  5 Feb 2009
+    - web: fix bug in cached user page stuff from 12/29/08
+
+    client/
+        time_stats.cpp
+    html/
+        inc/
+            pm.inc
+            user.inc
+        user/
+            show_user.php
+
+Charlie Feb 5 2009
+    - SS: Screensaver coordinator reads ss_config.xml file.
+    - SS: If coordinator runs default screensaver during science phase because 
+        no science graphics are available, then shorten the next default 
+        graphics phase by that much time. 
+
+    clientscr/
+        screensaver.cpp, .h
+        Mac_Saver_Module.h
+        screensaver_win.h
+        ss_config.xml (added)
+
+David  6 Feb 2009
+    - web: don't show x-project links for anonymous hosts; fix &bull's
+
+    html/inc/
+        host.inc
+        user.inc
+
+Rom    7 Feb 2009
+    - MGR: fix build break for GCC based compilers.
+    
+    clientgui/
+        ProjectInfoPage.cpp
+
+David  8 Feb 2009
+    - web: remove <nobr> around user links; doesn't play well
+        with long user names
+    html/inc
+        util.inc
+
+David  9 Feb 2009
+    - client: all scheduler RPCs except user request are subject to backoff.
+    - client: if a project-requested RPC doesn't return work,
+        don't do resource backoff.
+    - client: if a user-requested scheduler RPC errors out, clear the request
+
+    client/
+        cs_scheduler.cpp
+        scheduler_op.cpp
+        work_fetch.cpp
+
+Charlie 10 Feb 2009
+    - SS: Fix new screensaver coordinator to work properly on Windows.
+
+    clientscr/
+        Mac_Saver_Module.h
+        screensaver.cpp
+        screensaver_win.h
+
+David  10 Feb 2009
+    - client: add SCHEDULER_OP::rpc_failed();
+        this gets called when the op fails,
+        either at initialization or later on;
+        it clears the project's sched_rpc_pending flag if needed.
+        This fixes a bug that caused user-requested RPCs
+        to retry every 10 seconds
+        when the network is down.
+    - client: if debt-adjust period is too long, reset accounting.
+        Otherwise we'll get this infinitely.
+    - API: all optional alpha argument to TEXTURE_DESC::draw()
+
+
+    api/
+        gutil.cpp,h
+    client/
+        cpu_sched.cpp
+        file_xfer.cpp
+        gui_http.cpp
+        http_curl.cpp,h
+        scheduler_op.cpp,h
+    clientscr/
+        ss_app.cpp
+
+David  10 Feb 2009
+    - client: if master file doesn't have URLs, clear RPC request
+
+    client/
+        work_fetch.cpp
+        cs_scheduler.cpp
+        scheduler_op.cpp
+
+David  10 Feb 2009
+    - client: show proxy info correctly on startup
+    - client: fix minor bug that produced spurious
+        adjust debt interval too long messages when zero projects
+
+    client/
+        client_state.cpp
+        cpu_sched.cpp
+        cs_scheduler.cpp
+
+Charlie 11 Feb 2009
+    - SS: Fix new screensaver coordinator sandbox permissions.
+    - ss_app: Replace temporary icon with standard BOINC icon.
+    - ss_app: Fix compiler warning.
+    - lib: add time stamps to BOINCTRACE on non-Windows systems.
+
+    client/
+        check_security.cpp
+    clientgui/
+        mac/
+            SetupSecurity.cpp
+    clientscr/
+        mac_app_icon.h
+    lib/
+        diagnostics.cpp
+    mac_build/
+        Mac_SA_Secure.sh
+
+David  11 Feb 2009
+    - client: change the formula for debt update
+        so that largest debt among eligible projects tends towards zero
+    - client: change definition of "overworked"; debt must be < 1 day
+
+    client/
+        work_fetch.cpp
+
+David  11 Feb 2009
+    - client: change garbage collection so that an app version
+        is deleted only if there's another version *of the same plan class*
+        with a higher version number
+
+    client/
+        client_state.cpp
+
+David  11 Feb 2009
+    - client and API: eliminate dynamically-allocated parts of GLOBAL_PREFS.
+        This fixes a double-free bug in the API.
+
+    lib/
+        prefs.cpp,h
+
+David  11 Feb 2009
+    - boinc_zip: put null arg at end of argv.
+        Fixes crashing bug.
+        From Michael Tyka.
+
+    zip/
+        boinc_zip.cpp
+        unzip/
+            unzip.c
+
+Rom    11 Feb 2009
+    - MGR: Check to see if the app version pointer is legit before attempting
+        to use it.
+        
+    clientgui/
+        ViewWork.cpp
+
+David  11 Feb 2009
+    - lib: implement APP_INIT_DATA::copy() with assignments instead of
+        memcpy().  This protects against any future double-free bugs.
+
+    lib/
+        app_ipc.h,cpp
+
+Rom    11 Feb 2009
+    - MGR: Remove remaining UI thread calls to setlocale which could
+        confuse the parsing system or vise versa.
+        
+    clientgui/
+        AdvancedFrame.cpp
+        DlgItemProperties.cpp
+        ViewWork.cpp
+
+David  11 Feb 2009
+    - client, API: populate APP_INIT_DATA::hostid.
+        Remove userid and teamid fields, since the client doesn't know these.
+
+    client/
+        app_start.cpp
+    lib/
+        app_ipc.cpp,h
+
+Charlie 11 Feb 2009
+    - SS: Graphics executables need a Mac icon only if they can be run in 
+        a window, to allow the user to bring it to the front or control it.  
+        Since the new boincscr app runs only as a screensaver, the Dock is 
+        not visible when it is running so there is no reason to have an icon.
+        So restore the previous permissions settings (non-writable).
+    - ss_app: Remove code which adds a Mac icon.
+    - ss_app: Fix compiler warning.
+    - ss_app: Change Windows build executable file name to boincscr.exe.
+
+    client/
+        check_security.cpp
+    clientgui/
+        mac/
+            SetupSecurity.cpp
+    clientscr/
+        mac_app_icon.h (deleted)
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+        Mac_SA_Secure.sh
+    win_build/
+        ss_app.vcproj
+
+Charlie 12 Feb 2009
+    - SS: Continue refining screensaver coordinator logic.
+
+    clientscr/
+        screensaver.cpp
+
+David  12 Feb 2009
+    - client: debt_eligible() was returning false if the backoff was max.
+        This can lead to a situation where a project never gets work.
+        Remove that clause.
+
+    client/
+        work_fetch.cpp
+
+David  12 Feb 2009
+    - client, web: add preference for not using GPU while computer busy
+
+    client/
+        cpu_sched.cpp
+    html/inc/
+        prefs.inc
+    lib/
+        prefs.cpp,h
+
+David  12 Feb 2009
+    - client: bug fix for GPU pref
+
+    client/
+        cpu_sched.cpp
+        sim.h
+    lib/
+        prefs.cpp
+
+Charlie 13 Feb 2009
+    - ss_app: Under sandbox security, set boincscr permissions the same as 
+        for BOINC Manager: setgid to boinc_master but do not setuid; this 
+        allows the screensaver coordinator to kill boincscr but still gives 
+        boincscr access to GUI RPC password file and so to all GUI RPCs.
+    - SS: On Windows, add code to get paths to BOINC data and executable 
+        directories from Windows registry; expects boincscr in BOINC  
+        executable directory and ss-config.xml in BOINC data directory.
+
+    client/
+        check_security.cpp
+    clientgui/
+        mac/
+            SetupSecurity.cpp
+    clientscr/
+        screensaver.cpp
+        screensaver_win.cpp,.h
+    mac_build/
+        Mac_SA_Secure.sh
+
+David  13 Feb 2009
+    - GUI RPC: "get prefs" RPC was messed up by yesterdays's checkin;
+        also, change all bools to <foo>0|1</foo> rather than <foo/>
+
+    lib/
+        prefs.cpp
+
+David  13 Feb 2009
+    - Manager: add GPU preference to advanced prefs dialog
+
+    clientgui/
+        DlgAdvPreferences.cpp
+        DlgAdvPreferencesBase.cpp,h
+
+David  13 Feb 2009
+    - client: fix bug where master fetch failure doesn't clear request flag,
+        leading to infinite retry without backoff
+
+    client/
+        scheduler_op.cpp,h
+
+David  13 Feb 2009
+    - client: fix bug in time-of-day limit prefs (both CPU and network)
+
+    lib/
+        prefs.cpp,h
+
+David  13 Feb 2009
+    - GUI RPC: add master_url and local_revision to PROJECT_CONFIG struct.
+        The former will allow the Manager to verify project URLs
+
+    lib/
+        gui_rpc_client_ops.cpp
+        gui_rpc_client.h
+
+Charlie 13 Feb 2009
+    - SS: On Windows, make path strings Unicode compatible in ss coordinator.
+
+    clientscr/
+        screensaver.cpp
+
+Rom    16 Feb 2009
+    - WINBUILD: Remove ReleaseSigned build depends.
+    - WINBUILD: Add NVAPI to the list of static libraries to include during
+        the build process.  Driver version detection.
+        
+    /
+        <Various Files>
+
+David  16 Feb 2009
+    - client: detect NVIDIA driver version number, show it on startup,
+        and include it with CUDA coprocessor descriptor in request msgs
+
+    lib/
+        coproc.cpp,h
+    win_build/
+        libboinc.vcproj
+
+Charlie 16 Feb 2009
+    - client: fix compile break on Mac.
+
+    lib/
+        coproc.cpp
+
+David  16 Feb 2009
+    - client: add a debug flag <dcf_debug> for seeing changes in DCF
+    - scheduler: add a limit on NVIDIA driver version for CUDA apps
+        (default 17500)
+
+    client/
+        work_fetch.cpp
+        log_flags.cpp,h
+        cpu_sched.cpp
+    sched/
+        sched_send.cpp
+        sched_plan.cpp,h
+
+David  17 Feb 2009
+    - client: don't ignore jobs with fraction_done=1 (but still running)
+        in RR simulation; we may need to mark them as deadline miss.
+    - web: replace & with &amp; various places
+
+    client/
+        rr_sim.cpp
+    html/
+        inc/
+            prefs.inc
+            results.inc
+            stats_sites.inc
+        ops/
+            update_profile_pages.php
+        user/
+            edit_forum_preferences.php
+            edit_passwd_form.php
+            hosts_user.php
+            pm.php
+            prefs_remove.php
+            profile_menu.php
+            top_hosts.php
+            top_teams.php
+            top_users.php
+
+David  18 Feb 2009
+    - client: if "no more work" checked, don't request more work (duh!)
+
+    client/
+        work_fetch.cpp
+    tools/
+        make_project
+
+David  18 Feb 2009
+    - client: adjust debts at least every minute.
+        This fixes a bug that can cause debts to NEVER get updated.
+    - client: added "abort_jobs_on_exit" feature
+        (available by --abort_jobs_on_exit cmdline
+        or <abort_jobs_on_exit> in cc_config.xml).
+        If set, when the client is exited by user request
+        (this includes signals on Unix)
+        it marks all pending jobs as aborted,
+        and does a scheduler RPC to all projects with jobs.
+        When these are completed the client exits.
+        This is useful when BOINC is being used on grids
+        where it is wiped clean after each run.
+
+    client/
+        client_state.cpp,h
+        cpu_sched.cpp
+        cs_cmdline.cpp
+        cs_prefs.cpp
+        cs_scheduler.cpp
+        log_flags.cpp
+        main.cpp
+        work_fetch.cpp
+    lib/
+        error_numbers.h
+
+David  18 Feb 2009
+    - web tweaks
+
+    html/
+        inc/
+            host.inc
+            result.inc
+        user/
+            workunit.php
+            result.php
+
+David  19 Feb 2009
+    - scheduler: make host.p_features available to app_plan()
+
+    db/
+        boinc_db.h
+    sched/
+        server_types.cpp
+
+David  19 Feb 2009
+    - web: in lists of tasks, give the option of showing names instead of IDs
+
+    html/
+        inc/
+            host.inc
+            result.inc
+        user/
+            results.php
+            workunit.php
+
+David  19 Feb 2009
+    - client: add more info to <work_fetch_debug> messages
+
+    client/
+        work_fetch.cpp
+
+David  19 Feb 2009
+    - client: don't complain that master URLs differ if it's only in case
+
+    client/
+        cs_scheduler.cpp
+
+Charlie 19 Feb 2009
+    - screensaver: Implement --test and --retry_connect command-line arguments
+        as requested by Rom.
+
+    clientscr/
+        ss_app.cpp
+
+Charlie 20 Feb 2009
+    - screensaver: Implement new screensaver coordinator logic as requested by Rom:
+        If the coordinator cannot connect to the core client:
+            - coordinator retries connecting every 10 seconds 
+            - coordinator launches the default graphics application with the 
+                argument --retry_connect, so the default graphics app will continue 
+                running and will also retry connecting every 10 seconds.
+        If the coordinator successfully connected to the core client, it launches the 
+            default graphics application without the argument --retry_connect.  If the 
+            default graphics application can't connect, it will return immediately 
+            with the exit code ERR_CONNECT.  In that case, the coordinator assumes 
+            the default graphics app was blocked by a firewall and so the coordinator 
+            will run only project (science) graphics.
+
+    clientscr/
+        mac_saver_module.cpp
+        Mac_Saver_Module.h
+        screensaver.cpp,.h
+        screensaver_win.cpp,.h
+        ss_app.cpp
+
+Charlie 20 Feb 2009
+    - lib: Fix build break on Windows.
+
+    win_build/
+        libboinc.vcproj
+        libboinc_staticcrt.vcproj
+
+David  20 Feb 2009
+    - client: if a project is at max backoff for a resource,
+        stop accumulating debt if it's at or around zero.
+        This prevents other projects from being driven unboundedly negative.
+    - client: if the number of overworked projects exceeds the number
+        of device instances, clear debts; this indicates that an earlier
+        client was buggy and produced bad debt values.
+
+    client/
+        client_state.h
+        cpu_sched.cpp
+        sim.h
+        work_fetch.cpp,h
+
+David  20 Feb 2009
+    - client: new work-fetch policy:
+        1) if an instance is idle, get work from highest-debt project,
+            even if it's overworked.
+        2) if resource has a shortfall, get work from highest-debt
+            non-overworked project
+        3) if there's a fetchable non-overworked project with no runnable jobs,
+            get from from the highest-debt one.
+        (each step is done first for GPU, then CPU)
+        Clause 3) is new.
+        It will cause the client to get jobs for as many projects as possible,
+        even if there is no shortfall.
+        This is necessary to make the notion of "overworked" meaningful
+        (otherwise, any project with long jobs can become overworked).
+        It also maintains as much variety as possible (like pre-6.6 clients).
+
+        Also (small bug fix) if a project is overworked for resource R,
+        request work for R only in case 1).
+
+    client/
+        work_fetch.cpp,h
+
+David  20 Feb 2009
+    - client: remove the "debt repair" mechanism added earlier today.
+        There are situations where multiple projects can legitimately
+        have large negative LTD on a uniprocessor.
+        Instead...
+    - client: add <zero_debts> option to cc_config.xml
+
+    client/
+        log_flags.cpp,h
+        work_fetch.cpp,h
+
+David  20 Feb 2009
+    - client: fix bug that can cause no GPU jobs to be scheduled
+        even when a GPU is free
+
+    client/
+        cpu_sched.cpp
+
+Charlie 20 Feb 2009
+    - Update various source files to GPL 3.  Note: I've only updated those 
+        files which I created or have been maintaining.  There are many 
+        others which still have the GPL 2.1 license.
+        
+    clientgui/
+        mac/
+            browser_safari.mm
+            MacGUI.pch
+            SystemMenu.m
+        res/
+            macbadgemask.xpm
+            macdisconnectbadge.xpm
+    clientscr/
+        Mac_Saver_ModuleView.m
+        screensaver.cpp
+    mac_build/
+        buildcurl.sh
+        buildjpeg.sh
+        buildc-ares.sh
+        BuildMacBOINC.sh
+        buildWxMac.sh
+        Make_BOINC_Service.sh
+        Mac_SA_Insecure.sh
+        Mac_SA_Secure.sh
+        setupForBOINC.sh
+    mac_installer/
+        release_boinc.sh
+        release_GridRepublic.sh
+        make_GridRepublic.sh
+    samples/
+        example_app/
+            MakeMacExample.sh
+
+David  20 Feb 2009
+    - add a few GPL 3 notices
+
+    clientsrc/
+        screensaver.cpp
+    lib/
+        coproc.h
+        boinc_fcgi.cpp,h
+
+David  21 Feb 2009
+    - client: tweak the LTD calculation so that the largest debt
+        always tends towards zero
+
+    client/
+        work_fetch.cpp
+
+David  22 Feb 2009
+    - client: print message if downloaded file has wrong size
+    - client: associate file xfer messages with a project; fixes #848
+
+    client/
+        cs_files.cpp
+        file_xfer.cpp
+        pers_file_xfer.cpp
+
+David  22 Feb 2009
+    - client: more instances of showing project with message.  Fixes #848
+
+    client/
+        app_start.cpp
+        app_graphics.cpp
+        file_xfer.cpp
+        cs_account.cpp
+        cs_scheduler.cpp
+        scheduler_op.cpp
+        app.cpp
+        app_control.cpp
+
+Rom    22 Feb 2009
+    - WINSCR: Fix the BOINC text displayed is the screensaver control
+        panel applet
+    - WINSCR: Get rid of the 'Up to 5 second wait' for the data thread
+        to terminate.  Force terminate the thread and clean up the
+        graphics app in a clean-up routine.  Forcing the user to wait
+        when they return to the system isn't a good idea.
+    - WINSCR: Fix screensaver issue where the screensaver locks up
+        when the graphics application deadlocks for one reason or
+        another.
+        
+        Create two new threads:
+          1. Monitor system for keyboard and mouse events.
+          2. Shuffle window z-order positions if needed.
+          
+        The keyboard/mouse event monitor is isolated from either
+          the core client getting stuck in a loop and not returning
+          the results of an RPC or the window shuffling code which
+          can get stuck if the graphics application dead locks.
+          
+        The window shuffle code is isolated due to the
+          BroadcastSystemMessage() API using something akin to
+          SendMessage() which waits for a return value from the
+          target windows winproc.  If a graphics application
+          deadlocks for one reason or another it'll cause
+          the thread to stall.  This isn't terminal and so we
+          just wait for the next time the data thread chooses
+          a new application and terminates the old one which
+          will cause the thread to resume.
+          
+        This should resolve all outstanding issues with the
+          screensaver not exiting when the mouse or keyboard
+          is used.
+          
+    clientscr/
+        boinc_ss.rc
+        screensaver.cpp
+        screensaver_win.cpp, .h
+        
+David  22 Feb 2009
+    - client: fix work-fetch bug that caused infinite fetch;
+        cleanup/reorganization of work fetch logic
+
+    client/
+        work_fetch.cpp,h
+
+David  22 Feb 2009
+    - client: work-fetch bug fix: if we're fetching work for a starved
+        project, it most have no runnable jobs for ANY resource.
+    - client: work-fetch bug fix: when setting requests in the
+        shortfall case, don't request anything if project is backed off
+        or overworked for the resource.
+
+    client/
+        rr_sim.cpp
+        work_fetch.cpp,h
+
+Charlie 22 Feb 2009
+    - screensaver: Code consolidation, fix bug terminating default graphics 
+        application on screensaver exit.
+        
+     clientscr/
+        screensaver.cpp
+
+David  22 Feb 2009
+    - scheduler: include driver version in the CUDA description string
+        storing in the database;
+    - web: display the above
+
+    client/
+        cpu_sched.cpp
+        work_fetch.h
+    html/inc/
+        host.inc
+    lib/
+        coproc.cpp
+
+Charlie 22 Feb 2009
+    - screensaver: Fix a bug I introduced during code consolidation.
+        
+     clientscr/
+        screensaver.cpp
+        screensaver_win.cpp
+
+Rom    24 Feb 2009
+    - WINSCR: Remove the progress indication code from the coordinator.
+        It is now handled by the default screensaver app.
+    - WINSCR: Clean-up some of the thread cleanup logic.
+    
+    clientscr/
+        screensaver_win.cpp
+
+Rom    25 Feb 2009
+    - WINSCR: Remove unneeded header files
+    - SCR: Shuffle headers around so that it'll build on both Windows and
+        Mac without having to put in duplicate entries.
+        
+    clientscr/
+        screensaver.cpp
+
+David  25 Feb 2009
+    - client: fix bugs in "abort_jobs_on_exit" feature:
+        - clear project backoffs when start abort sequence
+        - don't back off projects if in abort sequence
+
+    client/
+        client_state.cpp
+        main.cpp
+        scheduler_op.cpp
+
+David  25 Feb 2009
+    - boinccmd: fix bug in --set_proxy_settings command
+        (it wasn't setting the "use_XXX" flags).  Fixes #776
+    - client: you can now include a <proxy_info> element
+        in your cc_config.xml options.
+
+    TODO: the whole proxy info thing needs an overhaul:
+    - no separate "use_XXX" flags;
+        non-empty http_server_name implies using HTTP proxy, etc.
+    - merge PROXY_INFO and GR_PROXY_INFO classes
+    - use XML_PARSER for parsing
+    - no PROXY_INFO element in HTTP_OP; just use gstate.proxy_info
+
+    client/
+        boinc_cmd.cpp
+        http_curl.cpp
+    lib/
+        parse.h
+        proxy_info.cpp
+
+Rom    25 Feb 2009
+    - MGR: Remove the /s parameter from the argument list on Linux
+        until we know it is supported.  Fixes #615
+        
+    clientgui/
+        BOINCGUIApp.cpp
+
+
+Eric K 25 Feb 2009
+    - Added checks for net/*.h, arpa/*.h, netinet/*.h and code to figure out
+      which of those files to include
+    - Modified MAC address check to work on some non-Linux unixes.
+      (mac_address.cpp)
+    - Added suggested change to "already attached to project" checking.
+      (ProjectInfoPage.cpp)
+    - changed includes of standard c header files to their c++ equivalents
+      (i.e. replaced <stdio.h> with <cstdio>) for namespace protection.
+    - replaced "using namespace std;" with more explicit "using std::function" in
+      several files.
+    - Fixed bug in checking whether the os is OS/2 and added conditional OS_OS2
+      to the build environment. (boinc_platform.m4,configure.ac)
+    - Changed build environment to not use -nostandardlibs unless we are using
+      G++ and static linkage is specified. (configure.ac)
+    - Added makefiles and package building files for solaris CSW package manager.
+    - Fixed bug with attempting to find login name using logname. (configure.ac)
+    - Added ifdef HAVE_* protection around some include files commonly found in
+      sys.
+    - Added support for unified binary for x86_64/i686-pc-solaris.
+      (cs_platforms.cpp)
+    - generate_host_cpid() now uses MAC address on non-linux unix.
+      (hostinfo_network.cpp)
+    - Macro BOINC_SET_COMPILE_FLAGS now doesn't check gcc only flags on non-gcc
+      compilers. (boinc_set_compile_flags.m4)
+    - Library compiles no longer depend upon the library extension or require
+      the library to be prefixed with lib.
+    - More fixes for fcgi builds.
+    - Added declaration of "struct ether_addr" and ether_ntoa().  Have not yet
+      implemented ether_ntoa() for machines that don't have it, or where it is
+      buggy.  (unix_util.h)
+    - Added FCGI::perror() which calls FCGI_perror(). (boinc_fcgi.{h,cpp})
+    - Fixed library Makefiles so that all required headers get installed.
+
+    version.h
+    configure.ac
+    api/
+        boinc_api.cpp
+        graphics2_unix.cpp
+        gutil.cpp
+        gutil.h
+        gutil_text.cpp
+        make_app_icon_h.cpp
+        Makefile.am
+        reduce_main.cpp
+        texfont.cpp
+        texture.cpp
+        tgalib.h
+        x_opengl.cpp
+    client/
+        app.h
+        app_start.cpp
+        client_types.h
+        cs_account.cpp
+        cs_benchmark.cpp
+        cs_cmdline.cpp
+        cs_platforms.cpp
+        cs_scheduler.cpp
+        gui_rpc_server.cpp
+        gui_rpc_server_ops.cpp
+        hostinfo_network.cpp
+        hostinfo_unix_test.cpp
+        log_flags.h
+        scripts/boinc-client.in
+        setprojectgrp.cpp
+        switcher.cpp
+    clientgui/
+        ProjectInfoPage.cpp
+    clientscr/
+        gfx_switcher.cpp
+    lib/
+        boinc_fcgi.cpp
+        boinc_fcgi.h
+        boinc_win.h
+        common_defs.h
+        coproc.cpp
+        crypt.h
+        diagnostics.cpp
+        filesys.cpp
+        filesys.h
+        gui_rpc_client.h
+        gui_rpc_client_ops.cpp
+        mac_address.cpp
+        Makefile.am
+        md5_file.cpp
+        mem_usage.cpp
+        mfile.cpp
+        msg_queue.cpp
+        msg_queue.h
+        network.cpp
+        parse.h
+        procinfo_mac.cpp
+        procinfo_unix.cpp
+        shmem.cpp
+        synch.cpp
+        unix_util.cpp
+        unix_util.h
+        util.cpp
+    m4/
+        boinc_platform.m4
+        boinc_set_compile_flags.m4
+    packages/
+        solaris/
+            CSW/
+                build_packages.sh
+                Makefile.am
+                boincclient/
+                    boinc.1
+                    boinc_client.1
+                    boinc-client.conf
+                    boinc_cmd.1
+                    boinccmd.1
+                    depend
+                    Makefile.am
+                    pkginfo.in
+                    postinstall
+                    preinstall
+                    prototype.in
+                boincdevel/
+                    depend
+                    Makefile.am
+                    pkginfo.in
+                    prototype.in
+                boinclibs/
+                    depend
+                    Makefile.am
+                    pkginfo.in
+                    prototype.in
+                boincmanager/
+                    boinc_manager.1
+                    boincmgr.1
+                    depend
+                    Makefile.am
+                    pkginfo.in
+                    prototype.in
+                boincserver/
+                    Makefile.am
+    sched/
+        census.cpp
+        db_purge.cpp
+        fcgiapp.h
+        file_deleter.cpp
+        file_upload_handler.cpp
+        handle_request.cpp
+        hr_info.cpp
+        main.cpp
+        Makefile.am
+        message_handler.cpp
+        sched_config.h
+        sched_locality.cpp
+        sched_send.cpp
+        sched_timezone.cpp
+        sched_util.cpp
+        server_types.cpp
+        time_stats_log.cpp
+        time_stats_log.h
+        transitioner.cpp
+        validator.cpp
+    tools/
+        dir_hier_move.cpp
+        dir_hier_path.cpp
+        kill_wu.cpp
+        poll_wu.cpp
+        updater.cpp
+    zip/
+        Makefile.am
+
+David  25 Feb 2009
+    - client: if you put <host_venue> in global_prefs_override.xml,
+        it should select the venue from the network prefs.
+        Now it does.
+
+    client/
+        gui_rpc_server.cpp
+        cs_prefs.cpp
+
+David  25 Feb 2009
+    - API: file descriptor leak in obscure case.
+        fixes #103
+
+    api/
+        texture.cpp
+
+Charlie 25 Feb 2009
+    - MGR: Fix compiler warning.
+    - lib: Fix compiler error: Please do not use unmatched single quotes 
+        (I changed don't to don`t in #warning statement to fix this.)
+    clientgui/
+        ProjectInfoPage.cpp
+    lib/
+        mac_address.cpp
+
+David  25 Feb 2009
+    - scheduler: slight code cleanup
+
+    sched/
+        server_types.h
+        sched_*.cpp
+        handle_request.cpp
+        server_types.cpp
+
+David  25 Feb 2009
+    - client: make timeout values into #defines
+
+    client/
+        (several).cpp
+
+David  26 Feb 2009
+    - client: tag messages with project where possible; fixes #852
+    - client: show fetch share rather than run share in wfd message
+
+    client/
+        client_types.h
+        work_fetch.cpp
+        cs_prefs.cpp
+        cs_scheduler.cpp
+        cpu_sched.cpp
+
+David  26 Feb 2009
+    - client: abort jobs that are unstarted and past deadline
+    - client: abort runaway jobs based on elapsed time instead of CPU time.
+        Specifically, abort jobs for which
+        elapsed time > WU.rsc_fpops_bound / app_version.flops
+        This policy works for
+        1) GPU jobs (which may use little CPU time)
+        2) jobs that run but because of bugs use little CPU time
+            (e.g., because they're sleeping)
+        whereas the old policy didn't.
+
+    client/
+        client_state.cpp,h
+        app.cpp,h
+        app_control.cpp
+    lib/
+        error_numbers.h
+        str_util.cpp
+
+David  26 Feb 2009
+    - client: skip the above elapsed-time check for non-CPU-intensive jobs
+
+    client/
+        app_control.cpp
+
+Rom    26 Feb 2009
+    - MGR: Remove the ability to display graphics on a remote computer,
+        or from a remote computer on *nix machines using v5 graphics.
+        fixes #674
+        
+    clientgui/
+        ViewWork.cpp
+
+David  26 Feb 2009
+    - client: fix bug where if a GPU job is running,
+        and a 2nd GPU job with an earlier deadline arrives,
+        neither job is executed ever.
+        Reorganized things so that scheduling of GPU jobs is
+        done independently of CPU jobs.
+        The policy for GPU jobs:
+        - always EDF
+        - jobs are always removed from memory, regardless of checkpoint
+        (GPU memory is not paged, so it's bad to leave an idle app in memory)
+
+    client/
+        app.cpp,h
+        app_start.cpp
+        client_state.h
+        cpu_sched.cpp
+    sched/
+        handle_request.cpp
+
+David  26 Feb 2009
+    - client: shuffle the startup code to avoid showing wrong prefs info
+        on first-time startup.
+    - client: don't do an RPC until we've done CPU benchmarks.
+        We need the benchmark values to fill in app_version.flops
+
+    client/
+        client_state.cpp
+        cs_scheduler.cpp
+
+David  26 Feb 2009
+    - screensaver: show correct info if CPU throttling;
+        show correct window title;
+        show "no projects" message.
+
+    api/
+        graphics2.h
+        graphics2_win.cpp
+    clientscr/
+        ss_app.cpp
+
+David  26 Feb 2009
+    - boinccmd: make --get_messages output more readable
+
+    client/
+        boinc_cmd.cpp
+
+Charlie 27 Feb 2009
+    - screensaver: remove from the coordinator error codes and messages 
+        which will now be handled by default graphics app, add new error 
+        codes for problems in default graphics app.
+    - Mac screensaver: improve logic to stop drawing BOINC logo when a 
+        graphics app covers coordinator window.
+    
+    clientscr/
+        mac_saver_module.cpp
+        Mac_Saver_Module.h
+        Mac_Saver_ModuleView.m, .h
+        screensaver.cpp, .h
+        screensaver_win.h
+
+David  27 Feb 2009
+    - manager: fix roundoff error in Advanced Prefs; fixes #613
+
+    clientgui/
+        DlgAdvPreferences.cpp
+
+Rom    27 Feb 2009
+    - MGR: Make CTRL-SHIFT-A the accelerator in the simple GUI that
+        switches back to the advanced view.
+        refs #147
+
+    clientgui/
+        sg_BoincSimpleGUI.cpp, .h
+
+David  27 Feb 2009
+    - client: fix bug that could cause scheduler RPC
+        to ask for work inappropriately,
+        and tell user that it wasn't asking for work.
+        Here's what was going on:
+        There are two different structures with work request fields
+        (req_secs, req_instances, estimated_delay):
+        COPROC_CUDA *coproc_cuda
+        and
+        RSC_WORK_FETCH cuda_work_fetch.
+        WORK_FETCH::choose_project() copied from cuda_work_fetch to coproc_cuda,
+        but only if a project was selected.
+        WORK_FETCH::clear_request() clears cuda_work_fetch but not coproc_cuda.
+
+        Scenario:
+        - a scheduler op is made to project A requesting X>0 secs of CUDA
+        - later, a scheduler op is made to project B for reason
+            other than work fetch (e.g., user request)
+        - choose_project() doesn't choose anything,
+            so the value of coproc_cuda->req_secs remains X
+        - clear_request() is called but that doesn't change *coproc_cuda
+
+        Solution: work-fetch code no longer knows about internals of
+            COPROC_CUDA and is not responsible for settings its request fields.
+            The copying of request fields from RSC_WORK_FETCH to COPROC
+            is done at a higher level,
+            in CLIENT_STATE::make_scheduler_request()
+
+        Additional bug fix: estimated_delay wasn't being cleared in some cases.
+
+    client/
+        cs_scheduler.cpp
+        scheduler_op.cpp
+        work_fetch.cpp
+
+David  27 Feb 2009
+    - client: RR sim FLOPS estimate for GPU jobs should reflect
+        fraction of time BOINC is running.
+
+    client/
+        rr_sim.cpp
+        work_fetch.cpp
+
+David  1 Mar 2009
+    - client: if we're going to do a scheduler RPC for reasons
+        other than work fetch (e.g., user request, project request)
+        temporarily clear resource backoffs while deciding
+        whether to request work.
+        The backoffs are there only to delay RPCs,
+        and we're going an RPC anyway.
+
+    client/
+        work_fetch.cpp
+
+David  1 Mar 2009
+    - web: link to 3rd-party signature sources on community prefs page
+
+    html/
+        inc/
+            stats_sites.inc
+        user/
+            edit_form_preferences_form.php
+
+David  1 Mar 2009
+    - web: fix buggy changeset 17278
+
+    html/user/
+        edit_form_preferences_form.php
+
+David  1 Mar 2009
+    - manager and GUI RPC: always show resource debt and backoff even if zero;
+        also show backoff interval
+
+    clientgui/
+        DlgItemProperties.cpp
+    lib/
+        gui_rpc_client.h
+        gui_rpc_client_ops.cpp
+
+David  2 Mar 2009
+    - fix bugs in the above.
+    - GUI RPC: remove unused items from get_state RPC: host_info, time_stats,
+        net_stats, host_venue
+
+    NOTE: any change to a GUI RPC struct requires changing AsyncRPC.cpp.
+    This is undesirable.
+
+    client/
+        cs_statefile.cpp
+    clientgui/
+        AsyncRPC.cpp
+    lib/
+        gui_rpc_client_ops.cpp
+
+David  2 Mar 2009
+    - Manager: scheduling params are not defined for non-CPU-intensive projects;
+        don't show them.
+
+    clientgui/
+        DlgItemProperties.cpp
+
+Rom    2 Mar 2009
+    - Update to OpenSSL 0.9.8j for Win32 and Win64
+    
+    openssl/
+        <Various Files>
+
+David  2 Mar 2009
+    - scheduler: replace choose_download_url_by_timezone with
+        replace_download_url_by_timezone.
+        From Bernd M.
+
+    sched/
+        sched_timezone.cpp
+        sched_config.cpp,h
+        sched_send.cpp
+
+Rom    2 Mar 2009
+    - Update to LibCurl 7.19.3 for Win32 and Win64
+    
+    curl/
+        <Various Files>
+
+David  2 Mar 2009
+    - scheduler/feeder: add <locality_scheduler_fraction> option;
+        lets you intermix locality and job-cache scheduling
+        From Bernd M.
+    - file_deleter: add --appid option
+
+    sched/
+        feeder.cpp
+        file_deleter.cpp
+        handle_request.cpp
+        sched_config.cpp,h
+        sched_send.cpp
+
+David  2 Mar 2009
+    - scheduler: add <locality_scheduling_sticky_file>
+        and <locality_scheduling_workunit_file> options
+        From Bernd M.
+    sched/
+        sched_config.cpp,h
+        sched_locality.cpp
+
+Charlie 2 Mar 2009
+    - client: Revise Apple idle time detection for compatibility with OS 10.6.
+
+    client/
+        hostinfo_unix.cpp
+    lib/
+        hostinfo.h
+
+Charlie 3 Mar 2009
+    - Mac: Update libCurl to 7.19.4.
+
+    mac_build/
+        buildcurl.sh
+        HowToBuildBOINC_XCode.rtf
+        setupForBOINC.sh
+        boinc.xcodeproj/
+            project.pbxproj
+
+Charlie 3 Mar 2009
+    - WINSCR: fix an error I introduced.
+    - Mac screensaver: logic to stop Data Management thread even if hung on 
+        an RPC.
+    
+    clientscr/
+        mac_saver_module.cpp
+        screensaver.cpp, .h
+        screensaver_win.cpp
+
+David  3 Mar 2009
+    - scheduler: add locality_scheduling arg to add_result_to_reply();
+        eliminate the need to diddle around with config.locality_scheduling.
+
+    sched/
+        sched_array.cpp
+        sched_assign.cpp
+        sched_locality.cpp
+        sched_resend.cpp
+        sched_send.cpp,h
+
+David  3 Mar 2009
+    - scheduler: don't need to set wreq->infeasible_only in send_work()
+
+    sched/
+        sched_send.cpp
+
+Rom    3 Mar 2009
+    - Update to LibCurl 7.19.4 for Win32 and Win64
+    
+    curl/
+        <Various Files>
+
+David  3 Mar 2009
+    - client: fix message: "idle instance" => "starved"
+
+    client/
+        work_fetch.cpp
+
+David  3 Mar 2009
+    - manager: when filtering messages by project,
+        show messages not tagged with a project (fixes #852)
+    - web: show X-project stats links as icons
+
+    clientgui/
+        ViewMessages.cpp
+    html/
+        inc/
+            host.inc
+            team.inc
+            stats_sites.inc
+        user/
+            img/
+                freedc_icon.png
+                boincstats_icon.png
+            white.css
+
+David  3 Mar 2009
+    - client: change garbage-collect logic.
+        old: reference-count files involved in a PERS_FILE_XFER
+        new: if a PERS_FILE_XFER refers to an unreferenced file,
+            delete it (and the associated FILE_XFER and HTTP_OP if present)
+        May fix #366
+
+    client/
+        client_state.cpp
+
+David  4 Mar 2009
+    - client: run CPU benchmarks and contact ref site if platform changes
+
+    client/
+        client_state.cpp
+
+David  4 Mar 2009
+    - client: show duration estimates for CPU and CUDA separately
+    - web: reverse Reply and Delete buttons in private msg page
+        fixes #858
+
+    client/
+        cs_scheduler.cpp
+    html/user/
+        pm.php
+
+David  4 Mar 2009
+    - client: get rid of CPU_PESSIMISM_FACTOR; it wasn't actually being used.
+    - manager: compile fix for gcc4.4
+        (this works on my computer; Rom/Charlie, please verify)
+
+    client/
+        rr_sim.cpp
+        sim.h
+    clientgui/common/
+        wxFlatNotebook.cpp
+
+David  4 Mar 2009
+    - client: don't allow coproc apps in app_info.xml.
+        Otherwise we'll get stuck in a loop where the client asks for CPU work,
+        and the scheduler sends jobs for what it thinks is a CPU app
+        but is actually a coproc app.
+
+        Eventually we should add coproc info to the app descriptions
+        send in scheduler request,
+        so that you can use anonymous platform for coproc apps.
+        But let's wait on this.
+
+    - scheduler: compile fix for gcc 4.4.  Fixes #854
+
+    client/
+        cs_statefile.cpp
+    sched/
+        sched_driver.cpp
+        sched_util.cpp
+
+David  4 Mar 2009
+    - client: reorganize and improve the logic for deciding
+        when to do a scheduler RPC:
+        if user request or acct mgr request, ignore backoff and suspend via GUI;
+        in all other cases honor both of these.
+
+    client/
+        cs_scheduler.cpp
+        scheduler_op.cpp
+
+David  4 Mar 2009
+    - scheduler: use simpler variables in HOST_USAGE
+
+    sched/
+        server_types.cpp,h
+        sched_send.cpp
+        sched_plan.cpp
+
+David  5 Mar 2009
+    - scheduler: add support for anonymous-platform coproc apps.
+        Old: although the request message contained all info
+            about the app version (flops, coproc usage etc.)
+            the server ignored this info,
+            and assumed that all anonymous platform apps where CPU.
+            With 6.6 client, this could produce infinite work fetch:
+            - client uses anon platform, has coproc app
+            - client has idle CPU, requests CPU work
+            - scheduler sends it jobs, thinking they will be done by CPU app
+            - client asks for more work etc.
+        New: scheduler parses full info on anon platform app versions:
+            plan class, FLOPS, coprocs.
+            It uses this info to make scheduling decisions;
+            in particular, if the request is for CUDA work,
+            if will only send jobs that use a CUDA app version.
+            The <result> records it returns contain info
+            (plan_class) that tells the client which app_version to use.
+        This will work correctly even if the client has multiple app versions
+        for the same app (e.g., a CPU version and a GPU version)
+
+    sched/
+        handle_request.cpp
+        server_types.cpp,h
+        sched_send.cpp
+
+David  5 Mar 2009
+    - client: if using anonymous platform, ignore (and complain about)
+        app versions in scheduler reply
+    - client: when reporting anonymous platform apps in sched request,
+        don't include <file_info>s (not relevant to server)
+
+    client/
+        client_types.cpp,h
+        cs_scheduler.cpp
+        cs_statefile.cpp
+
+David  5 Mar 2009
+    - scheduler: parse and return platform name in anon platform apps.
+        Otherwise, if an app version has a platform different from
+        the client's primary platform, the client won't find it.
+
+    sched/
+        server_types.cpp,h
+
+David  5 Mar 2009
+    - manager: show version minor numbers as 0n
+
+    clientgui/
+        ViewWork.cpp
+
+David  5 Mar 2009
+    - client: anon plaform app versions can specify coprocs
+
+    client/
+        cs_statefile.cpp
+
+Rom    5 Mar 2009
+    - MGR: Remove previous implementations of the already attached
+        to projects detection code.
+    - MGR: Prevent the user from progressing beyond the project
+        selection page if they are already attached to the
+        project they are trying to attach to.  Display a dialog
+        box telling they are already attached to that project
+        and to choose a different project.  This skips a bunch
+        of steps if they meant to attach to a different project.
+        
+    clientgui/
+        AlreadyAttachedPage.cpp, .h
+        BOINCWizards.h
+        ProjectInfoPage.cpp
+        ProjectPropertiesPage.cpp, .h
+        WizardAttachProject.cpp, .h
+    win_build/
+        boincmgr_curl.vcproj
+
+Rom    5 Mar 2009
+    - MGR: Account for new error code returned by the CC in response
+        to a get_project_config.php request.  It was causing the
+        wizards to throw a temp unavailable error page instead
+        of the not a boinc project page. Fixes #640
+        
+    clientgui/
+        AccountManagerPropertiesPage.cpp
+        ProjectPropertiesPage.cpp
+
+Rom    5 Mar 2009
+    - MGR: Newer versions of the server-side software publish their
+        master url in the response to the get_project_config.php
+        request.  If it exists use it over what was specified
+        by the user.  Fixes #259
+        
+    clientgui/
+        AccountManagerProcessingPage.cpp
+        ProjectProcessingPage.cpp
+
+David  5 Mar 2009
+    - scheduler: get work request parameters before resend_lost_jobs();
+        otherwise get NaNs for CPU fraction, etc.
+    - scheduler: show reasons in English when send job aborts
+
+    html/user/
+        top_hosts.php
+    sched/
+        sched_send.cpp,h
+        sched_resend.cpp
+        handle_request.cpp
+
+David  5 Mar 2009
+    - scheduler: move all send-work setup stuff (including messages)
+        into a function that's called before resend_lost_results()
+
+    sched/
+        sched_send.cpp,h
+        handle_request.cpp
+
+Rom    5 Mar 2009
+    - MGR: Saving and Restoring window diminisions is not a Mac only
+        operation when starting up or shutting down the client. Increase
+        the frequency of the auto-save state timer from 5 minutes to
+        5 seconds.  Fixes #69, Fixes #735, Fixes #790, 
+    - MGR: Lengthen the connected to client status field. Fixes #632
+    - MGR: Properly update the connected to client status field
+        even after a change to the simple view. Fixes #688
+        
+    clientgui/
+        AdvancedFrame.cpp
+        sg_BoincSimpleGUI.cpp, .h
+
+Rom    5 Mar 2009
+    - MGR: Don't display the Simple GUI 'Remove Project' menu item
+        if it was attached via an account manager. Fixes #261
+    
+    clientgui/
+        sg_StatImageLoader.cpp
+
+David  5 Mar 2009
+    - client: with anonymous platforms, app versions are identified
+        by app/platform/version/plan-class, same as normal
+
+    client/
+        client_state.cpp
+
+Rom    5 Mar 2009
+    - MGR: Set the dial-up and VPN connection list box to a static
+        size so that a scroll bar will appear if the number of items
+        exceeds the space to display them. Fixes #96
+    
+    clientgui/
+        DlgOptions.cpp
+
+Charlie 5 Mar 2009
+    - Mac: Remove obsolete files AlreadyAttachedPage.cpp, .h from 
+        XCode project.
+    - MGR: On Mac, revert to auto-save frequency of 5 minutes because:
+        * The 3 bugs did not occur on the Mac, and 
+        * The saved info is written to a file on the Mac, but the file 
+            is not flushed to disk until the Manager is closed, so the 
+            extra auto-saves have no effect but only waste CPU cycles.
+    
+    clientgui/
+        AdvancedFrame.cpp
+     mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+David  6 Mar 2009
+    - GUI RPC: the Jan 13 checkin removed some items from the
+        get_state() reply which are not included in our client interface.
+        However, it turns out that BoincView uses these items; put them back.
+    - GUI RPC: set_debt() can set CUDA LTD as well as CPU
+
+    client/
+        gui_rpc_server_ops.cpp
+        cs_statefile.cpp
+
+David  6 Mar 2009
+    - scheduler: fix bugs in support for anonymous platform + coprocs
+        (app versions don't have a <coprocs> around coproc elements,
+        may an oversight but let's stick with it).
+        Anyway, I think it's working now.
+    - lib: remove "owner" array from COPROC.
+        This was used in client to keep track of assignment of
+        coprocessors to tasks, but we got rid of the reserve/free scheme.
+        NOTE: this breaks the mechanism for passing --device N to apps;
+        I'll have to do this another way.  Stay tuned.
+
+    client/
+        app_start.cpp
+        cpu_sched.cpp
+    lib/
+        coproc.cpp,h
+    sched/
+        sched_array.cpp
+        sched_send.cpp
+        server_types.cpp
+
+Rom    6 Mar 2009
+    - MGR: Don't hide the main window after attaching to an account manager
+        if we don't support the system tray on that platform. refs #844
+        
+    clientgui/
+        AdvancedFrame.cpp
+
+David  6 Mar 2009
+    - client: add a new mechanism for assigning coproc instances to tasks,
+        and passing them the corresponding --device N cmdline args.
+        This fixes a bug introduced in 17402 (Feb 26)
+        that broke the --device feature,
+        presumably causing problems on systems with multiple GPUs.
+
+    client/
+        app_start.cpp
+        client_types.h
+    lib/
+        coproc.h
+
+David  6 Mar 2009
+    - client: fix crash
+    lib/
+        coproc.h
+
+Charlie 6 Mar 2009
+    - client: Fix compiler warning on Mac.
+
+    client/
+        app_start.cpp
+    
+David  6 Mar 2009
+    - scheduler: fix bugs that caused only 1 job to be sent
+
+    sched/
+        sched_array.cpp
+        sched_config.cpp,h
+        sched_send.cpp,h
+        sched_locality.cpp
+
+David  8 Mar 2009
+    - client, GUI RPC: put <host_venue> back in get_state reply;
+        it's used by BoincView
+
+    client/
+        cs_statefile.cpp
+
+Rom    8 Mar 2009
+    - MGR: Fix a long standing bug where the pie control in the
+        disk usage tab was being created but a default pie part
+        wasn't being added to the control.  This caused the
+        control to display black circles during window
+        initialization on slower systems.  This issue has been
+        around since we started using the pie control based disk
+        usage tab.
+    
+    clientgui/
+        ViewResources.cpp
+
+Rom    9 Mar 2009
+    - MGR: Set the window size through the window creation routine
+        instead of calling SetSize() after the fact.  It removes
+        all the flicker out of the Advanced GUI.
+    - MGR: Consolidate all the window position restore functionality
+        for both the Simple GUI and Advanced GUI in BOINCGUIApp.cpp
+        instead of having duplicate copies in each view.
+    - MGR: Have the Advanced GUI remember position across restarts.
+    - MGR: Create new window events that will save and restore
+        window state for both GUIs.  This avoids multiple UI
+        updates.  Each time you would change window size from within
+        a OnShow or OnSize event it would spawn an update of its own.
+        Sometimes certain controls would ignore the event because
+        it believed it was already processing the event.
+        
+    clientgui/
+        AdvancedFrame.cpp, .h
+        BOINCBaseFrame.cpp, .h
+        BOINCGUIApp.cpp
+        sg_BoincSimpleGUI.cpp, .h
+        ViewStatistics.cpp
+    win_build/
+        boincmgr_curl.vcproj
+
+Rom    9 Mar 2009
+    - MGR: Restore state even if we are not going to display the
+        window.  Otherwise when restoring from the system tray
+        we'll end up on the resources tab.
+    - MGR: Save state before exit.
+    
+    clientgui/
+        BOINCBaseFrame.cpp
+        BOINCGUIApp.cpp
+
+Charlie 9 Mar 2009
+    - MGR: CBOINCBaseFrame::FireRestoreState() calls ProcessEvent() 
+        on Mac instead of AddPendingEvent() to avoid displaying Disk 
+        tab for an instant when showing the Window on manual launch.
+    - MGR: suspend periodic RPCs only when displaying SafeMessageBox() 
+        not for all dialogs, so tabs can update during Preferences 
+        dialog, etc.
+
+    clientgui/
+        BOINCBaseFrame.cpp
+        BOINCGUIApp.h
+        MainDocument.cpp
+
+David  9 Mar 2009
+    - scheduler: msg tweak
+
+    sched/
+        sched_array.cpp
+
+David  9 Mar 2009
+    - client: backoff overrides project-requested scheduler RPC.
+        Otherwise, if scheduler is down, we'll retry infinitely every 10 secs
+    - client: remove auto_update.poll() (not used)
+
+    client/
+        client_state.cpp
+        cs_scheduler.cpp
+        scheduler_op.cpp
+
+David  11 Mar 2009
+    - Manager: show elapsed time instead of CPU time in Task tab.
+        CPU time is visible in task Properties.
+    - Manager: in task Properties, show final CPU and elapsed times
+        if job is finished
+    - client: honor backoff for account-manager-requested scheduler RPCs
+    - client: keep track of final elapsed time for results
+    - GUI RPC: report final elapsed time
+
+    client/
+        app_control.cpp
+        client_types.cpp,h
+        cs_scheduler.cpp
+    clientgui/
+        DlgItemProperties.cpp
+        ViewWork.cpp
+    lib/
+        gui_rpc_client.h
+        gui_rpc_client_ops.cpp
+
+Charlie 12 Mar 2009
+    - MGR: Simplify the fixes for saving and restoring window sizes and other 
+        settings; eliminate unnecessary new events EVT_FRAME_RESTORESTATE and 
+        EVT_FRAME_SAVESTATE, etc; call SaveState() and RestoreState() directly.
+    - MGR: Handle EVT_END_SESSION event to call SaveState() on Windows logout 
+        or shutdown; this fixes a long-standing problem where current settings 
+        were not being saved.
+
+    clientgui/
+        AdvancedFrame.cpp, .h
+        BOINCBaseFrame.cpp, .h
+        BOINCGUIApp.cpp, .h
+        sg_BoincSimpleGUI.cpp, .h
+
+Rom    13 Mar 2009
+    - MGR: Add the basic infrastructure for the up and comming news tab in
+        the advanced frame.
+        
+    clientgui/
+        AdvancedFrame.cpp
+        BOINCGUIApp.cpp
+        Events.h
+        stdwx.h
+        ViewNews.cpp, .h (Added)
+        ViewResources.cpp
+    win_build/
+        boincmgr_curl.vcproj
+
+David  16 Mar 2009
+    - scheduler: in get_app_version() we check if our current best
+        app version is a CUDA app and we don't need more CUDA work.
+        Need to do this for CPU as well.
+
+    sched/
+        sched_send.cpp
+
+David  16 Mar 2009
+    - web: in pages that show results, combine "server state",
+        "client state", and "outcome" into a single status.
+        The fact that there are three separate status fields
+        is an implementation detail that users don't need to see.
+
+    html/
+        inc/
+            result.inc
+        user/
+            results.php
+
+David  16 Mar 2009
+    - validator utilities: improvements to two_credit()
+        (used for deciding how much credit to grant
+        when there are 2 valid results).
+        From Kevin Reed
+
+    sched/
+        validate_util.cpp
+
+David  16 Mar 2009
+    - scheduler: app_plan() is not the right place to check for
+        "don't use GPU" pref; do it at a higher level
+
+    sched/
+        sched_plan.cpp,h
+        sched_send.cpp
+
+Charlie 16 Mar 2009
+    - MGR: Fix possible deadlock when exiting manager.
+    
+    clientgui/
+        AsyncRPC.cpp
+
+Charlie 17 Mar 2009
+    - MGR: Delete RPCThread::OnExit() because it is not called on Windows 
+        for some reason.
+    - Mac: add new source files ViewNews.cpp, ViewNews.h to XCode Project.
+    
+    clientgui/
+        AsyncRPC.cpp
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+Eric K  17 Mar 2009
+    - Linux: client: Added code to detect capability to run 64-bit binaries
+        from 32-bit BOINC client, and capability to run 32-bit binaries on 
+    a 64-bit linux system.
+
+    client/
+        cs_platforms.cpp
+
+Charlie 17 Mar 2009
+    - MGR: CMainDocument::KillRPCThread() defers to RPC thread before testing 
+        if thread has exited on its own.
+    
+    clientgui/
+        AsyncRPC.cpp
+
+David  18 Mar 2009
+    - client: consider fetching work from overworked projects
+        if resource is saturated for < work_buf_min()
+        (rather than saturated for 0).
+        So now the only significance of "overworked" is that we
+        won't ask overworked projects for work if resource is saturated
+        more than work_buf_min() but less than work_buf_total()
+
+    client/
+        work_fetch.cpp,h
+
+David  18 Mar 2009
+    - client: in RR simulation, use app_version.flops
+        instead of host_info.fpops as the FLOPS estimate for non-GPU apps.
+        I don't see why this would make any difference
+        (these two are equal for non-GPU apps)
+        but people have reported that this change improves estimates.
+
+    client/
+        rr_sim.cpp
+
+David  18 Mar 2009
+    - scheduler and web: add a project preference for whether to use the CPU.
+        This complements the "use GPU?" pref.
+        Neither should be necessary, but what the heck.
+
+    db/
+        boinc_db.h
+        server_types.cpp,h
+        sched_send.cpp
+    html/project.sample/
+        project_specific_prefs.inc
+
+David  18 Mar 2009
+    - web: job lists can be filtered by status
+
+    html/
+        inc/
+            result.inc
+        user/
+            results.php
+
+David  19 Mar 2009
+    - scheduler: move app-version selection and score-based scheduling
+        to new files.
+
+    sched/
+        Makefile.am
+        sched_version.cpp,h (new)
+        sched_score.cpp,h (new)
+        various others
+
+David  19 Mar 2009
+    - client: work fetch: in RR sim, keep track of the number
+        of device instances used by jobs that miss deadline.
+        Don't do "variety" work fetch if this is >= # of instances
+
+    client/
+        rr_sim.cpp
+        work_fetch.cpp,h
+
+Rom    19 Mar 2009
+    - client: initial support for detecting the CPU L2 cache
+        size on Windows.
+        
+    client/
+        client_state.cpp
+        cs_benchmark.cpp
+        hostinfo_win.cpp
+
+David  20 Mar 2009
+    - client: reduce frequency of writing state file:
+        1) multiply checkpoint period by # of cores (or GPUs)
+        2) don't write statefile after schedule_cpus()
+            (we write it after enforce_schedule() if anything
+            started or stopped, and that's all that matters)
+    - client: add new log flag <statefile_debug>;
+        tells you when and why statefile is written
+
+    client/
+        app_start.cpp
+        client_state.cpp
+        cpu_sched.cpp
+        cs_statefile.cpp
+        log_flags.cpp,h
+
+David  20 Mar 2009
+    - client: add --no_priority_change cmdline arg
+        (and <no_priority_change> flag in cc_config.xml).
+        If set, run apps at same priority as client.
+
+    client/
+        app_start.cpp
+        cs_cmdline.cpp
+        log_flags.cpp,h
+
+David  20 Mar 2009
+    - API (win): TerminateProcess() apparently can return in some cases,
+        causing process to go into infinite "no heartbeat" loop.
+        Try sleeping for 1 sec, then calling DebugBreak()
+
+    api/
+        boinc_api.cpp
+
+David  20 Mar 2009
+    - API: add some #ifdef'd debug messages
+
+    api/
+        boinc_api.cpp
+
+David  20 Mar 2009
+    - web: fix X-project links in Computer page
+
+    html/inc/
+        host.inc
+
+David  22 Mar 2009
+    - client: garbage collect after scheduler RPC;
+        if project sent some irrelevant FILE_INFOs,
+        this will avoid starting transfers for them.
+    api/
+        boinc_api.cpp
+    client/
+        cs_scheduler.cpp
+        gui_rpc_server_ops.cpp
+    samples/multi_thread/
+        multi_thread.cpp
+
+David  23 Mar 2009
+    - API: don't try to unlock lockfile if we failed to lock it
+    - API: more detailed message if failed to lock
+
+    api/
+        boinc_api.cpp
+    html/project.sample/
+        project_news.inc
+    lib/
+        filesys.cpp,h
+
+David  23 Mar 2009
+    - new screensaver: don't show jobs if suspended
+
+    clientscr/
+        ss_app.cpp
+
+David  23 Mar 2009
+    - API: more lockfile messages
+
+    lib/
+        filesys.cpp
+    api/
+        boinc_api.cpp
+
+David  23 Mar 2009
+    - client (linux): if don't find libcudart.so in the current dir,
+        look for it in the library search path.  Fixes #863
+
+    lib/
+        coproc.cpp
+
+Rom    24 Mar 2009
+    - client: handle power events on Windows via a seperate thread and
+        hidden window.  The basic code was already in place to handle
+        logoff events on Win9x but now it is enabled for all Windows
+        versions.
+        
+    client/
+        app_control.cpp
+        main.cpp, .h
+
+David  24 Mar 2009
+    - small code shuffle
+    - fix manager build on unix
+
+    clientgui/
+        Makefile.am
+        ViewWork.cpp
+    lib/
+        util.cpp
+    samples/wrapper/
+        wrapper.cpp
+    api/
+        boinc_api.cpp
+
+David  24 Mar 2009
+    - remove wait arg of resume_client()
+
+    client/
+        main.cpp,h
+
+David  24 Mar 2009
+    - upgrade and make_project scripts: run update_translations.php,
+        which compiles the translation files into the form
+        used by the web code.
+        Projects that don't use "upgrade" will need to do this manually
+        whenever translation files change.
+    - make_project: create an initial db_revision file.
+        Otherwise make_project followed by upgrade will try
+        to do DB upgrades, which will error out
+
+    html/
+        inc/
+            translation.inc
+        ops/
+            update_translations.php
+        user/
+            language_select.php
+    tools/
+        upgrade
+        make_project
+
+David  24 Mar 2009
+    - web: updated the master translation file
+
+    html/
+        ops/
+            build_po.php
+        languages/translations/
+            en.po
+        user/
+            home.php
+
+David  24 Mar 2009
+    - web: remove spurious translation files
+
+David  24 Mar 2009
+    - web: clean out translation directories before updating
+        (to get rid of bad translation files)
+
+    html/ops/
+        update_translations.php
+    py/Boinc/
+        setup_project.py
+
+David  24 Mar 2009
+    - web: translation system didn't compile BOINC and
+        project-specific translations correctly.
+
+    html/
+        ops/
+            update_translations.php
+        inc/
+            translation.inc
+
+David  25 Mar 2009
+    - improve msgs in file upload handler
+
+    sched/
+        file_upload_handler.cpp
+
+David  25 Mar 2009
+    - client: give highest work-fetch priority to resources with idle instances
+
+    client/
+        work_fetch.cpp
+
+Charlie 25 Mar 2009
+    - MGR: Remove erroneous call of locale in main thread which may be causing 
+        undesired chanegs in date and numeric formatting due to conflicts 
+        between threads; also set locale only on a per-thread basis if available.
+    - MGR: Rename method CMainDocument::CopyProjectsToStateFile() to 
+        CMainDocument::CopyProjectsToStateBuffer() for clarity.
+    
+    clientgui/
+        AsyncRPC.cpp
+        BOINCGUIApp.cpp
+        MainDocument.h
+    lib/
+        gui_rpc_client.h
+
+Charlie 26 Mar 2009
+    - Mac: revise XCode project to use OS 10.4 SDK for building PowerPC
+        libraries and executables so that we can use weak-linking for
+        APIs not available before OS 10.4, such as uselocale().
+    - MGR: Modify SET_LOCALE constructor and destructor to change locale
+        only on those systems without support for setting locale
+        on a per-thread basis, such as OS 10.3.9.
+    NOTE: At this point it appears that Ubuntu and Fedora both support
+        uselocale().  If any platform does not support it, see the 
+        comments at NO_PER_THREAD_LOCALE in lib/gui_rpc_client.h for info 
+        on allowing for that.
+
+    clientgui/
+        AsyncRPC.cpp
+    lib/
+        gui_rpc_client.h
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+David  26 Mar 2009
+    - client: clear resource backoffs on user-requested RPC
+    - client: randomize resource backoffs to avoid lockstep
+
+    client/
+        cs_scheduler.cpp
+        work_fetch.cpp
+
+David  26 Mar 2009
+    - client: when a job finishes,
+        clear the project's backoff for its resource type.
+        This fixes a problem where a project has a "max jobs in progress"
+        limit, and we're backed off because of that.
+        We'll now fetch work immediately instead of waiting 24 hrs.
+
+    client/
+        app.cpp
+
+Charlie 26 Mar 2009
+    - Mac: Additional changes to make sure BOINC libraries will continue to 
+        build on the Mac using either XCode on OS 10.5 or config / make on 
+        OS 10.3 and later, though the config / make method is still not 
+        recommended on the Mac.
+    - MGR & lib: Provide a cleaner way to specify that a platform does not 
+        support uselocale() API or other per-thread locale.  See the comments 
+        at NO_PER_THREAD_LOCALE in lib/gui_rpc_client.h for details.
+    - Samples: Fix build breaks and warnings when using MakeMacExample.sh 
+        script or Makefile_mac2 make file to build example_app on Mac.  These 
+        errors were probably introduced when boinc_samples was moved into 
+        boinc/samples. 
+        
+     clientgui/
+        AsyncRPC.cpp
+    lib/
+        gui_rpc_client.h
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+    samples/
+        example_app/
+            Makefile_mac
+            Makefile_mac2
+            MakeMacExample.sh
+
+David  27 Mar 2009
+    - manager: display versions as x.xx
+
+    clientgui/
+        DlgItemProperties.cpp
+
+David  27 Mar 2009
+    - API: add function boinc_msg_prefix() that returns
+        time of day and process ID.
+        This should prefix all messages written to stderr
+        by applications or by the runtime system.
+
+    api/
+        boinc_api.cpp,h
+        graphics2_win.cpp
+        graphics2_unix.cpp
+    samples/
+        wrapper/
+            wrapper.cpp
+        multi_thread/
+            multi_thread.cpp
+        example_app/
+            uc2.cpp
+
+David  27 Mar 2009
+    - manager: fix message
+
+    clientgui/
+        ProjectInfoPage.cpp
+
+David  27 Mar 2009
+    - client: typo in work fetch code; may cause minor errors
+
+    client/
+        work_fetch.cpp
+
+David  30 Mar 2009
+    - boinc_submit (single-job submission):
+        set the job params to reasonable values (see below),
+        and make it easy to change these values in the script
+    - create_work (function and script): change default job params:
+        FLOPs est: 1e9 => 3600e9
+        FLOPs bound: 1e10 => 86400e9
+        mem bound 100MB => 500MB,
+        disk bound 100MB => 1GB
+        delay bound: 100000s => 1 week
+
+    client/
+        work_fetch.cpp
+    tools/
+        boinc_submit
+        create_work.cpp
+
+David  30 Mar 2009
+    - GUI RPC: client side: if parse a RESULT and CPU is nonzero
+        but elapsed time is zero, we must be talking to an old client;
+        set elapsed = CPU
+
+    lib/
+        gui_rpc_client_ops.cpp
+
+David  31 Mar 2009
+    - client: (unix): if host name lookup fails, call res_init().
+        This is an attempt to fix a problem on Linux where,
+        if the client starts before a VPN is set up, it can never communicate
+
+    client/
+        http_curl.cpp
+    lib/
+        network.cpp,h
+
+Charlie 31 Mar 2009
+    - Mac: Add -lresolv to XCode linker flags for client and manager to link 
+        with libresolv.dylib for new res_init() call.
+
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+Charlie 1 Apr 2009
+    - Mac: Add -lresolv to XCode linker flags for screensaver, ss_app and 
+        boinccmd.
+    - MGR: on Mac, implement standard Preferences item under BOINC menu 
+        with standard keyboard shortcut; same as Advanced/Preferences.
+
+    clientgui/
+        AdvancedFrame.cpp
+        mac/
+            MacSysMenu.cpp
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+David  1 Apr 2009
+    - client: show project name in "backoff ended" msg
+
+    client/
+        app.cpp
+        cpu_sched.cpp
+        cs_scheduler.cpp
+
+Charlie 1 Apr 2009
+    SS: Under Mac Sandbox security, launch default screensaver graphics app 
+        as user and group boinc_master via gfx_switcher, not via setgid.
+
+    client/
+        check_security.cpp
+    clientgui/
+        mac/
+            SetupSecurity.cpp
+    clientscr/
+        gfx_switcher.cpp
+        screensaver.cpp
+    mac_build/
+        Mac_SA_Secure.sh
+
+Charlie 2 Apr 2009
+    SS: Under Mac Sandbox security, terminate default screensaver graphics 
+        app via gfx_switcher.  This is safer because the man page for kill() 
+        says the user ID of the process sending the signal must match that 
+        of the target process, though in practice that seems not to be true 
+        on the Mac.
+
+    clientscr/
+        gfx_switcher.cpp
+        mac_saver_module.cpp
+        Mac_Saver_Module.h
+        screensaver.cpp
+        screensaver_win.h
+    mac_build/
+        Mac_SA_Secure.sh
+
+David  2 Apr 2009
+    - web: in filtered job lists,
+        "pending" should include "inconclusive",
+        and "invalid" should include "too late to validate"
+
+    html/inc/
+        result.inc
+
+Rom    2 Apr 2009
+    - WINSCR: It appears newer notebook models with multiple video
+        chipsets exhibit an interesting situation.  It appears as though
+        in certain conditions a single monitor machine actually reports
+        itself as having three monitors.  Normally the monitor that
+        contains the primary window (coord 0,0) is on monitor 0, but on
+        these machines coord 0,0 is actually on monitor 2.  This led to the
+        screensaver not properly exiting when keyboard and/or mouse activity
+        was detected.  Now when we detect that keyboard and/or mouse activity
+        has happened we send the WM_INTERRUPTSAVER event to all windows
+        on all monitors.
+        
+    clientscr/
+        screensaver_win.cpp, .h
+
+David  3 Apr 2009
+    - get_project_config.php: include plan classes in platform list;
+        i.e., list both win/x86 and win/x86 + NVIDIA.
+        This will allow the manager to show which projects can
+        use the hosts's coprocessors,
+        and also graying out projects that require an absent coproc.
+    - fix compile warnings
+
+    api/
+        graphics2.h
+        graphics2_util.cpp
+    client/
+        boinc_cmd.cpp
+        work_fetch.cpp,h
+    html/user/
+        get_project_config.php
+
+David  6 Apr 2009
+    - make_project: get rid of verbosity-level stuff
+        and fancy overwriting of stdout lines
+
+    tools/
+        make_project
+    html/inc/
+        translation.inc
+    py/Boinc/
+        setup_project.py
+
+Rom    6 Apr 2009
+    - WINSETUP: When uninstalling, don't migrate the client data back
+        to the 5.x location.
+        
+    win_build/installerv2/redist/Windows/src/boinccas/
+        CAMigrateBOINCData.cpp
+
+Rom    7 Apr 2009
+    - WINSETUP: On some setups, how we were including the 'Everyone' well
+        known security ID in the boinc_users group didn't work properly.
+        
+        From now on include the 'Everyone' security ID in the various
+        ACLs instead.  This will probley clean up a wide range of
+        various issues with multi-user installs.
+        
+    win_build/installerv2/redist/Windows/src/boinccas/
+        boinccas.rc
+        CACreateBOINCGroups.cpp
+        CASetPermissionBOINC.cpp
+        CASetPermissionBOINCData.cpp
+        CASetPermissionBOINCDataProjects.cpp
+        CASetPermissionBOINCDataSlots.cpp
+    win_build/installerv2/redist/Windows/Win32/
+        boinccas.dll
+        boinccas95.dll
+    win_build/installerv2/redist/Windows/x64/
+        boinccas.dll
+        boinccas95.dll
+
+David  7 Apr 2009
+    - web and client: change the default for "run_gpu_if_user_active"
+        from true to false.
+        Currently running CUDA apps on NVIDIA GPUs causes
+        a significant slowdown in GUI response.
+        
+    html/inc/
+        prefs.inc
+    lib/
+        prefs.cpp
+    tools/
+        make_project
+
+David  7 Apr 2009
+    - client: we were setting config defaults after parsing cmdline.
+        This meant that the cmdline args that set config params weren't working:
+            --allow_multiple_clients
+            --report_results_immediately
+            --no_priority_change
+            --start_delay
+
+    client/
+        client_state.cpp
+        cs_cmdline.cpp
+        log_flags.cpp,h
+
+Eric   7 Apr 2009
+    - API:  Added new function boinc_set_credit_claim() for use by projects that
+      want to grant approximately fixed credits, but don't want to express them in 
+      terms of FPOPS and IOPS.  This API just calls 
+      boinc_ops_cumulative(N*8.64000e+11,0).
+
+    api/
+        boinc_api.cpp,h
+
+Charlie 7 Apr 2009
+    MGR: Fix compatibility problem with sizing of all-projects list in Attach 
+        Project Wizard when using wxWidgets 2.8.8 or later.
+
+    clientgui/
+        ProjectListCtrl.cpp
+
+David  8 Apr 2009
+    - Add "html/ops/purge_profile.php" script to help admins locate
+        and remove spam profiles
+
+    html/
+        inc/
+            email.inc
+        ops/
+            purge_profile.php
+        user/
+            mail_passwd.php
+
+David  8 Apr 2009
+    - client: back out res_init() change; it didn't work
+
+    client/
+        http_curl.cpp
+    lib/
+        network.cpp.h
+
+Charlie 8 Apr 2009
+    - Mac MGR: build with wxWidgets 2.8.10.
+    - Mac: Remove -lresolv from XCode linker flags for client, manager, 
+        ss_app, screensaver and boinccmd since res_init() call is removed.
+
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+Charlie 9 Apr 2009
+    - Mac client: fill in command field of PROCINFO struct so <exclusive_app> 
+        log flag works properly on Mac.
+
+    lib/
+        procinfo_mac.cpp
+
+David  9 Apr 2009
+    - client: for each app version,
+        keep track of the largest WSS of tasks using it.
+        In checking whether tasks fit in RAM,
+        use this as an estimate for tasks that haven't started yet.
+        This avoids a situation where the client starts a lot of
+        tasks in sequence, only to find that each one doesn't fit in RAM.
+
+    client/
+        client_types.h
+        cpu_sched.cpp
+
+David  9 Apr 2009
+    - manager: show execution directory in task properties
+
+    clientgui/
+        DlgItemProperties.cpp
+
+Rom    9 Apr 2009
+    - WINSETUP 'Everyone' is not just a group, it is a well known
+        group.
+        
+    win_build/installerv2/redist/Windows/src/boinccas/
+        CASetPermissionBOINC.cpp
+        CASetPermissionBOINCData.cpp
+        CASetPermissionBOINCDataProjects.cpp
+        CASetPermissionBOINCDataSlots.cpp
+    win_build/installerv2/redist/Windows/Win32/
+        boinccas.dll
+        boinccas95.dll
+    win_build/installerv2/redist/Windows/x64/
+        boinccas.dll
+        boinccas95.dll
+
+David  9 Apr 2009
+    - graphics API: add rotation arg to txf_render_string()
+        (from Carl C.)
+
+    api/
+        txf_util.cpp,h
+
+Rom    10 Apr 2009
+    - WINSETUP: Be sure to define INSTALLDIR if it isn't already
+        defined by the system or the transform.  DATADIR was
+        already being handled.
+    - WINSETUP: Save setup state at the end of the execution phase
+        as well as the end of the UI phase.
+        
+    win_build/installerv2/
+        BOINC.ism
+        BOINCx64.ism
+    win_build/installerv2/redist/Windows/src/boinccas/
+        CAValidateSetupType.cpp
+    win_build/installerv2/redist/Windows/Win32/
+        boinccas.dll
+        boinccas95.dll
+    win_build/installerv2/redist/Windows/x64/
+        boinccas.dll
+        boinccas95.dll
+
+David  10 Apr 2009
+    - client: for coproc jobs, don't start a job while a quit is pending.
+        Otherwise the new job may fail on memory allocation.
+
+    client/
+        cpu_sched.cpp
+
+David  10 Apr 2009
+    - client: instead of scheduling coproc jobs EDF:
+        - first schedule jobs projected to miss deadline in EDF order
+        - then schedule remaining jobs in FIFO order
+        This is intended to reduce the number of preemptions of coproc jobs,
+        and hence (since they are always preempted by quit)
+        to reduce the wasted time due to checkpoint gaps.
+    - client: the CPU scheduling policy made use of the number
+        of deadline misses in various places.
+        This should include only the deadline misses of CPU jobs.
+        So move "deadlines_missed" from RR_SIM_STATUS and PROJECT
+        to RSC_PROJECT_WORK_FETCH so that we have separate counts
+        for CPU and coproc jobs, and use the count for CPU jobs.
+    - GUI RPC: removed the rr_sim_deadlines_missed field
+        from project descriptor.
+        This is no longer meaningful, and it didn't seem to be used anywhere.
+
+    client/
+        client_types.cpp,h
+        cpu_sched.cpp
+        rr_sim.cpp,h
+        work_fetch.cpp,h
+    lib/
+        gui_rpc_client.h
+        gui_rpc_client_ops.cpp
+
+David  10 Apr 2009
+    - GUI RPC and manager: send slot and show it in task properties
+        rather than slot path
+        (slot_path is defined only for apps with graphics app).
+
+    clientgui/
+        DlgItemProperties.cpp
+    lib/
+        gui_rpc_client.h
+        gui_rpc_client_ops.cpp
+
+Rytis  11 Apr 2009
+    - web: allow login from subdirectories of the site (expects login_form.php
+        to be located in the URL_BASE).
+    
+    html/inc/
+        util.inc
+
+David  12 Apr 2009
+    - client: put back the call to res_init() on lookup failure.
+        Apparently it worked after all.
+
+    client/
+        http_curl.cpp
+    lib/
+        network.cpp,h
+
+Charlie 13 Apr 2009
+    - Mac: Add -lresolv to XCode linker flags for client, manager, boinccmd, 
+        screensaver and ss_app to link with libresolv.dylib for res_init() 
+        call (again).
+
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+David  14 Apr 2009
+    - client: eliminate the need to write the state file on each checkpoint.
+        Instead, write the info into a file in the slot directory,
+        and check for these files on startup.
+        This should reduce the overhead of state-file writing
+        on machines with lots of cores.
+        There will still be a flurry of writes each time a job finishes,
+        but reducing that overhead would be a larger job.
+    - client: make sure we write the state file after a failed RPC
+
+    client/
+        app.cpp,h
+        app_control.cpp
+        cs_scheduler.cpp
+        file_names.h
+        scheduler_op.cpp
+
+Charlie 15 Apr 2009
+    SS: Under Mac Sandbox security, launch default screensaver graphics app 
+        via gfx_switcher as user and group boinc_project rather than 
+        boinc_master, since none of the default screensaver's RPC calls 
+        requires access to the password in gui_rpc_auth.cfg.
+
+    clientscr/
+        gfx_switcher.cpp
+        screensaver.cpp
+
+Rom    15 Apr 2009
+    - Fix compiler errors
+      ( From: Sascha Manns )
+      
+    client/
+        hostinfo_unix.cpp
+    clientgui/
+        DlgAdvPreferences.cpp
+
+David  15 Apr 2009
+    - web: improve the appearance of buttons
+    - web: divide the stylesheet into "main.css"
+        (which has formatting stuff, rounded corners etc.)
+        and "white.css" (which has colors).
+        The above two from Simek.
+    - scheduler: change default min NVIDIA driver version
+        from 17500 to 17700
+
+    html/
+        inc/
+            util.inc
+        user/
+            main.css (new)
+            sample_index.php
+            user_search.php
+            white.css
+            img/
+                white_grad.png (new)
+    sched/
+        sched_plan.cpp
+
+David  15 Apr 2009
+    - Unix build: make it work if "diff" is missing (??)
+        from Michael Tughan
+
+    lib/
+        Makefile.am
+
+David  15 Apr 2009
+    - web: increase button text size a little
+
+    html/user/
+        main.css
+
+David  15 Apr 2009
+    - web: update black.css
+
+    html/user/
+        black.css
+
+Rom    15 Apr 2009
+    - Add ICU to the BOINC depends list.  It is needed for
+        SQLLite3 which will be needed for reading Firefox
+        3.x cookies.
+        
+    icu/
+        <Various Files>
+
+Charlie 15 Apr 2009
+    Mac MGR: Add keyboard shortcuts command-shift-S to switch to Simple View
+        and command-shift-A to switch back to Advanced View.
+        
+    clientgui/
+        AdvancedFrame.cpp, .h
+        sg_BoincSimpleGUI.cpp, .h
+
+David  15 Apr 2009
+    - client: fixed a crash caused by using %f to write
+        working-set size into a fixed-size buffer.
+        Use %e instead.
+        TODO: figure out why WSS was huge.
+    - web: if "en" is primary language, don't read translation files
+
+    client/
+        app_control.cpp
+    html/inc/
+        translation.inc
+    samples/example_app/
+        uc2.cpp
+
+David  16 Apr 2009
+    - client: another try at fixing the above crash
+    - web: don't show plan class in separate column in apps list; fixes #874
+
+    client/
+        app_control.cpp
+    html/user/
+        apps.php
+
+David  16 Apr 2009
+    - upgrade script: do DB update even if stop_web is present,
+        rather than spewing an HTML error message.
+        Fixes #875
+
+    html/
+        inc/
+            boinc_db.inc
+            util.inc
+        ops/
+            db_update.php
+        user/
+            apps.php
+
+David  16 Apr 2009
+    - client: if detach a project, adjust debts and trigger
+        CPU sched and work fetch
+
+    client/
+        client_state.cpp
+        cpu_sched.cpp
+
+Charlie 17 Apr 2009
+    Mac MGR: Changes to build with full Unicode support with wxWidgets-2.8.10.
+
+    mac_build/
+        buildWxMac.sh
+        setupForBOINC.sh
+    clientgui/
+        BOINCClientManager.cpp
+        SkinManager.cpp
+        mac/
+            MacGUI.pch
+
+Charlie 18 Apr 2009
+    MGR: Put keyboard shortcuts CTRL+SHIFT+S and CTRL+SHIFT+A in View Menu so 
+        their functionality is not hidden.  (On the Mac, this translates to 
+        COMMAND-SHIFT-A and COMMAND-SHIFT-S.)
+        
+    clientgui/
+        AdvancedFrame.cpp, .h
+
+David  19 Apr 2009
+    - client: improve CPU sched debug messages
+        (say what kind of job and why we're scheduling it)
+    - client: log messages describing GPUs: one line per GPU; fixes #879
+
+    client/
+        cpu_sched.cpp
+    lib/
+        coproc.cpp,h
+
+David  20 Apr 2009
+    - web: swap positions of reply/delete buttons in private message display
+
+    html/user/
+        pm.php
+
+David  20 Apr 2009
+    - db_purge: improve error-checking; if we're failing to write archives,
+        quit immediately so that we don't delete unarchived DB records
+
+    sched/
+        db_purge.cpp
+
+David  20 Apr 2009
+    - partial checkin so I can edit locally (bad network connection)
+
+    lib/
+        coproc.cpp,h
+
+Rom    21 Apr 2009
+    - WINBUILD: Update Project files for new layout.
+    
+    win_build/
+        boinc_cli_curl.vcproj
+        boinc_dll.vcproj
+        boinc_setup.vdproj (Deleted)
+        boinc_setup_auto.vdproj (Deleted)
+        boinc_ss.vcproj
+        boinccmd.vcproj
+        boincmgr_curl.vcproj
+        boincsvcctrl.vcproj
+        boinctray.vcproj
+        gr_boinc_cli_curl.vcproj (Deleted)
+        gr_boinc_dll.vcproj (Deleted)
+        gr_boinc_ss.vcproj (Deleted)
+        gr_boinccmd.vcproj (Deleted)
+        gr_boincmgr_curl.vcproj (Deleted)
+        GridRepublic.sln (Deleted)
+        libboinc.vcproj
+        libboinc_staticcrt.vcproj
+        sim.vcproj
+        ss_app.vcproj
+        updater.vcproj
+
+David  21 Apr 2009
+    - client: new approach to handling multiple GPUs.
+        old: find fastest GPU, and pretend that others are the same.
+            Problem: other GPUs might be less capable,
+            and not able to handle jobs sent by server.
+        new: find the most "capable" GPU, use others that are equivalent,
+            don't use those that are not.
+            "Capable" is defined by
+            - compute capability (i.e., hardware version)
+            - driver version
+            - memory size
+            - FLOPs
+            in that priority order.
+        See comments in lib/coproc.h
+
+    client/
+        app_start.cpp
+    lib/
+        coproc.cpp,h
+
+David  21 Apr 2009
+    - client: fix crash bug in CUDA init
+
+    lib/
+        coproc.cpp
+
+Rom    22 Apr 2009
+    - WINBUILD: More project file fixes
+    - WINBUILD: Create a new configuration for building the Unicode
+        version of the BOINC Manager.
+        
+    win_build
+        boinc_cli_curl.vcproj
+        boinc_dll.vcproj
+        boinc_ss.vcproj
+        boinccmd.vcproj
+        boincmgr_curl.vcproj
+        boincsvcctrl.vcproj
+        boinctray.vcproj
+        libboinc.vcproj
+        libboinc_staticcrt.vcproj
+        sim.vcproj
+        ss_app.vcproj
+        updater.vcproj
+
+Rom    22 Apr 2009
+    - WIN: First pass through the code to fix compliation errors when
+        building in a Unicode enabled environment.
+        
+        NOTE: For files that are shared between the core client and
+          the manager, it was simpliar to just call the ANSI versions
+          of the specific Windows API functions then to monkey with
+          all of the string handling code and convert between ANSI
+          and UCS-2 strings.  CreateFile becomes CreateFileA instead
+          of the default of CreateFileW.
+          
+        Down to 11 compile time errors from over 100.
+
+    clientgui/
+        BOINCBaseFrame.cpp
+        BOINCTaskBar.cpp
+        browser.cpp
+        browser.h
+        sg_StatImageLoader.cpp
+    lib/
+        boinc_win.h
+        diagnostics_win.cpp
+        filesys.cpp
+        gui_rpc_client_ops.cpp
+        proc_control.cpp
+        stackwalker_imports.h
+        stackwalker_win.cpp
+        str_util.cpp
+        util.cpp
+        win_util.cpp, .h
+
+David  22 Apr 2009
+    - client: When a preemptable task wasn't preempted
+        (e.g. because it hadn't finished its time slice)
+        we were failing to mark it as scheduled.
+
+    client/
+        cpu_sched.cpp
+
+Rom    23 Apr 2009
+    - WINBUILD: More project file cleanup.
+    - WINBUILD: Move wxWidgets include directives from the
+        FlatNotebook to the pre-compiled header. Try and avoid
+        a compilation problems when two different sets of
+        wxWidgets build environments are on the system and have
+        been setup differently.
+        
+    clientgui/common/
+        wxFNBDropTarget.h
+    clientgui/
+        stdwx.h
+    win_build/
+        boincmgr_curl.vcproj
+
+David  24 Apr 2009
+    - client: message tweak
+    - ops: don't import teams if using invitation codes
+
+    client/
+        work_fetch.cpp
+    html/ops/
+        team_import.php
+
+David  24 Apr 2009
+    - client: tweak to 4/21 checkin.
+        After finding the "most capable" GPU,
+        ignore FLOPS in deciding what GPUs are equivalent to it.
+        This opens up the possibility that the client will get jobs
+        that it won't be able to finish in time.
+        But it still avoids getting jobs that will crash.
+
+    lib/
+        coproc.cpp
+
+David  24 Apr 2009
+    - fix typo in compare_cuda()
+
+    lib/
+        coproc.cpp
+
+David  26 Apr 2009
+    - team import: error out if account creation disabled
+
+    html/ops/
+        team_import.php
+
+David  27 Apr 2009
+    - link fix
+    html/inc/
+        stats_sites.inc
+
+David  27 Apr 2009
+    - client: show message when user does a project or task op
+        (suspend, resume, update, etc.)
+
+    client/
+        gui_rpc_server_ops.cpp
+
+David  27 Apr 2009
+    - client: add <use_all_gpus> config option.  If set, use GPUs
+        even if they're not equivalent to the most capable one.
+    - Validator: fix one_pass_N_WU option.
+
+    client/
+        client_state.cpp
+        log_flags.cpp,h
+    lib/
+        coproc.cpp,h
+    sched/
+        validator.cpp
+
+David  28 Apr 2009
+    - DB code: fixed three places where we accessed a MYSQL_ROW
+        after freeing the MYSQL_RES it came from.
+        (this didn't appear to cause any problems, but not good form).
+        Fixes #883
+
+    db/
+        db_base.cpp
+
+David  30 Apr 2009
+    - Changes to get the client to build on IRIX:
+        don't use the variable name "sgi";
+        include <xxx.h> instead of <cxxx>; the latter just adds
+        overloaded functions that we avoid.
+
+    api/
+        gutil.cpp
+        gutil_text.cpp
+    client/
+        boinc_cmd.cpp
+        hostinfo_unix.cpp
+        whetstone.cpp
+    html/inc/
+        stats_sites.inc
+    lib/
+        diagnostics.h
+        gui_rpc_client_ops.cpp
+        str_util.cpp
+
+Rom    30 Apr 2009
+    - MGR: Turn GetViewName into the unlocalized version of the view
+        name, so the configuration group name is consistant across
+        all languages and does not cause conversion issues on
+        different platforms where the configuration information
+        is treated differently when compiled Unicode vs. ANSI.
+        
+    clientgui/
+        ViewMessages.cpp
+        ViewNews.cpp
+        ViewProjects.cpp
+        ViewResources.cpp
+        ViewStatistics.cpp
+        ViewTransfers.cpp
+        ViewWork.cpp
+
+David  1 May 2009
+    - removed outdated translation files; updated template
+
+David  1 May 2009
+    - sample bitwise validator: make it work for binary files
+        fixes #886, #887
+
+    lib/
+        md5_file.h
+        util.cpp,h
+    sched/
+        sample_bitwise_validator.cpp
+
+Rytis  3 May 2009
+    - user web: add a hook project_user_links() to user_links() to easily
+        extend user links (very useful for adding project badges).
+    
+    html/inc/
+        util.inc
+
+David  4 May 2009
+    - client: view 2 GPUs as equivalent if their memory differs by <30%.
+        (maybe their memory differed slightly from the most capable one)
+
+    lib/
+        coproc.cpp
+
+David  4 May 2009
+    - client: simplify enforce_schedule(), and maybe fix bugs.
+        New approach: take the "ordered_schedule_results" list,
+        add running jobs that haven't finished their time slice,
+        and order the result appropriately.
+        Then run jobs in order until CPUs are filled.
+        Simpler and clearer than the old way.
+
+    client/
+        client_types.h
+        client_state.h
+        cpu_sched.cpp
+
+David  5 May 2009
+    - client: enforce_schedule() wasn't starting GPU jobs
+
+    client/
+        cpu_sched.cpp
+
+David  5 May 2009
+    - Change Makefiles to use "$(LN) foo ." instead of "ln foo"
+
+    zip/
+        Makefile.am
+    api/
+        Makefile.am
+
+Rom    5 May 2009
+    - It appears Pootle is looking for a comment line ahead of
+        each message to translate, if it doesn't have some form
+        of comment it skips over it.
+        
+    doc/
+        build_po.php
+
+Charlie 5 May 2009
+    Mac: Modify wxWidgets build script to fix a problem in wxMac-2.8.10 
+        which made the Manager extremely slow to update or respond to 
+        user input, by patching wxMac-2.8.10/src/mac/carbon/thread.cpp.
+        wxMac developer Stefan Csomor has checked my change into the 
+        wxWidgets 2.8 branch, so this should be fixed in wxMac-2.8.11.
+
+    mac_build/
+        buildWxMac.sh
+
+Charlie 5 May 2009
+    MGR: Add comments and slightly reorder code for clarity.
+
+    clientgui/
+        AsyncRPC.cpp
+
+David  6 May 2009
+    - client: write message (and show new config info) when config file reread
+    - client: improve cpu_sched_debug messages
+    - web translation: code wasn't handling multi-line tokens
+
+    client/
+        gui_rpc_server_ops.cpp
+        cpu_sched.cpp
+
+David  6 May 2009
+    - feeder: add -appids option: lets you specify which apps to
+        get jobs for (default it all).
+        Useful if you're mixing locality and regular scheduling.
+    - a little E at h-specific stuff
+    From Bernd Machenschalk.
+
+    sched/
+        feeder.cpp
+        handle_request.cpp
+        sched_send.cpp
+
+David  7 May 2009
+    - client, Mac: don't do res_init().  It causes a crash.
+    - client (Unix): if client crashes while benchmark processes are going,
+        make sure they detect this and exit.
+    - back-end programs: remove hardwired assumptions about
+        what directory they run in, and hence where config.xml is.
+        E.g., daemons look for it in "..", others expect it in current dir.
+        New approach: all the programs look for the project dir as follows:
+        1) the environment var BOINC_PROJECT_DIR, if defined
+        2) the current dir, if config.xml is there.
+        3) else ".."
+        This means you can run programs in either proj/bin/ or proj/,
+        or (using BOINC_PROJECT_DIR) you can keep executables
+        outside of the project dir.
+
+    client/
+        cpu_sched.cpp
+        cs_benchmark.cpp
+    lib/
+        network.cpp
+    sched/
+        *.cpp
+    tools/
+        backend_lib.cpp
+        create_work.cpp
+        dir_hier_path.cpp
+
+Bernd 7 May 2009
+    - <cstdio> is a C++ haeder - moved it to __cplusplus section
+    lib/
+        filesys.h
+
+Rytis  7 May 2009
+    - user web: remove an undocumented feature where anyone could do a
+        recompile of language files by just knowing an URL parameter.
+    
+    hmtl/inc/
+        translation.inc
+
+Charlie 7 May 2009
+    - Mac: Remove -lresolv from XCode linker flags for client, manager, boinccmd 
+        and screensaver which linked with libresolv.dylib for res_init() call.
+    - Mac client: fix parent died test in benchmark_time_to_stop().
+
+    client/
+        cs_benchmark.cpp
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+Rom    8 May 2009
+    - WINBUILD: Cleanup the Unicode configurations
+    - WINBUILD: Make building Unicode version of BOINC Manager the
+        default.
+        
+    win_build
+        boinc_cli.vcproj
+        boinc_dll.vcproj
+        boinc_ss.vcproj
+        boinccmd.vcproj
+        boincmgr.vcproj
+        boincsvcctrl.vcproj
+        boinctray.vcproj
+        libboinc.vcproj
+        libboinc_staticcrt.vcproj
+        sim.vcproj
+        ss_app.vcproj
+        updater.vcproj
+        
+
+David  9 May 2009
+    - update translation file
+
+    locale/templates/
+        BOINC-Project-Generic.pot
+
+Rom    12 May 2009
+    - MGR: Include support for Firefox 3.x cookie support for
+        the attach to project wizard.
+    - MGR: Include support for a cookie based attach to
+        account manager wizard.
+        
+    clientgui/
+        browser.cpp, .h
+    clientgui/mac/
+        browser_safari.mm
+    win_build/
+        boinc_post_bld_rules.cmd
+        boincmgr.vcproj
+
+Rom    12 May 2009
+    - WINBUILD: Have the new installers include the new BOINC OpenGL
+        based screensaver, as well as the logo and font files.
+    - WINBUILD: Include sqlite3.dll in the BOINC Manager component.
+    
+    win_build/installerv2/
+        BOINC.ism
+        BOINCx64.ism
+    win_build/
+        ss_app.vcproj
+
+David  12 May 2009
+    - file deleter: improved log messages (from Bernd M)
+
+    sched/
+        file_deleter.cpp
+
+David  12 May 2009
+    - scheduler: the multiplier for both #jobs/day and #jobs in progress
+        is #CPUs + config.cuda_multiplier * #GPUs
+
+    sched/
+        sched_send.cpp
+
+Charlie 13 May 2009
+    - Mac MGR: Fix compile error.
+    - Mac MGR: Add -lsqlite3 to XCode linker flags for manager.
+
+    clientgui/
+        mac/
+            browser_safari.mm
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+Charlie 13 May 2009
+    - MGR: Merge "Attach to account manager" functionality into "Attach to 
+        project" wizard.  I have not yet merged the Synchronize with account 
+        Manager" or "Remove from account manager" into the "Attach to project" 
+        wizard; after doing that I will remove the obsolete classes and files.
+        
+    clientgui/
+        AccountInfoPage.cpp
+        AccountManagerProcessingPage.cpp
+        AccountManagerPropertiesPage.cpp
+        BOINCBaseWizard.cpp, .h
+        BOINCWizards.h
+        WelcomePage.cpp, .h
+        WizardAttachProject.cpp, .h
+    lib/
+        gui_rpc_client_ops.cpp
+
+David  13 May 2009
+    - web: make build_po.php usable for projects
+
+    html/ops/
+        build_po.php
+
+Charlie 13 May 2009
+    - MGR: Always treat quit RPCs as non-demand so Manager can exit when 
+        client is not responding; don't remove currently active RPC request 
+        from queue when receiving a quit RPC request.
+    
+    clientgui/
+        AsyncRPC.cpp
+
+David  14 May 2009
+    - scheduler: add <report_max> config parameter;
+        limits the # of completed results handled per scheduler RPC.
+        This may be needed to avoid crashes due to memory allocation
+        failure (each reported result uses about 128KB memory).
+    - web: In showing result lists,
+        include "Validate error" results in the "Invalid" category.
+        (Previously they didn't appear in any category)
+
+    html/inc/
+        result.inc
+    sched/
+        sched_config.cpp,h
+        sched_result.cpp
+
+David  14 May 2009
+    - web: check for mismatched "'s in translation files
+    - build_po.php: add LANG_NAME strings
+
+    html/
+        inc/
+            translation.inc
+        ops/
+            build_po.php
+
+Charlie 15 May 2009
+    Fix compiler warning.
+
+    lib/
+        util.cpp
+
+Charlie 15 May 2009
+    - MGR: Finish merging "Attach to account manager" functionality into "Attach 
+        to project" wizard: "Synchronize with account Manager" and "Remove from 
+        account manager." Remove the obsolete classes and files.
+        NOTE: The "Remove from account manager" functionality in the wizard 
+        (action == ACCOUNTMANAGER_DETACH) was no longer used, so I removed this 
+        block of code.
+        
+    clientgui/
+        AccountInfoPage.cpp
+        AccountManagerProcessingPage.cpp
+        AccountManagerPropertiesPage.cpp
+        AdvancedFrame.cpp, .h
+        BOINCBaseWizard.cpp, .h
+        BOINCWizards.h
+        CompletionPage.cpp
+        Events.h
+        Makefile.am
+        sg_BoincSimpleGUI.cpp
+        sg_ProjectsComponent.cpp
+        WelcomePage.cpp
+        WizardAccountManager.h
+        WizardAttachProject.cpp, .h
+        WizardAccountManager.cpp, .h (Deleted)
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+    win_build/
+        boincmgr.vcproj
+
+Charlie 15 May 2009
+    - MGR: Update m_dtCachedCCStatusTimestamp only when RPC completes.
+    - MGR: CBOINCClientManager::IsBOINCCoreRunning() tests whether the Client 
+        process exists, rather than doing an RPC.  We can't use an async RPC 
+        here because we may not yet be connected to the Client, and the direct
+        RPC which was being done would hang the Manager if the Client was 
+        running but not responding.  This should fix some of the situations 
+        where the manager would become unresponsive.
+    - MGR: Add an "Exit BOINC" button ("Quit BOINC" on Mac) to async RPC 
+        "Communicating with BOINC Client. Please wait..." dialog.  This allows 
+        users to exit BOINC more easily when Client is unresponsive.
+    
+    clientgui/
+        AsyncRPC.cpp, .h
+        BOINCClientManager.cpp
+        MainDocument.cpp
+
+David  15 May 2009
+    - scheduler: enforce max_wus_to_send config parameter
+        for jobs being resent (as well as new jobs)
+
+    sched/
+        sched_resend.cpp
+
+Charlie 16 May 2009
+    - MGR: Fix bug which prevented skin change from being saved if exiting Manager 
+        while in Simple View.
+
+    clientgui/
+        BOINCGUIApp.cpp
+
+David  17 May 2009
+    - web: fix formatting in [pre].  Fixes #891
+
+    html/inc
+        text_transform.inc
+
+David  17 May 2009
+    - upgrade: don't crash if file copy fails
+    - db_update.php: select database (not clear if this ever worked)
+    - translation: fix bug if have both BOINC and project translation
+
+    html/
+        inc/
+            boinc_db.inc
+            translation.inc
+        ops/
+            update_translations.php
+            db_update.php
+    py/Boinc
+        setup_project.py
+
+David  17 May 2009
+    - web: use read-only replica when possible
+
+    html/user/
+        pending.php
+        results.php
+        show_host_detail.php
+        workunit.php
+
+Rom    18 May 2009
+    - MGR: Take care of numerious compiler warning for Linux builds
+        and update license information on a bunch of files.
+        
+    clientgui/res/
+        <Numberious Files>
+    win_build/
+        boincmgr.vcproj
+
+Charlie 20 May 2009
+    - Mac: Fix build scripts for new screensaver.
+    
+    mac_installer/
+        release_GridRepublic.sh
+        release_boinc.sh
+
+David  20 May 2009
+    - web: in RSS feeds, replace images with [Image link]
+        but allow other tags (like <a>).
+        Note: if the image is itself inside a <a href=x>,
+        then the [Image link] will be linked to x, not to the image.
+
+    html/
+        inc/
+            text_transform.inc
+        user/
+            sample_rss_main.php
+
+Rom    20 May 2009
+    - MGR: Fix bug where *nix platforms using UCS2 Unicode encoding
+        were not able to display graphics as one or more null bytes
+        seperate each character.
+        
+    clientgui/
+        MainDocument.cpp
+
+Rom    20 May 2009
+    - MGR: Fix bug where there was no trailing backslash before
+        'symbols' was appended to the end of the symbol path.  This
+        caused the stack tracing code not to download the actual
+        symbol files needed to debug a problem.  I have no idea
+        when this bug was introduced.
+        
+    lib/
+        stackwalker_win.cpp
+
+David  20 May 2009
+    - web: the logic for using read-only DB replicas was messed up
+
+    html/inc/
+        boinc_db.inc
+
+Rom    22 May 2009
+    - MGR/client: Enable cookie support for Account Managers
+
+    client/
+        gui_rpc_server_ops.cpp
+    clientgui/
+        AccountManagerProcessingPage.cpp
+        AccountManagerPropertiesPage.cpp
+        browser.cpp
+        MainDocument.cpp
+        WizardAttachProject.cpp
+
+Rom    20 May 2009
+    - Tag for 6.7.5 release, all platforms
+      boinc_core_release_6_7_5
+
+    /
+        configure.ac
+        version.h
+    
+David  22 May 2009
+    - web: escape forum RSS entries instead of stripping tags
+        (from Nicolas; fixes #899)
+
+    html/user/
+        forum_rss.php
+
+David  22 May 2009
+    - web: clarify build_po.php
+
+    html/ops/
+        build_po.php
+        build_po_boinc.php (new)
+
+David  22 May 2009
+    - web: fix host-merge logic.  Fixes #893
+
+    html/inc
+        host.inc
+
+David  22 May 2009
+    - fix display problem when talking to old clients
+
+    lib/
+        gui_rpc_client_ops.cpp
+
+David  25 May 2009
+    - web: fix regular expression for "images as links"
+
+    html/inc/
+        text_transform.inc
+
+David  26 May 2009
+    - DB: for tables w/ fulltext indices, specify engine as MyISAM
+        from Nicolas; fixes #904
+
+    db/
+        schema.sql
+
+David  26 May 2009
+    - Mac installer: fix off-by-1 error
+
+    mac_installer/
+        CustomInstall.cpp
+
+David  27 May 2009
+    - lib: compile fix for C
+
+    lib/
+        filesys.h
+
+David  27 May 2009
+    - compile fixes for Haiku
+
+    lib/
+        network.h
+        gui_rpc_client.h
+        diagnostics.cpp
+        shmem.cpp,h
+    zip/unzip/unix/
+        unix.c
+
+David  27 May 2009
+    - compile fixes for Haiku
+
+    lib/
+        shmem.cpp
+
+David  28 May 2009
+    - scheduler: return better message if client has
+        too little GPU RAM, wrong driver version, etc.
+        (tell them what the specific requirement is)
+
+    sched/
+        sched_plan.cpp,h
+        sched_version.cpp
+
+David  28 May 2009
+    - client: fixed nasty bug that caused GPU jobs to crash on startup
+        when they're preempting another GPU job.
+        The problem was as follows:
+        - job A is chosen to preempt job B
+        - we tell job B to quit, and initialize job A but don't start it;
+            however, we set if scheduler state to SCHEDULED
+            (rather than UNINITIALIZED)
+        - job B exits, and we start job A.
+            Since its state is not UNITIALIZED, we don't set up its slot dir.
+        - job A runs in an empty slot dir, doesn't find its files, and bombs out.
+    - client: add <slot_debug> option (prints messages about
+        allocation of slots, creating/removing files in slot dirs).
+
+    client/
+        app.cpp,h
+        app_control.cpp
+        app_start.cpp
+        cpu_sched.cpp
+        file_names.cpp
+        sandbox.cpp,.h
+        sim_util.cpp
+    clientgui/
+        ViewWork.cpp
+
+Charlie 28 May 2009
+    - Mac MGR: Eliminate erroneous references to wxMac-2.8.7 in XCode (now 
+        building with wxMac-2.8.10).
+
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+Charlie 28 May 2009
+    SS: Add new optional boolean xml tag <default_ss_first>; if true, then launch 
+        default screensaver graphics app first, else run science graphics first.
+
+    clientscr/
+        screensaver.cpp, .h
+        Mac_Saver_Module.h
+        screensaver_win.h
+
+Rom    29 May 2009
+    - Change version number to 6.9.x
+
+    /
+        configure.ac
+        version.h
+
+David  29 May 2009
+    - updated python assimilator
+
+    sched/
+        assimilator.py
+
+David  31 May 2009
+    - lib: return proper error codes from boinc_rename() and boinc_mkdir()
+    - client: Haiku support (from Urias McCullough)
+    - client: include plan class in other_result list in sched request
+        (for resource-specific jobs-in-progress limit)
+
+    client/
+        cs_scheduler.cpp
+        hostinfo_unix.cpp
+    lib/
+        filesys.cpp
+
+David  1 June 2009
+    - scheduler: add new config option <max_wus_in_progress_gpus>.
+        The limit on jobs in progress is now
+            max_wus_in_progress * NCPUS
+            + max_wus_in_progress * NGPUS
+        where NCPUS and NGPUS reflect prefs and are capped.
+        Furthermore: if the client reports plan class for in-progress jobs
+        (see checkin of 31 May 2009)
+        then these limits are enforced separately;
+        i.e. the # of in-progress CPU jobs is <= max_wus_in_progress*NCPUS,
+        and the # of in-progress GPU jobs is <= max_wus_in_progress_gpu*NGPUS
+    - scheduler config: rename <cuda_multiplier> to <gpu_multiplier>
+    - scheduler: <max_wus_to_send> is now scaled by
+        (NCPUS + gpu_multiplier*NGPUS)
+    - scheduler: don't keep scanning array if !work_needed()
+    - scheduler: moved array-scan logic from sched_send.cpp to sched_array.cpp
+    - scheduler: don't say "no work available" if jobs are available
+        but work_needed() is initially false
+
+    sched/
+        handle_request.cpp
+        sched_array.cpp,h
+        sched_config.cpp,h
+        sched_plan.cpp,h
+        sched_resend.cpp
+        sched_score.cpp
+        sched_send.cpp,h
+        server_types.cpp,h
+
+David  1 June 2009
+    - feeder: process array slots even if enum has ended;
+        this is needed to handle stale entries and slots
+        reserved by now-dead PIDs
+    - client: unify code for writing soft link files
+
+    client/
+        app_start.cpp
+        client_types.cpp
+        file_names.cpp,h
+    sched/
+        feeder.cpp
+        main.cpp
+
+Charlie 1 June 2009
+    - Mac MGR: Fix per-thread-locale logic on Mac.
+    - MGR: In Async RPC logic, change calling order for wxCondition and 
+        wxMutex from <Set Boolean, Lock, Unlock, Signal> to <Lock, 
+        Set Boolean, Signal, Unlock> to be consistent with examples in 
+        literature, hoping this might fix an intermittent hang in 
+        wxCondition::Wait().
+    - Mac MGR: Mac OS 10.3.9 does not have sqlite3, so we must weak-link.
+    
+    clientgui/
+        AsyncRPC.cpp
+        browser.cpp
+
+David  1 June 2009
+    - python DB code: add clear cache method, and fix equality crash
+        (from Jeremy Cowles)
+
+    py/Boinc/
+        boinc_db.py
+
+David  1 June 2009
+    - client: if scheduler request didn't request work, don't report 0 tasks
+    - scheduler: fix crash if anonymous platform
+
+    client/
+        cs_scheduler.cpp
+    sched/
+        sched_send.cpp
+
+David  1 June 2009
+    - Updated Python assimilator (from Jeremy Cowles)
+
+    sched/
+        assimilator.py
+        testasm.py
+
+David  2 June 2009
+    - client: show "est. delay" correctly in work fetch debug msgs
+    - client: show times correctly in rr_sim debug msgs
+    - client: in "requesting new tasks" msg,
+        say what resources we're requesting (if there's more than CPU)
+    - client: estimated delay was possibly being calculated incorrectly
+        because of roundoff error
+
+    client/
+        cs_scheduler.cpp
+        rr_sim.cpp
+        scheduler_op.cpp
+        work_fetch.cpp
+
+David  2 June 2009
+    - client: add a 1e-6 slop factor in deciding if
+        a resource is fully utilized.
+
+    client/
+        work_fetch.cpp
+    sched/
+        file_upload_handler.cpp
+
+Charlie 2 June 2009
+    - MGR: cosmetic changes to combined attach wizard, partial fix 
+        to "Forgot password" link for account managers.
+        
+    clientgui/
+        AccountInfoPage.cpp
+        AccountManagerInfoPage.cpp
+        ProjecttInfoPage.cpp
+        ProjectListCtrl.cpp, .h
+        WelcomePage.cpp
+
+Charlie 3 June 2009
+    - MGR: finish changes to combined attach wizard, change "Forgot 
+        password" link for account managers to a link to AM's home 
+        page, add static text that you must register at web site 
+        before proceeding or go to web site for forgotten password.
+        
+    clientgui/
+        AccountInfoPage.cpp, .h
+        BOINCWizards.h
+
+David  3 June 2009
+    - client: include device number in message describing NVIDIA GPU,
+        and call it "NVIDIA GPU" rather than "CUDA device"
+        fixes #879
+
+    lib/
+        coproc.cpp
+
+David  3 June 2009
+    - web: align field name/value at top
+
+    html/user/
+        main.css
+
+David  3 June 2009
+    - make update_translations.php executable; fixes #770
+
+    html/ops/
+        update_translations.php
+    tools/
+        make_project
+        upgrade 
+
+David  3 June 2009
+    - client: tweak messages
+
+    client/
+        client_types.cpp
+        cs_scheduler.cpp
+        cs_statefile.cpp
+
+David  3 June 2009
+    - fix python scripts; fixes #770 (from Nicolas)
+
+    tools/
+        make_project
+        upgrade
+
+David  3 June 2009
+    - client: when parsing app_info.xml, make sure coprocessors are present.
+        fixes #911
+
+    client/
+        cs_statefile.cpp
+
+David  3 June 2009
+    - web: make [pre] work similar to [code].  fixes #798
+        Note: I had to move [pre] to the top of the
+        preg list to make this work.  Not sure why.
+
+    html/
+        inc/
+            text_transform.inc
+        user/
+            main.css
+
+Charlie 3 June 2009
+    - GR Installer: Update make_GridRepublic.sh script for new default 
+        screensaver.
+        
+    mac_installer/
+        make_GridRepublic.sh
+
+Charlie 3 June 2009
+    - client: Fix missing argument in printf statements.
+    
+    lib/
+        coproc.cpp,h
+
+David  3 June 2009
+    - fix to the above
+
+    lib/
+        coproc.cpp,h
+
+Rom    3 June 2009
+    - MGR: Accept Unicode input for usernames and password in the
+        manager now that the manager is Unicode enabled.  Input will
+        show up as UTF-8 strings in the CC and project.
+        
+        Fixes #452
+        
+    clientgui/
+        AccountInfoPage.cpp
+        AccountManagerInfoPage.cpp
+        ProjectInfoPage.cpp
+
+Rom    4 June 2009
+    - MGR: Fix bug in browser cookie detection code where firefox v3
+        cookie detection was returning true even for cookies that don't
+        exist.
+        
+    clientgui/
+        browser.cpp, .h
+
+Rom    4 June 2009
+    - MGR: Add some basic validation for account manager cookie detection.
+        
+    clientgui/
+        browser.cpp
+
+David  4 June 2009
+    - web: typo in filtered results (from R. Haselgrove)
+
+    html/inc/
+        result.inc
+
+David  4 June 2009
+    - web: improve appearance of results page
+
+    html/user/
+        results.php
+
+David  4 June 2009
+    - GUI RPC: add active_only option to get_results() RPC
+
+    client/
+        client_state.h
+        cs_statefile.cpp
+        gui_rpc_server_ops.cpp
+    lib/
+        gui_rpc_client.h
+        gui_rpc_client_ops.cpp
+
+David  4 June 2009
+    - client: read app_info.xml's AFTER scanning GPUs.
+        Otherwise we'll discard all GPU apps and results.
+
+    client/
+        client_state.cpp
+
+David  4 June 2009
+    - lib: fix compile warning
+
+    lib/
+        crypt.cpp
+
+Charlie 4 June 2009
+    - MGR: Fix compile errors.
+    - MGR: Remove authenticator validity test from detect_cookie_safari() since 
+        it is now used for additional cookies; this had already been done for 
+        other browsers.
+
+    clientgui/
+        browser.cpp, .h
+        mac/
+            browser_safari.mm
+
+Charlie 5 June 2009
+    - MGR: CBOINCClientManager::ProcessExists() finds the process by name if 
+        we don't have a pid (Mac, Linux) or process HANDLE (Windows).  On Mac
+      and Linux, it returns the pid if the process was found.
+    
+    clientgui/
+        BOINCClientManager.cpp, .h
+    win_build/
+        boincmgr.vcproj
+
+David  5 June 2009
+    - scheduler: improve example app plan function for multithread
+
+    sched/
+        sched_plan.cpp,h
+
+Charlie 5 June 2009
+    - MGR: Use code like get_client_mutex() to determine if client is running.  
+        New CBOINCClientManager::KillClient() uses process name to kill client 
+        if we don't have a pid (Mac, Linux) or process HANDLE (Windows).  
+        NOTE: Windows implementation not yet finished.
+    
+    clientgui/
+        BOINCClientManager.cpp, .h
+
+Charlie 5 June 2009
+    - MGR: Implement CBOINCClientManager::KillClient() and IsBOINCRunning() 
+        for Windows.
+        NOTE: I have confirmed that the "ps -a -x -c -o command,pid" command
+        as used in IsBOINCRunning() should works in Ubuntu under VMWare, but 
+        it needs to be tested on other Linux platforms.
+        
+    clientgui/
+        BOINCClientManager.cpp, .h
+    win_build/
+        boincmgr.vcproj
+
+Charlie 5 June 2009
+    - lib: Fix FILE_LOCK::unlock() to reset fd to -1 so FILE_LOCK works 
+        correctly with repeated calls.
+
+    lib/
+        filesys.cpp
+
+Charlie 8 June 2009
+    - lib: Fix compiler error on Windows.
+
+    lib/
+        filesys.cpp
+
+David  8 June 2009
+    - GUI RPC: include hostid in PROJECT
+    - web: include timed-out and "client detached" results in error category
+
+    html/inc/
+        result.inc
+    lib/
+        gui_rpc_client.h
+        gui_rpc_client_ops.cpp
+
+David  8 June 2009
+    - Manager: show host ID in project properties
+
+    clientgui/
+        DltItemProperties.cpp
+
+Charlie 8 June 2009
+    - Mac MGR: In Async RPC logic, use posix mutexes and conditions instead 
+        of wxWidgets implementations on the Mac, as this appears to fix an 
+        intermittent hang in wxCondition::Wait().
+    
+    clientgui/
+        AsyncRPC.cpp, .h
+        MainDocument.cpp. .h
+
+Rom    9 June 2009
+    - DIAG: Policy change: Only include the BOINC symbol store for BOINC
+        binaries.  The old policy was kept around as a backwards compatibility
+        thing before a new flag was added to the diagnostics to identify
+        project applications.
+        
+    lib/
+        stackwalker_win.cpp
+
+Charlie 9 June 2009
+    - lib: FILE_LOCK::lock() makes lockfile group-writable so both client and 
+        manager can create and write it under sandbox security.
+
+    lib/
+        filesys.cpp
+
+Charlie 10 June 2009
+    - Mac screensaver: Add support for ProgressThruProcessors (PTP) branding.
+    - Mac PTP Installer: Add support for ProgressThruProcessors (PTP) installer.
+
+    clientscr/
+        mac_saver_module.cpp
+    mac_installer/
+        PostInstall.cpp
+        uninstall.cpp
+
+David  10 June 2009
+    - file deleter: detect cases where the upload/download dir doesn't exist,
+        and treat it as a recoverable error (i.e., retry).
+        The file deleter may run on a host that NSF-mounts
+        the upload/download dirs, and NSF mounts can file.
+    - scheduler: include WU#ID in log msgs for handled results
+
+    sched/
+        file_deleter.cpp
+        sched_config.cpp
+        sched_result.cpp
+
+David  10 June 2009
+    - web: allow projects to ban email addresses in certain domains.
+        Add the following to html/project/project.inc:
+
+        $banned_email_domains = array(
+            "foo.bar",
+            "blah"
+        );
+
+        Email addresses ending with any of those strings will be disallowed.
+    - Web RPCs: have am_set_info.php and create_account.php
+        do the same checking for email addresses (invalid, banned)
+        as the other web code
+
+    html/
+        inc/
+            user.inc
+        user/
+            am_set_info.php
+            create_account.php
+            edit_email_form.php
+            edit_email_action.php
+
+David  10 June 2009
+    - update_versions: add --sign and --force options to enable automation
+        (from Jeremy Cowles)
+
+    tools/
+        update_versions
+
+David  10 June 2009
+    - make_project and upgrade: add --srcdir option so you
+        can run these commands from any directory
+        (mostly from Gabor Gombas; added a fix for svnversion)
+
+    configure.ac
+    py/Boinc/
+        boinc_path_config.py.in
+        database.py
+        setup_project.py
+    test/
+        testbase.py
+    tools/
+        make_project
+        upgrade
+
+David  10 June 2009
+    - web: don't show user ID next to posts
+    - web: fix [pre] bbcode
+
+    html/
+        inc/
+            text_transform.inc
+            forum.inc
+        user/
+            show_coproc.cpp
+            main.css
+
+Charlie 10 June 2009
+    - MGR: use branded Manager name in async RPC Please Wait dialog.
+    
+    clientgui/
+        AsyncRPC.cpp
+
+Charlie 10 June 2009
+    - Mac screensaver: Change "ProgressThruProcessors" to "Progress Thru Processors".
+    - Mac PTP Installer: Change "ProgressThruProcessors" to 
+        "Progress Thru Processors"
+        New script to convert BOINC installer to Progress Thru Processors installer.
+
+    clientscr/
+        mac_saver_module.cpp
+    mac_installer/
+        make_ProgThruProc.sh (added)
+        PostInstall.cpp
+        uninstall.cpp
+
+Charlie 11 June 2009
+    Mac: Fix script to properly handle UTF-16 encoded InfoPlist.strings files.
+    Mac: Update copyright date in InfoPlist.strings files to 2009.
+
+    clientgui/
+        mac/
+            SetVersion.cpp
+    mac_installer/
+        make_ProgThruProc.sh
+
+David  11 June 2009
+    - server: move python modules from PROJECT/bin to PROJECT/py/Boinc.
+        make_project now generates PROJECT/bin/boinc_path_config.py
+        to ensure that the interpreter will find the modules.
+        From Gabor Gombas.
+
+    py/Boinc/
+        setup_project.py
+    sched/
+        start
+        testasm.py
+        assimilator.py
+    tools/
+        parse_config
+        xadd
+        update_versions
+
+David  11 June 2009
+    - server: Use distutils for installing the python modules,
+        and move files not part of the BOINC package from py/Boinc to py/
+        From Gabor Gombas.
+
+    configure.ac
+    py/
+        Makefile.am
+        boinc_path_config.py.in (moved here)
+        db_def_to_py (moved here)
+
+David  11 June 2009
+    - server: make the python code honor BOINC_PROJECT_PATH.
+        It is now possible to use the same set of tools for multiple
+        projects by setting BOINC_PROJECT_PATH.
+        From Gabor Gombas.
+
+    py/Boinc/
+        boinc_project_path.py
+    tools/
+        parse_config
+        update_versions
+    sched/
+        start
+        assimilator.py
+
+David  11 June 2009
+    - server: 'start' now looks for programs to execute in $PATH,
+        so the same set of binaries can be used to handle multiple projects.
+        <projectroot>/bin is always prepended to $PATH
+        to ensure that project-specific binaries always take precedence.
+        From Gabor Gombas.
+
+    sched/
+        start
+
+David  11 June 2009
+    - server: Tools that should run by hand are installed under $(bindir).
+        Daemons that are managed by 'start' go to $(libexecdir)/sched.
+        The (F)CGI stuff goes to $(libexecdir)/cgi-bin.
+        Finally, example applications go under $(libexecdir)/examples.
+
+    apps/
+        Makefile.am
+    sched/
+        Makefile.am
+    tools/
+        Makefile.am
+
+Rom    11 June 2009
+    PTP: Introduce 'Progress Thru Processors' to the Windows build
+      environment. Use GridRepublic skin until the new one is available.
+      
+    client/win/
+        boinc_cli.rc
+        boinc_cmd.rc
+    client/win/res/
+        progress.ico (Added)
+    clientctrl/
+        boincsvcctrl.rc
+    clientgui/
+        BOINCGUIApp.rc
+    clientgui/res/
+        progress.ico (Added)
+    clientgui/skins/Progress Thru Processors
+        <Various Files>
+    clientlib/win/
+        boinc_dll.rc
+    clientscr/
+        boinc_ss.rc
+    clientscr/res/
+        boinc.jpg (Deleted)
+    clientscr/res/
+        progress.bmp (Added)
+        progress.ico (Added)
+        Scricon3.ico (Deleted)
+    clienttray/
+        boinc_tray.rc
+    win_build/
+        Progress.sln
+        ptp_boinc_cli.vcproj
+        ptp_boinc_dll.vcproj
+        ptp_boinc_ss.vcproj
+        ptp_boinccmd.vcproj
+        ptp_boincmgr.vcproj
+        ptp_boincsvcctrl.vcproj
+        ptp_boinctray.vcproj
+
+Rom    11 June 2009
+    PTP: Add the 'Progress Thru Processors' screensaver to the
+      source tree.
+      
+    clientscr/progress
+        <Added Various Files>
+
+David  11 June 2009
+    - server: suppress verbosity of update_translations
+        in make_project and upgrade
+
+    html/ops/
+        update_translations.php
+    tools/
+        make_project
+        upgrade
+
+Rom    11 June 2009
+    - SCR: Update default values per BOINC defaults.
+    - PTP: Add files needed by the installer(s).
+    
+    clientscr/progress/
+        <Added and Deleted various files>
+    clientscr/
+        screensaver.h
+    win_build/installerv2/
+        Progress.ism
+        Progressx64.ism
+    win_build/installerv2/redist/0409/
+        ptp-eula.rtf
+    win_build/installerv2/redist/Progress/
+        acct_mgr_url.xml
+        progress.ico
+        ss_config.xml
+
+Charlie 11 June 2009
+    - Mac MGR: strip /n from command field of PROCINFO struct so <exclusive_app> 
+        log flag works properly on Mac.
+    - MGR: Change CBOINCClientManager::KillClient() to get client pid from 
+        procinfo_setup() on all non-Windows platforms.
+    - SCR: restore boinc.jpg file erroneously removed from SVN.
+
+    clientgui/
+        BOINCClientManager.cpp
+    clientscr/
+        res/
+            boinc.jpg (restored)
+    lib/
+        procinfo_mac.cpp
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+David  11 June 2009
+    - server: improve the Python assimilator framework;
+        add an assimilator for PyMW (Python master/worker);
+        remove old C++ PyMW assimilator
+        (from Jeremy Cowles)
+
+    sched/
+        Makefile.am
+        assimilator.py
+        pymw_assimilator.py
+        testasm.py
+
+David  11 June 2009
+    - web: country flags
+
+    html/inc/
+        countries.inc
+        forum.inc
+
+Charlie 12 June 2009
+    Mac Sandbox: check_security() writes path of bad file to stderr for some  
+        error codes.
+        
+    client/
+        check_security.cpp
+    clientgui/
+        BOINCGUIApp.cpp
+
+Rom    12 June 2009
+    - WINSETUP: Change the install validation code so that it reads the MSI
+        database to determine what executable names to check instead of
+        hard coding them. BOINCMGR is renamed to Progress Thru Process or
+        in the case of GridRepublic it would be GridRepublic Desktop.
+        
+    win_build/installerv2/
+        Progress.ism
+    win_build/installerv2/redist/Windows/src/boinccas/
+        boinccas.cpp, .h
+        CAValidateInstall.cpp
+        CAVerifyInstallDirectories.cpp
+    win_build/installerv2/redist/Windows/Win32/
+        boinccas.dll
+        boinccas95.dll
+    win_build/installerv2/redist/Windows/x64/
+        boinccas.dll
+        boinccas95.dll
+
+David  12 June 2009
+    - web: fix up country flags a little
+
+    html/
+        inc/
+            forum.inc
+            countries.inc
+        user/
+            main.css
+
+Rom    12 June 2009
+    - PTPSCR: Updates from Carl
+    
+    clientscr/progress/win/x86/
+        boincscr.exe
+        gradient.jpg
+
+Rom    12 June 2009
+    - MGR: Introduce the notion of a Return URL to the attach to
+        account manager wizard.  When successfully attached the
+        account manager can have the manager launch a browser to
+        a given URL by way of a cookie. It only works if the logon
+        credentials were also given to the manager by way of a cookie.
+        
+    clientgui/
+        AccountInfoPage.cpp
+        AccountManagerProcessingPage.cpp
+        browser.cpp, .h
+        CompletionPage.cpp
+        WizardAttachProject.cpp, .h
+
+Rom    12 June 2009
+    - MGR: Introduce the cookie detection failure URL to the
+        acct_mgr_logon.xml file. If the cookies cannot be found provide
+        a hyperlink control on the AcctountInfo page in the wizard
+        which will point to a fallback URL the user can go to to
+        find out what logon credentials to use.
+        
+    client/
+        acct_mgr.cpp, .h
+        gui_rpc_server_ops.cpp
+    clientgui/
+        AccountInfoPage.cpp, .h
+        BOINCWizards.h
+        WizardAttachProject.cpp, .h
+    lib/
+        gui_rpc_client.h
+        gui_rpc_client_ops.cpp
+
+David  12 June 2009
+    - server: backed out recent changes to "start"; they broke something
+
+    sched/
+        start
+
+Rom    12 June 2009
+    - MGR: The ReturnURL cookie is optional, not required.
+    
+    clientgui/
+        browser.cpp
+
+Charlie 12 June 2009
+    - MGR: update Wizard text to fit in dialog on Mac and to be more general.
+    - Sandbox: Fix permissions for branded screensaver coordinators.
+    - Mac Installer: check that brandID is valid.
+    - Mac Uninstaller: don't delete BOINC Data directory or users' Manager 
+        settings.  Check in Rez source for uninstaller resources instead of 
+        resource file, to make it easier to modify on newer versions of XCode.
+
+    client/
+        check_security.cpp
+    clientgui/
+        AccountInfoPage.cpp
+        mac/
+            SetupSecurity.cpp
+    mac_installer/
+        PostInstall.cpp
+        uninstall.cpp
+        Uninstaller.rsrc     
+        Uninstaller.r (added)
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+Charlie 13 June 2009
+    - MGR: Wizard retries acct_mgr_rpc() if acct_mgr_rpc_poll() sets ERR_RETRY.
+
+    clientgui/
+        AccountManagerProcessingPage.cpp
+
+Rom    13 June 2009
+    - MGR: Fix browser cookie detection on Windows machines where UAC is turned
+        on.  It appears it has never worked, and I imagine it would effect
+        70% of our Windows Vista and Windows 7 user base.
+
+    clientgui/
+        browser.cpp
+    lib/
+        miofile.cpp, .h
+
+Rom    13 June 2009
+    - MGR: Expand on Charlie's last checkin to include the rest of the polling
+        RPCs in the wizard. The polling RPCs would return ERR_RETRY when
+        the CC was in the middle of some other GUI_HTTP op (version check,
+        project list download).
+    
+    clientgui/
+        AccountManagerProcessingPage.cpp
+        AccountManagerPropertiesPage.cpp
+        ProjectProcessingPage.cpp
+        ProjectPropertiesPage.cpp
+
+Charlie 14 June 2009
+    - MGR: When automatically running Synchronize AM Wizard ar Manager launch, 
+        hide the main window only if it was not previously shown.
+    - Mac Installer: check in a copy of GR / PTP signing key with UNIX / Mac 
+        line endings.
+
+    clientgui/
+        AdvancedFrame.cpp
+    mac_installer/
+        Progress/
+            acct_mgr_url.xml (added)
+
+Rom    14 June 2009
+    - INSTALL: Make sure both installers have the cookie required flag so that
+        the correct information is displayed on the AccountInfo page in the
+        Wizard, if and when a browsers cookie could not be detected.
+        
+    mac_installer/Progress/
+        acct_mgr_url.xml
+    win_build/installerv2/redist/progress/    
+        acct_mgr_url.xml
+
+David  14 June 2009
+    - web RPC: tweak to forum_get_data.php
+
+    html/user/
+        forum_get_data.php
+
+Charlie 15 June 2009
+    - MGR: If LOCKFILE doesn't already exist, core client isn't running so skip 
+        further testing.  This avoids a very rare possible race condition and is 
+        more efficient.
+
+    clientgui/
+        BOINCClientManager.cpp
+
+David  15 June 2009
+    - python scripts: fix bugs, restore latest version of "start"
+
+    sched/
+        start
+    py/Boinc/
+        boinc_project_path.py
+
+David  15 June 2009
+    - wrapper: fix bug in passing wrapper's args to subjobs
+
+    samples/wrapper/
+        wrapper.cpp
+
+David  16 June 2009
+    - web: change "CPU time" to "run time"
+
+    html/inc/
+        result.inc
+
+David  16 June 2009
+    - client: don't require that file upload URLs contain "file_upload_handler".
+
+    client/
+        client_types.cpp,h
+
+David  16 June 2009
+    - don't include config.h from network.h (Gabor Gombas)
+
+    client/
+        gui_rpc_server.cpp
+    m4/
+        boinc_getsockopt.m4
+    lib/
+        network.cpp,h
+
+David  16 June 2009
+    - don't include config.h from parse.h
+    - manager: compile fix
+
+    clientgui/
+        BOINCClientManager.cpp
+    lib/
+        parse.h
+        util.cpp
+
+David  16 June 2009
+    - build system: don't install config.h
+
+    Makefile.am
+    lib/
+        Makefile.am
+
+David  16 June 2009
+    - python assimilator fix
+
+    sched/
+        assimilator.py
+
+David  16 June 2009
+    - client: prepend rather than append to LD_LIBRARY_PATH;
+        on Mac, change DYLIB_LIBRARY_PATH also.
+
+    client/
+        app_start.cpp
+
+Charlie 16 June 2009
+    - MGR: Compile fix of Rom's fix to David's compile fix.
+
+    clientgui/
+        BOINCClientManager.cpp
+
+David  16 June 2009
+    - lib: created a new file for declaring "replacements"
+        for functions like strlcpy() etc.
+        config.h is included here rather than in str_util.h
+
+    lib/
+        str_replace.h (new)
+    ... and a lot of .cpp's
+
+David  16 June 2009
+    - pymw assimilator fixes from Jeremy
+
+    sched/
+        pymw_assimilator.py
+
+David  16 June 2009
+    - compile fixes for Linux
+
+    client/
+        gui_rpc_server.cpp
+    lib/
+        network.h
+        
+Charlie 16 June 2009
+    - MGR: Fix Mac compile error in addition of DYLIB_LIBRARY_PATH.
+    - MGR: Fix several Mac build breaks due to addition of str_replace.h 
+        (had to add ../lib to search paths of several targets.)
+        
+    client/
+        app_start.cpp
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+David  17 June 2009
+    - SS: remove unused func
+
+    clientscr/
+        ss_app.cpp
+
+Rom    18 June 2009
+    - MGR: Fix browser cookie lookup bug I introduced when I added
+        support for looking up cookies in Internet Explorer low rights
+        environments. InternetGetCookie expects the hostname and
+        domainname to be presented as URLs.
+        
+    clientgui/
+        browser.cpp
+
+Rom    18 June 2009
+    - MGR: Fix the case where user visits Grid Republic with IE 7 and
+        has a space character in their username.  IE6 and below kept
+        the space as part of the filename, IE7 and above replace the
+        space with an underscore.
+        
+    clientgui/
+        browser.cpp
+
+David  18 June 2009
+    - setup script: remove old pymw stuff
+
+    py/Boinc/
+        setup_project.py
+
+Rom    19 June 2009
+    - MGR: Massive wizard cleanup
+        - Remove diagnostic framework, it wasn't being used anymore
+            and basically cluttered things up.
+        - Remove the notion of the Account Manager Remove wizard,
+            it hasn't ever been used.
+        - Simplify the welcome page
+        - Trim down the height of the wizard by hiding the new
+            cookie controls on the Account Info page.  The wizard
+            needs to stay compatible with small displays.
+    - MGR: Only display the 'This is not a BOINC project' on an
+        HTTP 404 error.  For a gethostbyname, xml parsing, and
+        socket connect error display the 'project is temporarly
+        unavailable'.
+        
+    clientgui/
+        AccountInfoPage.cpp
+        AccountManagerInfoPage.cpp
+        AccountManagerProcessingPage.cpp
+        AccountManagerPropertiesPage.cpp
+        BOINCBaseWizard.cpp, .h
+        BOINCWizards.h
+        CompletionPage.cpp
+        ProjectInfoPage.cpp
+        ProjectListCtrl.cpp
+        ProjectProcessingPage.cpp
+        ProjectPropertiesPage.cpp, .h
+        UnavailablePage.cpp
+        WelcomePage.cpp, .h
+        WizardAttachProject.cpp
+
+Rom    19 June 2009
+    - MGR: Fix a long standing bug where the project list control
+        for the account manager info page and the project info page
+        was not consuming available screen space.  Previously
+        we hacked around it by setting an explicit size.
+        
+        Note: this works on Windows, I don't yet know about Mac and
+          Linux.
+          
+    clientgui/
+        AccountManagerInfoPage.cpp, .h
+        ProjectInfoPage.cpp
+        ProjectListCtrl.cpp, .h
+
+Charlie 19 June 2009
+    - MGR: Fix fatal error which caused crash in Account Manager Wizard.
+    - Mac Installer: Fix bugs in scripts for converting BOINC installer to 
+        Progress Thru Processors installer and to GridRepublic installer.
+
+    clientgui/
+        AccountManagerInfoPage.cpp
+    mac_installer/
+        make_GridRepublic.sh
+        make_ProgThruProc.sh
+
+Rom    19 June 2009
+    - MGR: Make the Account Manager Properties page and the Project
+        Properties page the start for all automated wizard processes
+        so that we can successfully handle the need to check for
+        proxy servers.  When directly advancing to the Processing
+        pages the proxy server checks were being skipped.
+    - MGR: Add some more smarts to the terms of use page which should
+        advance to the processing pages and skip the Account Info
+        page when the desired credentials are already known.
+
+    clientgui/
+        AccountInfoPage.cpp
+        AccountManagerPropertiesPage.cpp, .h
+        ProjectPropertiesPage.cpp, .h
+        TermsOfUsePage.cpp, .h
+        WelcomePage.cpp
+        WizardAttachProject.cpp
+
+David  19 June 2009
+    - install: don't install std_fixes.h or msg_queue.cpp
+    - remove some unused code
+    - scheduler: small code cleanup
+
+    lib/
+        Makefile.am
+        network.u
+        util.h
+    sched/
+        sched_send.cpp
+
+Rom    19 June 2009
+    - WINSETUP: Provide a mechinism in the installer where the installer
+        can override the previous stored state from a previous installation.
+        
+        NOTE: Needed becuase PTP isn't going to be supporting 'Application
+          execution mode', at least not with the initial installer.
+          
+    win_build/installerv2/redist/Windows/src/boinccas/
+        boinccas.rc
+        CARestoreSetupState.cpp
+    win_build/installerv2/redist/Windows/Win32/
+        boinccas.dll
+        boinccas95.dll
+    win_build/installerv2/redist/Windows/x64/
+        boinccas.dll
+        boinccas95.dll
+
+David  19 June 2009
+    - scheduler: fix <max_wus_in_progress> code
+
+    sched/
+        sched_send.cpp
+
+Rom    19 June 2009
+    - MGR: Keep the wizard state mahine from prematurly moving on without
+        checking network connectivity and whether credentials have been
+        detected.
+        
+    clientgui/
+        AccountManagerPropertiesPage.cpp
+        ProjectPropertiesPage.cpp
+
+Rom    19 June 2009
+    - Mac Install: Fix an off by one error reported during a security audit
+    
+    mac_install/
+        CustomInstall.cpp
+
+David  22 June 2009
+    - Mac install: fix things a better way
+    - install: don't install internal .h files
+    - scheduler: fix spurious "reached limit of 0 GPU tasks" message,
+        slight code cleanup
+
+    lib/
+        Makefile.am
+    mac_installer/
+        CustomInstall.cpp
+    sched/
+        sched_send.cpp
+        sched_plan.cpp
+        server_types.cpp
+
+David  22 June 2009
+    - make_project/upgrade: install pymw assimilator
+    - make pymw_assimilator.py executable
+
+    py/Boinc/
+        setup_projects.py
+    sched/
+        pymw_assimilator.py (set svn:executable)
+
+Rom    23 June 2009
+    - MGR: First stab at making the ProjectList control keyboard
+        navigatable.  Tab order isn't quite right yet for the
+        Project Info page or the Account Manager Info page, but
+        that'll be another commit. refs #442
+        
+    clientgui/
+        AccountManagerInfoPage.cpp, .h
+        ProjectInfoPage.cpp, .h
+        ProjectListCtrl.cpp, .h
+
+David  23 June 2009
+    - web: add buttons for BBCode editing.
+        From John Hallissey
+
+    html/
+        inc/
+            bbcode_bbdodehtml.inc
+            pm.inc
+            util.inc
+        user/
+            bbcode_toolbar.js
+            forum_edit.php
+            forum_post.php
+            forum_reply.php
+
+David  23 June 2009
+    - web: code cleanup
+
+Jeff 23 June 2009
+    Added table state_counts. This will allow application programs
+    that make decisions based on the count of WUs or results by state
+    to do so by querying this very small table rather than by doing 
+    expensive count queries on the WU and result tables.   
+
+    Of course some other program will have to do the count queries 
+    periodically in order to update the state_counts table. But, 
+    depending on the application, this can result in fewer such queries 
+    overall. The motivation for this change was the speed up of SETI at Home 
+    work generation.
+    
+    db/
+        boinc_db.cpp
+        boinc_db.h
+        schema.sql
+    html/
+        ops/
+            db_update.php
+
+Rom    23 June 2009
+    - MGR: Remove event handlers for wxEVT_SET_FOCUS and wxEVT_KILL_FOCUS,
+        we are no longer removing the highlight on a project unless
+        a new project is selected.  This continues to show that a certain
+        project is still selected even when you switch to the ProjectURL
+        control.  Anyways, the Mac doesn't like the focus events.
+        
+        clientgui/
+            ProjectListCtrl.cpp, .h
+
+Charlie 23 June 2009
+    - PTP: check in new PTP Mac icons and images.
+    
+    clientgui/
+        mac/
+            ProgThruProg.tiff
+        res/
+            ProgThruProc.icns
+            PTP_install.icns
+            PTP_uninstall.icns
+    clientscr/
+        res/
+            ProgThruProc_ss_logo.png
+
+David  26 June 2009
+    - client: when suspending a GPU job,
+        always remove it from memory, even if it hasn't checkpointed.
+        Otherwise we'll typically run another GPU job right away,
+        and it will bomb out or revert to CPU mode because it
+        can't allocate video RAM
+
+    client/
+        app.cpp
+
+Charlie 27 June 2009
+    Mac: Fix missing file name characters in script to make PTP installer.
+
+    mac_installer/
+        make_ProgThruProc.sh
+
+David  27 June 2009
+    - fix typo in schema
+
+    db/
+        schema.sql
+
+Rom    29 June 2009
+    - MGR: My first attempt to handle the project list control was turning
+        into a mess and becoming very complicated, as my former mentor used
+        to say "if you are having to try too hard, you are doing it wrong."
+        
+        Reimplement the project list control as a wxHtmlListBox which handles
+        keyboard navigation correctly and allows us to have variable height
+        list items.  Another perk is the ability to detect when different
+        HTML elements are clicked on which might be useful for anonymous
+        attach at some point in time in the future.
+        
+    clientgui/
+        AccountManagerInfoPage.cpp
+        AdvancedFrame.cpp
+        BOINCGUIApp.cpp
+        BOINCWizards.h
+        ProjectInfoPage.cpp
+        ProjectListCtrl.cpp, .h
+        stdwx.h
+
+Rom    29 June 2009
+    - WINSETUP: Add the PTP executable to the list of processes to terminate
+        when setup is launched.
+        
+    win_build/installerv2/redist/Windows/src/boinccas/
+        boinccas.rc
+        CAShutdownBOINCManager.cpp
+    win_build/installerv2/redist/Windows/Win32/
+        boinccas.dll
+        boinccas95.dll
+    win_build/installerv2/redist/Windows/x64/
+        boinccas.dll
+        boinccas95.dll
+
+Charlie 29 June 2009
+    - Mac Uninstaller: add blank lines between items user should delete; 
+        fix cosmetic bug.
+    
+    mac_installer/
+        uninstall.cpp
+
+Charlie 29 June 2009
+    - MGR: fix compile breaks on non_Windows systems.
+        NOTE: wxUSE_ACCESSIBILITY is defined as 0 on the Mac, use 
+        "#if wxUSE_ACCESSIBILITY", not "#ifdef wxUSE_ACCESSIBILITY".
+        
+    clientgui/
+        ProjectListCtrl.cpp, .h
+
+Rytis  30 June 2009
+    - Sched: config option not to store stderr_out if exit_status==0 (to
+        save on DB size). With help from Nicolas Alvarez.
+    
+    sched/
+        sched_config.cpp
+        sched_config.h
+        sched_result.cpp
+
+Rom    30 June 2009
+    - MGR: Remove project list randomization, sort on name.
+    
+    lib/
+        gui_rpc_client.h
+        gui_rpc_client_ops.cpp
+
+David  30 June 2009
+    - client: record the time results are received.
+        Process non-EDF GPU jobs in this order.
+
+    client/
+        client_types.cpp,h
+        cpu_sched.cpp
+        cs_scheduler.cpp
+    clientgui/
+        DltItemProperties.cpp
+    lib/
+        gui_rpc_client_ops.cpp
+        gui_rpc_client.h
+
+Rom    30 June 2009
+    - MGR: Previous sorting method wasn't working, use a sort
+        function pointer instead.
+        
+    lib/
+        gui_rpc_client.h
+        gui_rpc_client_ops.cpp
+    
+
+David  30 June 2009
+    - manager: if a project is down, say that instead of unknown error msg
+        Programming style notes:
+        1)
+            x = y;
+
+            instead of
+
+            if (y) {
+                x = true;
+            } else {
+                x = false;
+            }
+
+        2) use a descriptive name instead, not bSuccessfulCondition.
+            Variables are free.
+    clientgui/
+        ProjectPropertiesPage.cpp
+        UnavailablePage.cpp
+
+David  1 July 2009
+    - API: add boinc_elapsed_time() to get elapsed time since start of episode;
+        add APP_INIT_DATA::starting_elapsed_time to get
+        elapsed time from previous episodes
+
+    api/
+        boinc_api.cpp,h
+    client/
+        app.cpp,h
+        app_control.cpp
+        app_start.cpp
+    lib/
+        app_ipc.cpp,h
+
+David  1 July 2009
+    - PyMW assimilator fixes from Jeremy
+
+    sched/
+        pymw_assimilator.py
+
+David  6 July 2009
+    - fix client simulator
+    - web: if DB server down, say so
+
+    client/
+        sim_util.cpp
+    html/inc/
+        boinc_db.inc
+
+Charlie 7 July 2009
+    - Mac Installer: use escaped form of branded screensaver name when needed.
+
+    mac_installer/
+        PostInstall.cpp
+
+David  7 July 2009
+    - GUI RPC: add get_message_seqno() RPC.  fixes #931
+
+    client/
+        work_fetch.cpp
+        boinc_cmd.cpp
+        gui_rpc_server_ops.cpp
+    lib/
+        gui_rpc_client_ops.cpp
+        gui_rpc_client.h
+
+Charlie 8 July 2009
+    - Mac Installer: If BOINC screensaver is not set for every user, set it 
+        for all users after getting approval from installing user.
+    - Mac Installer: fix bug in scripts to create branded installers.
+
+    mac_installer/
+        make_GridRepublic.sh
+        make_ProgThruProc.sh
+        PostInstall.cpp
+        GR-ReadMe.rtf
+        PTP-ReadMe.rtf (added)
+        ReadMe.rtf
+
+David  9 July 2009
+    - client: error if a <file_info> in app_info.xml has any URLs
+    - client: don't write file_infos with no URLs to client_state.xml
+        for anon platform project; they must be from app_info.xml
+        
+    client/
+        cs_statefile.cpp
+    sched/
+        assimilate_handler.h
+
+David  10 July 2009
+    - client: restored code for project-wide backoff on file
+        uploads and downloads.
+        I originally added this on 30 Sept 2005
+        and disabled it 2 weeks later because there were reports of problems.
+        However, we need this functionality
+        (e.g. on GPU hosts with hundreds of files to upload,
+        we need to back off after a few failures, not try all of them).
+        I added messages (<file_xfer_debug>) so you can see what's going on.
+        Fixes #932.
+
+    client/
+        client_types.cpp,h
+        pers_file_xfer.cpp
+
+David  10 July 2009
+    - client: if malloc fails in MFILE writes, exit.
+        We don't check the return values of printf() anywhere,
+        and it's dangerous for the client to continue if it
+        thinks something got written that didn't.
+        Fixes #281
+
+    lib/
+        mfile.cpp
+
+Eric K  14 July 2009
+    - libraries:  Moved crypt.o out of libboinc and into libboinc_crypt.
+      Applications that need crypt.o will need to explicitly link
+      libboinc_crypt.
+
+    client/
+        Makefile.am
+    lib/
+    Makefile.am
+    Makefile.incl
+
+
+Rom    15 July 2009
+    - client: Remove backwards compatible CPU feature detection code
+        since we no longer support Win9x
+        
+    client/
+        hostinfo_win.cpp
+
+Rom    15 July 2009
+    - clientlib: Remove backwards compatible mouse and keyboard activity
+        detection code since we no longer support Win9x
+        
+    clientlib/win/
+        boinc_dll.cpp
+        IdleTracker.cpp
+        stdafx.h
+
+David  16 July 2009
+    - client: code cleanup for project-level file xfer backoff
+
+    client/
+        client_types.cpp,h
+        client_state.cpp
+        gui_rpc_server_ops.cpp
+        pers_file_xfer.cpp
+
+David  16 July 2009
+    - client/manager/GUI RPC: show project-level backoffs
+
+    clientgui/
+        DlgItemProperties.cpp
+    client/
+        client_types.cpp
+    lib/
+        gui_rpc_client_ops.cpp
+        gui_rpc_client.h
+
+David  16 July 2009
+    - client: changed file upload logic
+        Old: each upload attempt consists of two HTTP requests:
+            the 1st to get the current file size on server,
+            the 2nd to upload the remainder of the file.
+        Problem:
+            a) if the upload server is overloaded and requests
+                are succeeding with probability X,
+                then the chance of both requests succeeding is X^2.
+                So e.g. a per-request success rate of 0.1
+                becomes an overall success rate of 0.01.
+            b) the "get file size" request can be avoided in some cases.
+        New:
+            If we've already queried the file size
+            and haven't uploaded any additional bytes,
+            don't query the file size again.
+
+    client/
+        pers_file_xfer.cpp
+
+David  16 July 2009
+    - client: if file < 8KB, upload it in its entirety and skip size check
+    - client: (refinement to previous checkin)
+        don't skip file size check if file has multiple upload URLs.
+        We might have uploaded different amounts on different servers.
+
+    client/
+        client_types.cpp
+        file_xfer.cpp,h
+        pers_file_xfer.cpp
+
+David  16 July 2009
+    - client: change the way a resource's "estimated delay"
+        (passed to server for crude deadline check) is computed.
+        Old: estimated delay is the interval for which the resource
+            is fully used (i.e., all instances busy).
+        Problem: this may cause unnecessary project starvation.
+            example: 1 CPU machine, has a month-long CPDN job
+            with a 1-year deadline (it's not in deadline trouble).
+            Then the CPU estimated delay will be 1 month,
+            and the client won't get any work from projects
+            with deadlines shorter than 1 month.
+        New: estimated delay is the latest time at which the
+            resource is fully used and is being used by at least 1 job
+            that is projected to miss its deadline under RR.
+
+        Note: this isn't precise, but I don't think we can improve it
+        much without getting a lot more complex.
+
+    client/
+        rr_sim.cpp
+        work_fetch.cpp,h
+
+Rom    17 July 2009
+    - Remove boinc_zip(InfoZip) from the main BOINC tree
+    - Remove boinc_zip from the build system
+    
+    /
+        configure.ac
+        Makefile.am
+
+David  17 July 2009
+    - client: 2nd try on my last checkin.
+        We need to estimate 2 different delays for each resource type:
+        1) "saturated time": the time the resource will be fully utilized
+            (new name for the old "estimated delay").
+            This is used to compute work requests.
+        2) "busy time": the time a new job would have to wait
+            to start using this resource.
+            This is passed to the scheduler and used for a crude deadline check.
+            Note: this is ill-defined; a single number doesn't suffice.
+            But as a very rough estimate, I'll use the sum of
+                (J.duration * J.ninstances)/ninstances
+            over all jobs that miss their deadline under RR sim.
+
+    client/
+        work_fetch.cpp,h
+        rr_sim.cpp
+        cs_scheduler.cpp
+
+David  20 July 2009
+    - lib: gcc 4.4 fix; fixes #854
+    lib/
+        str_replace.h
+
+David  22 July 2009
+    - client: add a bunch of debugging messages (<task_debug>)
+        for showing how GPU instances are being reserved
+    - scheduler: add "sse3" plan class example
+    - web: add option (NO_TEAMS constant) for suppressing teams
+
+    client/
+        app_start.cpp
+        hostinfo_network.cpp
+    sched/
+        sched_plan.cpp,h
+    html/inc/
+        user.inc
+    lib/
+        coproc.cpp
+        str_util.h
+
+David  22 July 2009
+    - client: define "too many uploads" (for work fetch) as
+        2 * max(ncpus, ngpus);
+        show this in the state displayed by <work_fetch_debug>
+    - manager: show project-wide backoff in transfers tab
+
+    client/
+        client_types.h
+        work_fetch.cpp
+    clientgui/
+        ViewTransfers.cpp
+
+Rom    23 July 2009
+    - client: Remove some more Win9x code.
+    - client: Add some messages while handling Windows power events.
+    
+    client/
+        main.cpp
+
+Rom    23 July 2009
+    - client: Treat power events similiar to the snooze events, assign
+        a timeout so that when we resume from suspend/hibernate we
+        restore the previous activity states.
+        
+    client/
+        main.cpp
+
+Rom    23 July 2009
+    - WINSETUP: Prevent a pathing problem with the client_auth.xml
+        creation by prepending a \ in front of the filename.
+        
+    winbuild/installerv2/redist/Windows/src/boinccas/
+        boinccas.rc
+        CACreateClientAuthFile.cpp
+    winbuild/installerv2/redist/Windows/Win32/
+        boinccas.dll
+        boinccas95.dll
+    winbuild/installerv2/redist/Windows/x64/
+        boinccas.dll
+        boinccas95.dll
+
+David  23 July 2009
+    - manager: fix typos in attach project wizard
+
+    clientgui/
+        ProjectProcessingPage.cpp
+
+David  24 July 2009
+    - client: in get_project_config_poll() GUI RPC,
+        return ERR_IN_PROGRESS if the reference site check is in progress.
+        This hopefully fixes a bug where:
+        - the user is connected via a proxy
+        - the manager is run for the first time, and an attach is tried
+        - the get_project_config.php fetch fails because no proxy config
+        - the manager gets the CC_STATUS before the ref site check has
+            finished, so it thinks there's a network connection,
+            and it doesn't ask the user for proxy info
+
+    client/
+        gui_rpc_server_ops.cpp
+        net_stats.cpp,h
+    clientgui/
+        ProjectPropertiesPage.cpp
+    html/
+        inc/
+            util.inc
+        user/
+            login_action.php
+
+Rom    24 July 2009
+    - lib: more code cleanup
+    
+    lib/
+        win_util.cpp, .h
+
+Rom    24 July 2009
+    - lib: revert previous commit, things in lib end up being linked
+        into project applications, projects may want to continue
+        supporting Win9x.
+        
+    lib/
+        win_util.cpp, .h
+
+Rom    24 July 2009
+    - WINSCR: Remove Win9x compatibility code from the screen saver.
+
+    clientscr/    
+        screensaver.cpp
+        screensaver_win.cpp
+        screensaver_win.h
+
+Rom    25 July 2009
+    - MGR: Use the BOINC Service Control utility (boincsvcctrl.exe) to
+        start/stop the BOINC Service on Windows now.  Starting with
+        Windows Vista a normal admin account is started with a
+        restricted token, meaning that a process has to be elevated
+        in order to start and stop services.  The recommended way to
+        handle this whole process is to create a stub application that
+        has an application manifest embedded within it that tells
+        Windows that full admin rights are required and then launch
+        that program (boincsvcctrl.exe) from the application 
+        (boincmgr.exe) which normally runs with the restricted token.
+        
+    clientctrl/
+        boincsvcctrl.cpp
+    clientlib/win/
+        Service.cpp
+
+Rom    25 July 2009
+    - MGR: Be sure to launch the default screensaver in test mode
+        when the manager is starting up, otherwise the default
+        screensaver might lock up waiting on user input to approve
+        firewall updates to the rule set.
+        
+    clientgui/
+        BOINCGUIApp.cpp, .h
+        sg_BoincSimpleGUI.cpp
+
+Rom    25 July 2009
+    - MGR: Refine yesterdays checkin with support for the BOINC
+        Service Control utility, use ShellExecuteEx instead of
+        CreateProcess.  CreateProcess doesn't have the ability
+        to elevate processes.
+
+    clientlib/win/
+        Service.cpp
+
+Rom    25 July 2009
+    - MGR: Refine todays checkin with support for the BOINC
+        Service Control utility, don't use the runas verb on systems
+        older than Vista.
+
+    clientlib/win/
+        Service.cpp
+
+David  27 July 2009
+    - client: fix crashing bug introduced in [18605]
+
+    client/
+        pers_file_xfer.cpp
+
+Eric K 27 July 2009
+    - server: fix for build of fcgi_file_upload_handler
+
+    lib/
+        crypt.h
+    sched/
+        file_upload_handler.cpp
+
+Rom    27 July 2009
+    - client: Remove Win9x compatibility code from memory detection
+        routine.
+        
+    client/
+        hostinfo_win.cpp
+
+Rom    27 July 2009
+    - MGR: Special case ERR_GETHOSTBYNAME errors in the wizard, majority
+        case for DNS failures suggest that the user might need a proxy
+        to be defined instead or this project is unavailable or this
+        account manager is unavailable.
+        
+    clientgui/
+        AccountManagerPropertiesPage.cpp, .h
+        ProjectPropertiesPage.cpp, .h
+
+Rom    27 July 2009
+    - client: There was already a way to check if the reference site
+        check was in progress, I missed it through my first pass
+        through the manager code while trying to debug the proxy problem
+        get_cc_config returns NETWORK_STATUS_LOOKUP_PENDING which
+        then causes the manager to call get_cc_status again.
+        
+    client/
+        gui_rpc_server_ops.cpp
+        net_stats.cpp, .h
+
+Rom    27 July 2009
+    - MGR: Don't make ERR_FILE_NOT_FOUND part of the requirements
+        to detect the need for a proxy server.
+        
+    clientgui/
+        AccountManagerPropertiesPage.cpp
+        ProjectPropertiesPage.cpp
+
+Rom    28 July 2008
+    - MGR: Fix an endless loop during wizard creation, any automatic
+        true conditions in the GetNext() GetPrev() logic causes
+        the wizard to traverse the page and then look for the next
+        page.
+        
+    clientgui/
+        AccountManagerPropertiesPage.cpp
+        ProjectPropertiesPage.cpp
+
+David  28 July 2009
+    - client (Linux): when launching apps, put a relative path
+        to the executable (../../projects/x/y) into argv[0],
+        not just the executable filename.
+        Apparently the new NVIDIA drivers have a bug that cause
+        CUDA apps to crash unless this is done.
+    - Scheduler: in no-host-ID case, don't mark results as "detached"
+        if request contains any in-progress results
+
+    client/
+        app_start.cpp
+    sched/
+        handle_request.cpp
+
+David  28 July 2009
+    - client: if an HTTP op fails within 30 sec of client startup,
+        don't skip the reference site check.
+        Instead, defer the reference site check until 30 secs after startup.
+        Also, if during this interval (when the check has been requested
+        but not started) return net status as LOOKUP_PENDING
+
+    client/
+        net_stats.cpp
+
+David  28 July 2009
+    - scheduler: improved messages for debug_send
+
+    sched/
+        sched_send.cpp
+
+Rom    29 July 2009
+    - MGR: Re-enable the ability for the manager to detect a temporary
+        name failure vs needing a proxy server or something like that.
+        
+    clientgui/
+        AccountManagerPropertiesPage.cpp, .h
+        ProjectPropertiesPage.cpp, .h
+
+David  29 July 2009
+    - scheduler: Gianni requested a feature where jobs have a
+        "min # of GPU processors" attribute (stored in batch)
+        and are sent only to hosts whose GPUs have at least this #.
+
+        The logical place for this is in the scoring function, JOB::get_score().
+        I added a clause (#ifdef'd out) that does this.
+        It rejects the WU if #procs is too small,
+        otherwise it adds min/actual to the score.
+        This favors sending jobs that need lots of procs to GPUs that have them.
+        
+    sched/
+        sched_score.cpp
+        server_types.h
+
+David  29 July 2009
+    - scheduler: on second thought, it would be better to add the above
+        feature without requiring use of score-based scheduling.
+        So add a new customizable function, wu_is_infeasible_custom(),
+        where projects can put job-specific checks.
+
+        Also, move customizable functions (of which there are now 4)
+        to a new file, sched_customize.cpp.
+
+    sched/
+        Makefile.am
+        sched_customize.cpp,h
+        sched_version.cpp
+        sched_send.cpp
+        handle_request.cpp
+
+David  29 July 2009
+    - client: to enumerate CUDA devices, use the functions in libcuda.so
+        (which ships with driver) rather than libcudart.so
+        (this eliminates the need to bundle libcudart.so with the client)
+        The functions are documented here:
+        http://developer.download.nvidia.com/compute/cuda/2_3/toolkit/docs/online/index.html
+
+    lib/
+        coproc.cpp
+
+Rom    29 July 2009
+    - client: Initial swipe at automatic proxy server configuration
+        detection on Windows.  Fixes #35
+        
+    client/
+        cs_cmdline.cpp
+        http_curl.cpp
+        http_curl.h
+    lib/
+        boinc_win.h
+        proxy_info.cpp
+        proxy_info.h
+        util.cpp
+        win_util.h
+
+David  30 July 2009
+    - scheduler: compile fixes
+
+    sched/
+        sched_customize.cpp
+
+David  31 July 2009
+    - file upload handler: don't treat zero-length file as an error!
+        (This bug has been there since 28 Oct 2004)
+    - GUI RPC and manager: include project backoff in FILE_TRANSFER,
+        so that manager gets up-to-date value
+
+    clientgui/
+        ViewTransfers.cpp
+    client/
+        file_xfer.cpp
+        client_types.cpp
+    sched/
+        file_upload_handler.cpp
+    lib/
+        gui_rpc_client_ops.cpp
+        gui_rpc_client.h
+
+Rom    2 Aug 2009
+    - client: refactor the CC startup process, move majority of the
+        windows code into sysmon_win.cpp, .h
+        
+    client/
+        client_state.cpp, .h
+        cpp.h
+        http_curl.cpp
+        main.cpp, .h
+        net_stats.cpp
+        sysmon_win.cpp, .h
+
+David  3 Aug 2009
+    - scheduler: add plan class for CUDA 2.3
+
+    sched/
+        sched_customize.cpp,h
+        sched_version.cpp
+
+Charlie 3 Aug 2009
+    - client: fix compiler warning (too few args for print format)
+    - Mac: fix compile breaks
+    
+    client/
+        app_start.cpp
+        main.cpp
+    clientgui/
+        mac/
+            config.h
+
+Charlie 3 Aug 2009
+    - Mac client: client would crash if an older version (< 2.3) of CUDA 
+        driver is installed because __cuDriverGetVersion does not exist, 
+        so test for that and display a message if driver is out of date.
+
+    lib/
+        coproc.cpp
+
+Charlie 7 Aug 2009
+    - client: More efficient implementation of active_only flag in 
+        get_results RPC.
+    - MGR: Implement "Show active tasks / Show all tasks" button.
+    
+    client/
+        cs_statefile.cpp
+    clientgui/
+        AsyncRPC.cpp, .h
+        Events.h    
+        MainDocument.cpp, .h
+        ViewWork.cpp,.h
+    lib/
+        gui_rpc_client_ops.cpp
+
+Rom    7 Aug 2009
+    - client: Second pass through the automatic proxy detection code.
+    
+        During the first pass we learned that the whole process of
+        proxy detection on Win XP machines could take a few seconds
+        even with no proxies to be detected, now the proxy detection
+        code is executed in the same thread that is monitoring for
+        power change events.
+        
+    client/
+        cs_cmdline.cpp
+        http_curl.cpp
+        http_curl.h
+        http_curl_win.h
+        net_stats.cpp
+        sysmon_win.cpp, .h
+    lib/
+        parse.cpp, .h
+        proxy_info.cpp, .h
+
+Charlie 7 Aug 2009
+    - client fix crash bug introduced by changing PROXY_INFO strings 
+        from char[] to std::string.
+    - client: fix compiler warnings "call will abort at run time."
+    - Sandbox: add a couple of casts for compiler warnings.
+      
+    client/
+        app_start.cpp
+        check_security.cpp
+        client_state.cpp
+        http_curl.cpp
+    clientgui/
+        mac/
+            SetupSecurity.cpp
+
+Charlie 7 Aug 2009
+    - MGR: Test two changes which might avoid a problem when the client 
+        is heavily loaded (e.g, very many tasks), where the RPC Wait 
+        dialog may appear continuously:
+        (1) Delay periodic RPCs for 1 second after the dialog closes.
+        (2) In functions to retrieve cached RPC data, don't do a demand 
+            RPC just because the time since th last such RPC exceeds the 
+            normal periodic RPC rates.  We still force the RPC if the 
+            this RPC has never been called since the Manager was launched 
+            or if (for some RPCs) called with the bForce argument TRUE.
+            This change #2 can be removed by setting USE_CACHE_TIMEOUTS
+            to 0.
+            
+    clientgui/
+        AsyncRPC.cpp
+        MainDocument.cpp, .h
+
+David  9 Aug 2009
+    - validator: prepare for code cleanup
+
+    sched/
+        validate_util.cpp
+        validator.cpp
+
+David  12 Aug 2009
+    - server code: moved everything related to credit-granting to credit.cpp,
+        where it can be used by trickle handlers as well as by validators.
+
+    sched/
+        credit.cpp,h
+        validate_util.cpp,h
+        validator.cpp
+
+David  12 Aug 2009
+    - GUI RPC: fix memory leak in authorize()
+
+    lib/
+        gui_rpc_client.cpp
+
+David  13 Aug 2009
+    - client (Unix): fix bug that caused GPU reservation to not work.
+        The problem: we were doing the reservation after the fork(),
+        so that the data structure it changed was the app's, not the client's.
+
+    client/
+        app_start.cpp
+
+David  13 Aug 2009
+    - start: don't print "XML parse error" message if run_state file
+        doesn't exist (e.g. when start new project)
+
+    py/Boinc/
+        boincxml.py
+
+David  13 Aug 2009
+    - scheduler: fixes for cuda23 plan class
+
+    sched/
+        sched_customize.cpp
+
+David  14 Aug 2009
+    - client: try to fix situations where the scheduler
+        runs GPU jobs in a seemingly random order,
+        or preempts GPU jobs needlessly.
+        The change has two parts:
+        1) sort the "results" vector by received_time,
+            so that the RR simulation processes GPU jobs FIFO
+            (in case of tie, use something deterministic: result name)
+        2) in the CPU scheduler (earliest_deadline_result())
+            instead of choosing the earliest-deadline GPU job that
+            misses its deadline,
+            pick the earliest_deadline GPU from a project that
+            has a deadline miss for that GPU type
+            (this is what's done in the CPU case)
+    - client: fix bug where if you have an exclusive app,
+        then remove it from cc_config.xml and do "update config",
+        it doesn't go away.
+        Need to clear the list before parsing.
+
+    client/
+        client_state.h
+        cpu_sched.cpp
+        cs_statefile.cpp
+        log_flags.cpp,h
+        rr_sim.cpp
+        work_fetch.h
+
+David  14 Aug 2009
+    - client: don't try to maintain GPU work for all projects,
+        since use FIFO rather than RR schedling for GPUs
+
+    client/
+        work_fetch.cpp
+
+David  14 Aug 2009
+    - client: in the final stage of CPU scheduling,
+        give preference to multi-threaded jobs.
+        Avoid running N-1 1-thread jobs and 1 N-thread job on N CPUs
+    - client: change file transfer giveup time from 14 to 90 days
+
+    client/
+        cpu_sched.cpp
+        pers_file_xfer.h
+
+David  14 Aug 2009
+	- client: ATI GPU detection code (from Crunch3r)
+
+	lib/
+		coproc.cpp,h
+		cal.h
+
+David  14 Aug 2009
+    - client: clean up ATI code and make it work (or at least compile)
+        under Linux
+
+    lib/
+        coproc.cpp,h
+
+David  14 Aug 2009
+    - client: ATI tweaks
+
+    lib/
+        coproc.cpp,h
+
+David  17 Aug 2009
+    - client: add ATI support to job scheduling and work fetch
+
+    client/
+        app.cpp
+        app_start.cpp
+        client_state.cpp,h
+        client_type.cpp,h
+        cs_scheduler.cpp
+        rr_sim.cpp
+        work_fetch.cpp,h
+    lib/
+        coproc.cpp,h
+
+David  17 Aug 2009
+    - scheduler: add support for ATI GPUs
+
+    sched/
+        handle_request.cpp
+        sched_customize.cpp,h
+        sched_send.cpp
+        sched_types.cpp,h
+        sched_version.cpp
+
+David  17 Aug 2009
+    - client: fix calculation of ATI flops
+
+    lib/
+        coproc.cpp,h
+
+David  17 Aug 2009
+    - client/manager: add ATI stuff to GUI RPCs and manager display
+
+    client/
+        cs_statefile.cpp
+        schedule_op.cpp
+    clientgui/
+        DltItemProperties.cpp
+    lib/
+        gui_rpc_client.h
+        gui_rpc_client_ops.cpp
+        
+Rom    18 Aug 2009
+    - Change version number to 6.10.x
+
+    /
+        configure.ac
+        version.h
+
+Rom    18 Aug 2009
+    - MGR: Remove News page.
+    
+    clientgui/
+        AdvancedFrame.cpp
+        ViewNews.cpp, .h (Deleted)
+
+Rom    18 Aug 2009
+    - Tag for 6.10.0 release, all platforms
+      boinc_core_release_6_10_0
+
+    /
+        configure.ac
+        version.h
+
+Charlie 18 Aug 2009
+    - Mac SS: Changes for compatibility with OS 10.6 while maintaining 
+        OS 10.3.9 compatibility.
+        
+    clientscr/
+        mac_saver_module.cpp
+        Mac_Saver_ModuleView.m
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+Charlie 21 Aug 2009
+    - Mac: Add x86_64 screensaver for Snow Leopard OS 10.6.
+        Note: OS 10.6 is not yet released, so I am building the x86_64 
+        screensaver separately using a beta version of OS 10.6 and its 
+        development tools, then merging it into the current build, so 
+        this change is to the release script.
+    
+    mac_installer/
+        release_boinc.sh
+
+Rom    21 Aug 2009
+    - client: Attempt to prevent a crash via a C++ exception by checking
+        for a -1 index before attempting erase the rest of the proxy
+        list.
+        
+    client/
+        sysmon_win.cpp
+
+Charlie 21 Aug 2009
+    - Mac client: in procinfo_setup(), use rss keyword not rsz in ps command 
+        for compatibility with OS 10.6 while keeping OS 10.3.9 compatibility.
+
+    lib/
+        procinfo_mac.cpp
+
+David  18 Aug 2009
+    - manager: allow 24:00 to be used in advanced prefs dialog
+        (from Ian Hay; fixes #357)
+
+    clientgui/
+        DlgAdvPreferences.cpp
+
+David  19 Aug 2009
+    - client and scheduler: lay the groundwork for "fractional coproc jobs",
+        e.g. the Milkyway at home ATI app, of which we can typically run
+        2 or 3 instances at once on a GPU.
+        Changes include:
+        - In APP_VERSION, don't use a COPROCS to represent the GPU
+            requirements; just use doubles ncudas and natis.
+        - sufficient_coprocs() etc. are no longer members of COPROCS
+        - in HOST_USAGE, ncudas and natis are doubles
+        - in scheduler request, req_instances is now a double
+
+        This checkin doesn't include the job scheduling logic,
+        i.e. assigning jobs to GPUs.  That will follow.
+
+    client/
+        app_start.cpp
+        client_types.cpp,h
+        cpu_sched.cpp
+        cs_scheduler.cpp
+        scheduler_op.cpp
+    lib/
+        coproc.h
+    sched/
+        sched_customize.cpp
+        sched_types.cpp,h
+
+David  19 Aug 2009
+    - client: finish the implementation of fractional coproc jobs.
+        - different data structure for keeping track of coproc usage;
+            instead of COPROC having per-instance pointers to ACTIVE_TASK,
+            ACTIVE_TASK now has an array of device number indices
+            for each instance that it's using.
+        - in enforce_schedule(), we call a new function assign_coprocs()
+            that decides what coproc instances each job will use,
+            and prunes jobs for which we can't get an assignment.
+            This function embodies lots of subtlety.
+        - coproc_cmdline() no longer deals with reserving instances;
+            it just has to generate the --device X cmdline
+
+    client/
+        app.h
+        app_start.cpp
+        cpu_sched.cpp
+    lib/
+        coproc.h
+
+David  24 Aug 2009
+    - client: use the right library name for ATI on Linux
+    - client: check return values from ATI device detection functions
+
+    lib/
+        coproc.cpp
+
+David  24 Aug 2009
+    - client: in parsing <coproc> elements in <app_version>,
+        use a new type COPROC_REQ for which the count field is a double.
+        Otherwise fractional GPU jobs don't work.
+
+    client/
+        client_types.cpp
+    lib/
+        coproc.cpp,h
+
+Rom    26 Aug 2009
+    - Tag for 6.10.1 release, all platforms
+      boinc_core_release_6_10_1
+
+    /
+        configure.ac
+        version.h
+
+Charlie 26 Aug 2009
+    MGR: on Linux, check list of running processes from procinfo_setup() 
+        to determine if BOINC core client is running.
+    MGR: on Linux, accept 2 optional arguments:
+          "--clientdir=<dir>" or "-e <dir>" for directory containing client executable, 
+            default is the directory containing the manager executable.
+          "--datadir=<dir>" or "-d <dir>" for BOINC data directory, default is the 
+            directory containing the client executable.
+          These are used by the manager when launching the client.
+
+    clientgui/
+        BOINCClientManager.cpp
+        BOINCGUIApp.cpp,.h
+
+Charlie 26 Aug 2009
+    MGR: Bug fixes for Linux.
+
+    clientgui/
+        AsyncRPC.cpp
+        BOINCBaseView.cpp
+        BOINCClientManager.cpp
+        MainDocument.cpp,.h
+        sg_DlgMessages.cpp
+        ViewMessages.cpp
+
+Charlie 27 Aug 2009
+    - Tag for 6.10.2 release, all platforms
+      boinc_core_release_6_10_2
+
+    /
+        configure.ac
+        version.h
+
+David  28 Aug 2009
+    - reverted changes to PROXY_INFO which broke various things
+
+    client/
+        http_curl.cpp,h
+        client_state.cpp
+        net_stats.cpp
+        cs_cmdline.cpp
+    lib/
+        proxy_info.cpp,h
+
+David  28 Aug 2009
+    - client: fix work fetch log message for ATI GPU
+
+    client/
+        work_fetch.cpp
+
+David  28 Aug 2009
+    - client: NVIDIA offers an API which tells you whether a GPU
+        is running a graphics application.
+        Change the semantics of the "don't use GPU while computer in use" pref
+        to "don't use a GPU that's running a graphics app while
+        computer is in use".
+        This will increase GPU utilization on multi-GPU systems.
+
+    client/
+        client_state.cpp
+        cpu_sched.cpp
+    lib/
+        coproc.cpp,h
+
+David  29 Aug 2009
+    - client: various bug fixes in job scheduling and work fetch for ATI.
+        From Crunch3r.
+
+    client/
+        cpu_sched.cpp
+        gui_rpc_server_ops.cpp
+
+David  30 Aug 2009
+    - client:  if project is anonymous platform, set the overall work req
+        to the max of the requests for different resource types.
+        Otherwise projects with old schedulers won't send us work.
+
+    client/
+        cs_scheduler.cpp
+        work_fetch.cpp,h
+
+Charlie 31 Aug 2009
+    - Mac installer: add logic for setting BOINC as screensaver under OS 10.6.
+    
+    mac_installer/
+        PostInstall.cpp
+
+Charlie 1 Sept 2009
+    - Mac Sandbox: Security fixes for Mac OS 10.6 Snow Leopard.
+        Mac OS 10.6 requires administrator authorization to run setgid 
+        applications if they use the AppKit (Cocoa) framework.  The Mac 
+        installer adds all users with admin privileges (members of group 
+        admin) to group boinc_master.  Since the Manager doesn't need to 
+        run setgid boinc_master if the user is a member of that group, 
+        we eliminate the setgid.
+        This means that non-admin users will be able to run the Manager 
+        only if the sysadmin adds them to group boinc_master, so we now 
+        create a login item or set the screensaver only for those users 
+        who are members of group boinc_master.
+        If a user who is not a member of that group runs the Manager, it 
+        displays an alert saying that in order to administer BOINC, he 
+        needs to ask the sysadmin to add him to group boinc_master.
+    
+    client/
+        check_security.cpp
+    clientgui/
+        BOINCGUIApp.cpp
+        mac/
+            SetupSecurity.cpp
+    mac_build/
+        Mac_SA_Insecure.sh
+        Mac_SA_Secure.sh
+    mac_installer/
+        PostInstall.cpp
+
+Rom    1 Sept 2009
+    - client: autoproxy detection should happen at startup too.
+    - client: when autoproxy detection is in progress don't attempt to use
+        old values
+    - client: user defined proxies should take presidence over automatically
+        detected ones.
+    - lib: Re-implement the assignment operator for proxy_info, http_curl.cpp
+        uses it to clone the proxy information for each http op.  See set_proxy();
+
+    client/
+        client_state.cpp
+        http_curl.cpp
+        net_stats.cpp
+    lib/
+        proxy_info.cpp, .h
+
+David  1 Sept 2009
+    - client:
+        - remove HTTP_OP::pi; just use gstate.proxy_info
+        - remove HTTP_OP::set_proxy()
+        - remove PROXY_INFO::operator=; struct assignment works
+
+    client/
+        http_curl.cpp,h
+        gui_http.cpp
+        pers_file_xfer.cpp
+        scheduler_op.cpp
+    lib/
+        proxy_info.cpp,h
+
+Rom    1 Sept 2009
+    - client: Use HTTP_OP::pi to avoid a crash when using a proxy. libcurl uses
+        the proxy information after the PROXY_INFO struct in setup_proxy_session()
+        had been popped off the stack.
+        
+    client/
+        http_curl.cpp,h
+
+Rom    2 Sept 2009
+    - Tag for 6.10.3 release, all platforms
+      boinc_core_release_6_10_3
+
+    /
+        configure.ac
+        version.h
+
+David  2 Sept 2009
+    - client: fix to [18945]; we only want to max the overall request
+        with a GPU request if project is anonymous platform
+        AND it has an app for that GPU type
+    - client: report overall work request as well as per-resource-type requests
+
+    client/
+        cs_scheduler.cpp
+        work_fetch.cpp,h
+
+David  2 Sept 2009
+    - client: add <sched_op_debug> msg for ATI work request
+
+    client/
+        scheduler_op.cpp
+
+David  2 Sept 2009
+    - client: fix crashing bug in proxy autodetect
+
+    client/
+        sysmon_win.cpp
+
+David  2 Sept 2009
+    - client: fix log messages about scheduler RPC work req
+    - client: missing reset for ATI debt accounting
+
+    client/
+        client_state.cpp
+        cpu_sched.cpp
+        scheduler_op.cpp
+
+David  2 Sept 2009
+    - client: fix bug where client runs too many CPU jobs
+
+    client/
+        cpu_sched.cpp
+
+David  3 Sept 2009
+    - client: improve the estimation of "busy time" (see 17 July checkin).
+        If you have 2 CPUs and a 1-day job in EDF mode,
+        the busy time should be zero, not .5 days.
+
+        Add a class BUSY_TIME_ESTIMATOR that makes a somewhat better
+        (though still fairly crude) estimate.
+
+    client/
+        cs_scheduler.cpp
+        work_fetch.cpp,h
+
+David  5 Sept 2009
+    - client: in choosing GPU jobs in FIFO order,
+        use job name as tiebreaker if received times are the same.
+        This makes the order deterministic.
+
+    client/
+        cpu_sched.cpp
+
+David  5 Sept 2009
+    - client: update of time stats was broken by [17166]
+
+    client/
+        time_stats.cpp
+
+Rom    8 Sept 2009
+    - Tag for 6.10.4 release, all platforms
+      boinc_core_release_6_10_4
+
+    /
+        configure.ac
+        version.h
+
+Charlie 10 Sept 2009
+    - client: don't display processor cache if we don't know it.
+    - client: skip ATI detection stuff and error messages on Macs because 
+        ATI doesn't yet have a CAL library for Mac.
+
+    client/
+        client_state.cpp
+    lib/
+        coproc.cpp
+
+Charlie 11 Sept 2009
+    - Mgr: skip exit confirmation dialog if user pressed emergency Exit button 
+        on AsyncRPCDlg.
+
+    clientgui/
+        AsyncRPC.cpp
+        BOINCGUIApp.cpp
+
+Charlie 16 Sept 2009
+    - Mac installer: ask user whether to allow non-administrative users to run 
+        and control BOINC.
+        
+    clientgui/
+        mac/
+            SetupSecurity.cpp,.h
+    mac_installer/
+        PostInstall.cpp
+
+Charlie 17 Sept 2009
+    - Mac installer: create a new command-line tool AddRemoveUser to add users 
+        to or remove users from group boinc_master.  It also adjusts the users' 
+        login item and screensaver selection.  Updated ReadMe file to explain 
+        changes for Unicode and for OS 10.6 Snow Leopard.
+        
+    mac_installer/
+        AddRemoveUser.cpp
+        ReadMe.rtf
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+    tools/
+        make_project
+
+David  8 Sept 2009
+    - client: add code for faking ATI GPUs
+
+    client/
+        client_state.cpp
+        work_fetch.cpp
+    lib/
+        coproc.cpp,h
+
+David  8 Sept 2009
+    - client: cap time_stats dt at 2 weeks,
+        so people upgrading to 6.10 won't get big drop in on_frac.
+
+    client/
+        time_stats.cpp
+
+David  8 Sept 2009
+    - client: fix bug in RR simulation:
+        start only enough jobs to fill CPUs per project,
+        not all the CPU jobs at once.
+        I'm not sure how much difference this makes,
+        but this is how it's supposed to work.
+    - client: if app_info.xml doesn't specify flops,
+        use an estimate that takes GPUs into account.
+    - client: if it's been more than 2 weeks since time stats update,
+        don't decay on_frac at all.
+
+    client/
+        client_state.cpp
+        rr_sim.cpp
+        time_stats.cpp
+        work_fetch.cpp
+    lib/
+        coproc.cpp,h
+
+David  10 Sept 2009
+    - client: save space in req msg.  Didn't make much difference.
+
+    client/
+        cs_scheduler.cpp
+
+David  11 Sept 2009
+    - client: in startup msgs, show resource shares, don't show prefs details
+
+    client/
+        client_state.cpp
+
+David  12 Sept 2009
+    - client: fix bug in FIFO selection of coproc jobs
+        (senility setting in?)
+
+    client/
+        cpu_sched.cpp
+
+David  12 Sept 2009
+    - client: add <fraction_done> to boinc_task_state.xml
+
+    client/
+        app_control.cpp
+
+David  13 Sept 2009
+    - client: change order in poll loop so that:
+        1) job finishes
+        2) job gets marked as "ready to report"
+        3) scheduler RPC is initiated
+        Hopefully this won't have an unintended side-effect
+
+    client/
+        client_state.cpp
+
+David  16 Sept 2009
+    - client: tweak policy for device busy time.
+        Should eliminate some spurious "job won't complete by deadline" msgs.
+
+    client/
+        work_fetch.h
+
+David  16 Sept 2009
+    - client and scheduler RPC: add optional <cpu_backoff>, <cuda_backoff>,
+        and <ati_backoff> elements to scheduler reply.
+        These specify backoffs for the resource types,
+        overriding the existing backoff mechanism.
+        Projects can supply these if they don't have apps of a particular type
+        and don't want to get periodic requests for them.
+
+    client/
+        cs_scheduler.cpp
+        schedule_op.cpp,h
+        work_fetch.cpp,h
+    lib/
+        coproc.cpp
+
+David  16 Sept 2009
+    - client: cap project-supplied backoffs at 28 days
+    - client: anal-retentive alphabetization
+
+    client/
+        log_flags.cpp,h
+        scheduler_op.cpp
+
+Rom    17 Sept 2009
+    - Tag for 6.10.5 release, all platforms
+      boinc_core_release_6_10_5
+
+    /
+        configure.ac
+        version.h
+
+David  17 Sept 2009
+    - client: if project-supplied backoff > 28 days, cap rather than ignore
+
+    client/
+        scheduler_op.cpp
+
+David  17 Sept 2009
+    - client: don't print error message if output file with <copy_file>
+        attribute is missing.  That's the app's problem, not BOINC's
+    - sample assimilator: if a canonical instance has no output files,
+        rather than quitting create a file named WU_NAME_no_output_files
+
+    client/
+        app_start.cpp
+    sched/
+        sample_assimilator.cpp
+
+David  17 Sept 2009
+    - client: fixed failure to initialize CPU backoff;
+        leads to huge CPU backoff.
+        Cap backoff when read statefile.
+
+    client/
+        client_types.cpp
+        scheduler_op.cpp
+
+David  17 Sept 2009
+    - client: oops, backoff time is absolute not relative
+
+    client/
+        client_types.cpp
+
+David  18 Sept 2009
+    - client/API: add autosetup proxy info to init_data.xml
+
+    client/
+        http_curl.cpp
+        sysmon_win.cpp
+    lib/
+        proxy_info.cpp,h
+
+David  18 Sept 2009
+    - client: in choosing coproc jobs to run (FIFO) give priority
+        to whether job is already running.
+        This addresses a bug where several jobs are returned by sched RPC,
+        and one with a lexicographically greater name
+        happens to finish downloading first.
+
+    client/
+        cpu_sched.cpp
+
+David  18 Sept 2009
+    - client: comment out [18942], which changed the meaning of
+        "don't use GPUs while computer is in use" to
+        "don't use GPUs running graphics apps while computer is in use"
+        for NVIDIA GPUs.
+        NVIDIA's API for seeing if a GPU is running a graphics app
+        doesn't seem to reflect GPU use by the OS.
+
+    client/
+        client_state.cpp
+        cpu_sched.cpp
+
+David  18 Sept 2009
+    - client: fix bug introduced in [19035] that causes wrong nidle instances
+        (and resulting work fetch problems)
+
+    client/
+        rr_sim.cpp
+
+David  18 Sept 2009
+    - client: don't print error msg if file is wrong size on startup
+
+    client/
+        cs_files.cpp
+        work_fetch.cpp
+
+Rom    18 Sept 2009
+    - Tag for 6.10.6 release, all platforms
+      boinc_core_release_6_10_6
+
+    /
+        configure.ac
+        version.h
+
+Charlie 17 Sept 2009
+    - client: fix compiler warning.
+
+    client/
+        app_start.cpp
+
+David  18 Sept 2009
+    - client: if a file fails verification, delete it.
+
+    client/
+        pers_file_xfer.cpp
+
+David  21 Sept 2009
+    - client: tweak CPU scheduling policy to avoid running
+        multithread apps overcommitted.
+        Actually: allow overcommitment but only a fractional CPU
+        (so that, e.g., we can run a GPU app and a 4-CPU app on a 4-CPU host)
+        
+    client/
+        cpu_sched.cpp
+
+David  22 Sept 2009
+    - client: fix bug that caused unstarted coproc jobs to preempt
+        ones already running.
+        The problem: we considered a job as started if it has an ACTIVE_TASK.
+        However, we were creating ACTIVE_TASKS for jobs before deciding
+        to run them, because we needed a place to store the coproc reservations.
+        This caused the above bug, and also had the undesirable effect
+        of creating slot directories before they're needed.
+
+        Solution: store coprocessor reservations in RESULT
+        rather than ACTIVE_TASK.
+
+    client/
+        app.h
+        app_start.cpp
+        client_types.h
+        cpu_sched.cpp
+
+David  22 Sept 2009
+    - client: extra debug msgs (remove when done)
+
+    client/
+        cpu_sched.cpp
+
+David  22 Sept 2009
+    - client: fix preemption bug, this time fer sure!
+
+    client/
+        cpu_sched.cpp
+
+Rom    23 Sept 2009
+    - Tag for 6.10.7 release, all platforms
+      boinc_core_release_6_10_7
+
+    /
+        configure.ac
+        version.h
+
+David  23 Sept 2009
+    - client: removed extra msgs
+
+    client/
+        cpu_sched.cpp
+
+David  23 Sept 2009
+    - client: on Linux, run CPU-intensive jobs with the SCHED_BATCH scheduler.
+        Improves interactive response of system when jobs running.
+        From Clive Messer.
+
+    configure.ac
+
+    client/
+        app_start.cpp
+
+David  23 Sept 2009
+    - client: revert [19110]: don't delete files that fail verification;
+        they might be partly downloaded.
+
+    client/
+        pers_file_xfer.cpp
+
+David  24 Sept 2009
+    - client: in GPU enumeration, separate warning msgs from GPU descriptions.
+        Show warning msgs only if log_flags.coproc_debug
+
+    client/
+        client_state.cpp
+        log_flags.h
+    lib/
+        coproc.cpp,h
+
+David  24 Sept 2009
+    - client: for ATI enumeration, use only aticalrt.dll
+        (amdcalrt.dll is old version w/ funky DLL names)
+    - client: make GPU enumeration warnings more consistent
+        (e.g., "NVIDIA" instead of "CUDA").
+
+    lib/
+        coproc.cpp
+
+Rom    25 Sept 2009
+    - client: Add support for checking for both amd* prefixed CAL libraries
+        and ati* prefixed CAL libraries.
+    - scheduler: redefine ati class plans again.
+        ati: CAL 1.0+, amd* prefixed libraries
+        ati13amd: CAL 1.3+, amd* prefixed libraries
+        ati13ati: CAL 1.3+, ati* prefixed libraries
+        ati14: CAL 1.4+, ati* prefixed libraries
+
+    lib/
+        coproc.cpp, .h
+
+Rom    25 Sept 2009
+    - lib: fix build break.
+    
+    lib/
+        coproc.cpp
+
+David  25 Sept 2009
+    - client: improve ATI-related msgs
+
+    lib/
+        coproc.cpp
+
+David  25 Sept 2009
+    - client: improve ATI description strings (from Andreas)
+
+    lib/
+        coproc.cpp
+
+Rom    25 Sept 2009
+    - client: report the different Windows 7 and Windows 2008
+        "R2" correctly.
+        
+    client/
+        hostinfo_win.cpp
+
+Rom    25 Sept 2009
+    - Tag for 6.10.8 release, all platforms
+      boinc_core_release_6_10_8
+
+    /
+        configure.ac
+        version.h
+
+Rom    25 Sept 2009
+    - win_build: In the future be very careful about with project
+        you choose to be the basis for a new executable.
+        boincsvcctrl.exe was overwriting the PDB file for boinc.exe
+        which causes all call stack handling code for boinc.exe
+        to stop working.
+        
+    win_build/
+        boincsvcctrl.vcproj
+
+Rom    25 Sept 2009
+    - Tag for 6.10.9 release, all platforms
+      boinc_core_release_6_10_9
+
+    /
+        configure.ac
+        version.h
+
+David  25 Sept 2009
+    - client: fix crashing bug in GPU message display
+    - client: show a couple more config flags on startup
+
+    client/
+        client_state.cpp
+        log_flags.cpp
+
+David  26 Sept 2009
+    - client: fix bug in CPU prefs enforcement:
+        enforce "suspend if no recent input" and "exclusive apps"
+        only if overall mode is RUN_MODE_AUTO (run according to prefs) 
+
+    client/
+        cs_prefs.cpp
+
+David  27 Sept 2009
+    - client/scheduler/web: add per-project preferences for whether
+        to accept CPU, NVIDIA and ATI jobs.
+        These prefs are shown only where relevant:
+        e.g., only for processor types for which the project has app versions,
+        and if it has versions for only one type, no pref is shown.
+
+        These prefs affect both client and scheduler.
+        The client won't ask for work for a device blocked by prefs,
+        and the scheduler won't send it.
+
+        This replaces earlier optional project-specific prefs for
+        "no CPU jobs" and "no GPU jobs".
+        (However, these prefs continue to be honored on the server side).
+
+    - client: if NVIDIA driver is unknown, say that rather than 0
+
+    client/
+        client_state.cpp
+        client_types.cpp,h
+        cs_account.cpp
+        work_fetch.cpp,h
+    lib/
+        coproc.cpp
+
+Rom    28 Sept 2009
+    - client: add missing Windows SKUs.
+        From Robert Kreß
+    
+    client/
+        hostinfo_win.cpp
+
+Rom    28 Sept 2009
+    - Tag for 6.10.10 release, all platforms
+      boinc_core_release_6_10_10
+
+    /
+        configure.ac
+        version.h
+
+David  28 Sept 2009
+    - client: fix crash with <ncpus>0</ncpus>
+
+    client/
+        work_fetch.h
+
+Rom    29 Sept 2009
+    - client: fix bug in coproc summary string.
+    
+    lib/
+        coproc.cpp
+
+Rom    29 Sept 2009
+    - Tag for 6.10.11 release, all platforms
+      boinc_core_release_6_10_11
+
+    /
+        configure.ac
+        version.h
+
+David  30 Sept 2009
+    - client: if downloaded project list file is garbage, ignore it.
+    - all: accept <foo /> as an XML bool
+
+    client/
+        acct_setup.cpp
+    lib/
+        parse.cpp
+
+Rom    30 Sept 2009
+    - client: Apparently it is valid for the autoproxy to return
+        successful API completeion but a null proxy list.  Check
+        for the null instead of crashing.
+        
+    client/
+        sysmon_win.cpp
+
+Rom    1 Oct 2009
+    - client: only support one of the ati13* plan classes at a time.
+        A couple users had not updated their amdcal* runtime libraries
+        after upgrading catalyst drivers.  This was leading to crashes
+        of the project applications when work was supplied looking
+        for the old DLL names.
+        
+    lib/
+        coproc.cpp
+
+Rom    1 Oct 2009
+    - client: fix a handle leak I just introduced.
+        (From: Andreas a.k.a Gipsel)
+        
+    lib/
+        coproc.cpp
+
+Rom    1 Oct 2009
+    - lib: Fix memory/resource leak.
+        (From Nicolás Alvarez)
+        
+    lib/
+        shmem.cpp
+
+Rom    1 Oct 2009
+    - lib: Add additional ATI descriptions.
+    - lib: Fix some inaccurate ATI capabilities in certain cards.
+        (From: Andreas a.k.a Gipsel)
+        
+    lib/
+        coproc.cpp
+
+Rom    1 Oct 2009
+    - lib: Fix memory/resource leak.
+        (From Nicolás Alvarez)
+        
+    lib/
+        shmem.cpp
+
+David  2 Oct 2009
+    - client: restore calDeviceGetInfo(), add its info to COPROC_ATI struct
+        (some plan class might need to know this).
+        Code cleanup.
+
+    lib/
+        Makefile.am
+        coproc.cpp,h
+
+David  2 Oct 2009
+    - client: better behavior if a GPU goes away:
+        1) if an APP_VERSION is missing a coprocessor,
+            don't delete it and its files.
+            (If the coprocessor returns, we won't need to re-download)
+        2) if a RESULT uses an app version that is missing a coprocessor,
+            abort it (rather than deleting it).
+            The client will report the result on the next scheduler RPC,
+            and the server will make a new instance.
+
+    client/
+        client_types.cpp
+        cs_scheduler.cpp
+        cs_statefile.cpp
+    lib/
+        error_numbers.h
+
+David  2 Oct 2009
+    - client: fix bug where if you change project "no CPU/NVIDIA/ATI"
+        prefs and update, the change wouldn't take effect until client restart.
+    - client: fix bug in enforcement of "no CPU/NVIDIA/ATI" prefs
+
+    client/
+        client_state.cpp
+        cs_account.cpp
+        work_fetch.cpp
+    lib/
+        coproc.cpp
+
+David  2 Oct 2009
+    - client: if GPU is removed while jobs in progress,
+        don't show messages as internal errors.
+
+    client/
+        app.cpp
+        cs_statefile.cpp
+
+David  2 Oct 2009
+    - client: make the order of the result vector
+        consistent with the order used to select coproc jobs
+
+    client
+        client_state.h
+        cs_scheduler.cpp
+        cs_statefile.cpp
+        cpu_sched.cpp
+
+David  3 Oct 2009
+    - client: improve coproc_debug messages
+
+    client/
+        app_start.cpp
+        cpu_sched.cpp
+
+David  3 Oct 2009
+    - client: if a task is running, uses a GPU, and the system has >1 GPU,
+        append text to its resource string saying which GPU it's using
+    - manager: tweak Task properties text
+
+    client/
+        client_types.cpp,h
+    clientgui/
+        DlgItemProperties.cpp
+
+Rom    5 Oct 2009
+    - DIAG: Suspend threads right before extracting their context and then
+        resume them afterwords.  Otherwise we could end up in a deadlock state
+        where both the main thread and a support thread are attempting to use
+        the same system resource and the thread that owns the resource becomes
+        suspended. In the last situation it was way down in Winsock.
+        
+    lib/
+        diagnostics_win.cpp
+
+Rom    5 Oct 2009
+    - DIAG: Don't resume after the thread has been suspended, otherwise the
+        thread stack may be trashed after extracting the context.  This should
+        still be okay though as by the time the diagnostics framework
+        has gotten here it has already downloaded all the symbols it'll need.
+
+    lib/
+        diagnostics_win.cpp
+
+Rom    5 Oct 2009
+    - Tag for 6.10.12 release, all platforms
+      boinc_core_release_6_10_12
+
+    /
+        configure.ac
+        version.h
+
+Rom    5 Oct 2009
+    - client: Fix a missed checkin that prevents a crash during autoproxy
+        detection.
+        
+    client/
+        sysmon_win.cpp
+
+Rom    5 Oct 2009
+    - Tag for 6.10.13 release, all platforms
+      boinc_core_release_6_10_13
+
+    /
+        configure.ac
+        version.h
+
+Rom    7 Oct 2009
+    - MGR: Fix the Statistics page Save/Restore project display feature.
+    
+    clientgui/
+        ViewStatistics.cpp
+
+Charlie 7 Oct 2009
+    - MGR: If aborting multiple tasks, ask "Are you sure?" only once.
+    
+    clientgui/
+        ViewWork.cpp
+
+Rom    5 Oct 2009
+    - client: Fix crash that was introduced 7 months ago.
+        (From Nicolás Alvarez)
+        
+    client/
+        app_control.cpp
+
+David  6 Oct 2009
+    - client: remove redundant 0s in job log
+
+    client/
+        client_types.cpp
+
+David  6 Oct 2009
+    - scheduler: skip deadline check for non-CPU-intensive projects
+
+    sched/
+        sched_send.cpp
+
+David  7 Oct 2009
+    - client: add --unsigned_apps_ok cmdline option
+        and <unsigned_apps_ok> config option.
+        This tells the client to allow unsigned apps.
+        For testing.
+        No file xfers or other network traffic will be allowed if set.
+    - client: add <exit_after_finish> option (same as cmdline flag)
+    - client: add <skip_cpu_benchmarks> option (same as cmdline flag)
+    - client: print message if abort past-deadline unstarted job
+    - client: improve message when have NVIDIA drivers but no GPU
+        
+    client/
+        app_start.cpp
+        client_state.cpp,h
+        cs_cmdline.cpp
+        cs_prefs.cpp
+        log_flags.cpp
+    lib/
+        coproc.cpp
+    samples/
+        client_state_save.xml (new)
+
+David  7 Oct 2009
+    - client: if anonymous platform description (app_info.xml)
+        doesn't specify FLOPS for a GPU app,
+        assume that it runs at CPU peak speed rather than GPU peak speed.
+        Better to be conservative, otherwise job might be aborted
+        due to time limit exceeded.
+
+    client/
+        client_state.cpp
+
+David  12 Oct 2009
+    - client: on startup, if a coproc needed by a job is missing,
+        set a "coproc_missing" flag rather than aborting the job.
+        If use removes a GPU board while there's a large queue of GPU jobs,
+        they'll stay queued (until their deadline passes).
+
+        Note: this doesn't fix the situation where user connects via
+        Remote Desktop while GPU jobs are running or queued.
+        We should check for Remote Desktop every minute or so, and stop GPU jobs.
+
+    client/
+        client_state.cpp
+        client_types.cpp,h
+        cs_statefile.cpp
+        work_fetch.cpp
+    clientgui/
+        ViewWork.cpp
+    lib/
+        gui_rpc_client.h
+        gui_rpc_client_ops.cpp
+
+David  12 Oct 2009
+    - client: the get_all_projects_list() RPC doesn't require auth
+
+    client/
+        gui_rpc_server_ops.cpp
+
+David  12 Oct 2009
+    - client: don't multiply checkpoint interval (i.e., "disk interval" pref)
+        by # processors.
+
+    client/
+        app_start.cpp
+
+David  12 Oct 2009
+    - actually, make it
+        "Tasks checkpoint to disk at most every ..."
+        and change it in the advanced prefs dialog too
+
+    clientgui/
+        DlgAdvPreferencesBase.cpp
+
+Rom    13 Oct 2009
+    - LIB: Make the is_remote_desktop compilable for all VS versions
+        and SKUs.
+        
+    lib/
+        win_util.cpp, .h
+
+Rom    14 Oct 2009
+    - MGR: Fix initial first connection problem on startup.  I'm not sure why
+        it was only happening at startup, there might have been a few crashes
+        because of this issue as well.  The basic problem is that wxWidgets
+        had an exception handler around the initial frame creation and when
+        the first GUI RPC was issues to detect whether or not we were atached
+        to an account manager during menu creation the GUI thread would go
+        about doing idle processing while waiting for the GUI RPC thread to
+        initialize.  During this time the frame pointer is NULL and was getting
+        dereferenced which would halt window construction and stay there until
+        some other event was fired.
+    - MGR: Initial dose of code cleanup and shuffling.  Order the menu functions
+        in the order in which they are displayed in the menu.
+
+    clientgui/
+        AdvancedFrame.cpp, .h
+        BOINCBaseFrame.cpp
+        BOINCBaseView.cpp
+        Events.h
+        ProjectListCtrl.cpp
+        sg_BoincSimpleGUI.cpp, .h
+        sg_ProjectsComponent.cpp, .h
+        WizardAttachProject.cpp
+
+David  14 Oct 2009
+    - client: address the situation where GPUs become unusable
+        for certain periods (e.g. when Remote Desktop is used on Win).
+        - add is_usable() member function to COPROC.
+            Currently this just calls the respective (CUDA or CAL)
+            initialization function.
+            We need to check whether this works and/or causes problems.
+        - in enforce_schedule(), check whether usability has changed
+            for each GPU type.
+            If we've gone from usable to unusable,
+            flag all jobs for that GPU as coproc_missing
+            (so they won't get run, and will quit if they're running).
+            If we've gone from unusable to usable, clear the flag.
+        This should deal with all cases except where
+        the client is started up with GPUs unusable.
+
+    client/
+        cpu_sched.cpp
+    lib/
+        coproc.cpp,h
+
+David  14 Oct 2009
+    - client: bug fixes to the above.
+        Don't fetch work for an unable resource.
+
+    client/
+        cpu_sched.cpp
+        cs_scheduler.cpp
+        work_fetch.cpp
+
+David  14 Oct 2009
+    - update cal.h to current ATI code
+
+    lib/
+        coproc.cpp,h
+
+David  14 Oct 2009
+    - undo the above
+
+David  15 Oct 2009
+    - client/scheduler: standardize the FLOPS estimate between NVIDIA and ATI.
+        Make them both peak FLOPS,
+        according to the formula supplied by the manufacturer.
+
+        The impact on the client is minor:
+        - the startup message describing the GPU
+        - the weight of the resource type in computing long-term debt
+
+        On the server, I changed the example app_plan() function
+        to assume that app FLOPS is 20% of peak FLOPS
+        (that's about what it is for SETI at home)
+
+    client/
+        client_state.cpp
+        work_fetch.cpp
+    lib/
+        coproc.cpp,h
+
+David  15 Oct 2009
+    - client: the weight of GPU debt in computing total debt should be
+        (estimated throughput of all GPUs)/(estimated throughput of all CPUs)
+        rather than the ratio of 1 GPU to 1 CPU.
+        This change will hopefully cause ratios of granted credit
+        to more closely match resource shares.
+
+    client
+        work_fetch.cpp,h
+
+David  15 Oct 2009
+    - client: multi-thread jobs were being given too high priority;
+        in particular, they were preempting jobs in the middle of time slice.
+        Solution:
+        1) don't use MT in the sort order defined by more_important().
+        2) add a 2nd reordering in which MT jobs are moved ahead
+            of non-MT jobs, but only if #CPUs used is < #CPUs
+            (see promote_multi_thread_jobs())
+    - client: the seqno of jobs in progress but not selected
+        was being set to zero.  It should be runnable_jobs.size().
+        This could potentially cause wrong scheduling decisions.
+
+    client/
+        cpu_sched.cpp
+
+Charlie 16 Oct 2009
+    - MGR: Fix build break on Mac.
+
+    clientgui/
+        mac/
+            MacSysMenu.cpp
+
+Rom    16 Oct 2009
+    - Tag for 6.10.14 release, all platforms
+      boinc_core_release_6_10_14
+
+    /
+        configure.ac
+        version.h
+
+Rom    19 Oct 2009
+    - client: Use is_remote_desktop() instead of the various GPU functions
+        to determine when the client software has been switched into Remote
+        Desktop mode and shutsdown GPU apps.  This will prevent App crashes.
+        
+    lib/
+        coproc.cpp
+
+Rom    19 Oct 2009
+    - Tag for 6.10.15 release, all platforms
+      boinc_core_release_6_10_15
+
+    /
+        configure.ac
+        version.h
+
+Rom    20 Oct 2009
+    - client: Use the ANSI version of WTSQuerySessionInformation to determine
+        is Remote Desktop is in use.
+        
+    lib/
+        coproc.cpp
+
+Rom    19 Oct 2009
+    - Tag for 6.10.16 release, all platforms
+      boinc_core_release_6_10_16
+
+    /
+        configure.ac
+        version.h
+
+Rom    21 Oct 2009
+    - WINSETUP: Remove the 'SeDebugPrivilege' prev from the list of privs
+        the installer sets for BOINC.
+        
+    win_build/installerv2/redist/Windows/Win32/
+        boinccas.dll
+        boinccas95.dll
+    win_build/installerv2/redist/Windows/x64/
+        boinccas.dll
+        boinccas95.dll
+
+Rom    23 Oct 2009
+    - MGR: Change the shortcut key for switching to the simple view.
+    
+    clientgui/
+        AdvancedFrame.cpp
+
+Rom    23 Oct 2009
+    - client: If an administrator has deployed proxy settings at runtime or
+        during a VPN connection allow the client to read the new proxy
+        configuration from the registry.
+        
+    client/
+        sysmon_win.cpp
+
+Charlie 26 Oct 2009
+    - MGR: Add View menu with Cmd+Shift+A to Mac Simple GUI for disabled users 
+        because Mac manager cannot eliminate menu bar or detect active screen 
+        reader.  On Windows, manager prevents switch to Simple GUI if screen 
+        reader is active.
+        
+    clientgui/
+        sg_BoincSimpleGUI.cpp, .h
+
+Rom    26 Oct 2009
+    - WININSTALL: Abort install if Win9x detected.
+    
+    win_build/installerv2/
+        BOINC.ism
+        BOINCx64.ism
+
+Rom    26 Oct 2009
+    - Tag for 6.10.17 release, all platforms
+      boinc_core_release_6_10_17
+
+    /
+        configure.ac
+        version.h
+
+Rom    29 Oct 2009
+    - MGR: Remove more conflicting menu item shortcuts.
+    
+    clientgui/
+        AdvancedFrame.cpp
+
+Charlie 30 Oct 2009
+    - MGR: Clarify alert when running as a non-admin user which is not a 
+        member of group boinc_master.
+        
+    clientgui/
+        BOINCGUIApp.cpp
+
+Charlie 31 Oct 2009
+    - MGR: initialize localization stuff before checking permissions so that 
+        the Mac Sandbox permissions error alerts can be translated.  
+    - MGR: Removed a trailing newline character from the permissions error 
+        alert string, because it was preventing translation.
+    - Mac installer: set locale directory permissions to world readable so 
+        the Mac Sandbox permissions error alerts can be translated when the 
+        user is not a member of group boinc_master.
+
+        NOTE: There seems to be a bug in the localization software: if a 
+        localizable string ends with a newline character, that terailing 
+        newline is not included in the .mo file, so apparently the string 
+        never matches and is not translated. 
+        
+    clientgui/
+        BOINCGUIApp.cpp
+        mac/
+            SetupSecurity.cpp
+    mac_build/
+        Mac_SA_Secure.sh
+
+Charlie 4 Nov 2009
+    - Mac Installer: set most files in BOINC Data directory world-readable 
+        (with certain exceptions like gui_rpc_auth.cfg.)  This assures that 
+        the screensaver can read its support files. 
+        
+    clientgui/
+        mac/
+            SetupSecurity.cpp
+    mac_build/
+        Mac_SA_Secure.sh
+
+Rom    5 Nov 2009
+    - MGR: Use mixed case keyboard accelerators instead of all caps, the
+        wxGetTranslation function is case sensitive even though the
+        rest of the menu code does not care about case.
+        
+    clientgui/
+        AdvancedFrame.cpp
+        sg_BoincSimpleGUI.cpp
+
+Rom    6 Oct 2009
+    - Tag for 6.10.18 release, all platforms
+      boinc_core_release_6_10_18
+
+    /
+        configure.ac
+        version.h
+
+Charlie 29 Oct 2009
+    - MGR: Add accessibility support for disabled users to BOINCListCtrl on 
+        Mac.
+        
+    clientgui/
+        BOINCBaseView.cpp, .h
+        BOINCListCtrl.cpp, .h
+        ViewProjects.cpp
+        ViewTransfers.cpp
+        ViewWork.cpp
+        Mac/
+            MacAccessibility.cpp (added)
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+Charlie 30 Oct 2009
+    - MGR: Add accessibility support for disabled users to Attach Wizard's 
+        ProjectListCtrl on Mac.
+        
+    clientgui/
+        BOINCListCtrl.cpp, .h
+        ProjectListCtrl.cpp, .h
+        Mac/
+            MacAccessibility.cpp
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+Charlie 10 Nov 2009
+    - Mac installer: fix crash bug in AddRemoveUser utility.
+        
+    mac_installer/
+        AddRemoveUser.cpp
+
+Charlie 18 Nov 2009
+    - Mac installer: fix 2 installer bugs:
+        - Install by non-admin user failed to set login items.
+        - Clean installs failed with permissions error -1037.  A reboot would 
+            fix this, but system reboots are undesireable.  The problem is 
+            that when we create group boinc_master and add the user to the 
+            group, it takes about a minute for the permissions to take effect.
+            I added a test which delays launching the manager until the 
+            permissions are stable.
+
+    clientgui/
+        mac/
+            SetVersion.cpp
+    mac_installer/
+        GR-ReadMe.rtf
+        make_GridRepublic.sh
+        make_ProgThruProc.sh
+        PostInstall.cpp
+        PTP-ReadMe.rtf
+        ReadMe.rtf
+        release_boinc.sh
+        WaitPermissions.cpp (Added)
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+        WaitPermissions-Info.plist (Added)
+
+David  5 Nov 2009
+    - Move URL-related code to a new file
+    - Remove stuff related to SOCKS version, since we only support 5
+
+    lib/
+        url.cpp,h
+        (several).cpp
+    client/
+        (several).cpp
+
+David  6 Nov 2009
+    - client: parse HTTP_PROXY strings of the form
+        http://username:passwd@host.dom.dom:port/file
+        (we weren't parsing the username and password before).
+    - client: fix the feature that lets you exclude a list of hosts
+        from going the proxy.
+
+    client/
+        cs_cmdline.cpp
+        http_curl.cpp
+        sysmon_win.cpp
+    lib/
+        url.cpp,h
+
+David  9 Nov 2009
+    - client: the checkin of 15 Oct related to multi-thread apps
+        didn't work due to a typo.
+    - client: if <ncpus> is present in cc_config.xml,
+        we're supposed to act as if there were that many physical CPUs.
+        In particular, we need to set host_info.p_ncpus to that value,
+        since that's what is reported in scheduler requests.
+
+    client/
+        cpu_sched.cpp
+        cs_cmdline.cpp
+        cs_scheduler.cpp
+        sysmon_win.cpp
+
+David  9 Nov 2009
+    - client: add --no_gpus cmdline option
+
+    client/
+        cs_cmdline.cpp
+
+David  9 Nov 2009
+    - client: avoid spurious error message when parsing
+        <proxy_info> from cc_config.xml
+
+    client/
+        log_flags.cpp
+
+David  9 Nov 2009
+	- client: fix bug that crashed client if client_state.xml
+		had garbage within <file_info>
+
+	client/
+		client_types.cpp
+
+David  10 Nov 2009
+    - client (Mac/Linux): if the NVIDIA or ATI detection functions
+        cause a SIGSEGV, recover from it.
+
+    lib/
+        coproc.cpp
+
+David  10 Nov 2009
+    - client: the handling of GUI RPCs was inconsistent;
+        some expected <request>, some expected <request/>,
+        and some would accept either.
+        Changed them all to accept either.
+
+        NOTE: this means no request can be a substring of another
+
+    client/
+        gui_rpc_server_ops.cpp
+
+David  10 Nov 2009
+    - client (Unix): use waitpid(-1, ...) instead of waitpid(0, ...).
+        This reaps child processes even if they've changed their process group
+        (from Michael Melanson)
+
+    client/
+        app_control.cpp
+
+David  10 Nov 2009
+    - client: handle no_cpu, no_cuda, no_ati prefs correctly
+        when they're in venue-specific prefs.
+
+    client/
+        cs_account.cpp
+
+David  11 Nov 2009
+    - unix build: fix "out of tree" build (what's that?)
+        from Oliver Bock
+
+    Makefile.am
+
+Rom    11 Nov 2009
+    - On Windows treat all SEH exceptions as C++ style exceptions.
+        NOTE: I'll need to do a little more research and adjust the
+          diagnostics stuff later.  I believe that the diagnostics
+          framework will now always report an unhandled C++ exception
+          for things like an Access Violation.
+    - client: On Windows, recover from an Access Violation if/when 
+        the GPU functions access violate.
+        
+    lib/
+        boinc_win.h
+        coproc.cpp
+    win_build/
+        *.vcproj
+
+Rom    11 Nov 2009
+    - Backout previous change.  The problem doesn't yet manifest
+        itself on Windows and the change has too many implications.
+        
+    lib/
+        boinc_win.h
+        coproc.cpp
+    win_build/
+        *.vcproj
+
+David  11 Nov 2009
+    - client: fix yesterday's checkin to remove restrictions
+        on GUI RPC request elements.
+        You can now use either <foo></foo> or <foo/>
+        for empty request messages.
+    - GUI RPC client library: fix double-free bug.
+        it's not clear how this ever worked.
+
+    client
+        gui_rpc_server_ops.cpp
+    lib/
+        coproc.cpp
+        gui_rpc_client.cpp
+
+David  12 Nov 2009
+    - client: if a project has a no_{cpu,cuda,ati} pref set,
+        don't accumulate debt for that resource.
+        Otherwise we'll accumulate debt forever,
+        pushing other projects into overworked state.
+
+    client/
+        work_fetch.cpp
+
+David  12 Nov 2009
+    - Mac compile fix
+    lib/
+        coproc.cpp
+
+David  12 Nov 2009
+    - client: add new config options:
+        <ignore_cuda_dev>n</ignore_cuda_dev>
+        <ignore_ati_dev>n</ignore_ati_dev>
+        to ignore (not use) specific NVIDIA or ATI GPUs.
+        You can ignore more than one.
+
+    client/
+        client_state.cpp
+        log_flags.cpp,h
+    lib/
+        coproc.cpp,h
+
+David  13 Nov 2009
+    - client: add <exclusive_gpu_app> option:
+        suspend GPU usage when particular apps are running
+
+    client/
+        app.cpp,h
+        cs_prefs.cpp
+        cpu_sched.cpp
+        log_flags.cpp,h
+
+David  13 Nov 2009
+    - client: fix exclusive_gpu_app feature so that it responds
+        within 10 sec instead of 60 sec
+
+    client/
+        app.cpp
+        log_flags.cpp
+
+Rom    17 Nov 2009
+    - MGR: Remove bitmap that is part of the Wizard.
+    
+    clientgui/
+        AccountInfoPage.cpp
+        AccountManagerInfoPage.cpp
+        AccountManagerProcessingPage.cpp
+        AccountManagerPropertiesPage.cpp
+        AlreadyExistsPage.cpp
+        BOINCBaseWizard.cpp, .h
+        CompletionErrorPage.cpp
+        CompletionPage.cpp
+        NoInternetConnectionPage.cpp
+        NotDetectedPage.cpp
+        NotFoundPage.cpp
+        ProjectInfoPage.cpp
+        ProjectProcessingPage.cpp
+        ProjectPropertiesPage.cpp
+        ProxyInfoPage.cpp
+        ProxyPage.cpp
+        TermsOfUsePage.cpp
+        UnavailablePage.cpp
+        WelcomePage.cpp
+        WizardAttachProject.cpp
+        wizardex.cpp, .h
+    win_build/
+        boincmgr.vcproj
+
+Rom    17 Nov 2009
+    - MGR: Add basic support for displaying the Nvidia and ATI logos
+        for projects whom support Nvidia and ATI GPUs.
+        
+        Todo: add descriptions and project images when selected.
+        
+    clientgui/
+        AccountManagerInfoPage.cpp
+        ProjectInfoPage.cpp
+        ProjectListCtrl.cpp, .h
+    clientgui/res/
+        atiicon.xpm (Added)
+        nvidiaicon.xpm (Added)
+    win_build/
+        boincmgr.vcproj
+
+Rom    18 Nov 2009
+    - MGR: Add descriptions for each project as a tooltip and add
+        an icon for multicore capable projects.
+        
+    clientgui/
+        ProjectListCtrl.cpp, .h
+    clientgui/res/
+        multicore.xpm (Added)
+    win_build/
+        boincmgr.vcproj
+
+Rom    18 Nov 2009
+    - MGR: Fix the minimum wizard size problem introduced by removing
+        the wizard graphic.
+
+    clientgui/        
+        wizardex.cpp
+
+Rom    18 Nov 2009
+    - MGR: Better formatting and layout of the project descriptions
+        within the list box instead of relying on the tooltips.
+        
+    clientgui/
+        ProjectListCtrl.cpp
+
+Charlie 18 Nov 2009
+    - Mac: Fix build breaks: add url.cpp to gfx_switcher and ss_app, 
+        remove unused m_pTipWindow.
+    
+    clientgui/
+        ProjectListCtrl.cpp, .h
+     mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+Charlie 19 Nov 2009
+    - Mac MGR: fix bug - don't show exit confirmation dialog if shutting 
+         down or restarting system (checked into 6.10.19 tag).
+    - Mac Uninstaller: change owner and group of BOINC Data to those of 
+        the user running the uninstaller (checked into 6.10.19 tag).
+         
+    clientgui/
+        BOINCGUIApp.cpp
+    mac_installer/
+        uninstall.cpp
+
+Charlie 19 Nov 2009
+    - MGR: Attach Wizard's accessibility support ignores extra panels in 
+        several pages to improve clarity for disabled users (checked into 
+        6.10.19 tag).
+        
+    clientgui/
+        AccountInfoPage.cpp
+        AccountManagerInfoPage.cpp
+        CompletionPage.cpp
+        ProjectInfoPage.cpp
+        WelcomePage.cpp
+
+Rom    18 Nov 2009
+    - Tag for 6.10.19 release, all platforms
+      boinc_core_release_6_10_19
+
+    /
+        configure.ac
+        version.h
+
+Charlie 23 Nov 2009
+    - MGR: In Simple View, have Mac screen reader tell user to switch to 
+        Advanced View.
+    - Mac Installer: update ReadMe files to emphasize that installer may 
+        take longer than expected.
+        
+    clientgui/
+        BOINCSimpleGUI.cpp, .h
+        Mac/
+            MacAccessibility.cpp
+            MacAccessibility.h (added)
+    mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+    mac_installer/
+        GR-ReadMe.rtf
+        PTP-ReadMe.rtf
+        ReadMe.rtf
+
+Charlie 25 Nov 2009
+    - MGR: Implement Mac accessibility for Statistics and Disk tabs, 
+        eliminate screen reader saying "unknown" for intermediate panels, 
+        general cleanup of accessibility code and operation. 
+    - Mac Sandbox: attempt to fix bug where Manager reports that admin user 
+        is not authorized to run BOINC.  I haven't been able to reproduce 
+        this bug, so this fix is a shot in the dark.
+    
+    client/
+        check_security.cpp
+    clientgui/
+        AdvancedFrame.cpp
+        BOINCBaseView.h
+        BOINCListCtrl.cpp, .h
+        BOINCTaskCtrl.cpp 
+        ProjectListCtrl.cpp. .h
+        ViewStatistics.cpp, .h
+        common/
+            wxPieCtrl.cpp, .h
+        Mac/
+            MacAccessibility.cpp
+
+Charlie 26 Nov 2009
+    - MGR: Don't localize keyboard shortcut for Close Window.
+    - MGR: Tweaks to Mac accessibility.
+    - Mac Installer: Check for our boinc_master and boinc_project users and 
+        groups having IDs which conflict with other users and groups on the 
+        system.  This can happen when a newer version of the OS includes new 
+        users or groups, or when software is installed which defines them.  
+        This was causing some of the problems reported by users.  If the 
+        installer finds a conflict, it deletes our user or group and creates 
+        a new one with a unique ID.
+
+    clientgui/
+        AdvancedFrame.cpp
+        sg_BoincSimpleGUI.cpp
+        Mac/
+            MacAccessibility.cpp
+    mac_installer/
+        PostInstall.cpp
+
+Rom    19 Nov 2009
+    - MGR: Switch back to tooltips for descriptions.
+    
+    clientgui/
+        ProjectListCtrl.cpp
+
+David  23 Nov 2009
+    - client: show more general prefs on startup
+    - manager: show status for jobs aborted because not started by deadline
+
+    client/
+        cs_prefs.cpp
+        cpu_sched.cpp
+    clientgui/
+        ViewWork.cpp
+
+Rom    25 Nov 2009
+    - client: Treat each HTTP header sent to the server as a new log message.
+        Some tools get confused when more than one delimeter is used in
+        common file types.
+        
+    client/
+        http_curl.cpp, .h
+
+David  27 Nov 2009
+    - client: use [wfd] consistently
+
+    client/
+        cs_scheduler.cpp
+
+David  27 Nov 2009
+    - client: add <cpu_sched_status> log flag.
+        This tells you what's running, not why
+    - client: add <std_debug> log flag; changes in STD
+
+    The above are to let you log just stuff relevant to debt.
+    Right now I'm not sure why we need STD at all.
+
+    client/
+        cpu_sched.cpp
+        log_flags.cpp,h
+
+Rom    30 Nov 2009
+    - Tag for 6.10.20 release, all platforms
+      boinc_core_release_6_10_20
+
+    /
+        configure.ac
+        version.h
+
+Rom    30 Nov 2009
+    - MGR: Fix-up tools tips for various elements in the project list control.
+    
+    clientgui/
+        ProjectListCtrl.cpp, .h
+
+Rom    30 Nov 2009
+    - MGR: Hitting the back button on the ProjectInfo page in the wizard when
+        you have highlighted a project you are already attached too, should
+        not cause the 'you are already attached to project' dialog to be
+        displayed.  This also appears to have fixed the random page being
+        displayed when the dialog has been dismissed.
+        
+    clientgui/
+        ProjectInfoPage.cpp
+
+Rom    30 Nov 2009
+    - Tag for 6.10.21 release, all platforms
+      boinc_core_release_6_10_21
+
+    /
+        configure.ac
+        version.h
+
+Charlie  1 Dec 2009
+    - Mac Installer: Rearrange License Agreement so Restrictions section 
+        is visible without scrolling and is in bold text.
+
+    mac_installer/
+        License.rtf
+
+Charlie  3 Dec 2009
+    - Mac client: update build scripts, XCode project for curl-7.19.7 and 
+        c-ares 1.7.0.
+    
+     mac_build/
+        HowToBuildBOINC_XCode.rtf
+        buildc-ares.sh
+        buildcurl.sh
+        setupForBOINC.sh
+        boinc.xcodeproj/
+            project.pbxproj
+
+Charlie  4 Dec 2009
+    - Mac MGR: Fix crashes on OS 10.3.9 because some accessibility APIs are 
+        available only starting with OS 10.4.
+        
+    clientgui/
+        Mac/
+            MacAccessibility.cpp
+
+Charlie  5 Dec 2009
+    - Mac installer: fix a bug where installer would not start Maanger 
+        because getlogin() is not reliable under OS 10.6 when running 
+        with authentication; use getenv("USER") instead.
+    
+    mac_installer/
+        PostInstall.cpp
+
+Charlie  7 Dec 2009
+    - Mac installer: Changes for OS 10.6 compatibility have broken the installer 
+        on OS 10.3.9, so we no longer support OS 10.3.9 on BOINC 6.10.x.  If 
+        user tries to install on OS 10.3.9, display an alert and quit.
+
+    mac-installer/
+        Installer.cpp
+        PostInstall.cpp
+
+Rom    1 Dec 2009
+    - MGR: Filter project list icons so that the icon will only be displayed
+        if the volunteer has the hardware to go with it.
+        
+    clientgui/
+        ProjectInfoPage.cpp
+
+David  1 Dec 2009
+    - client: apply the LTD normalizing offset to all projects,
+        even non-debt-eligible ones.
+
+    client/
+        work_fetch.cpp
+
+David  1 Dec 2009
+    - client: change how short term debt is updated.
+        Old: it's based entirely on CPU time.
+            So a GPU project, whose app uses only a fraction
+            of a CPU, accrues positive debt.
+            This is OK if the project has only GPU apps,
+            since STD is not (currently) used for GPU scheduling.
+            But some projects have both CPU and GPU apps.
+        New: STD is based on total processing.
+            It has terms for each resource type.
+            The notion of "runnable resource share" is specific to a type.
+        Note: the notion of "resource share fraction" appears in
+            a couple of other places:
+            - it's passed to apps in app_init_data.xml
+            - it's passed in scheduler requests.
+            It should be broken down by resource type in these cases too.
+            Note to self: do this later.
+
+    client/
+        app_start.cpp
+        client_state.h
+        client_types.h
+        cpu_sched.cpp
+        cs_scheduler.cpp
+        work_fetch.cpp,h
+
+David  3 Dec 2009
+	- client: fix divide-by-zero bug in STD code
+	- fix compile warnings
+
+	client/
+		cpu_sched.cpp
+	clientgui/common/
+		wxPieCtrl.cpp
+	lib/
+		util.cpp
+
+David  3 Dec 2009
+    - client: Add offset to LTD of non-eligible projects
+        only if the offset is positive.
+    - client: some cmdline args set members of config.
+        However, config was being cleared after cmdline args were parsed,
+        so these args had no effect.
+        Instead, clear config before parsing cmdline
+
+    client/
+        work_fetch.cpp
+        main.cpp
+        log_flags.cpp
+
+David  3 Dec 2009
+    - client: my STD-related checkin of Dec 1 was bad.
+        It computed an "overall STD" as the sum of CPU and coprocs,
+        weighted by the coproc's speed, as we do for LTD.
+        This was the wrong idea; in the presence of GPUs,
+        STDs quickly get pushed to +- 1 day and are truncated there.
+
+        New scheme: STD is maintained per (resource type, project).
+        This fixes the above problem,
+        and it opens to door to round-robin scheduling of GPUs.
+    - client: the calculation of "anticipated debt" was scaling
+        by relative resource share.
+        This wasn't correct, seems to me.
+    - client: rename "debt" to "long_term_debt" in a few places
+        (but not in the client state file, for compatibility)
+
+    client/
+        client_state.cpp,h
+        client_types.cpp,h
+        cpu_sched.cpp
+        gui_rpc_server_ops.cpp
+        work_fetch.cpp,h
+
+David  4 Dec 2009
+    - client: fix bug in debt calculation
+    - client: <zero_debts> zeroes STD too
+
+    client/
+        work_fetch.cpp,h
+
+David  4 Dec 2009
+    - client: scale STD limit by # of device instances
+
+    client/
+        work_fetch.cpp
+
+David  4 Dec 2009
+    - client: sort out proxy_info mess.
+        Source of proxy info (descending priority)
+        - GUI RPC (Manager or boinccmd)
+            This and only this is saved in state file.
+            If neither HTTP nor SOCKS server name present,
+            this is viewed as not present
+        - environment vars
+        - cc_config.xml
+
+        Show sources of proxy info in message log.
+        If one is present but overridden, show a message to that effect.
+
+        This fixes a bug where someone had a proxy info env var and
+        forgot about it.
+        They got an erroneous message saying no proxy was being used.
+
+    client/
+        Makefile.am
+        app_start.cpp
+        client_state.cpp,h
+        cs_cmdline.cpp
+        cs_proxy.cpp,h (new)
+        cs_statefile.cpp
+        gui_rpc_server_ops.cpp
+        http_curl.cpp
+        log_flags.cpp
+        main.cpp
+        net_stats.cpp
+    lib/
+        proxy_info.cpp,h
+
+David  5 Dec 2009
+    - client: bug fixes to recent proxy info checkin
+
+    client/
+        cs_proxy.cpp
+        main.cpp
+        log_flags.cpp
+    lib/
+        proxy_info.cpp,h
+
+David  6 Dec 2009
+    - code shuffle: move client-specific GPU code to a separate file
+    client/
+        coproc_detect.cpp (new)
+        cpu_sched.cpp
+        cs_scheduler.cpp
+        Makefile.am
+        work_fetch.cpp
+        client_state.h
+    lib/
+        coproc.cpp,h
+
+David  6 Dec 2009
+    - more code shuffle: add COPROCS to HOST_INFO
+
+    client/
+        client_state.cpp,h
+        cs_scheduler.cpp
+        cpu_sched.cpp
+    lib/
+        hostinfo.h
+
+David  6 Dec 2009
+    - result of code shuffle: the HOST_INFO structure returned
+        by the get_host_info() GUI RPC now contains GPU info
+
+    client/
+        gui_rpc_server_ops.cpp
+        cs_scheduler.cpp
+        cs_statefile.cpp
+    lib/
+        hostinfo.cpp,h
+        coproc.cpp,h
+    sched/
+        sched_types.cpp
+
+David  7 Dec 2009
+    - client: don't set STDs for non-runnable projects to zero.
+        Let them float around with other projects.
+        Fixes problem where, when a project finishes its last job
+        and has a negative STD, it gets an unfair increment
+        by being set to zero.
+
+    client/
+        work_fetch.cpp
+
+David  8 Dec 2009
+	- client: scheduling tweak.
+		Old: if a project has RR sim deadline misses,
+			select jobs to run high-priority on the basis of:
+			1) deadline (earliest first)
+			2) estimated time to completion (least first)
+			This ignores whether jobs missed their deadline in RR sim,
+			so it may choose to run a job that's actually in no
+			danger of missing its deadline over one that is.
+		New: choose only jobs that miss their deadline in RR sim
+
+	client/
+		cpu_sched.cpp
+		rr_sim.cpp
+		work_fetch.cpp
+
+Rom    8 Dec 2009
+    - Tag for 6.10.22 release, all platforms
+      boinc_core_release_6_10_22
+
+    /
+        configure.ac
+        version.h
+
+David  8 Dec 2009
+    - fix initialization bug that made GPUs invisible
+    
+    client/
+        client_state.cpp
+
+Rom    8 Dec 2009
+    - Tag for 6.10.23 release, all platforms
+      boinc_core_release_6_10_23
+
+    /
+        configure.ac
+        version.h
+
+David  8 Dec 2009
+    - fix GPU bug
+    
+    client/
+        client_state.cpp
+        cs_statefile.cpp
+    lib/
+        hostinfo.cpp, .h
+
+Charlie  5 Dec 2009
+    - Mac: Update XCode project for new files cs_proxy.cpp,h.
+    
+     mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+Charlie  7 Dec 2009
+    - Mac: Update XCode project for new file coproc_detect.cpp.
+    
+     mac_build/
+        boinc.xcodeproj/
+            project.pbxproj
+
+Rom    8 Dec 2009
+    - Tag for 6.10.24 release, all platforms
+      boinc_core_release_6_10_24
+
+    /
+        configure.ac
+        version.h
+
+Charlie 13 Dec 2009
+    Mac command-line install: add .txt extension to copyright files.
+    
+    mac_installer/
+        release_boinc.sh
+
+Charlie 14 Dec 2009
+    - SS: Allow users to set Default (BOINC) screensaver duration, application 
+        screensaver duration and application screensaver change interval from 
+        screensaver control panel.  Implemented on Mac, needs additional work 
+        for Windows.
+
+    clientscr/
+        mac_saver_module.cpp
+        Mac_Saver_Module.h
+        Mac_Saver_ModuleView.m, .h
+        screensaver.cpp
+        screensaver_win.cpp, .h
+        res/
+            BOINCSaver.nib
+
+Charlie 15 Dec 2009
+    - Mac SS: In Mac screensaver control panel say "overview screensaver" not 
+        "BOINC screensaver" so we don't need 3 different versions of the NIB 
+        file for branding BOINC, GR and PtP.
+
+    clientscr/
+        res/
+            BOINCSaver.nib
+
+Charlie 16 Dec 2009
+    - Mac Uninstaller: Properly change screensaver settings under OS 10.6.
+         
+    mac_installer/
+        uninstall.cpp
+
+David  10 Dec 2009
+    - client: STD for a device with N instances
+        can increase or decrease at N times real time.
+        My checkin of 7 Dec reflects this by changing
+        the STD limits to +- N*MAX_STD.
+        This looks like a bug to users.
+        Instead, scale that rate of STD change by 1/N,
+        and keep the old limits of +- MAX_STD
+
+    client/
+        work_fetch.cpp
+
+David  10 Dec 2009
+    - client/manager: first whack at a "snooze GPU" button
+
+    client/
+        app.cpp,h
+        client_state.cpp,h
+        cpu_sched.cpp
+        cs_prefs.cpp
+        cs_statefile.cpp
+        gui_rpc_server_ops.cpp
+    clientgui/
+        BOINCTaskBar.cpp
+        Events.h
+
+David  10 Dec 2009
+	- client/manager: finish "snooze GPU" button
+
+	client/
+		gui_rpc_server_ops.cpp
+	clientgui/
+		AsynchRPC.cpp,h
+		BOINCTaskBar.cpp
+		MainDocument.cpp,h
+	lib/
+		gui_rpc_client.h
+		gui_rpc_client_ops.cpp
+
+David  10 Dec 2009
+	- manager: fix bug in the above
+
+	clientgui/
+		BOINCTaskBar.cpp
+
+David  11 Dec 2009
+    - client: deal with situation where GPU has enough
+        RAM to run job, but when we actually run the job
+        not enough GPU RAM is free, so the application fails.
+        This can cause a large number of jobs to fail.
+        Solution:
+        - app_plan() can specify the GPU RAM requirements of an app version.
+            This is passed to the client in a new field
+            <gpu_ram> of the <app_version> element.
+        - prior to starting or restarting a GPU app, the client
+            checks the amount of free RAM on the particular GPU.
+            If it's not enough for the app version,
+            the client doesn't start it,
+            and arranges for the scheduler to ignore it for 5 minutes
+            (by which point there might be more free GPU RAM)
+        Notes:
+        1) this change will have effect only when
+            both client and scheduler are updated.
+        2) the check is done in enforce_schedule(),
+            rather than schedule_cpus(),
+            because only at that point
+            have we assigned a specific GPU to the job.
+        3) there's another case to deal with:
+            a GPU app's malloc of GPU RAM fails in the middle of the job.
+            Currently the job fails.
+            I plan to add an API call boinc_temporary_exit(x) so
+            that the job can exit and potentially restart in x seconds.
+            (In principle this mechanism is sufficient for all cases,
+            but it could lead to a lot of starting/exiting,
+            so the current change is worthwhile).
+
+    client/
+        client_types.cpp,h
+        coproc_detect.cpp
+        cpu_sched.cpp
+        work_fetch.cpp
+    lib/
+        coproc.h
+
+David  11 Dec 2009
+    - manager: add GPU always/auto/never menu items
+
+    clientgui
+        AdvancedFrame.cpp,h
+        Events.h
+
+David  11 Dec 2009
+    - client: a couple of switch statements were missing breaks.
+        This would have caused work-fetch errors if
+        using the no_cuda, no_cpu etc. prefs
+
+    client/
+        work_fetch.cpp
+
+David  11 Dec 2009
+    - boinccmd: fix output of --get_disk_usage
+
+    lib/
+        gui_rpc_client_print.cpp
+        gui_rpc_client.h
+
+David  12 Dec 2009
+    - client: maintain mean STD at zero over all projects,
+        not just runnable ones
+
+    client/
+        work_fetch.cpp
+
+David  12 Dec 2009
+    - API and client: add an API function boinc_temporary_exit(dt).
+        This exits the app with status zero and no finish file,
+        so the client will restart it.
+        It creates a file "temporary_exit" containing dt.
+        The (new) client reads this file and will postpone
+        scheduling the job again for dt seconds.
+        Old clients will treat it as a premature exit,
+        and potentially try to reschedule the job immediately.
+
+        This function is intended for GPU applications that
+        fail to allocate GPU RAM,
+        presumably because a non-GPU application has it allocated.
+        We don't want the job to fail,
+        and we want to wait for a while before trying the allocation again.
+
+    client/
+        app.h
+        app_control.cpp
+    lib/
+        app_ipc.h
+
+Charlie 13 Dec 2009
+    - API and client: Fix bugs (indicated by compiler warnings) in recent 
+        check-ins.  David: please confirm these changes.
+    
+    client/
+        app_control.cpp
+        client_types.cpp
+
+David  14 Dec 2009
+    - client: ATI: call calShutdown() when done.
+        Otherwise Lenovo can't switch to low-power GPU
+
+    client/
+        coproc_detect.cpp
+
+David  14 Dec 2009
+    - client/manager: show coprocessor short-term debts
+
+    clientgui/
+        DlgItemProperties.cpp
+    lib/
+        gui_rpc_client.h
+        gui_rpc_client_ops.cpp
+
+David  14 Dec 2009
+	- client: fix bug in insufficient video RAM feature
+	- client: improve CPU sched debug msgs
+	- client: fix "temporary exit" feature
+	
+	client/
+		app_control.cpp
+		app_start.cpp
+		client_state.h
+		cpu_sched.cpp
+		sandbox.h
+	lib/
+		filesys.h
+
+David  14 Dec 2009
+    - client: typo fix
+
+    client/
+        cs_scheduler.cpp
+
+David  15 Dec 2009
+    - boinccmd: compile fix
+
+    client/
+        boinc_cmd.cpp
+
+Rom    16 Dec 2009
+    - Cleanup various warnings
+    - WINSCR: Implement new configuration dialog with new parameters
+    - WINSCR: Remove crufty code
+    - WINSCR: Update copyrights in resource files
+    
+    client/
+        app.cpp
+    clientscr/
+        boinc_ss.h
+        boinc_ss.rc
+        boinc_ss_opengl.h
+        boinc_ss_opengl.rc
+    clientscr/
+        screensaver.cpp, .h
+        screensaver_win.cpp, .h
+    lib/
+        common_defs.h
+        crypt.cpp
+        win_util.cpp
+    samples/worker/
+        worker.cpp
+    win_build/
+        boinc_ss.vcproj
+        multi_thread.vcproj
+        sleeper.vcproj
+        ss_app.vcproj
+        uc2_graphics.vcproj
+
+Rom    16 Dec 2009
+    - Tag for 6.10.25 release, all platforms
+      boinc_core_release_6_10_25
+
+    /
+        configure.ac
+        version.h
+
+Charlie 17 Dec 2009
+    - client: add missing dlsym of cuMemGetInfo() on non_Windows platforms. 
+
+    client/
+        coproc_detect.cpp
+
+Charlie  5 Dec 2009
+    - MGR: fix another bug due to changes for Snow Leopard compatibility:
+        on OS 10.4.11 (Tiger) and perhaps others, when Automatic Login is 
+        set, getlogin() returns "root" for a time after the system is first 
+        booted, causing the Manager to think the user is not a member of 
+        group boinc_master.  So check "USER" environment variable instead.
+
+    client/
+        check_security.cpp
+
+Charlie 23 Dec 2009
+    - Mac MGR: Call Mac accessibility calls GetViewDisplayName() instead of 
+        GetViewName() to announce localized tab names.
+        
+    clientgui/
+        Mac/
+            MacAccessibility.cpp
diff --git a/client/Makefile.am b/client/Makefile.am
index cf513d5..45d110a 100644
--- a/client/Makefile.am
+++ b/client/Makefile.am
@@ -1,5 +1,5 @@
 ## -*- mode: makefile; tab-width: 4 -*-
-## $Id: Makefile.am 18595 2009-07-14 17:50:33Z korpela $
+## $Id: Makefile.am 20170 2010-01-14 22:17:29Z romw $
 
 include $(top_srcdir)/Makefile.incl
 
@@ -42,6 +42,7 @@ boinc_client_SOURCES = \
     client_msgs.cpp \
     client_state.cpp \
     client_types.cpp \
+	coproc_detect.cpp \
     cpu_sched.cpp \
     cs_account.cpp \
     cs_apps.cpp \
@@ -50,6 +51,7 @@ boinc_client_SOURCES = \
     cs_files.cpp \
     cs_platforms.cpp \
     cs_prefs.cpp \
+    cs_proxy.cpp \
     cs_scheduler.cpp \
     cs_statefile.cpp \
     cs_trickle.cpp \
@@ -82,6 +84,8 @@ boinc_client_LDADD = $(LIBBOINC) $(LIBBOINC_CRYPT) $(BOINC_EXTRA_LIBS) $(PTHREAD
 boinc_clientdir = $(bindir)
 
 switcher_SOURCES = switcher.cpp
+switcher_LDFLAGS = $(AM_LDFLAGS) -L../lib 
+switcher_LDADD = $(LIBBOINC)
 
 ## since we are using libtool we need some magic to get boinc and boinc_client
 ## to both be installed properly.  The next two rules do that...
diff --git a/client/acct_mgr.cpp b/client/acct_mgr.cpp
index f578b58..ea31b09 100644
--- a/client/acct_mgr.cpp
+++ b/client/acct_mgr.cpp
@@ -22,11 +22,13 @@
 #endif
 
 #include <cstring>
+
 #include "parse.h"
 #include "error_numbers.h"
 #include "client_msgs.h"
 #include "str_util.h"
 #include "str_replace.h"
+#include "url.h"
 #include "file_names.h"
 #include "filesys.h"
 #include "client_state.h"
@@ -73,7 +75,7 @@ int ACCT_MGR_OP::do_rpc(
         for (i=0; i<gstate.projects.size(); i++) {
             PROJECT* p = gstate.projects[i];
             p->attached_via_acct_mgr = false;
-            p->ams_resource_share = 0;
+            p->ams_resource_share = -1;
         }
         return 0;
     }
@@ -689,4 +691,3 @@ bool ACCT_MGR_INFO::poll() {
     return false;
 }
 
-const char *BOINC_RCSID_8fd9e873bf="$Id: acct_mgr.cpp 18437 2009-06-16 20:54:44Z davea $";
diff --git a/client/acct_setup.cpp b/client/acct_setup.cpp
index b9265b4..36c8a1d 100644
--- a/client/acct_setup.cpp
+++ b/client/acct_setup.cpp
@@ -29,6 +29,7 @@
 #include "parse.h"
 #include "filesys.h"
 #include "str_util.h"
+#include "url.h"
 #include "util.h"
 #include "client_msgs.h"
 #include "log_flags.h"
@@ -329,4 +330,3 @@ void CLIENT_STATE::all_projects_list_check() {
     get_project_list_op.do_rpc();
 }
 
-const char *BOINC_RCSID_84df3fc17e="$Id: acct_setup.cpp 19245 2009-10-05 20:05:44Z romw $";
diff --git a/client/app.cpp b/client/app.cpp
index f330213..27851d3 100644
--- a/client/app.cpp
+++ b/client/app.cpp
@@ -75,6 +75,11 @@
 using std::max;
 using std::min;
 
+bool exclusive_app_running;
+bool exclusive_gpu_app_running;
+bool gpu_suspended;
+double non_boinc_cpu_usage;
+
 #define ABORT_TIMEOUT   60
     // if we send app <abort> request, wait this long before killing it.
     // This gives it time to download symbol files (which can be several MB)
@@ -160,6 +165,7 @@ ACTIVE_TASK::ACTIVE_TASK() {
     checkpoint_cpu_time = 0;
     checkpoint_wall_time = 0;
     current_cpu_time = 0;
+    once_ran_edf = false;
     elapsed_time = 0;
     checkpoint_elapsed_time = 0;
     have_trickle_down = false;
@@ -294,6 +300,7 @@ void ACTIVE_TASK_SET::free_mem() {
 bool app_running(vector<PROCINFO>& piv, const char* p) {
     for (unsigned int i=0; i<piv.size(); i++) {
         PROCINFO& pi = piv[i];
+        //msg_printf(0, MSG_INFO, "running: [%s]", pi.command);
         if (!strcmp(pi.command, p)) {
             return true;
         }
@@ -305,6 +312,8 @@ void ACTIVE_TASK_SET::get_memory_usage() {
     static double last_mem_time=0;
     unsigned int i;
 	int retval;
+    static bool first = true;
+    static double last_cpu_time;
 
     double diff = gstate.now - last_mem_time;
     if (diff < 10) return;
@@ -345,23 +354,55 @@ void ACTIVE_TASK_SET::get_memory_usage() {
     }
 
     exclusive_app_running = false;
+    bool old_egar = exclusive_gpu_app_running;
+    exclusive_gpu_app_running = false;
     for (i=0; i<config.exclusive_apps.size(); i++) {
         if (app_running(piv, config.exclusive_apps[i].c_str())) {
             exclusive_app_running = true;
             break;
         }
     }
+    for (i=0; i<config.exclusive_gpu_apps.size(); i++) {
+        if (app_running(piv, config.exclusive_gpu_apps[i].c_str())) {
+            exclusive_gpu_app_running = true;
+            break;
+        }
+    }
+    if (old_egar != exclusive_gpu_app_running) {
+        gstate.request_schedule_cpus("Exclusive GPU app status changed");
+    }
 
-#if 0
-    // the following is not useful because most OSs don't
-    // move idle processes out of RAM, so physical memory is always full
+    // get info on non-BOINC processes.
+    // mem usage info is not useful because most OSs don't
+    // move idle processes out of RAM, so physical memory is always full.
+    // Also (at least on Win) page faults are used for various things,
+    // not all of them generate disk I/O,
+    // so they're not useful for detecting paging/thrashing.
     //
+    PROCINFO pi;
     procinfo_other(pi, piv);
-    msg_printf(NULL, MSG_INFO, "All others: RAM %.2fMB, page %.2fMB, user %.3f, kernel %.3f",
-        pi.working_set_size/MEGA, pi.swap_size/MEGA,
-        pi.user_time, pi.kernel_time
-    );
-#endif
+    if (log_flags.mem_usage_debug) {
+        msg_printf(NULL, MSG_INFO,
+            "[mem_usage_debug] All others: RAM %.2fMB, page %.2fMB, user %.3f, kernel %.3f",
+            pi.working_set_size/MEGA, pi.swap_size/MEGA,
+            pi.user_time, pi.kernel_time
+        );
+    }
+    double new_cpu_time = pi.user_time + pi.kernel_time;
+    if (first) {
+        first = false;
+    } else {
+        non_boinc_cpu_usage = (new_cpu_time - last_cpu_time)/(diff*gstate.host_info.p_ncpus);
+        // processes might have exited in the last 10 sec,
+        // causing this to be negative.
+        if (non_boinc_cpu_usage < 0) non_boinc_cpu_usage = 0;
+        if (log_flags.mem_usage_debug) {
+            msg_printf(NULL, MSG_INFO,
+                "[mem_usage_debug] non-BOINC CPU usage: %.2f%%", non_boinc_cpu_usage*100
+            );
+        }
+    }
+    last_cpu_time = new_cpu_time;
 }
 
 // Do periodic checks on running apps:
@@ -517,10 +558,12 @@ int ACTIVE_TASK::write(MIOFILE& fout) {
         "    <active_task_state>%d</active_task_state>\n"
         "    <app_version_num>%d</app_version_num>\n"
         "    <slot>%d</slot>\n"
+        "    <pid>%d</pid>\n"
         "    <checkpoint_cpu_time>%f</checkpoint_cpu_time>\n"
         "    <checkpoint_elapsed_time>%f</checkpoint_elapsed_time>\n"
         "    <fraction_done>%f</fraction_done>\n"
         "    <current_cpu_time>%f</current_cpu_time>\n"
+        "    <once_ran_edf>%d</once_ran_edf>\n"
         "    <swap_size>%f</swap_size>\n"
         "    <working_set_size>%f</working_set_size>\n"
         "    <working_set_size_smoothed>%f</working_set_size_smoothed>\n"
@@ -530,10 +573,12 @@ int ACTIVE_TASK::write(MIOFILE& fout) {
         task_state(),
         app_version->version_num,
         slot,
+        pid,
         checkpoint_cpu_time,
         checkpoint_elapsed_time,
         fraction_done,
         current_cpu_time,
+        once_ran_edf?1:0,
         procinfo.swap_size,
         procinfo.working_set_size,
         procinfo.working_set_size_smoothed,
@@ -549,6 +594,7 @@ int ACTIVE_TASK::write_gui(MIOFILE& fout) {
         "    <active_task_state>%d</active_task_state>\n"
         "    <app_version_num>%d</app_version_num>\n"
         "    <slot>%d</slot>\n"
+        "    <pid>%d</pid>\n"
         "    <scheduler_state>%d</scheduler_state>\n"
         "    <checkpoint_cpu_time>%f</checkpoint_cpu_time>\n"
         "    <fraction_done>%f</fraction_done>\n"
@@ -563,6 +609,7 @@ int ACTIVE_TASK::write_gui(MIOFILE& fout) {
         task_state(),
         app_version->version_num,
         slot,
+        pid,
         scheduler_state,
         checkpoint_cpu_time,
         fraction_done,
@@ -676,6 +723,7 @@ int ACTIVE_TASK::parse(MIOFILE& fin) {
             current_cpu_time = checkpoint_cpu_time;
             continue;
         }
+        else if (parse_bool(buf, "once_ran_edf", once_ran_edf)) continue;
         else if (parse_double(buf, "<fraction_done>", fraction_done)) continue;
         else if (parse_double(buf, "<checkpoint_elapsed_time>", checkpoint_elapsed_time)) {
             elapsed_time = checkpoint_elapsed_time;
@@ -698,8 +746,6 @@ int ACTIVE_TASK::parse(MIOFILE& fin) {
     return ERR_XML_PARSE;
 }
 
-// Write XML information about this active task set
-//
 int ACTIVE_TASK_SET::write(MIOFILE& fout) {
     unsigned int i;
     int retval;
@@ -713,8 +759,6 @@ int ACTIVE_TASK_SET::write(MIOFILE& fout) {
     return 0;
 }
 
-// Parse XML information about an active task set
-//
 int ACTIVE_TASK_SET::parse(MIOFILE& fin) {
     ACTIVE_TASK* atp;
     char buf[256];
@@ -794,7 +838,7 @@ void MSG_QUEUE::msg_queue_poll(MSG_CHANNEL& channel) {
 // if the last message in the buffer is "msg", remove it and return 1
 //
 int MSG_QUEUE::msg_queue_purge(const char* msg) {
-	int count = msgs.size();
+	int count = (int)msgs.size();
 	if (!count) return 0;
 	vector<string>::iterator iter = msgs.begin();
 	for (int i=0; i<count-1; i++) {
@@ -833,10 +877,7 @@ void ACTIVE_TASK_SET::report_overdue() {
         double diff = (gstate.now - atp->result->report_deadline)/86400;
         if (diff > 0) {
             msg_printf(atp->result->project, MSG_USER_ERROR,
-                "Task %s is %.2f days overdue.", atp->result->name, diff
-            );
-            msg_printf(atp->result->project, MSG_USER_ERROR,
-                "You may not get credit for it.  Consider aborting it."
+                "Task %s is %.2f days overdue; you may not get credit for it.  Consider aborting it.", atp->result->name, diff
             );
         }
     }
@@ -936,4 +977,3 @@ void ACTIVE_TASK_SET::init() {
 
 #endif
 
-const char *BOINC_RCSID_778b61195e = "$Id: app.cpp 19255 2009-10-05 20:34:14Z romw $";
diff --git a/client/app.h b/client/app.h
index a756abe..0118eb0 100644
--- a/client/app.h
+++ b/client/app.h
@@ -83,6 +83,7 @@ public:
     double fraction_done;
         /// most recent CPU time reported by app
     double current_cpu_time;
+    bool once_ran_edf;
 
     //// END OF ITEMS SAVED IN STATE FILE
 
@@ -211,9 +212,10 @@ public:
 
     bool get_app_status_msg();
     bool get_trickle_up_msg();
-    double est_time_to_completion(bool for_work_fetch);
+    double est_dur(bool for_work_fetch);
     bool read_stderr_file();
     bool finish_file_present();
+    bool temporary_exit_file_present(double&);
     bool supports_graphics();
     int write_app_init_file();
     int move_trickle_file();
@@ -238,7 +240,7 @@ public:
     ACTIVE_TASK* lookup_result(RESULT*);
     void init();
     bool poll();
-    void suspend_all(bool leave_apps_in_memory=true);
+    void suspend_all(int reason);
     void unsuspend_all();
     bool is_task_executing();
     void request_tasks_exit(PROJECT* p=0);
@@ -262,7 +264,6 @@ public:
     void free_mem();
     bool slot_taken(int);
     void get_memory_usage();
-    bool exclusive_app_running;
 
     // graphics-related functions
     void graphics_poll();
@@ -274,4 +275,9 @@ public:
     int parse(MIOFILE&);
 };
 
+extern bool exclusive_app_running;
+extern bool exclusive_gpu_app_running;
+extern bool gpu_suspended;
+extern double non_boinc_cpu_usage;
+
 #endif
diff --git a/client/app_control.cpp b/client/app_control.cpp
index 3c5679c..c5ffda0 100644
--- a/client/app_control.cpp
+++ b/client/app_control.cpp
@@ -137,7 +137,9 @@ int ACTIVE_TASK::kill_task(bool restart) {
     cleanup_task();
 	if (restart) {
 		set_task_state(PROCESS_UNINITIALIZED, "kill_task");
-		gstate.request_enforce_schedule("Task restart");
+        char buf[256];
+        sprintf(buf, "restarting %s", result->name);
+		gstate.request_enforce_schedule(result->project, buf);
 	} else {
 		set_task_state(PROCESS_ABORTED, "kill_task");
 	}
@@ -261,6 +263,13 @@ void ACTIVE_TASK::handle_exited_app(int stat) {
                 set_task_state(PROCESS_EXITED, "handle_exited_app");
                 break;
             }
+            double x;
+            if (temporary_exit_file_present(x)) {
+                set_task_state(PROCESS_UNINITIALIZED, "temporary exit");
+                will_restart = true;
+                result->schedule_backoff = gstate.now + x;
+                break;
+            }
             handle_premature_exit(will_restart);
             break;
         case 0xc000013a:        // control-C??
@@ -383,6 +392,22 @@ bool ACTIVE_TASK::finish_file_present() {
     return (boinc_file_exists(path) != 0);
 }
 
+bool ACTIVE_TASK::temporary_exit_file_present(double& x) {
+    char path[256];
+    sprintf(path, "%s/%s", slot_dir, TEMPORARY_EXIT_FILE);
+    FILE* f = fopen(path, "r");
+    if (!f) return false;
+    int y;
+    int n = fscanf(f, "%d", &y);
+    fclose(f);
+    if (n != 1 || y < 0 || y > 86400) {
+        x = 300;
+    } else {
+        x = y;
+    }
+    return true;
+}
+
 void ACTIVE_TASK_SET::send_trickle_downs() {
     unsigned int i;
     ACTIVE_TASK* atp;
@@ -502,7 +527,7 @@ bool ACTIVE_TASK_SET::check_app_exited() {
 #else
     int pid, stat;
 
-    if ((pid = waitpid(0, &stat, WNOHANG)) > 0) {
+    if ((pid = waitpid(-1, &stat, WNOHANG)) > 0) {
         atp = lookup_pid(pid);
         if (!atp) {
             // if we're running benchmarks, exited process
@@ -638,7 +663,9 @@ bool ACTIVE_TASK::read_stderr_file() {
     int max_len = 63*1024;
     sprintf(path, "%s/%s", slot_dir, STDERR_FILE);
     if (!boinc_file_exists(path)) return false;
-    if (read_file_string(path, stderr_file, max_len, true)) return false;
+    if (read_file_string(path, stderr_file, max_len, !config.stderr_head)) {
+        return false;
+    }
 
     result->stderr_out += "<stderr_txt>\n";
     result->stderr_out += stderr_file;
@@ -775,18 +802,26 @@ int ACTIVE_TASK_SET::abort_project(PROJECT* project) {
 // called only from CLIENT_STATE::suspend_tasks(),
 // e.g. because on batteries, time of day, benchmarking, CPU throttle, etc.
 //
-void ACTIVE_TASK_SET::suspend_all(bool cpu_throttle) {
+void ACTIVE_TASK_SET::suspend_all(int reason) {
     for (unsigned int i=0; i<active_tasks.size(); i++) {
         ACTIVE_TASK* atp = active_tasks[i];
         if (atp->task_state() != PROCESS_EXECUTING) continue;
-		if (cpu_throttle) {
+        switch (reason) {
+        case SUSPEND_REASON_CPU_THROTTLE:
 			// if we're doing CPU throttling, don't bother suspending apps
 			// that don't use a full CPU
 			//
 			if (atp->result->project->non_cpu_intensive) continue;
 			if (atp->app_version->avg_ncpus < 1) continue;
             atp->preempt(REMOVE_NEVER);
-		} else {
+            break;
+        case SUSPEND_REASON_BENCHMARKS:
+            atp->preempt(REMOVE_NEVER);
+            break;
+        case SUSPEND_REASON_CPU_USAGE:
+            if (atp->result->project->non_cpu_intensive) break;
+            // fall through
+        default:
             atp->preempt(REMOVE_MAYBE_USER);
         }
     }
@@ -1019,7 +1054,9 @@ void ACTIVE_TASK_SET::get_msgs() {
         }
         if (atp->get_app_status_msg()) {
             if (old_time != atp->checkpoint_cpu_time) {
-                gstate.request_enforce_schedule("Checkpoint reached");
+                char buf[256];
+                sprintf(buf, "%s checkpointed", atp->result->name);
+                gstate.request_enforce_schedule(atp->result->project, buf);
                 atp->checkpoint_wall_time = gstate.now;
                 atp->premature_exit_count = 0;
                 atp->checkpoint_elapsed_time = atp->elapsed_time;
@@ -1105,4 +1142,3 @@ void ACTIVE_TASK::read_task_state_file() {
     }
 }
 
-const char *BOINC_RCSID_10ca137461 = "$Id: app_control.cpp 19314 2009-10-16 18:57:01Z romw $";
diff --git a/client/app_graphics.cpp b/client/app_graphics.cpp
index a5648c3..a2edf1f 100644
--- a/client/app_graphics.cpp
+++ b/client/app_graphics.cpp
@@ -139,4 +139,3 @@ bool ACTIVE_TASK::supports_graphics() {
     return true;
 }
 
-const char *BOINC_RCSID_71e9cd9f4d = "$Id: app_graphics.cpp 17335 2009-02-23 04:54:04Z davea $";
diff --git a/client/app_start.cpp b/client/app_start.cpp
index d03bec3..84dccf9 100644
--- a/client/app_start.cpp
+++ b/client/app_start.cpp
@@ -83,6 +83,8 @@ using std::string;
 #include "proc_control.h"
 #endif
 
+#include "cs_proxy.h"
+
 #include "app.h"
 
 
@@ -161,8 +163,10 @@ int ACTIVE_TASK::get_shmem_seg_name() {
 
     // ftok() only works if there's a file at the given location
     //
-    FILE* f = boinc_fopen(init_data_path, "w");
-    if (f) fclose(f);
+    if (!boinc_file_exists(init_data_path)) {
+        FILE* f = boinc_fopen(init_data_path, "w");
+        if (f) fclose(f);
+    }
     shmem_seg_name = ftok(init_data_path, 1);
     if (shmem_seg_name == -1) return ERR_SHMEM_NAME;
 #endif
@@ -203,7 +207,7 @@ int ACTIVE_TASK::write_app_init_file() {
     aid.user_expavg_credit = wup->project->user_expavg_credit;
     aid.host_total_credit = wup->project->host_total_credit;
     aid.host_expavg_credit = wup->project->host_expavg_credit;
-    double rrs = gstate.runnable_resource_share();
+    double rrs = gstate.runnable_resource_share(RSC_TYPE_CPU);
     if (rrs) {
         aid.resource_share_fraction = wup->project->resource_share/rrs;
     } else {
@@ -226,6 +230,11 @@ int ACTIVE_TASK::write_app_init_file() {
     aid.starting_elapsed_time = checkpoint_elapsed_time;
 
     sprintf(init_data_path, "%s/%s", slot_dir, INIT_DATA_FILE);
+
+    // delete the file using the switcher (Unix)
+    // in case it's owned by another user and we don't have write access
+    //
+    delete_project_owned_file(init_data_path, false);
     f = boinc_fopen(init_data_path, "w");
     if (!f) {
         msg_printf(wup->project, MSG_INTERNAL_ERROR,
@@ -237,7 +246,7 @@ int ACTIVE_TASK::write_app_init_file() {
 
     aid.host_info = gstate.host_info;
     aid.global_prefs = gstate.global_prefs;
-    aid.proxy_info = gstate.proxy_info;
+    aid.proxy_info = working_proxy_info;
     retval = write_init_data_file(f, aid);
     fclose(f);
     return retval;
@@ -489,6 +498,11 @@ int ACTIVE_TASK::start(bool first_time) {
 
     link_user_files();
 
+    // make sure temporary exit file isn't there
+    //
+    sprintf(file_path, "%s/%s", slot_dir, TEMPORARY_EXIT_FILE);
+    delete_project_owned_file(file_path, true);
+
     if (gstate.exit_before_start) {
         exit(0);
     }
@@ -788,29 +802,35 @@ int ACTIVE_TASK::start(bool first_time) {
         // - the project dir (../../projects/X)
         // - the slot dir (.)
         // - the BOINC dir (../..)
+        // (Mac) /usr/local/cuda/lib/
         // We use relative paths in case higher-level dirs
         // are not readable to the account under which app runs
         //
         char libpath[8192];
+        char newlibs[256];
         get_project_dir(wup->project, buf, sizeof(buf));
+        sprintf(newlibs, "../../%s:.:../..", buf);
+#ifdef __APPLE__
+        strcat(newlibs, ":/usr/local/cuda/lib/");
+#endif
         char* p = getenv("LD_LIBRARY_PATH");
         if (p) {
-            sprintf(libpath, "../../%s:.:../..:%s", buf, p);
+            sprintf(libpath, "%s:%s", newlibs, p);
         } else {
-            sprintf(libpath, "../../%s:.:../..", buf);
+            strcpy(libpath, newlibs);
         }
         setenv("LD_LIBRARY_PATH", libpath, 1);
 
-        // On the Mac, do the same for DYLIB_LIBRARY_PATH
+        // On the Mac, do the same for DYLD_LIBRARY_PATH
         //
 #ifdef __APPLE__
-        p = getenv("DYLIB_LIBRARY_PATH");
+        p = getenv("DYLD_LIBRARY_PATH");
         if (p) {
-            sprintf(libpath, "../../%s:.:../..:%s", buf, p);
+            sprintf(libpath, "%s:%s", newlibs, p);
         } else {
-            sprintf(libpath, "../../%s:.:../..", buf);
+            strcpy(libpath, newlibs);
         }
-        setenv("DYLIB_LIBRARY_PATH", libpath, 1);
+        setenv("DYLD_LIBRARY_PATH", libpath, 1);
 #endif
 
         retval = chdir(slot_dir);
@@ -1051,4 +1071,3 @@ int ACTIVE_TASK::is_native_i386_app(char* exec_path) {
 }
 #endif
 
-const char *BOINC_RCSID_be8bae8cbb = "$Id: app_start.cpp 19321 2009-10-16 19:15:04Z romw $";
diff --git a/client/boinc_cmd.cpp b/client/boinc_cmd.cpp
index 81c3877..ba8a14c 100644
--- a/client/boinc_cmd.cpp
+++ b/client/boinc_cmd.cpp
@@ -43,6 +43,7 @@ using std::string;
 #include "util.h"
 #include "str_util.h"
 #include "str_replace.h"
+#include "url.h"
 #include "version.h"
 #include "common_defs.h"
 
@@ -507,8 +508,14 @@ int main(int argc, char** argv) {
         while (i < argc) {
             PROJECT proj;
             proj.master_url = string(next_arg(argc, argv, i));
-            proj.short_term_debt = atoi(next_arg(argc, argv, i));
-            proj.cpu_long_term_debt = atoi(next_arg(argc, argv, i));
+            int std = atoi(next_arg(argc, argv, i));
+            proj.cpu_short_term_debt = std;
+            proj.cuda_short_term_debt = std;
+            proj.ati_short_term_debt = std;
+            int ltd = atoi(next_arg(argc, argv, i));
+            proj.cpu_long_term_debt = ltd;
+            proj.cuda_debt = ltd;
+            proj.ati_debt = ltd;
             projects.push_back(proj);
         }
         retval = rpc.set_debts(projects);
@@ -527,4 +534,3 @@ int main(int argc, char** argv) {
     exit(retval);
 }
 
-const char *BOINC_RCSID_77f00010ab = "$Id: boinc_cmd.cpp 18576 2009-07-07 22:58:58Z davea $";
diff --git a/client/check_security.cpp b/client/check_security.cpp
index 099b027..1686a4c 100644
--- a/client/check_security.cpp
+++ b/client/check_security.cpp
@@ -39,7 +39,7 @@
 bool IsUserInGroupBM();
 #endif
 
-static int CheckNestedDirectories(char * basepath, int depth, int use_sandbox);
+static int CheckNestedDirectories(char * basepath, int depth, int use_sandbox, int isManager);
 
 #if (! defined(__WXMAC__) && ! defined(_MAC_INSTALLER))
 static char * PersistentFGets(char *buf, size_t buflen, FILE *f);
@@ -347,10 +347,10 @@ saverName[2] = "Progress Thru Processors";
     retval = stat(full_path, &sbuf);
     if (! retval) {                 // Client can create projects directory if it does not yet exist.  
         if (use_sandbox) {
-            if (sbuf.st_gid != boinc_master_gid)
+            if (sbuf.st_gid != boinc_project_gid)
                 return -1024;
 
-        if ((sbuf.st_mode & 0777) != 0775)
+        if ((sbuf.st_mode & 0777) != 0770)
             return -1025;
         }
         
@@ -358,7 +358,7 @@ saverName[2] = "Progress Thru Processors";
             return -1026;
 
         // Step through project directories
-        retval = CheckNestedDirectories(full_path, 1, use_sandbox);
+        retval = CheckNestedDirectories(full_path, 1, use_sandbox, isManager);
         if (retval)
             return retval;
     }
@@ -369,10 +369,10 @@ saverName[2] = "Progress Thru Processors";
     retval = stat(full_path, &sbuf);
     if (! retval) {                 // Client can create slots directory if it does not yet exist.  
        if (use_sandbox) {
-            if (sbuf.st_gid != boinc_master_gid)
+            if (sbuf.st_gid != boinc_project_gid)
                 return -1027;
 
-            if ((sbuf.st_mode & 0777) != 0775)
+            if ((sbuf.st_mode & 0777) != 0770)
                 return -1028;
         }
         
@@ -380,7 +380,7 @@ saverName[2] = "Progress Thru Processors";
             return -1029;
 
         // Step through slot directories
-        retval = CheckNestedDirectories(full_path, 1, use_sandbox);
+        retval = CheckNestedDirectories(full_path, 1, use_sandbox, isManager);
         if (retval)
             return retval;
     }
@@ -497,7 +497,7 @@ saverName[2] = "Progress Thru Processors";
 }
 
 
-static int CheckNestedDirectories(char * basepath, int depth, int use_sandbox) {
+static int CheckNestedDirectories(char * basepath, int depth, int use_sandbox, int isManager) {
     int             isDirectory;
     char            full_path[MAXPATHLEN];
     struct stat     sbuf;
@@ -579,11 +579,11 @@ static int CheckNestedDirectories(char * basepath, int depth, int use_sandbox) {
         }           // if (!S_ISLNK(sbuf.st_mode))
         
         if (isDirectory && !S_ISLNK(sbuf.st_mode)) {
-            if (use_sandbox && (depth > 1))
-                if ((sbuf.st_uid != boinc_master_uid) && (sbuf.st_gid != boinc_master_gid))
-                    continue;       // We can't check subdirectories owned by boinc_project
-            
-            retval = CheckNestedDirectories(full_path, depth + 1, use_sandbox);
+            if (use_sandbox && (depth > 1)) {
+                if ((! isManager) && (sbuf.st_uid != boinc_master_uid))
+                    continue;       // Client can't check subdirectories owned by boinc_project
+            }
+            retval = CheckNestedDirectories(full_path, depth + 1, use_sandbox, isManager);
             if (retval)
                 break;
         }
@@ -666,15 +666,16 @@ bool IsUserInGroupBM() {
     char                *userName, *groupMember;
     int                 i;
 
-    grp = getgrgid(boinc_master_gid);
+    grp = getgrnam(REAL_BOINC_MASTER_NAME);
     if (grp) {
-
         rgid = getgid();
-        if (rgid == boinc_master_gid) {
+        if (rgid == grp->gr_gid) {
             return true;                // User's primary group is boinc_master
         }
 
-        userName = getlogin();
+        // On some systems with Automatic Login set, getlogin() returns "root" for a 
+        // time after the system is first booted, so we check "USER" environment variable.
+        userName = getenv("USER");
         if (userName) {
             for (i=0; ; i++) {          // Step through all users in group boinc_master
                 groupMember = grp->gr_mem[i];
diff --git a/client/check_state.cpp b/client/check_state.cpp
index ca35e03..9be221b 100644
--- a/client/check_state.cpp
+++ b/client/check_state.cpp
@@ -240,4 +240,3 @@ void CLIENT_STATE::free_mem() {
 }
 #endif
 
-const char *BOINC_RCSID_d91498c9e4 = "$Id: check_state.cpp 16069 2008-09-26 18:20:24Z davea $";
diff --git a/client/client_msgs.cpp b/client/client_msgs.cpp
index 4b12a3a..d5a1fd8 100644
--- a/client/client_msgs.cpp
+++ b/client/client_msgs.cpp
@@ -79,4 +79,3 @@ void record_message(PROJECT* p, int priority, int now, char* message) {
     message_descs.push_front(mdp);
 }
 
-const char *BOINC_RCSID_9572274f4f = "$Id: client_msgs.cpp 18437 2009-06-16 20:54:44Z davea $";
diff --git a/client/client_state.cpp b/client/client_state.cpp
index 7cec58b..6c8c713 100644
--- a/client/client_state.cpp
+++ b/client/client_state.cpp
@@ -98,13 +98,13 @@ CLIENT_STATE::CLIENT_STATE():
     exit_after_app_start_secs = 0;
     app_started = 0;
     exit_before_upload = false;
-    proxy_info.clear();
     show_projects = false;
     strcpy(detach_project_url, "");
     strcpy(main_host_venue, "");
     strcpy(attach_project_url, "");
     strcpy(attach_project_auth, "");
     run_mode.set(RUN_MODE_AUTO, 0);
+    gpu_mode.set(RUN_MODE_AUTO, 0);
     network_mode.set(RUN_MODE_AUTO, 0);
     started_by_screensaver = false;
     requested_exit = false;
@@ -145,22 +145,6 @@ CLIENT_STATE::CLIENT_STATE():
     abort_jobs_on_exit = false;
 }
 
-void CLIENT_STATE::show_proxy_info() {
-    if (proxy_info.use_http_proxy) {
-        msg_printf(NULL, MSG_INFO, "Using HTTP proxy %s:%d",
-            proxy_info.http_server_name, proxy_info.http_server_port
-        );
-    }
-    if (proxy_info.use_socks_proxy) {
-        msg_printf(NULL, MSG_INFO, "Using SOCKS proxy %s:%d",
-            proxy_info.socks_server_name, proxy_info.socks_server_port
-        );
-    }
-    if (!proxy_info.use_http_proxy && !proxy_info.use_socks_proxy) {
-        msg_printf(NULL, MSG_INFO, "Not using a proxy");
-    }
-}
-
 void CLIENT_STATE::show_host_info() {
     char buf[256], buf2[256];
 
@@ -258,10 +242,16 @@ int CLIENT_STATE::init() {
     host_info.get_host_info();
     set_ncpus();
     show_host_info();
+
+    // check for GPUs.
+    //
     if (!config.no_gpus) {
         vector<string> descs;
         vector<string> warnings;
-        coprocs.get(config.use_all_gpus, descs, warnings);
+        host_info.coprocs.get(
+            config.use_all_gpus, descs, warnings,
+            config.ignore_cuda_dev, config.ignore_ati_dev
+        );
         for (i=0; i<descs.size(); i++) {
             msg_printf(NULL, MSG_INFO, descs[i].c_str());
         }
@@ -270,7 +260,7 @@ int CLIENT_STATE::init() {
                 msg_printf(NULL, MSG_INFO, warnings[i].c_str());
             }
         }
-        if (coprocs.coprocs.size() == 0) {
+        if (host_info.coprocs.coprocs.size() == 0) {
             msg_printf(NULL, MSG_INFO, "No usable GPUs found");
         }
 #if 0
@@ -281,8 +271,8 @@ int CLIENT_STATE::init() {
         fake_ati(coprocs, 2);
         msg_printf(NULL, MSG_INFO, "Faking an ATI GPU");
 #endif
-        coproc_cuda = (COPROC_CUDA*)coprocs.lookup("CUDA");
-        coproc_ati = (COPROC_ATI*)coprocs.lookup("ATI");
+        coproc_cuda = (COPROC_CUDA*)host_info.coprocs.lookup("CUDA");
+        coproc_ati = (COPROC_ATI*)host_info.coprocs.lookup("ATI");
     }
 
     // check for app_info.xml file in project dirs.
@@ -293,7 +283,9 @@ int CLIENT_STATE::init() {
     //
     check_anonymous();
 
-    cpu_benchmarks_set_defaults();  // for first time, make sure p_fpops nonzero
+    // first time, set p_fpops nonzero to avoid div by zero
+    //
+    cpu_benchmarks_set_defaults();
 
     // Parse the client state file,
     // ignoring any <project> tags (and associated stuff)
@@ -306,9 +298,8 @@ int CLIENT_STATE::init() {
     //
     parse_account_files_venue();
 
-    show_proxy_info();
 
-    // fill in avp->flops for anonymous project
+    // fill in avp->flops for anonymous platform projects
     //
     for (i=0; i<app_versions.size(); i++) {
         APP_VERSION* avp = app_versions[i];
@@ -462,10 +453,6 @@ int CLIENT_STATE::init() {
     if (sandbox_account_service_token != NULL) g_use_sandbox = true;
 #endif
 
-    // Check to see if a proxy server can be detected.
-    proxy_info.need_autodetect_proxy_settings = true;
-    proxy_info.have_autodetect_proxy_settings = false;
-
     check_file_existence();
     if (!boinc_file_exists(ALL_PROJECTS_LIST_FILENAME)) {
         all_projects_list_check_time = 0;
@@ -1588,8 +1575,10 @@ int CLIENT_STATE::reset_project(PROJECT* project, bool detaching) {
     project->duration_correction_factor = 1;
     project->ams_resource_share = -1;
     project->min_rpc_time = 0;
-	project->short_term_debt = 0;
     project->pwf.reset(project);
+    project->cpu_pwf.reset();
+    project->cuda_pwf.reset();
+    project->ati_pwf.reset();
     write_state_file();
     return 0;
 }
@@ -1598,7 +1587,7 @@ int CLIENT_STATE::reset_project(PROJECT* project, bool detaching) {
 // - Reset (see above)
 // - delete all file infos
 // - delete account file
-// - delete account directory
+// - delete project directory
 //
 int CLIENT_STATE::detach_project(PROJECT* project) {
     vector<PROJECT*>::iterator project_iter;
@@ -1800,4 +1789,3 @@ bool CLIENT_STATE::abort_sequence_done() {
     return true;
 }
 
-const char *BOINC_RCSID_e836980ee1 = "$Id: client_state.cpp 19329 2009-10-16 19:35:52Z romw $";
diff --git a/client/client_state.h b/client/client_state.h
index b1e62a0..b320d98 100644
--- a/client/client_state.h
+++ b/client/client_state.h
@@ -27,6 +27,8 @@
 using std::string;
 using std::vector;
 
+#include "coproc.h"
+
 #include "acct_mgr.h"
 #include "acct_setup.h"
 #include "app.h"
@@ -41,8 +43,6 @@ using std::vector;
 #include "prefs.h"
 #include "scheduler_op.h"
 #include "time_stats.h"
-#include "http_curl.h"
-#include "coproc.h"
 
 #define WORK_FETCH_DONT_NEED 0
     // project: suspended, deferred, or no new work (can't ask for more work)
@@ -80,14 +80,13 @@ public:
     NET_STATS net_stats;
     GUI_RPC_CONN_SET gui_rpcs;
     TIME_STATS time_stats;
-    PROXY_INFO proxy_info;
     GUI_HTTP gui_http;
-    COPROCS coprocs;
 
     VERSION_INFO core_client_version;
     string statefile_platform_name;
     int file_xfer_giveup_period;
     MODE run_mode;
+    MODE gpu_mode;
     MODE network_mode;
     bool started_by_screensaver;
     bool exit_when_idle;
@@ -216,7 +215,6 @@ public:
 public:
     CLIENT_STATE();
     void show_host_info();
-    void show_proxy_info();
     int init();
         /// Never blocks.
         /// Returns true if it actually did something,
@@ -239,6 +237,7 @@ public:
     bool abort_jobs_on_exit;
     void start_abort_sequence();
     bool abort_sequence_done();
+    int quit_activities();
 private:
     int link_app(PROJECT*, APP*);
     int link_file_info(PROJECT*, FILE_INFO*);
@@ -256,6 +255,10 @@ private:
 
 // --------------- cpu_sched.cpp:
 private:
+    double total_resource_share();
+    double potentially_runnable_resource_share();
+    double nearly_runnable_resource_share();
+    double fetchable_resource_share();
     double debt_interval_start;
     double total_cpu_time_this_debt_interval;
     bool work_fetch_no_new_work;
@@ -271,6 +274,8 @@ private:
     bool enforce_schedule();
     void append_unfinished_time_slice(vector<RESULT*>&);
 public:
+    double runnable_resource_share(int);
+        /// Check if work fetch needed.
     void adjust_debts();
     std::vector <RESULT*> ordered_scheduled_results;
         /// if we fail to start a task due to no shared-mem segments,
@@ -288,7 +293,7 @@ public:
         if (x < 1) x = 1;
         return x;
     }
-    void request_enforce_schedule(const char*);
+    void request_enforce_schedule(PROJECT*, const char*);
         /// Check for reschedule CPUs ASAP.
 
         /// Called when:
@@ -300,6 +305,7 @@ public:
         /// - any project op is done via RPC (suspend/resume)
         /// - any result op is done via RPC (suspend/resume)
     void request_schedule_cpus(const char*);
+    void set_ncpus();
 
 // --------------- cs_account.cpp:
 public:
@@ -315,34 +321,13 @@ private:
         // should be move to a new file, but this will do it for testing
 
 // --------------- cs_apps.cpp:
-private:
-    double total_resource_share();
-    double potentially_runnable_resource_share();
-    double nearly_runnable_resource_share();
-    double fetchable_resource_share();
 public:
-    double runnable_resource_share();
-        /// Check if work fetch needed.
-
-        /// Called when:
-        /// - core client starts (CS::init())
-        /// - task is completed or fails
-        /// - tasks are killed
-        /// - an RPC completes
-        /// - project suspend/detch/attach/reset GUI RPC
-        /// - result suspend/abort GUI RPC
-    void request_work_fetch(const char*);
-    int quit_activities();
-    void set_ncpus();
-    double estimate_cpu_time(WORKUNIT&);
     double get_fraction_done(RESULT* result);
     int input_files_available(RESULT*, bool, FILE_INFO** f=0);
     ACTIVE_TASK* lookup_active_task_by_result(RESULT*);
         /// number of usable cpus
     int ncpus;
 private:
-    int nslots;
-
     int latest_version(APP*, char*);
     int app_finished(ACTIVE_TASK&);
     bool start_apps();
@@ -408,6 +393,14 @@ private:
 
 // --------------- cs_scheduler.cpp:
 public:
+        /// Called when:
+        /// - core client starts (CS::init())
+        /// - task is completed or fails
+        /// - tasks are killed
+        /// - an RPC completes
+        /// - project suspend/detch/attach/reset GUI RPC
+        /// - result suspend/abort GUI RPC
+    void request_work_fetch(const char*);
     int make_scheduler_request(PROJECT*);
     int handle_scheduler_reply(PROJECT*, char* scheduler_url);
     SCHEDULER_OP* scheduler_op;
@@ -491,6 +484,7 @@ extern CLIENT_STATE gstate;
 
 extern COPROC_CUDA* coproc_cuda;
 extern COPROC_ATI* coproc_ati;
+extern bool gpus_usable;
 
 /// return a random double in the range [MIN,min(e^n,MAX))
 
@@ -541,4 +535,7 @@ extern void print_suspend_tasks_message(int);
 
 #define CONNECT_ERROR_PERIOD    600.0
 
+#define MAX_STD   (86400)
+    // maximum short-term debt
+
 #endif
diff --git a/client/client_types.cpp b/client/client_types.cpp
index 7edd341..62f7fa1 100644
--- a/client/client_types.cpp
+++ b/client/client_types.cpp
@@ -65,9 +65,11 @@ void PROJECT::init() {
     project_specific_prefs = "";
     gui_urls = "";
     resource_share = 100;
-    no_cpu = false;
-    no_cuda = false;
-    no_ati = false;
+    no_cpu_pref = false;
+    no_cuda_pref = false;
+    no_ati_pref = false;
+    cuda_low_mem = false;
+    ati_low_mem = false;
     strcpy(host_venue, "");
     using_venue_specific_prefs = false;
     scheduler_urls.clear();
@@ -81,7 +83,7 @@ void PROJECT::init() {
     user_total_credit = 0;
     user_expavg_credit = 0;
     user_create_time = 0;
-    ams_resource_share = 0;
+    ams_resource_share = -1;
     rpc_seqno = 0;
     hostid = 0;
     host_total_credit = 0;
@@ -99,10 +101,7 @@ void PROJECT::init() {
     anonymous_platform = false;
     non_cpu_intensive = false;
     verify_files_on_app_start = false;
-    short_term_debt = 0;
-    cpu_pwf.reset();
-    cuda_pwf.reset();
-    ati_pwf.reset();
+    pwf.reset(this);
     send_file_list = false;
     send_time_stats_log = 0;
     send_job_log = 0;
@@ -114,7 +113,6 @@ void PROJECT::init() {
     strcpy(code_sign_key, "");
     user_files.clear();
     project_files.clear();
-    anticipated_debt = 0;
     next_runnable_result = NULL;
     duration_correction_factor = 1;
     project_files_downloaded_time = 0;
@@ -189,8 +187,8 @@ int PROJECT::parse_state(MIOFILE& in) {
         if (parse_bool(buf, "dont_request_more_work", dont_request_more_work)) continue;
         if (parse_bool(buf, "detach_when_done", detach_when_done)) continue;
         if (parse_bool(buf, "ended", ended)) continue;
-        if (parse_double(buf, "<short_term_debt>", short_term_debt)) continue;
-        if (parse_double(buf, "<long_term_debt>", cpu_pwf.debt)) continue;
+        if (parse_double(buf, "<short_term_debt>", cpu_pwf.short_term_debt)) continue;
+        if (parse_double(buf, "<long_term_debt>", cpu_pwf.long_term_debt)) continue;
         if (parse_double(buf, "<cpu_backoff_interval>", cpu_pwf.backoff_interval)) continue;
         if (parse_double(buf, "<cpu_backoff_time>", cpu_pwf.backoff_time)) {
             if (cpu_pwf.backoff_time > gstate.now + 28*SECONDS_PER_DAY) {
@@ -198,17 +196,24 @@ int PROJECT::parse_state(MIOFILE& in) {
             }
             continue;
         }
-        if (parse_double(buf, "<cuda_debt>", cuda_pwf.debt)) continue;
+        if (parse_double(buf, "<cuda_short_term_debt>", cuda_pwf.short_term_debt)) continue;
+        if (parse_double(buf, "<cuda_debt>", cuda_pwf.long_term_debt)) continue;
         if (parse_double(buf, "<cuda_backoff_interval>", cuda_pwf.backoff_interval)) continue;
         if (parse_double(buf, "<cuda_backoff_time>", cuda_pwf.backoff_time)) continue;
-        if (parse_double(buf, "<ati_debt>", ati_pwf.debt)) continue;
+        if (parse_double(buf, "<ati_short_term_debt>", ati_pwf.short_term_debt)) continue;
+        if (parse_double(buf, "<ati_debt>", ati_pwf.long_term_debt)) continue;
         if (parse_double(buf, "<ati_backoff_interval>", ati_pwf.backoff_interval)) continue;
         if (parse_double(buf, "<ati_backoff_time>", ati_pwf.backoff_time)) continue;
         if (parse_double(buf, "<resource_share>", x)) continue;
             // not authoritative
         if (parse_double(buf, "<duration_correction_factor>", duration_correction_factor)) continue;
         if (parse_bool(buf, "attached_via_acct_mgr", attached_via_acct_mgr)) continue;
-        if (parse_double(buf, "<ams_resource_share>", ams_resource_share)) continue;
+            // backwards compat - old state files had ams_resource_share = 0
+        if (parse_double(buf, "<ams_resource_share_new>", ams_resource_share)) continue;
+        if (parse_double(buf, "<ams_resource_share>", x)) {
+            if (x > 0) ams_resource_share = x;
+            continue;
+        }
         if (parse_bool(buf, "scheduler_rpc_in_progress", btemp)) continue;
         if (parse_bool(buf, "use_symlinks", use_symlinks)) continue;
         if (log_flags.unparsed_xml) {
@@ -258,9 +263,11 @@ int PROJECT::write_state(MIOFILE& out, bool gui_rpc) {
         "    <long_term_debt>%f</long_term_debt>\n"
         "    <cpu_backoff_interval>%f</cpu_backoff_interval>\n"
         "    <cpu_backoff_time>%f</cpu_backoff_time>\n"
+        "    <cuda_short_term_debt>%f</cuda_short_term_debt>\n"
         "    <cuda_debt>%f</cuda_debt>\n"
         "    <cuda_backoff_interval>%f</cuda_backoff_interval>\n"
         "    <cuda_backoff_time>%f</cuda_backoff_time>\n"
+        "    <ati_short_term_debt>%f</ati_short_term_debt>\n"
         "    <ati_debt>%f</ati_debt>\n"
         "    <ati_backoff_interval>%f</ati_backoff_interval>\n"
         "    <ati_backoff_time>%f</ati_backoff_time>\n"
@@ -291,10 +298,12 @@ int PROJECT::write_state(MIOFILE& out, bool gui_rpc) {
         master_fetch_failures,
         min_rpc_time,
         next_rpc_time,
-        short_term_debt,
-        cpu_pwf.debt, cpu_pwf.backoff_interval, cpu_pwf.backoff_time,
-        cuda_pwf.debt, cuda_pwf.backoff_interval, cuda_pwf.backoff_time,
-        ati_pwf.debt, ati_pwf.backoff_interval, ati_pwf.backoff_time,
+        cpu_pwf.short_term_debt,
+        cpu_pwf.long_term_debt, cpu_pwf.backoff_interval, cpu_pwf.backoff_time,
+        cuda_pwf.short_term_debt, cuda_pwf.long_term_debt,
+        cuda_pwf.backoff_interval, cuda_pwf.backoff_time,
+        ati_pwf.short_term_debt, ati_pwf.long_term_debt,
+        ati_pwf.backoff_interval, ati_pwf.backoff_time,
         resource_share,
         duration_correction_factor,
 		sched_rpc_pending,
@@ -314,7 +323,7 @@ int PROJECT::write_state(MIOFILE& out, bool gui_rpc) {
         use_symlinks?"    <use_symlinks/>\n":""
     );
     if (ams_resource_share >= 0) {
-        out.printf("    <ams_resource_share>%f</ams_resource_share>\n",
+        out.printf("    <ams_resource_share_new>%f</ams_resource_share_new>\n",
             ams_resource_share
         );
     }
@@ -385,7 +394,6 @@ void PROJECT::copy_state_fields(PROJECT& p) {
     sched_rpc_pending = p.sched_rpc_pending;
     trickle_up_pending = p.trickle_up_pending;
     safe_strcpy(code_sign_key, p.code_sign_key);
-    short_term_debt = p.short_term_debt;
     cpu_pwf = p.cpu_pwf;
     cuda_pwf = p.cuda_pwf;
     ati_pwf = p.ati_pwf;
@@ -401,7 +409,7 @@ void PROJECT::copy_state_fields(PROJECT& p) {
     ended = p.ended;
     duration_correction_factor = p.duration_correction_factor;
     ams_resource_share = p.ams_resource_share;
-    if (ams_resource_share > 0) {
+    if (ams_resource_share >= 0) {
         resource_share = ams_resource_share;
     }
     use_symlinks = p.use_symlinks;
@@ -786,7 +794,7 @@ int FILE_INFO::parse(MIOFILE& in, bool from_server) {
             continue;
         }
 
-        strcat(signed_xml, buf);
+        safe_strcat(signed_xml, buf);
         if (parse_str(buf, "<name>", name, sizeof(name))) continue;
         if (parse_str(buf, "<url>", url)) {
             urls.push_back(url);
@@ -1116,6 +1124,7 @@ int APP_VERSION::parse(MIOFILE& in) {
     max_ncpus = 1;
     ncudas = 0;
     natis = 0;
+    gpu_ram = 0;
     app = NULL;
     project = NULL;
     flops = gstate.host_info.p_fpops;
@@ -1135,6 +1144,7 @@ int APP_VERSION::parse(MIOFILE& in) {
         if (parse_double(buf, "<max_ncpus>", max_ncpus)) continue;
         if (parse_double(buf, "<flops>", flops)) continue;
         if (parse_str(buf, "<cmdline>", cmdline, sizeof(cmdline))) continue;
+        if (parse_double(buf, "<gpu_ram>", gpu_ram)) continue;
         if (match_tag(buf, "<coproc>")) {
             COPROC_REQ cp;
             int retval = cp.parse(in);
@@ -1211,6 +1221,12 @@ int APP_VERSION::write(MIOFILE& out, bool write_file_info) {
             natis
         );
     }
+    if (gpu_ram) {
+        out.printf(
+            "    <gpu_ram>%f</gpu_ram>\n",
+            gpu_ram
+        );
+    }
 
     out.printf(
         "</app_version>\n"
@@ -1511,6 +1527,7 @@ void RESULT::clear() {
     strcpy(plan_class, "");
     strcpy(resources, "");
     coproc_missing = false;
+    schedule_backoff = 0;
 }
 
 // parse a <result> element from scheduling server.
@@ -1893,6 +1910,51 @@ void RESULT::abort_inactive(int status) {
     exit_status = status;
 }
 
+// return true if not enough video RAM on the allocated device.
+// This gets called only for coproc jobs without a process yet
+//
+bool RESULT::insufficient_video_ram() {
+    double available_ram;
+    int retval;
+
+    if (avp->ncudas) {
+        retval = coproc_cuda->available_ram(
+            coproc_cuda->device_nums[coproc_indices[0]],
+            available_ram
+        );
+    } else if (avp->natis) {
+        retval = coproc_ati->available_ram(
+            coproc_ati->device_nums[coproc_indices[0]],
+            available_ram
+        );
+    } else {
+        return false;
+    }
+    if (retval) {
+        msg_printf(project, MSG_INFO,
+            "Can't get available GPU RAM: %d", retval
+        );
+        return true;   // it can't get available RAM, driver must be wedged.
+            // Better not use it.
+    }
+    if (!avp->gpu_ram) {
+        // old schedulers don't report gpu RAM
+        return false;
+    }
+
+    if (available_ram < avp->gpu_ram) {
+        if (log_flags.cpu_sched_debug) {
+            msg_printf(project, MSG_INFO,
+                "[cpu_sched_debug] %s: insufficient GPU RAM (%.0fMB < %.0fMB)",
+                name,
+                available_ram/MEGA, avp->gpu_ram/MEGA
+            );
+        }
+        return true;
+    }
+    return false;
+}
+
 MODE::MODE() {
     perm_mode = 0;
     temp_mode = 0;
@@ -1936,4 +1998,3 @@ double MODE::delay() {
 	}
 }
 
-const char *BOINC_RCSID_b81ff9a584 = "$Id: client_types.cpp 19318 2009-10-16 19:07:56Z romw $";
diff --git a/client/client_types.h b/client/client_types.h
index 71d42d0..a161881 100644
--- a/client/client_types.h
+++ b/client/client_types.h
@@ -203,9 +203,17 @@ public:
     std::string gui_urls;
         /// project's resource share relative to other projects.
     double resource_share;
-    bool no_cpu;
-    bool no_cuda;
-    bool no_ati;
+    bool no_cpu_pref;
+    bool no_cuda_pref;
+    bool no_ati_pref;
+        // the following are from the project itself
+    bool no_cpu_apps;
+    bool no_cuda_apps;
+    bool no_ati_apps;
+        // the following set dynamically
+    bool cuda_low_mem;
+    bool ati_low_mem;
+
         /// logically, this belongs in the client state file
         /// rather than the account file.
         /// But we need it in the latter in order to parse prefs.
@@ -234,8 +242,9 @@ public:
     double host_total_credit;
     double host_expavg_credit;
     double host_create_time;
-        /// resource share according to AMS; overrides project
     double ams_resource_share;
+        // resource share according to AMS; overrides project
+        // -1 means not specified by AMS
 
     // stuff related to scheduler RPCs and master fetch
     //
@@ -326,8 +335,8 @@ public:
 
         /// not suspended and not deferred and not no more work
     bool can_request_work();
-        /// has a runnable result
-    bool runnable();
+        /// has a runnable result using the given resource type
+    bool runnable(int rsc_type);
         /// has a result in downloading state
     bool downloading();
         /// runnable or contactable or downloading
@@ -343,14 +352,6 @@ public:
     RR_SIM_PROJECT_STATUS rr_sim_status;
         // temps used in CLIENT_STATE::rr_simulation();
 
-    // "debt" is how much CPU time we owe this project relative to others
-
-        /// computed over runnable projects
-        /// used for CPU scheduling
-    double short_term_debt;
-
-        /// expected debt by the end of the preemption period
-    double anticipated_debt;
         /// the next result to run for this project
     struct RESULT *next_runnable_result;
         /// number of results in UPLOADING state
@@ -369,6 +370,13 @@ public:
         cuda_pwf.reset();
         ati_pwf.reset();
     }
+    inline int deadlines_missed(int rsc_type) {
+        switch(rsc_type) {
+        case RSC_TYPE_CUDA: return cuda_pwf.deadlines_missed;
+        case RSC_TYPE_ATI: return ati_pwf.deadlines_missed;
+        }
+        return cpu_pwf.deadlines_missed;
+    }
 
         /// # of results being returned in current scheduler op
     int nresults_returned;
@@ -422,6 +430,7 @@ struct APP_VERSION {
     double max_ncpus;
     double ncudas;
     double natis;
+    double gpu_ram;
     double flops;
         /// additional cmdline args
     char cmdline[256];
@@ -434,6 +443,7 @@ struct APP_VERSION {
     double max_working_set_size;
         // max working set of tasks using this app version.
         // temp var used in schedule_cpus()
+    //double temp_dcf;
 
     APP_VERSION(){}
     ~APP_VERSION(){}
@@ -444,13 +454,18 @@ struct APP_VERSION {
     void clear_errors();
     int api_major_version();
     bool missing_coproc();
-    bool uses_coproc(int rsc_type) {
+    inline bool uses_coproc(int rsc_type) {
         switch (rsc_type) {
         case RSC_TYPE_CUDA: return (ncudas>0);
         case RSC_TYPE_ATI: return (natis>0);
         }
         return false;
     }
+    inline int rsc_type() {
+        if (ncudas>0) return RSC_TYPE_CUDA;
+        if (natis>0) return RSC_TYPE_ATI;
+        return RSC_TYPE_CPU;
+    }
 };
 
 struct WORKUNIT {
@@ -615,6 +630,10 @@ struct RESULT {
         // keep track of coprocessor reservations
     char resources[256];
         // textual description of resources used
+    bool insufficient_video_ram();
+    double schedule_backoff;
+        // don't try to schedule until this time
+        // (wait for free video RAM)
 };
 
 /// represents an always/auto/never value, possibly temporarily overridden
diff --git a/client/coproc_detect.cpp b/client/coproc_detect.cpp
new file mode 100644
index 0000000..813a2e3
--- /dev/null
+++ b/client/coproc_detect.cpp
@@ -0,0 +1,796 @@
+// This file is part of BOINC.
+// http://boinc.berkeley.edu
+// Copyright (C) 2009 University of California
+//
+// BOINC is free software; you can redistribute it and/or modify it
+// under the terms of the GNU Lesser General Public License
+// as published by the Free Software Foundation,
+// either version 3 of the License, or (at your option) any later version.
+//
+// BOINC is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+// See the GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
+
+
+// client-specific GPU code.  Mostly GPU detection
+
+#ifdef _WIN32
+#ifndef SIM
+#include <nvapi.h>
+#endif
+#else
+#ifdef __APPLE__
+// Suppress obsolete warning when building for OS 10.3.9
+#define DLOPEN_NO_WARN
+#endif
+#include <dlfcn.h>
+#include <setjmp.h>
+#include <signal.h>
+#endif
+
+#include "str_util.h"
+
+#include "coproc.h"
+
+using std::string;
+using std::vector;
+
+static bool in_vector(int n, vector<int>& v) {
+    for (unsigned int i=0; i<v.size(); i++) {
+        if (v[i] == n) return true;
+    }
+    return false;
+}
+
+#ifndef _WIN32
+jmp_buf resume;
+
+void segv_handler(int) {
+    longjmp(resume, 1);
+}
+#endif
+
+void COPROCS::get(
+    bool use_all, vector<string>&descs, vector<string>&warnings,
+    vector<int>& ignore_cuda_dev,
+    vector<int>& ignore_ati_dev
+) {
+
+#ifdef _WIN32
+    COPROC_CUDA::get(*this, use_all, descs, warnings, ignore_cuda_dev);
+    COPROC_ATI::get(*this, descs, warnings, ignore_ati_dev);
+#else
+    void (*old_sig)(int) = signal(SIGSEGV, segv_handler);
+    if (setjmp(resume)) {
+        warnings.push_back("Caught SIGSEGV in NVIDIA GPU detection");
+    } else {
+        COPROC_CUDA::get(*this, use_all, descs, warnings, ignore_cuda_dev);
+    }
+#ifndef __APPLE__       // ATI does not yet support CAL on Macs
+    if (setjmp(resume)) {
+        warnings.push_back("Caught SIGSEGV in ATI GPU detection");
+    } else {
+        COPROC_ATI::get(*this, descs, warnings, ignore_ati_dev);
+    }
+#endif
+    signal(SIGSEGV, old_sig);
+#endif
+}
+
+// return 1/-1/0 if device 1 is more/less/same capable than device 2.
+// If "loose", ignore FLOPS and tolerate small memory diff
+//
+int cuda_compare(COPROC_CUDA& c1, COPROC_CUDA& c2, bool loose) {
+    if (c1.prop.major > c2.prop.major) return 1;
+    if (c1.prop.major < c2.prop.major) return -1;
+    if (c1.prop.minor > c2.prop.minor) return 1;
+    if (c1.prop.minor < c2.prop.minor) return -1;
+    if (c1.cuda_version > c2.cuda_version) return 1;
+    if (c1.cuda_version < c2.cuda_version) return -1;
+    if (loose) {
+        if (c1.prop.totalGlobalMem > 1.4*c2.prop.totalGlobalMem) return 1;
+        if (c1.prop.totalGlobalMem < .7* c2.prop.totalGlobalMem) return -1;
+        return 0;
+    }
+    if (c1.prop.totalGlobalMem > c2.prop.totalGlobalMem) return 1;
+    if (c1.prop.totalGlobalMem < c2.prop.totalGlobalMem) return -1;
+    double s1 = c1.peak_flops();
+    double s2 = c2.peak_flops();
+    if (s1 > s2) return 1;
+    if (s1 < s2) return -1;
+    return 0;
+}
+
+#ifdef _WIN32
+typedef int (__stdcall *CUDA_GDC)(int *count);
+typedef int (__stdcall *CUDA_GDV)(int* version);
+typedef int (__stdcall *CUDA_GDI)(int);
+typedef int (__stdcall *CUDA_GDG)(int*, int);
+typedef int (__stdcall *CUDA_GDA)(int*, int, int);
+typedef int (__stdcall *CUDA_GDN)(char*, int, int);
+typedef int (__stdcall *CUDA_GDM)(unsigned int*, int);
+typedef int (__stdcall *CUDA_GDCC)(int*, int*, int);
+typedef int (__stdcall *CUDA_CC)(unsigned int*, unsigned int, unsigned int);
+typedef int (__stdcall *CUDA_CD)(unsigned int);
+typedef int (__stdcall *CUDA_MA)(unsigned int*, unsigned int);
+typedef int (__stdcall *CUDA_MF)(unsigned int);
+typedef int (__stdcall *CUDA_MGI)(unsigned int*, unsigned int*);
+
+CUDA_GDC __cuDeviceGetCount = NULL;
+CUDA_GDV __cuDriverGetVersion = NULL;
+CUDA_GDI __cuInit = NULL;
+CUDA_GDG __cuDeviceGet = NULL;
+CUDA_GDA __cuDeviceGetAttribute = NULL;
+CUDA_GDN __cuDeviceGetName = NULL;
+CUDA_GDM __cuDeviceTotalMem = NULL;
+CUDA_GDCC __cuDeviceComputeCapability = NULL;
+CUDA_CC __cuCtxCreate = NULL;
+CUDA_CD __cuCtxDestroy = NULL;
+CUDA_MA __cuMemAlloc = NULL;
+CUDA_MF __cuMemFree = NULL;
+CUDA_MGI __cuMemGetInfo = NULL;
+#else
+void* cudalib;
+int (*__cuInit)(int);
+int (*__cuDeviceGetCount)(int*);
+int (*__cuDriverGetVersion)(int*);
+int (*__cuDeviceGet)(int*, int);
+int (*__cuDeviceGetAttribute)(int*, int, int);
+int (*__cuDeviceGetName)(char*, int, int);
+int (*__cuDeviceTotalMem)(unsigned int*, int);
+int (*__cuDeviceComputeCapability)(int*, int*, int);
+int (*__cuCtxCreate)(unsigned int*, unsigned int, unsigned int);
+int (*__cuCtxDestroy)(unsigned int);
+int (*__cuMemAlloc)(unsigned int*, unsigned int);
+int (*__cuMemFree)(unsigned int);
+int (*__cuMemGetInfo)(unsigned int*, unsigned int*);
+#endif
+
+// NVIDIA interfaces are documented here:
+// http://developer.download.nvidia.com/compute/cuda/2_3/toolkit/docs/online/index.html
+
+void COPROC_CUDA::get(
+    COPROCS& coprocs,
+    bool use_all,    // if false, use only those equivalent to most capable
+    vector<string>& descs,
+    vector<string>& warnings,
+    vector<int>& ignore_devs
+) {
+    int count, retval;
+    char buf[256];
+
+#ifdef _WIN32
+    HMODULE cudalib = LoadLibrary("nvcuda.dll");
+    if (!cudalib) {
+        warnings.push_back("No NVIDIA library found");
+        return;
+    }
+    __cuDeviceGetCount = (CUDA_GDC)GetProcAddress( cudalib, "cuDeviceGetCount" );
+    __cuDriverGetVersion = (CUDA_GDV)GetProcAddress( cudalib, "cuDriverGetVersion" );
+    __cuInit = (CUDA_GDI)GetProcAddress( cudalib, "cuInit" );
+    __cuDeviceGet = (CUDA_GDG)GetProcAddress( cudalib, "cuDeviceGet" );
+    __cuDeviceGetAttribute = (CUDA_GDA)GetProcAddress( cudalib, "cuDeviceGetAttribute" );
+    __cuDeviceGetName = (CUDA_GDN)GetProcAddress( cudalib, "cuDeviceGetName" );
+    __cuDeviceTotalMem = (CUDA_GDM)GetProcAddress( cudalib, "cuDeviceTotalMem" );
+    __cuDeviceComputeCapability = (CUDA_GDCC)GetProcAddress( cudalib, "cuDeviceComputeCapability" );
+    __cuCtxCreate = (CUDA_CC)GetProcAddress( cudalib, "cuCtxCreate" );
+    __cuCtxDestroy = (CUDA_CD)GetProcAddress( cudalib, "cuCtxDestroy" );
+    __cuMemAlloc = (CUDA_MA)GetProcAddress( cudalib, "cuMemAlloc" );
+    __cuMemFree = (CUDA_MF)GetProcAddress( cudalib, "cuMemFree" );
+    __cuMemGetInfo = (CUDA_MGI)GetProcAddress( cudalib, "cuMemGetInfo" );
+
+#ifndef SIM
+    NvAPI_Status nvapiStatus;
+    NvDisplayHandle hDisplay;
+    NV_DISPLAY_DRIVER_VERSION Version;
+    memset(&Version, 0, sizeof(Version));
+    Version.version = NV_DISPLAY_DRIVER_VERSION_VER;
+
+    NvAPI_Initialize();
+    for (int i=0; ; i++) {
+        nvapiStatus = NvAPI_EnumNvidiaDisplayHandle(i, &hDisplay);
+        if (nvapiStatus != NVAPI_OK) break;
+        nvapiStatus = NvAPI_GetDisplayDriverVersion(hDisplay, &Version);
+        if (nvapiStatus == NVAPI_OK) break;
+    }
+#endif
+#else
+
+#ifdef __APPLE__
+    cudalib = dlopen("/usr/local/cuda/lib/libcuda.dylib", RTLD_NOW);
+#else
+    cudalib = dlopen("libcuda.so", RTLD_NOW);
+#endif
+    if (!cudalib) {
+        warnings.push_back("No NVIDIA library found");
+        return;
+    }
+    __cuDeviceGetCount = (int(*)(int*)) dlsym(cudalib, "cuDeviceGetCount");
+    __cuDriverGetVersion = (int(*)(int*)) dlsym( cudalib, "cuDriverGetVersion" );
+    __cuInit = (int(*)(int)) dlsym( cudalib, "cuInit" );
+    __cuDeviceGet = (int(*)(int*, int)) dlsym( cudalib, "cuDeviceGet" );
+    __cuDeviceGetAttribute = (int(*)(int*, int, int)) dlsym( cudalib, "cuDeviceGetAttribute" );
+    __cuDeviceGetName = (int(*)(char*, int, int)) dlsym( cudalib, "cuDeviceGetName" );
+    __cuDeviceTotalMem = (int(*)(unsigned int*, int)) dlsym( cudalib, "cuDeviceTotalMem" );
+    __cuDeviceComputeCapability = (int(*)(int*, int*, int)) dlsym( cudalib, "cuDeviceComputeCapability" );
+    __cuCtxCreate = (int(*)(unsigned int*, unsigned int, unsigned int)) dlsym( cudalib, "cuCtxCreate" );
+    __cuCtxDestroy = (int(*)(unsigned int)) dlsym( cudalib, "cuCtxDestroy" );
+    __cuMemAlloc = (int(*)(unsigned int*, unsigned int)) dlsym( cudalib, "cuMemAlloc" );
+    __cuMemFree = (int(*)(unsigned int)) dlsym( cudalib, "cuMemFree" );
+    __cuMemGetInfo = (int(*)(unsigned int*, unsigned int*)) dlsym( cudalib, "cuMemGetInfo" );
+#endif
+
+    if (!__cuDriverGetVersion) {
+        warnings.push_back("cuDriverGetVersion() missing from NVIDIA library");
+        return;
+    }
+    if (!__cuInit) {
+        warnings.push_back("cuInit() missing from NVIDIA library");
+        return;
+    }
+    if (!__cuDeviceGetCount) {
+        warnings.push_back("cuDeviceGetCount() missing from NVIDIA library");
+        return;
+    }
+    if (!__cuDeviceGet) {
+        warnings.push_back("cuDeviceGet() missing from NVIDIA library");
+        return;
+    }
+    if (!__cuDeviceGetAttribute) {
+        warnings.push_back("cuDeviceGetAttribute() missing from NVIDIA library");
+        return;
+    }
+    if (!__cuDeviceTotalMem) {
+        warnings.push_back("cuDeviceTotalMem() missing from NVIDIA library");
+        return;
+    }
+    if (!__cuDeviceComputeCapability) {
+        warnings.push_back("cuDeviceComputeCapability() missing from NVIDIA library");
+        return;
+    }
+    if (!__cuCtxCreate) {
+        warnings.push_back("cuCtxCreate() missing from NVIDIA library");
+        return;
+    }
+    if (!__cuCtxDestroy) {
+        warnings.push_back("cuCtxDestroy() missing from NVIDIA library");
+        return;
+    }
+    if (!__cuMemAlloc) {
+        warnings.push_back("cuMemAlloc() missing from NVIDIA library");
+        return;
+    }
+    if (!__cuMemFree) {
+        warnings.push_back("cuMemFree() missing from NVIDIA library");
+        return;
+    }
+    if (!__cuMemGetInfo) {
+        warnings.push_back("cuMemGetInfo() missing from NVIDIA library");
+        return;
+    }
+
+    retval = (*__cuInit)(0);
+    if (retval) {
+        sprintf(buf, "NVIDIA drivers present but no GPUs found");
+        warnings.push_back(buf);
+        return;
+    }
+
+    int cuda_version;
+    retval = (*__cuDriverGetVersion)(&cuda_version);
+    if (retval) {
+        sprintf(buf, "cuDriverGetVersion() returned %d", retval);
+        warnings.push_back(buf);
+        return;
+    }
+
+    vector<COPROC_CUDA> gpus;
+    retval = (*__cuDeviceGetCount)(&count);
+    if (retval) {
+        sprintf(buf, "cuDeviceGetCount() returned %d", retval);
+        warnings.push_back(buf);
+        return;
+    }
+    sprintf(buf, "NVIDIA library reports %d GPU%s", count, (count==1)?"":"s");
+    warnings.push_back(buf);
+
+    int j;
+    unsigned int i;
+    COPROC_CUDA cc;
+    string s;
+    for (j=0; j<count; j++) {
+        memset(&cc.prop, 0, sizeof(cc.prop));
+        int device;
+        retval = (*__cuDeviceGet)(&device, j);
+        if (retval) {
+            sprintf(buf, "cuDeviceGet(%d) returned %d", j, retval);
+            warnings.push_back(buf);
+            return;
+        }
+        (*__cuDeviceGetName)(cc.prop.name, 256, device);
+        if (retval) {
+            sprintf(buf, "cuDeviceGetName(%d) returned %d", j, retval);
+            warnings.push_back(buf);
+            return;
+        }
+        (*__cuDeviceComputeCapability)(&cc.prop.major, &cc.prop.minor, device);
+        (*__cuDeviceTotalMem)(&cc.prop.totalGlobalMem, device);
+        (*__cuDeviceGetAttribute)(&cc.prop.sharedMemPerBlock, CU_DEVICE_ATTRIBUTE_SHARED_MEMORY_PER_BLOCK, device);
+        (*__cuDeviceGetAttribute)(&cc.prop.regsPerBlock, CU_DEVICE_ATTRIBUTE_REGISTERS_PER_BLOCK, device);
+        (*__cuDeviceGetAttribute)(&cc.prop.warpSize, CU_DEVICE_ATTRIBUTE_WARP_SIZE, device);
+        (*__cuDeviceGetAttribute)(&cc.prop.memPitch, CU_DEVICE_ATTRIBUTE_MAX_PITCH, device);
+        retval = (*__cuDeviceGetAttribute)(&cc.prop.maxThreadsPerBlock, CU_DEVICE_ATTRIBUTE_MAX_THREADS_PER_BLOCK, device);
+        retval = (*__cuDeviceGetAttribute)(&cc.prop.maxThreadsDim[0], CU_DEVICE_ATTRIBUTE_MAX_BLOCK_DIM_X, device);
+        (*__cuDeviceGetAttribute)(&cc.prop.maxThreadsDim[1], CU_DEVICE_ATTRIBUTE_MAX_BLOCK_DIM_Y, device);
+        (*__cuDeviceGetAttribute)(&cc.prop.maxThreadsDim[2], CU_DEVICE_ATTRIBUTE_MAX_BLOCK_DIM_Z, device);
+        (*__cuDeviceGetAttribute)(&cc.prop.maxGridSize[0], CU_DEVICE_ATTRIBUTE_MAX_GRID_DIM_X, device);
+        (*__cuDeviceGetAttribute)(&cc.prop.maxGridSize[1], CU_DEVICE_ATTRIBUTE_MAX_GRID_DIM_Y, device);
+        (*__cuDeviceGetAttribute)(&cc.prop.maxGridSize[2], CU_DEVICE_ATTRIBUTE_MAX_GRID_DIM_Z, device);
+        (*__cuDeviceGetAttribute)(&cc.prop.clockRate, CU_DEVICE_ATTRIBUTE_CLOCK_RATE, device);
+        (*__cuDeviceGetAttribute)(&cc.prop.totalConstMem, CU_DEVICE_ATTRIBUTE_TOTAL_CONSTANT_MEMORY, device);
+        (*__cuDeviceGetAttribute)(&cc.prop.textureAlignment, CU_DEVICE_ATTRIBUTE_TEXTURE_ALIGNMENT, device);
+        (*__cuDeviceGetAttribute)(&cc.prop.deviceOverlap, CU_DEVICE_ATTRIBUTE_GPU_OVERLAP, device);
+        retval = (*__cuDeviceGetAttribute)(&cc.prop.multiProcessorCount, CU_DEVICE_ATTRIBUTE_MULTIPROCESSOR_COUNT, device);
+        //retval = (*__cuDeviceGetProperties)(&cc.prop, device);
+        if (cc.prop.major <= 0) continue;  // major == 0 means emulation
+        if (cc.prop.major > 100) continue;  // e.g. 9999 is an error
+#if defined(_WIN32) && !defined(SIM)
+        cc.display_driver_version = Version.drvVersion;
+#else
+        cc.display_driver_version = 0;
+#endif
+        cc.cuda_version = cuda_version;
+        cc.device_num = j;
+        gpus.push_back(cc);
+    }
+
+    if (!gpus.size()) {
+        warnings.push_back("No CUDA-capable NVIDIA GPUs found");
+        return;
+    }
+
+    // identify the most capable non-ignored instance
+    //
+    COPROC_CUDA best;
+    bool first = true;
+    for (i=0; i<gpus.size(); i++) {
+        if (in_vector(gpus[i].device_num, ignore_devs)) continue;
+        if (first) {
+            best = gpus[i];
+            first = false;
+        } else if (cuda_compare(gpus[i], best, false) > 0) {
+            best = gpus[i];
+        }
+    }
+
+    // see which other instances are equivalent,
+    // and set the "count" and "device_nums" fields
+    //
+    best.count = 0;
+    for (i=0; i<gpus.size(); i++) {
+        char buf2[256];
+        gpus[i].description(buf);
+        if (in_vector(gpus[i].device_num, ignore_devs)) {
+            sprintf(buf2, "NVIDIA GPU %d (ignored by config): %s", gpus[i].device_num, buf);
+        } else if (use_all || !cuda_compare(gpus[i], best, true)) {
+            best.device_nums[best.count] = gpus[i].device_num;
+            best.count++;
+            sprintf(buf2, "NVIDIA GPU %d: %s", gpus[i].device_num, buf);
+        } else {
+            sprintf(buf2, "NVIDIA GPU %d (not used): %s", gpus[i].device_num, buf);
+        }
+        descs.push_back(string(buf2));
+    }
+
+    if (best.count) {
+        COPROC_CUDA* ccp = new COPROC_CUDA;
+        *ccp = best;
+        coprocs.coprocs.push_back(ccp);
+    }
+}
+
+// fake a NVIDIA GPU (for debugging)
+//
+void fake_cuda(COPROCS& coprocs, int count) {
+   COPROC_CUDA* cc = new COPROC_CUDA;
+   strcpy(cc->type, "CUDA");
+   cc->count = count;
+   for (int i=0; i<count; i++) {
+       cc->device_nums[i] = i;
+   }
+   cc->display_driver_version = 18000;
+   cc->cuda_version = 2020;
+   strcpy(cc->prop.name, "Fake NVIDIA GPU");
+   cc->prop.totalGlobalMem = 256*1024*1024;
+   cc->prop.sharedMemPerBlock = 100;
+   cc->prop.regsPerBlock = 8;
+   cc->prop.warpSize = 10;
+   cc->prop.memPitch = 10;
+   cc->prop.maxThreadsPerBlock = 20;
+   cc->prop.maxThreadsDim[0] = 2;
+   cc->prop.maxThreadsDim[1] = 2;
+   cc->prop.maxThreadsDim[2] = 2;
+   cc->prop.maxGridSize[0] = 10;
+   cc->prop.maxGridSize[1] = 10;
+   cc->prop.maxGridSize[2] = 10;
+   cc->prop.totalConstMem = 10;
+   cc->prop.major = 1;
+   cc->prop.minor = 2;
+   cc->prop.clockRate = 1250000;
+   cc->prop.textureAlignment = 1000;
+   cc->prop.multiProcessorCount = 14;
+   coprocs.coprocs.push_back(cc);
+}
+
+int COPROC_CUDA::available_ram(int devnum, double& ar) {
+    int device;
+    unsigned int memfree, memtotal;
+    unsigned int ctx;
+    
+    if (!__cuDeviceGet) return 0;       // avoid crash if faked GPU
+    int retval = (*__cuDeviceGet)(&device, devnum);
+    if (retval) return retval;
+    retval = (*__cuCtxCreate)(&ctx, 0, device);
+    if (retval) return retval;
+    retval = (*__cuMemGetInfo)(&memfree, &memtotal);
+    if (retval) return retval;
+    retval = (*__cuCtxDestroy)(ctx);
+    ar = (double) memfree;
+    return 0;
+}
+
+// check whether each GPU is running a graphics app (assume yes)
+// return true if there's been a change since last time
+//
+bool COPROC_CUDA::check_running_graphics_app() {
+    int retval, j;
+    bool change = false;
+    for (j=0; j<count; j++) {
+        bool new_val = true;
+        int device, kernel_timeout;
+        retval = (*__cuDeviceGet)(&device, j);
+        if (!retval) {
+            retval = (*__cuDeviceGetAttribute)(&kernel_timeout, CU_DEVICE_ATTRIBUTE_KERNEL_EXEC_TIMEOUT, device);
+            if (!retval && !kernel_timeout) {
+                new_val = false;
+            }
+        }
+        if (new_val != running_graphics_app[j]) {
+            change = true;
+        }
+        running_graphics_app[j] = new_val;
+    }
+    return change;
+}
+
+////////////////// ATI STARTS HERE /////////////////
+//
+// Docs:
+// http://developer.amd.com/gpu_assets/Stream_Computing_User_Guide.pdf
+// ?? why don't they have HTML docs??
+
+#ifdef _WIN32
+typedef int (__stdcall *ATI_ATTRIBS) (CALdeviceattribs *attribs, CALuint ordinal);
+typedef int (__stdcall *ATI_CLOSE)(void);
+typedef int (__stdcall *ATI_GDC)(CALuint *numDevices);
+typedef int (__stdcall *ATI_GDI)(void);
+typedef int (__stdcall *ATI_INFO) (CALdeviceinfo *info, CALuint ordinal);
+typedef int (__stdcall *ATI_VER) (CALuint *cal_major, CALuint *cal_minor, CALuint *cal_imp);
+typedef int (__stdcall *ATI_STATUS) (CALdevicestatus*, CALdevice);
+typedef int (__stdcall *ATI_DEVICEOPEN) (CALdevice*, CALuint);
+typedef int (__stdcall *ATI_DEVICECLOSE) (CALdevice);
+
+ATI_ATTRIBS __calDeviceGetAttribs = NULL;
+ATI_CLOSE   __calShutdown = NULL;
+ATI_GDC     __calDeviceGetCount = NULL;
+ATI_GDI     __calInit = NULL;
+ATI_INFO    __calDeviceGetInfo = NULL;
+ATI_VER     __calGetVersion = NULL;
+ATI_STATUS  __calDeviceGetStatus = NULL;
+ATI_DEVICEOPEN  __calDeviceOpen = NULL;
+ATI_DEVICECLOSE  __calDeviceClose = NULL;
+
+#else
+
+int (*__calInit)();
+int (*__calGetVersion)(CALuint*, CALuint*, CALuint*);
+int (*__calDeviceGetCount)(CALuint*);
+int (*__calDeviceGetAttribs)(CALdeviceattribs*, CALuint);
+int (*__calShutdown)();
+int (*__calDeviceGetInfo)(CALdeviceinfo*, CALuint);
+int (*__calDeviceGetStatus)(CALdevicestatus*, CALdevice);
+int (*__calDeviceOpen)(CALdevice*, CALuint);
+int (*__calDeviceClose)(CALdevice);
+
+#endif
+
+void COPROC_ATI::get(COPROCS& coprocs,
+    vector<string>& descs, vector<string>& warnings, vector<int>& ignore_devs
+) {
+    CALuint numDevices, cal_major, cal_minor, cal_imp;
+    CALdevice device;
+    CALdeviceinfo info;
+    CALdeviceattribs attribs;
+    char buf[256];
+    bool amdrt_detected = false;
+    bool atirt_detected = false;
+    int retval;
+
+    attribs.struct_size = sizeof(CALdeviceattribs);
+    device = 0;
+    numDevices =0;
+
+#ifdef _WIN32
+
+#if defined _M_X64
+    const char* atilib_name = "aticalrt64.dll";
+    const char* amdlib_name = "amdcalrt64.dll";
+#else
+    const char* atilib_name = "aticalrt.dll";
+    const char* amdlib_name = "amdcalrt.dll";
+#endif
+
+    HINSTANCE callib = LoadLibrary(atilib_name);
+    if (callib) {
+        atirt_detected = true;
+    } else {
+        callib = LoadLibrary(amdlib_name);
+        if (callib) {
+            amdrt_detected = true;
+        }
+    }
+
+    if (!callib) {
+        warnings.push_back("No ATI library found.");
+        return;
+    }
+
+    __calInit = (ATI_GDI)GetProcAddress(callib, "calInit" );
+    __calGetVersion = (ATI_VER)GetProcAddress(callib, "calGetVersion" );
+    __calDeviceGetCount = (ATI_GDC)GetProcAddress(callib, "calDeviceGetCount" );
+    __calDeviceGetAttribs =(ATI_ATTRIBS)GetProcAddress(callib, "calDeviceGetAttribs" );
+    __calShutdown = (ATI_CLOSE)GetProcAddress(callib, "calShutdown" );
+    __calDeviceGetInfo = (ATI_INFO)GetProcAddress(callib, "calDeviceGetInfo" );
+    __calDeviceGetStatus = (ATI_STATUS)GetProcAddress(callib, "calDeviceGetStatus" );
+    __calDeviceOpen = (ATI_DEVICEOPEN)GetProcAddress(callib, "calDeviceOpen" );
+    __calDeviceClose = (ATI_DEVICECLOSE)GetProcAddress(callib, "calDeviceClose" );
+
+#else
+
+    void* callib;
+
+    callib = dlopen("libaticalrt.so", RTLD_NOW);
+    if (!callib) {
+        warnings.push_back("No ATI library found");
+        return;
+    }
+
+    atirt_detected = true;
+
+    __calInit = (int(*)()) dlsym(callib, "calInit");
+    __calGetVersion = (int(*)(CALuint*, CALuint*, CALuint*)) dlsym(callib, "calGetVersion");
+    __calDeviceGetCount = (int(*)(CALuint*)) dlsym(callib, "calDeviceGetCount");
+    __calDeviceGetAttribs = (int(*)(CALdeviceattribs*, CALuint)) dlsym(callib, "calDeviceGetAttribs");
+    __calShutdown = (int(*)()) dlsym(callib, "calShutdown");
+    __calDeviceGetInfo = (int(*)(CALdeviceinfo*, CALuint)) dlsym(callib, "calDeviceGetInfo");
+    __calDeviceGetStatus = (int(*)(CALdevicestatus*, CALdevice)) dlsym(callib, "calDeviceGetStatus");
+    __calDeviceOpen = (int(*)(CALdevice*, CALuint)) dlsym(callib, "calDeviceOpen");
+    __calDeviceClose = (int(*)(CALdevice)) dlsym(callib, "calDeviceClose");
+
+#endif
+
+    if (!__calInit) {
+        warnings.push_back("calInit() missing from CAL library");
+        return;
+    }
+    if (!__calGetVersion) {
+        warnings.push_back("calGetVersion() missing from CAL library");
+        return;
+    }
+    if (!__calDeviceGetCount) {
+        warnings.push_back("calDeviceGetCount() missing from CAL library");
+        return;
+    }
+    if (!__calDeviceGetAttribs) {
+        warnings.push_back("calDeviceGetAttribs() missing from CAL library");
+        return;
+    }
+    if (!__calDeviceGetInfo) {
+        warnings.push_back("calDeviceGetInfo() missing from CAL library");
+        return;
+    }
+    if (!__calDeviceGetStatus) {
+        warnings.push_back("calDeviceGetStatus() missing from CAL library");
+        return;
+    }
+    if (!__calDeviceOpen) {
+        warnings.push_back("calDeviceOpen() missing from CAL library");
+        return;
+    }
+    if (!__calDeviceClose) {
+        warnings.push_back("calDeviceClose() missing from CAL library");
+        return;
+    }
+
+    retval = (*__calInit)();
+    if (retval != CAL_RESULT_OK) {
+        sprintf(buf, "calInit() returned %d", retval);
+        warnings.push_back(buf);
+        return;
+    }
+    retval = (*__calDeviceGetCount)(&numDevices);
+    if (retval != CAL_RESULT_OK) {
+        sprintf(buf, "calDeviceGetCount() returned %d", retval);
+        warnings.push_back(buf);
+        return;
+    }
+    retval = (*__calGetVersion)(&cal_major, &cal_minor, &cal_imp);
+    if (retval != CAL_RESULT_OK) {
+        sprintf(buf, "calGetVersion() returned %d", retval);
+        warnings.push_back(buf);
+        return;
+    }
+
+    if (!numDevices) {
+        warnings.push_back("No usable CAL devices found");
+        return;
+    }
+
+    COPROC_ATI cc, cc2;
+    string s, gpu_name;
+    vector<COPROC_ATI> gpus;
+    for (CALuint i=0; i<numDevices; i++) {
+        retval = (*__calDeviceGetInfo)(&info, i);
+        if (retval != CAL_RESULT_OK) {
+            sprintf(buf, "calDeviceGetInfo() returned %d", retval);
+            warnings.push_back(buf);
+            return;
+        }
+        retval = (*__calDeviceGetAttribs)(&attribs, i);
+        if (retval != CAL_RESULT_OK) {
+            sprintf(buf, "calDeviceGetAttribs() returned %d", retval);
+            warnings.push_back(buf);
+            return;
+        }
+        switch ((int)attribs.target) {
+        case CAL_TARGET_600:
+            gpu_name="ATI Radeon HD 2900 (RV600)";
+            break;
+        case CAL_TARGET_610:
+            gpu_name="ATI Radeon HD 2300/2400/3200 (RV610)";
+            attribs.numberOfSIMD=1;        // set correct values (reported wrong by driver)
+            attribs.wavefrontSize=32;
+            break;
+        case CAL_TARGET_630:
+            gpu_name="ATI Radeon HD 2600 (RV630)";
+            // set correct values (reported wrong by driver)
+            attribs.numberOfSIMD=3;
+            attribs.wavefrontSize=32;
+            break;
+        case CAL_TARGET_670:
+            gpu_name="ATI Radeon HD 3800 (RV670)";
+            break;
+        case CAL_TARGET_710:
+            gpu_name="ATI Radeon HD 4350/4550 (R710)";
+            break;
+        case CAL_TARGET_730:
+            gpu_name="ATI Radeon HD 4600 series (R730)";
+            break;
+        case CAL_TARGET_7XX:
+            gpu_name="ATI Radeon (RV700 class)";
+            break;
+        case CAL_TARGET_770:
+            gpu_name="ATI Radeon HD 4700/4800 (RV740/RV770)";
+            break;
+        case 8:
+            gpu_name="ATI Radeon HD5800 series (Cypress)";
+            break;
+        case 9:
+            gpu_name="ATI Radeon HD5700 series (Juniper)";
+            break;
+        case 10:
+            gpu_name="ATI Radeon HD5x00 series (Redwood)";
+            break;
+        case 11:
+            gpu_name="ATI Radeon HD5x00 series (Cedar)";
+            break;
+        default:
+            gpu_name="ATI unknown";
+            break;
+        }
+        cc.attribs = attribs;
+        cc.info = info;
+        strcpy(cc.name, gpu_name.c_str());
+        sprintf(cc.version, "%d.%d.%d", cal_major, cal_minor, cal_imp);
+        cc.amdrt_detected = amdrt_detected;
+        cc.atirt_detected = atirt_detected;
+        cc.device_num = i;
+        gpus.push_back(cc);
+    }
+
+    // TODO: count only GPUs with as much memory as fastest one,
+    // same as for NVIDIA
+
+    COPROC_ATI best;
+    bool first = true;
+    for (unsigned int i=0; i<gpus.size(); i++) {
+        char buf[256], buf2[256];
+        gpus[i].description(buf);
+        if (in_vector(gpus[i].device_num, ignore_devs)) {
+            sprintf(buf2, "ATI GPU %d (ignored by config): %s", gpus[i].device_num, buf);
+        } else {
+            if (first) {
+                best = gpus[i];
+                first = false;
+            } else if (gpus[i].peak_flops() > best.peak_flops()) {
+                best = gpus[i];
+            }
+            sprintf(buf2, "ATI GPU %d: %s", gpus[i].device_num, buf);
+        }
+        descs.push_back(buf2);
+    }
+    best.count = 0;
+    for (unsigned int i=0; i<gpus.size(); i++) {
+        if (in_vector(gpus[i].device_num, ignore_devs)) continue;
+        best.device_nums[best.count] = i;
+        best.count++;
+    }
+
+    COPROC_ATI* ccp = new COPROC_ATI;
+    *ccp = best;
+    strcpy(ccp->type, "ATI");
+    coprocs.coprocs.push_back(ccp);
+
+    // shut down, otherwise Lenovo won't be able to switch to low-power GPU
+    //
+    retval = (*__calShutdown)();
+}
+
+void fake_ati(COPROCS& coprocs, int count) {
+    COPROC_ATI* cc = new COPROC_ATI;
+    strcpy(cc->type, "ATI");
+    strcpy(cc->version, "1.4.3");
+    strcpy(cc->name, "foobar");
+    cc->count = count;
+    memset(&cc->attribs, 0, sizeof(cc->attribs));
+    memset(&cc->info, 0, sizeof(cc->info));
+    cc->attribs.localRAM = 1024;
+    cc->attribs.numberOfSIMD = 32;
+    cc->attribs.wavefrontSize = 32;
+    cc->attribs.engineClock = 50;
+    for (int i=0; i<count; i++) {
+        cc->device_nums[i] = i;
+    }
+    coprocs.coprocs.push_back(cc);
+}
+
+int COPROC_ATI::available_ram(int devnum, double& ar) {
+    CALdevicestatus st;
+    CALdevice dev;
+    int retval;
+
+    st.struct_size = sizeof(CALdevicestatus);
+
+    if (!__calInit) return 0;   // avoid crash if faked GPU
+    retval = (*__calInit)();
+    if (retval) return retval;
+    retval = (*__calDeviceOpen)(&dev, devnum);
+    if (retval) {
+        (*__calShutdown)();
+        return retval;
+    }
+    retval = (*__calDeviceGetStatus)(&st, dev);
+    if (retval) {
+        (*__calDeviceClose)(dev);
+        (*__calShutdown)();
+        return retval;
+    }
+    ar = st.availLocalRAM*MEGA;
+    (*__calDeviceClose)(dev);
+    (*__calShutdown)();
+    return 0;
+}
diff --git a/client/cpu_sched.cpp b/client/cpu_sched.cpp
index 73f33ec..452ae74 100644
--- a/client/cpu_sched.cpp
+++ b/client/cpu_sched.cpp
@@ -37,10 +37,12 @@
 
 #ifdef _WIN32
 #include "boinc_win.h"
+#include "win_util.h"
 #endif
 
 #include <string>
 #include <cstring>
+#include <list>
 
 #include "str_util.h"
 #include "util.h"
@@ -49,6 +51,7 @@
 
 #include "client_msgs.h"
 #include "log_flags.h"
+#include "app.h"
 
 #ifdef SIM
 #include "sim.h"
@@ -57,9 +60,7 @@
 #endif
 
 using std::vector;
-
-#define MAX_STD   (86400)
-    // maximum short-term debt
+using std::list;
 
 #define DEADLINE_CUSHION    0
     // try to finish jobs this much in advance of their deadline
@@ -87,20 +88,9 @@ struct PROC_RESOURCES {
     //
     bool can_schedule(RESULT* rp) {
         if (rp->uses_coprocs()) {
-            if (gstate.user_active && !gstate.global_prefs.run_gpu_if_user_active) {
-#if 1
-                return false;
-#else
-                if (rp->avp->natis) {
-                    return false;
-                }
-                // if it's NVIDIA, defer deciding because
-                // some GPUs may not be running user apps
-                //
-#endif
-            }
+            if (gpu_suspended) return false;
             if (sufficient_coprocs(
-                *rp->avp, log_flags.cpu_sched_debug, "cpu_sched_debug")
+                *rp->avp, log_flags.cpu_sched_debug)
             ) {
                 return true;
             } else {
@@ -127,9 +117,7 @@ struct PROC_RESOURCES {
         ncpus_used += rp->avp->avg_ncpus;
     }
 
-    bool sufficient_coprocs(
-        APP_VERSION& av, bool log_flag, const char* prefix
-    ) {
+    bool sufficient_coprocs(APP_VERSION& av, bool log_flag) {
         double x;
         COPROC* cp2;
         if (av.ncudas) {
@@ -150,8 +138,8 @@ struct PROC_RESOURCES {
         if (cp2->used + x > cp2->count) {
             if (log_flag) {
                 msg_printf(NULL, MSG_INFO,
-                    "[%s] rr_sim: insufficient coproc %s (%f + %f > %d)",
-                    prefix, cp2->type, cp2->used, x, cp2->count
+                    "[cpu_sched_debug] insufficient coproc %s (%f + %f > %d)",
+                    cp2->type, cp2->used, x, cp2->count
                 );
             }
             return false;
@@ -188,59 +176,48 @@ struct PROC_RESOURCES {
     }
 };
 
+bool gpus_usable = true;
+#ifndef SIM
 // see whether there's been a change in coproc usability;
 // if so set or clear "coproc_missing" flags and return true.
 //
-#include "filesys.h"
-bool check_coproc_usable(COPROC* cp) {
+bool check_coprocs_usable() {
+#ifdef _WIN32
     unsigned int i;
-    bool is_cuda = (cp==coproc_cuda);
-    bool new_usable = cp->is_usable();
-    //bool new_usable = !boinc_file_exists("unusable");
-    if (cp->usable) {
+    bool new_usable = !is_remote_desktop();
+    if (gpus_usable) {
         if (!new_usable) {
-            cp->usable = false;
+            gpus_usable = false;
             for (i=0; i<gstate.results.size(); i++) {
                 RESULT* rp = gstate.results[i];
-                if (is_cuda?rp->avp->ncudas:rp->avp->natis) {
+                if (rp->avp->ncudas || rp->avp->natis) {
                     rp->coproc_missing = true;
                 }
             }
             msg_printf(NULL, MSG_INFO,
-                "%s GPU has become unusable; disabling tasks",
-                is_cuda?"NVIDIA":"ATI"
+                "GPUs have become unusable; disabling tasks"
             );
             return true;
         }
     } else {
         if (new_usable) {
-            cp->usable = true;
+            gpus_usable = true;
             for (i=0; i<gstate.results.size(); i++) {
                 RESULT* rp = gstate.results[i];
-                if (is_cuda?rp->avp->ncudas:rp->avp->natis) {
+                if (rp->avp->ncudas || rp->avp->natis) {
                     rp->coproc_missing = false;
                 }
             }
             msg_printf(NULL, MSG_INFO,
-                "%s GPU has become usable; enabling tasks",
-                is_cuda?"NVIDIA":"ATI"
+                "GPUs have become usable; enabling tasks"
             );
             return true;
         }
     }
+#endif
     return false;
 }
-
-bool check_coprocs_usable() {
-    bool change = false;
-    if (coproc_cuda && check_coproc_usable(coproc_cuda)) {
-        change = true;
-    }
-    if (coproc_ati && check_coproc_usable(coproc_ati)) {
-        change = true;
-    }
-    return change;
-}
+#endif
 
 // return true if the task has finished its time slice
 // and has checkpointed in last 10 secs
@@ -344,10 +321,10 @@ RESULT* CLIENT_STATE::largest_debt_project_best_result() {
         PROJECT* p = projects[i];
         if (!p->next_runnable_result) continue;
         if (p->non_cpu_intensive) continue;
-        if (first || p->anticipated_debt > best_debt) {
+        if (first || p->cpu_pwf.anticipated_debt > best_debt) {
             first = false;
             best_project = p;
-            best_debt = p->anticipated_debt;
+            best_debt = p->cpu_pwf.anticipated_debt;
         }
     }
     if (!best_project) return NULL;
@@ -355,7 +332,7 @@ RESULT* CLIENT_STATE::largest_debt_project_best_result() {
     if (log_flags.cpu_sched_debug) {
         msg_printf(best_project, MSG_INFO,
             "[cpu_sched_debug] highest debt: %f %s",
-            best_project->anticipated_debt,
+            best_project->cpu_pwf.anticipated_debt,
             best_project->next_runnable_result->name
         );
     }
@@ -415,6 +392,7 @@ RESULT* CLIENT_STATE::earliest_deadline_result(bool coproc_only) {
     RESULT *best_result = NULL;
     ACTIVE_TASK* best_atp = NULL;
     unsigned int i;
+    bool only_deadline_misses = true;
 
     for (i=0; i<results.size(); i++) {
         RESULT* rp = results[i];
@@ -422,34 +400,42 @@ RESULT* CLIENT_STATE::earliest_deadline_result(bool coproc_only) {
         if (rp->already_selected) continue;
         PROJECT* p = rp->project;
         if (p->non_cpu_intensive) continue;
+
+        // treat projects with DCF>90 as if they had deadline misses
+        //
         if (coproc_only) {
             if (!rp->uses_coprocs()) continue;
-
-            // TODO: break this out by resource type
             if (rp->avp->ncudas) {
-                if (!p->cuda_pwf.deadlines_missed_copy
-                    && p->duration_correction_factor < 90.0
-                ) {
-                    continue;
+                if (p->duration_correction_factor < 90.0) {
+                    if (!p->cuda_pwf.deadlines_missed_copy) {
+                        continue;
+                    }
+                } else {
+                    only_deadline_misses = false;
                 }
             } else if (rp->avp->natis) {
-                if (!p->ati_pwf.deadlines_missed_copy
-                    && p->duration_correction_factor < 90.0
-                ) {
-                    continue;
+                if (p->duration_correction_factor < 90.0) {
+                    if (!p->ati_pwf.deadlines_missed_copy) {
+                        continue;
+                    }
+                } else {
+                    only_deadline_misses = false;
                 }
             }
         } else {
             if (rp->uses_coprocs()) continue;
-            // treat projects with DCF>90 as if they had deadline misses
-            //
-            if (!p->cpu_pwf.deadlines_missed_copy
-                && p->duration_correction_factor < 90.0
-            ) {
-                continue;
+            if (p->duration_correction_factor < 90.0) {
+                if (!p->cpu_pwf.deadlines_missed_copy) {
+                    continue;
+                }
+            } else {
+                only_deadline_misses = false;
             }
         }
-
+        
+        if (only_deadline_misses && !rp->rr_sim_misses_deadline) {
+            continue;
+        }
         bool new_best = false;
         if (best_result) {
             if (rp->report_deadline < best_result->report_deadline) {
@@ -484,7 +470,7 @@ RESULT* CLIENT_STATE::earliest_deadline_result(bool coproc_only) {
 
     if (log_flags.cpu_sched_debug) {
         msg_printf(best_result->project, MSG_INFO,
-            "[cpu_sched_debug] earliest deadline: %f %s",
+            "[cpu_sched_debug] earliest deadline: %.0f %s",
             best_result->report_deadline, best_result->name
         );
     }
@@ -518,11 +504,6 @@ void CLIENT_STATE::reset_debt_accounting() {
 //
 void CLIENT_STATE::adjust_debts() {
     unsigned int i;
-    double total_short_term_debt = 0;
-    double rrs;
-    int nprojects=0, nrprojects=0;
-    PROJECT *p;
-    double share_frac;
     double elapsed_time = now - debt_interval_start;
 
     // If the elapsed time is more than 2*DEBT_ADJUST_PERIOD
@@ -546,62 +527,25 @@ void CLIENT_STATE::adjust_debts() {
         return;
     }
 
+    // total up how many instance-seconds projects got
+    //
     for (i=0; i<active_tasks.active_tasks.size(); i++) {
         ACTIVE_TASK* atp = active_tasks.active_tasks[i];
         if (atp->scheduler_state != CPU_SCHED_SCHEDULED) continue;
-        p = atp->result->project;
+        PROJECT* p = atp->result->project;
         if (p->non_cpu_intensive) continue;
         work_fetch.accumulate_inst_sec(atp, elapsed_time);
     }
 
-    // adjust long term debts
-    //
-    cpu_work_fetch.update_debts();
+    cpu_work_fetch.update_long_term_debts();
+    cpu_work_fetch.update_short_term_debts();
     if (coproc_cuda) {
-        cuda_work_fetch.update_debts();
+        cuda_work_fetch.update_long_term_debts();
+        cuda_work_fetch.update_short_term_debts();
     }
     if (coproc_ati) {
-        ati_work_fetch.update_debts();
-    }
-
-    // adjust short term debts
-    //
-    rrs = runnable_resource_share();
-    for (i=0; i<projects.size(); i++) {
-        p = projects[i];
-        if (p->non_cpu_intensive) continue;
-        nprojects++;
-
-        if (p->runnable()) {
-            nrprojects++;
-            share_frac = p->resource_share/rrs;
-            p->short_term_debt += share_frac*cpu_work_fetch.secs_this_debt_interval
-                - p->cpu_pwf.secs_this_debt_interval;
-            total_short_term_debt += p->short_term_debt;
-        } else {
-            p->short_term_debt = 0;
-            p->anticipated_debt = 0;
-        }
-    }
-
-    // short-term debt:
-    //  normalize so mean is zero, and limit abs value at MAX_STD
-    //
-    if (nrprojects) {
-        double avg_short_term_debt = total_short_term_debt / nrprojects;
-        for (i=0; i<projects.size(); i++) {
-            p = projects[i];
-            if (p->non_cpu_intensive) continue;
-            if (p->runnable()) {
-                p->short_term_debt -= avg_short_term_debt;
-                if (p->short_term_debt > MAX_STD) {
-                    p->short_term_debt = MAX_STD;
-                }
-                if (p->short_term_debt < -MAX_STD) {
-                    p->short_term_debt = -MAX_STD;
-                }
-            }
-        }
+        ati_work_fetch.update_long_term_debts();
+        ati_work_fetch.update_short_term_debts();
     }
 
     reset_debt_accounting();
@@ -639,11 +583,11 @@ bool CLIENT_STATE::possibly_schedule_cpus() {
 // Check whether the job can be run:
 // - it will fit in RAM
 // - we have enough shared-mem segments (old Mac problem)
-// If so, update proc_rsc accordingly and return true
+// If so, update proc_rsc and anticipated debts, and return true
 //
 static bool schedule_if_possible(
     RESULT* rp, ACTIVE_TASK* atp, PROC_RESOURCES& proc_rsc,
-    double rrs, double expected_payoff, const char* description
+    const char* description
 ) {
     if (atp) {
         // see if it fits in available RAM
@@ -685,25 +629,48 @@ static bool schedule_if_possible(
             return false;
         }
     }
+
     if (log_flags.cpu_sched_debug) {
         msg_printf(rp->project, MSG_INFO,
             "[cpu_sched_debug] scheduling %s (%s)", rp->name, description
         );
     }
     proc_rsc.schedule(rp);
-    rp->project->anticipated_debt -= (rp->project->resource_share / rrs) * expected_payoff;
+    double dt = gstate.global_prefs.cpu_scheduling_period();
+
+    // project STD at end of scheduling period
+    //
+    rp->project->cpu_pwf.anticipated_debt -= dt*rp->avp->avg_ncpus/cpu_work_fetch.ninstances;
+    rp->project->cuda_pwf.anticipated_debt -= dt*rp->avp->ncudas/cuda_work_fetch.ninstances;
+    rp->project->ati_pwf.anticipated_debt -= dt*rp->avp->natis/ati_work_fetch.ninstances;
     return true;
 }
 
+// If a job J once ran in EDF,
+// and its project has another job of the same resource type
+// marked as deadline miss, mark J as deadline miss.
+// This avoids domino-effect preemption
+//
+static void promote_once_ran_edf() {
+    for (unsigned int i=0; i<gstate.active_tasks.active_tasks.size(); i++) {
+        ACTIVE_TASK* atp = gstate.active_tasks.active_tasks[i];
+        if (atp->once_ran_edf) {
+            RESULT* rp = atp->result;
+            PROJECT* p = rp->project;
+            if (p->deadlines_missed(rp->avp->rsc_type())) {
+                rp->rr_sim_misses_deadline = true;
+            }
+        }
+    }
+}
+
 // CPU scheduler - decide which results to run.
 // output: sets ordered_scheduled_result.
 //
 void CLIENT_STATE::schedule_cpus() {
     RESULT* rp;
     PROJECT* p;
-    double expected_payoff;
     unsigned int i;
-    double rrs = runnable_resource_share();
     PROC_RESOURCES proc_rsc;
     ACTIVE_TASK* atp;
     bool can_run;
@@ -711,7 +678,7 @@ void CLIENT_STATE::schedule_cpus() {
     proc_rsc.ncpus = ncpus;
     proc_rsc.ncpus_used = 0;
     proc_rsc.ram_left = available_ram();
-    proc_rsc.coprocs.clone(coprocs, false);
+    proc_rsc.coprocs.clone(host_info.coprocs, false);
 
     if (log_flags.cpu_sched_debug) {
         msg_printf(0, MSG_INFO, "[cpu_sched_debug] schedule_cpus(): start");
@@ -724,6 +691,10 @@ void CLIENT_STATE::schedule_cpus() {
         print_deadline_misses();
     }
 
+    // avoid preemption of jobs that once ran EDF
+    //
+    promote_once_ran_edf();
+
     // set temporary variables
     //
     for (i=0; i<results.size(); i++) {
@@ -734,7 +705,9 @@ void CLIENT_STATE::schedule_cpus() {
     for (i=0; i<projects.size(); i++) {
         p = projects[i];
         p->next_runnable_result = NULL;
-        p->anticipated_debt = p->short_term_debt;
+        p->cpu_pwf.anticipated_debt = p->cpu_pwf.short_term_debt;
+        p->cuda_pwf.anticipated_debt = p->cuda_pwf.short_term_debt;
+        p->ati_pwf.anticipated_debt = p->ati_pwf.short_term_debt;
         p->cpu_pwf.deadlines_missed_copy = p->cpu_pwf.deadlines_missed;
         p->cuda_pwf.deadlines_missed_copy = p->cuda_pwf.deadlines_missed;
         p->ati_pwf.deadlines_missed_copy = p->ati_pwf.deadlines_missed;
@@ -752,7 +725,6 @@ void CLIENT_STATE::schedule_cpus() {
         }
     }
 
-    expected_payoff = global_prefs.cpu_scheduling_period();
     ordered_scheduled_results.clear();
 
     // choose coproc jobs from projects with coproc deadline misses
@@ -764,8 +736,7 @@ void CLIENT_STATE::schedule_cpus() {
         if (!proc_rsc.can_schedule(rp)) continue;
         atp = lookup_active_task_by_result(rp);
         can_run = schedule_if_possible(
-            rp, atp, proc_rsc, rrs, expected_payoff,
-            "coprocessor job, EDF"
+            rp, atp, proc_rsc, "coprocessor job, EDF"
         );
         if (!can_run) continue;
         if (rp->avp->ncudas) {
@@ -773,6 +744,7 @@ void CLIENT_STATE::schedule_cpus() {
         } else if (rp->avp->natis) {
             rp->project->ati_pwf.deadlines_missed_copy--;
         }
+        rp->edf_scheduled = true;
         ordered_scheduled_results.push_back(rp);
     }
 
@@ -785,8 +757,7 @@ void CLIENT_STATE::schedule_cpus() {
         if (!proc_rsc.can_schedule(rp)) continue;
         atp = lookup_active_task_by_result(rp);
         can_run = schedule_if_possible(
-            rp, atp, proc_rsc, rrs, expected_payoff,
-            "coprocessor job, FIFO"
+            rp, atp, proc_rsc, "coprocessor job, FIFO"
         );
         if (!can_run) continue;
         ordered_scheduled_results.push_back(rp);
@@ -804,8 +775,7 @@ void CLIENT_STATE::schedule_cpus() {
         if (!proc_rsc.can_schedule(rp)) continue;
         atp = lookup_active_task_by_result(rp);
         can_run = schedule_if_possible(
-            rp, atp, proc_rsc, rrs, expected_payoff,
-            "CPU job, EDF"
+            rp, atp, proc_rsc, "CPU job, EDF"
         );
         if (!can_run) continue;
         rp->project->cpu_pwf.deadlines_missed_copy--;
@@ -825,14 +795,13 @@ void CLIENT_STATE::schedule_cpus() {
         atp = lookup_active_task_by_result(rp);
         if (!proc_rsc.can_schedule(rp)) continue;
         can_run = schedule_if_possible(
-            rp, atp, proc_rsc, rrs, expected_payoff,
-            "CPU job, debt order"
+            rp, atp, proc_rsc, "CPU job, debt order"
         );
         if (!can_run) continue;
         ordered_scheduled_results.push_back(rp);
     }
 
-    request_enforce_schedule("schedule_cpus");
+    request_enforce_schedule(NULL, "schedule_cpus");
 }
 
 static inline bool in_ordered_scheduled_results(ACTIVE_TASK* atp) {
@@ -858,9 +827,13 @@ static void promote_multi_thread_jobs(vector<RESULT*>& runnable_jobs) {
             if (first_non_mt != runnable_jobs.end()) {
                 cur = runnable_jobs.erase(cur);
                 runnable_jobs.insert(first_non_mt, rp);
+                cpus_used = 0;
+                first_non_mt = runnable_jobs.end();
+                cur = runnable_jobs.begin();
+                continue;
             }
         } else {
-            if (first_non_mt != runnable_jobs.end()) {
+            if (first_non_mt == runnable_jobs.end()) {
                 first_non_mt = cur;
             }
         }
@@ -874,12 +847,12 @@ static void promote_multi_thread_jobs(vector<RESULT*>& runnable_jobs) {
 static inline bool more_important(RESULT* r0, RESULT* r1) {
     // favor jobs in danger of deadline miss
     //
-    bool miss0 = r0->rr_sim_misses_deadline;
-    bool miss1 = r1->rr_sim_misses_deadline;
+    bool miss0 = r0->edf_scheduled;
+    bool miss1 = r1->edf_scheduled;
     if (miss0 && !miss1) return true;
     if (!miss0 && miss1) return false;
 
-    // favor coproc jobs, so that if we're RAM-limited
+    // favor coproc jobs, so that e.g. if we're RAM-limited
     // we'll use the GPU instead of the CPU
     //
     bool cp0 = r0->uses_coprocs();
@@ -895,7 +868,7 @@ static inline bool more_important(RESULT* r0, RESULT* r1) {
     if (!unfin0 && unfin1) return false;
 
     // favor jobs selected first by schedule_cpus()
-    // (e.g., because their project has high debt)
+    // (e.g., because their project has high STD)
     //
     if (r0->seqno < r1->seqno) return true;
     if (r0->seqno > r1->seqno) return false;
@@ -904,21 +877,15 @@ static inline bool more_important(RESULT* r0, RESULT* r1) {
     return (r0 < r1);
 }
 
-static void print_job_list(vector<RESULT*>& jobs, bool details) {
+static void print_job_list(vector<RESULT*>& jobs) {
     for (unsigned int i=0; i<jobs.size(); i++) {
         RESULT* rp = jobs[i];
-        if (details) {
-            msg_printf(rp->project, MSG_INFO,
-                "[cpu_sched_debug] %d: %s", i, rp->name
-            );
-        } else {
-            msg_printf(rp->project, MSG_INFO,
-                "[cpu_sched_debug] %d: %s (MD: %s; UTS: %s)",
-                i, rp->name,
-                rp->rr_sim_misses_deadline?"yes":"no",
-                rp->unfinished_time_slice?"yes":"no"
-            );
-        }
+        msg_printf(rp->project, MSG_INFO,
+            "[cpu_sched_debug] %d: %s (MD: %s; UTS: %s)",
+            i, rp->name,
+            rp->edf_scheduled?"yes":"no",
+            rp->unfinished_time_slice?"yes":"no"
+        );
     }
 }
 
@@ -929,7 +896,7 @@ void CLIENT_STATE::append_unfinished_time_slice(
     vector<RESULT*> &runnable_jobs
 ) {
     unsigned int i;
-    int seqno = runnable_jobs.size();
+    int seqno = (int)runnable_jobs.size();
 
     for (i=0; i<active_tasks.active_tasks.size(); i++) {
         ACTIVE_TASK* atp = active_tasks.active_tasks[i];
@@ -1082,7 +1049,7 @@ static inline void assign_coprocs(vector<RESULT*> jobs) {
     COPROC* cp;
     double usage;
 
-    gstate.coprocs.clear_usage();
+    gstate.host_info.coprocs.clear_usage();
 
     // fill in pending usage
     //
@@ -1214,17 +1181,19 @@ bool CLIENT_STATE::enforce_schedule() {
     last_time = now;
     bool action = false;
 
+#ifndef SIM
     // check whether GPUs are usable
     //
     if (check_coprocs_usable()) {
         request_schedule_cpus("GPU usability change");
         return true;
     }
+#endif
 
     if (log_flags.cpu_sched_debug) {
         msg_printf(0, MSG_INFO, "[cpu_sched_debug] enforce_schedule(): start");
         msg_printf(0, MSG_INFO, "[cpu_sched_debug] preliminary job list:");
-        print_job_list(ordered_scheduled_results, false);
+        print_job_list(ordered_scheduled_results);
     }
 
     // Set next_scheduler_state to PREEMPT for all tasks
@@ -1260,7 +1229,7 @@ bool CLIENT_STATE::enforce_schedule() {
 
     if (log_flags.cpu_sched_debug) {
         msg_printf(0, MSG_INFO, "[cpu_sched_debug] final job list:");
-        print_job_list(runnable_jobs, true);
+        print_job_list(runnable_jobs);
     }
 
     double ram_left = available_ram();
@@ -1290,6 +1259,11 @@ bool CLIENT_STATE::enforce_schedule() {
     //
     assign_coprocs(runnable_jobs);
 
+    for (i=0; i<projects.size(); i++) {
+        projects[i]->cuda_low_mem = false;
+        projects[i]->ati_low_mem = false;
+    }
+
     // prune jobs that don't fit in RAM or that exceed CPU usage limits.
     // Mark the rest as SCHEDULED
     //
@@ -1297,10 +1271,29 @@ bool CLIENT_STATE::enforce_schedule() {
     bool running_multithread = false;
     for (i=0; i<runnable_jobs.size(); i++) {
         RESULT* rp = runnable_jobs[i];
+        atp = lookup_active_task_by_result(rp);
 
-        // decide if we're already using too many CPUs to run this job
-        //
-        if (!rp->uses_coprocs()) {
+        if (rp->uses_coprocs()) {
+#ifndef SIM
+            // for coproc jobs, make sure there's enough video RAM
+            // currently free on the assigned device
+            //
+            if (!atp || !atp->process_exists()) {
+                if (rp->insufficient_video_ram()) {
+                    if (rp->uses_cuda()) {
+                        rp->project->cuda_low_mem = true;
+                    } else {
+                        rp->project->ati_low_mem = true;
+                    }
+                    rp->schedule_backoff = now + 300; // try again in 5 minutes
+                    request_schedule_cpus("insufficient GPU RAM");
+                    continue;
+                }
+            }
+#endif
+        } else {
+            // see if we're already using too many CPUs to run this job
+            //
             if (ncpus_used >= ncpus) {
                 if (log_flags.cpu_sched_debug) {
                     msg_printf(rp->project, MSG_INFO,
@@ -1317,7 +1310,10 @@ bool CLIENT_STATE::enforce_schedule() {
             // so that a GPU app and a multithread app can run together.
             //
             if (rp->avp->avg_ncpus > 1) {
-                if (ncpus_used + rp->avp->avg_ncpus >= ncpus+1) {
+                if (ncpus_used && (ncpus_used + rp->avp->avg_ncpus >= ncpus+1)) {
+                    // the "ncpus_used &&" is to allow running a job that uses
+                    // more than ncpus (this can happen in pathological cases)
+
                     if (log_flags.cpu_sched_debug) {
                         msg_printf(rp->project, MSG_INFO,
                             "[cpu_sched_debug] not enough CPUs for multithread job, skipping %s",
@@ -1346,7 +1342,6 @@ bool CLIENT_STATE::enforce_schedule() {
             }
         }
 
-        atp = lookup_active_task_by_result(rp);
         if (atp) {
             atp->too_large = false;
             if (atp->procinfo.working_set_size_smoothed > ram_left) {
@@ -1378,7 +1373,7 @@ bool CLIENT_STATE::enforce_schedule() {
     }
 
     if (log_flags.cpu_sched_debug && ncpus_used < ncpus) {
-        msg_printf(0, MSG_INFO, "[cpu_sched_debug] using %f out of %d CPUs",
+        msg_printf(0, MSG_INFO, "[cpu_sched_debug] using %.2f out of %d CPUs",
             ncpus_used, ncpus
         );
         if (ncpus_used < ncpus) {
@@ -1482,9 +1477,18 @@ bool CLIENT_STATE::enforce_schedule() {
                 request_schedule_cpus("start failed");
                 continue;
             }
+            if (atp->result->rr_sim_misses_deadline) {
+                atp->once_ran_edf = true;
+            }
             atp->run_interval_start_wall_time = now;
             app_started = now;
         }
+        if (log_flags.cpu_sched_status) {
+            msg_printf(atp->result->project, MSG_INFO,
+                "[css] running %s (%s)",
+                atp->result->name, atp->result->resources
+            );
+        }
         atp->scheduler_state = CPU_SCHED_SCHEDULED;
         swap_left -= atp->procinfo.swap_size;
     }
@@ -1500,7 +1504,7 @@ bool CLIENT_STATE::enforce_schedule() {
                 "[cpu_sched_debug] coproc quit pending, deferring start"
             );
         }
-        request_enforce_schedule("coproc quit retry");
+        request_enforce_schedule(NULL, "coproc quit retry");
     }
     return action;
 }
@@ -1509,9 +1513,9 @@ bool CLIENT_STATE::enforce_schedule() {
 // Called when a new schedule is computed,
 // and when an app checkpoints.
 //
-void CLIENT_STATE::request_enforce_schedule(const char* where) {
+void CLIENT_STATE::request_enforce_schedule(PROJECT* p, const char* where) {
     if (log_flags.cpu_sched_debug) {
-        msg_printf(0, MSG_INFO, "[cpu_sched_debug] Request enforce CPU schedule: %s", where);
+        msg_printf(p, MSG_INFO, "[cpu_sched_debug] Request enforce CPU schedule: %s", where);
     }
     must_enforce_cpu_schedule = true;
 }
@@ -1560,12 +1564,12 @@ double CLIENT_STATE::total_resource_share() {
 
 // same, but only runnable projects (can use CPU right now)
 //
-double CLIENT_STATE::runnable_resource_share() {
+double CLIENT_STATE::runnable_resource_share(int rsc_type) {
     double x = 0;
     for (unsigned int i=0; i<projects.size(); i++) {
         PROJECT* p = projects[i];
         if (p->non_cpu_intensive) continue;
-        if (p->runnable()) {
+        if (p->runnable(rsc_type)) {
             x += p->resource_share;
         }
     }
@@ -1661,28 +1665,26 @@ void RESULT::set_state(int val, const char* where) {
 }
 
 // called at startup (after get_host_info())
-// and when general prefs have been parsed
+// and when general prefs have been parsed.
+// NOTE: GSTATE.NCPUS MUST BE 1 OR MORE; WE DIVIDE BY IT IN A COUPLE OF PLACES
 //
 void CLIENT_STATE::set_ncpus() {
     int ncpus_old = ncpus;
 
-    if (config.ncpus>=0) {
-        ncpus = config.ncpus;
-    } else if (host_info.p_ncpus>0) {
+    if (config.ncpus>0) {
+        host_info.p_ncpus = config.ncpus;
+    }
+    if (host_info.p_ncpus>0) {
         ncpus = host_info.p_ncpus;
     } else {
         ncpus = 1;
     }
 
-    // if config says no CPUs, honor it
-    //
-    if (ncpus) {
-        if (global_prefs.max_ncpus_pct) {
-            ncpus = (int)((ncpus * global_prefs.max_ncpus_pct)/100);
-            if (ncpus == 0) ncpus = 1;
-        } else if (global_prefs.max_ncpus && global_prefs.max_ncpus < ncpus) {
-            ncpus = global_prefs.max_ncpus;
-        }
+    if (global_prefs.max_ncpus_pct) {
+        ncpus = (int)((ncpus * global_prefs.max_ncpus_pct)/100);
+        if (ncpus == 0) ncpus = 1;
+    } else if (global_prefs.max_ncpus && global_prefs.max_ncpus < ncpus) {
+        ncpus = global_prefs.max_ncpus;
     }
 
     if (initialized && ncpus != ncpus_old) {
@@ -1747,4 +1749,3 @@ void PROJECT::update_duration_correction_factor(ACTIVE_TASK* atp) {
     }
 }
 
-const char *BOINC_RCSID_e830ee1 = "$Id: cpu_sched.cpp 19331 2009-10-16 19:39:38Z romw $";
diff --git a/client/cs_account.cpp b/client/cs_account.cpp
index 8def2e1..464efa6 100644
--- a/client/cs_account.cpp
+++ b/client/cs_account.cpp
@@ -35,6 +35,7 @@
 #include "filesys.h"
 #include "parse.h"
 #include "str_util.h"
+#include "url.h"
 #include "str_replace.h"
 #include "client_state.h"
 #include "client_msgs.h"
@@ -92,9 +93,9 @@ int PROJECT::parse_account(FILE* in) {
     char buf[256];
     int retval;
     bool in_project_prefs = false;
-    no_cpu = false;
-    no_cuda = false;
-    no_ati = false;
+    no_cpu_pref = false;
+    no_cuda_pref = false;
+    no_ati_pref = false;
 
     strcpy(master_url, "");
     strcpy(authenticator, "");
@@ -120,9 +121,9 @@ int PROJECT::parse_account(FILE* in) {
             continue;
         } else if (parse_str(buf, "<authenticator>", authenticator, sizeof(authenticator))) continue;
         else if (parse_double(buf, "<resource_share>", resource_share)) continue;
-        else if (parse_bool(buf, "no_cpu", no_cpu)) continue;
-        else if (parse_bool(buf, "no_cuda", no_cuda)) continue;
-        else if (parse_bool(buf, "no_ati", no_ati)) continue;
+        else if (parse_bool(buf, "no_cpu", no_cpu_pref)) continue;
+        else if (parse_bool(buf, "no_cuda", no_cuda_pref)) continue;
+        else if (parse_bool(buf, "no_ati", no_ati_pref)) continue;
         else if (parse_str(buf, "<project_name>", project_name, sizeof(project_name))) continue;
         else if (match_tag(buf, "<gui_urls>")) {
             string foo;
@@ -175,6 +176,9 @@ int PROJECT::parse_account_file_venue() {
             if (!strcmp(venue, host_venue)) {
                 using_venue_specific_prefs = true;
                 in_right_venue = true;
+                no_cpu_pref = false;    // reset these
+                no_cuda_pref = false;
+                no_ati_pref = false;
             } else {
                 std::string devnull;
                 retval = copy_element_contents(in, "</venue>", devnull);
@@ -197,9 +201,9 @@ int PROJECT::parse_account_file_venue() {
         } else if (parse_double(buf, "<resource_share>", resource_share)) {
             continue;
         }
-        else if (parse_bool(buf, "no_cpu", no_cpu)) continue;
-        else if (parse_bool(buf, "no_cuda", no_cuda)) continue;
-        else if (parse_bool(buf, "no_ati", no_ati)) continue;
+        else if (parse_bool(buf, "no_cpu", no_cpu_pref)) continue;
+        else if (parse_bool(buf, "no_cuda", no_cuda_pref)) continue;
+        else if (parse_bool(buf, "no_ati", no_ati_pref)) continue;
         else {
             if (log_flags.unparsed_xml) {
                 msg_printf(0, MSG_INFO,
@@ -504,4 +508,3 @@ int CLIENT_STATE::parse_preferences_for_user_files() {
     return 0;
 }
 
-const char *BOINC_RCSID_497223a3f8 = "$Id: cs_account.cpp 19254 2009-10-05 20:32:16Z romw $";
diff --git a/client/cs_apps.cpp b/client/cs_apps.cpp
index 6efbba0..9512344 100644
--- a/client/cs_apps.cpp
+++ b/client/cs_apps.cpp
@@ -323,4 +323,3 @@ ACTIVE_TASK* ACTIVE_TASK_SET::lookup_result(RESULT* result) {
 }
 #endif
 
-const char *BOINC_RCSID_7bf63ad771 = "$Id: cs_apps.cpp 17396 2009-02-26 03:24:39Z davea $";
diff --git a/client/cs_benchmark.cpp b/client/cs_benchmark.cpp
index e09aaa7..5153f63 100644
--- a/client/cs_benchmark.cpp
+++ b/client/cs_benchmark.cpp
@@ -561,4 +561,3 @@ bool CLIENT_STATE::are_cpu_benchmarks_running() {
     return benchmarks_running;
 }
 
-const char *BOINC_RCSID_97ee090db0 = "$Id: cs_benchmark.cpp 18054 2009-05-08 02:01:25Z charlief $";
diff --git a/client/cs_cmdline.cpp b/client/cs_cmdline.cpp
index 801c1b0..9b9ed13 100644
--- a/client/cs_cmdline.cpp
+++ b/client/cs_cmdline.cpp
@@ -25,13 +25,16 @@
 #include <unistd.h>
 #endif
 
-#include "main.h"
 #include "str_util.h"
+#include "url.h"
 #include "str_replace.h"
 #include "util.h"
+
+#include "main.h"
 #include "client_msgs.h"
 #include "client_state.h"
 #include "sandbox.h"
+#include "cs_proxy.h"
 
 static void print_options(char* prog) {
     printf(
@@ -174,6 +177,8 @@ void CLIENT_STATE::parse_cmdline(int argc, char** argv) {
         } else if (ARG(master_fetch_retry_cap)) {
             if (i == argc-1) show_options = true;
             else master_fetch_retry_cap = atoi(argv[++i]);
+        } else if (ARG(no_gpus)) {
+            config.no_gpus = true;
         } else if (ARG(no_gui_rpc)) {
             no_gui_rpc = true;
         } else if (ARG(no_priority_change)) {
@@ -223,7 +228,13 @@ void CLIENT_STATE::parse_cmdline(int argc, char** argv) {
             if (i == argc-1) show_options = true;
             else safe_strcpy(update_prefs_url, argv[++i]);
         } else if (ARG(version)) {
+#if (defined (__APPLE__) && (defined(__i386__) || defined(__x86_64__)))
+            CLIENT_STATE cs;
+            cs.detect_platforms();
+            printf(BOINC_VERSION_STRING " %s\n", HOSTTYPE);
+#else
             printf(BOINC_VERSION_STRING " " HOSTTYPE "\n");
+#endif
             exit(0);
         } else {
             printf("Unknown option: %s\n", argv[i]);
@@ -241,51 +252,58 @@ void CLIENT_STATE::parse_cmdline(int argc, char** argv) {
 
 void CLIENT_STATE::parse_env_vars() {
     char *p;
-    char temp[256];
-    int proto;
+    PARSED_URL purl;
 
     p = getenv("HTTP_PROXY");
     if (p && strlen(p) > 0) {
-        proxy_info.use_http_proxy = true;
-        parse_url(p, proto, proxy_info.http_server_name, proxy_info.http_server_port, temp);
+        parse_url(p, purl);
+        switch (purl.protocol) {
+        case URL_PROTOCOL_HTTP:
+        case URL_PROTOCOL_HTTPS:
+            env_var_proxy_info.present = true;
+            env_var_proxy_info.use_http_proxy = true;
+            strcpy(env_var_proxy_info.http_user_name, purl.user);
+            strcpy(env_var_proxy_info.http_user_passwd, purl.passwd);
+            strcpy(env_var_proxy_info.http_server_name, purl.host);
+            env_var_proxy_info.http_server_port = purl.port;
+            break;
+        default:
+            msg_printf(0, MSG_USER_ERROR,
+                "The HTTP_PROXY environment variable must specify an HTTP proxy"
+            );
+        }
     }
     p = getenv("HTTP_USER_NAME");
     if (p) {
-        proxy_info.use_http_auth = true;
-        strcpy(proxy_info.http_user_name, p);
+        env_var_proxy_info.use_http_auth = true;
+        strcpy(env_var_proxy_info.http_user_name, p);
         p = getenv("HTTP_USER_PASSWD");
         if (p) {
-            strcpy(proxy_info.http_user_passwd, p);
+            strcpy(env_var_proxy_info.http_user_passwd, p);
         }
     }
 
-    proxy_info.socks_version = SOCKS_VERSION_5;
-    if (getenv("SOCKS4_SERVER")) {
-        proxy_info.socks_version = SOCKS_VERSION_4;
-    }
-
-    p = getenv("SOCKS4_SERVER");
-    if (p && strlen(p)) {
-        proxy_info.use_socks_proxy = true;
-        parse_url(p, proto, proxy_info.socks_server_name, proxy_info.socks_server_port, temp);
-    }
-
 	p = getenv("SOCKS_SERVER");
 	if (!p) p = getenv("SOCKS5_SERVER");
     if (p && strlen(p)) {
-        proxy_info.use_socks_proxy = true;
-        parse_url(p, proto, proxy_info.socks_server_name, proxy_info.socks_server_port, temp);
+        parse_url(p, purl);
+        env_var_proxy_info.present = true;
+        env_var_proxy_info.use_socks_proxy = true;
+        strcpy(env_var_proxy_info.socks5_user_name, purl.user);
+        strcpy(env_var_proxy_info.socks5_user_passwd, purl.passwd);
+        strcpy(env_var_proxy_info.socks_server_name, purl.host);
+        env_var_proxy_info.socks_server_port = purl.port;
     }
 
 	p = getenv("SOCKS5_USER");
 	if (!p) p = getenv("SOCKS_USER");
     if (p) {
-        strcpy(proxy_info.socks5_user_name, p);
+        strcpy(env_var_proxy_info.socks5_user_name, p);
     }
 
 	p = getenv("SOCKS5_PASSWD");
     if (p) {
-        strcpy(proxy_info.socks5_user_passwd, p);
+        strcpy(env_var_proxy_info.socks5_user_passwd, p);
     }
 }
 
@@ -344,4 +362,3 @@ void CLIENT_STATE::do_cmdline_actions() {
     }
 }
 
-const char *BOINC_RCSID_829bd0f60b = "$Id: cs_cmdline.cpp 19316 2009-10-16 19:02:00Z romw $";
diff --git a/client/cs_files.cpp b/client/cs_files.cpp
index 970e675..8b9951f 100644
--- a/client/cs_files.cpp
+++ b/client/cs_files.cpp
@@ -362,4 +362,3 @@ void CLIENT_STATE::check_file_existence() {
     }
 }
 
-const char *BOINC_RCSID_66410b3cab = "$Id: cs_files.cpp 19106 2009-09-18 20:55:03Z romw $";
diff --git a/client/cs_platforms.cpp b/client/cs_platforms.cpp
index 7fc7f2d..83cb0aa 100644
--- a/client/cs_platforms.cpp
+++ b/client/cs_platforms.cpp
@@ -51,6 +51,13 @@ LPFN_ISWOW64PROCESS fnIsWow64Process;
 #include "str_replace.h"
 #include "util.h"
 
+#if (defined (__APPLE__) && (defined(__i386__) || defined(__x86_64__)))
+#include <sys/sysctl.h>
+#include <Carbon/Carbon.h>
+
+char *HOSTTYPE = "";
+#endif
+
 // return the primary platform id.
 //
 const char* CLIENT_STATE::get_primary_platform() {
@@ -94,11 +101,22 @@ void CLIENT_STATE::detect_platforms() {
 
 #elif defined(__APPLE__)
 
-#if defined(__x86_64__)
-    add_platform("x86_64-apple-darwin");
-#endif
-
 #if defined(__i386__) || defined(__x86_64__)
+    OSStatus err = noErr;
+    SInt32 version = 0;
+    int response = 0;
+    int retval = 0;
+    size_t len = sizeof(response);
+
+    err = Gestalt(gestaltSystemVersion, &version);
+    retval = sysctlbyname("hw.optional.x86_64", &response, &len, NULL, 0);
+    if ((err == noErr) && (version >= 0x1050) && response && (!retval)) {
+        HOSTTYPE = "x86_64-apple-darwin";
+        add_platform("x86_64-apple-darwin");
+    } else {
+        HOSTTYPE = "i686-apple-darwin";
+    }
+
     // Supported on both Mac Intel architectures
     add_platform("i686-apple-darwin");
 #endif
diff --git a/client/cs_prefs.cpp b/client/cs_prefs.cpp
index 136c785..3cfa0ae 100644
--- a/client/cs_prefs.cpp
+++ b/client/cs_prefs.cpp
@@ -99,7 +99,7 @@ int CLIENT_STATE::check_suspend_processing() {
         return SUSPEND_REASON_INITIAL_DELAY;
     }
 
-    switch(run_mode.get_current()) {
+    switch (run_mode.get_current()) {
     case RUN_MODE_ALWAYS: break;
     case RUN_MODE_NEVER:
         return SUSPEND_REASON_USER_REQ;
@@ -125,9 +125,12 @@ int CLIENT_STATE::check_suspend_processing() {
                 return SUSPEND_REASON_NO_RECENT_INPUT;
             }
         }
-        if (active_tasks.exclusive_app_running) {
+        if (exclusive_app_running) {
             return SUSPEND_REASON_EXCLUSIVE_APP_RUNNING;
         }
+        if (global_prefs.suspend_cpu_usage && non_boinc_cpu_usage*100 > global_prefs.suspend_cpu_usage) {
+            return SUSPEND_REASON_CPU_USAGE;
+        }
     }
 
     if (global_prefs.cpu_usage_limit < 99) {        // round-off?
@@ -137,46 +140,57 @@ int CLIENT_STATE::check_suspend_processing() {
         if (diff >= POLL_INTERVAL/2. && diff < POLL_INTERVAL*10.) {
             debt += diff*global_prefs.cpu_usage_limit/100;
             if (debt < 0) {
-                return SUSPEND_REASON_CPU_USAGE_LIMIT;
+                return SUSPEND_REASON_CPU_THROTTLE;
             } else {
                 debt -= diff;
             }
         }
     }
 
+    bool old_gpu_suspended = gpu_suspended;
+    gpu_suspended = false;
+    switch (gpu_mode.get_current()) {
+    case RUN_MODE_ALWAYS:
+        break;
+    case RUN_MODE_NEVER:
+        gpu_suspended = true;
+        break;
+    default:
+        if (exclusive_gpu_app_running) {
+            gpu_suspended = true;
+            break;
+        }
+        if (user_active && !global_prefs.run_gpu_if_user_active) {
+            gpu_suspended = true;
+            break;
+        }
+    }
+
+    if (log_flags.cpu_sched) {
+        if (old_gpu_suspended && !gpu_suspended) {
+            msg_printf(NULL, MSG_INFO, "[cpu_sched] resuming GPU activity");
+        } else if (!old_gpu_suspended && gpu_suspended) {
+            msg_printf(NULL, MSG_INFO, "[cpu_sched] suspending GPU activity");
+        }
+    }
+
     return 0;
 }
 
 static string reason_string(int reason) {
-    string s_reason;
-    if (reason & SUSPEND_REASON_BATTERIES) {
-        s_reason += " - on batteries";
-    }
-    if (reason & SUSPEND_REASON_USER_ACTIVE) {
-        s_reason += " - user is active";
-    }
-    if (reason & SUSPEND_REASON_USER_REQ) {
-        s_reason += " - user request";
-    }
-    if (reason & SUSPEND_REASON_TIME_OF_DAY) {
-        s_reason += " - time of day";
-    }
-    if (reason & SUSPEND_REASON_BENCHMARKS) {
-        s_reason += " - running CPU benchmarks";
-    }
-    if (reason & SUSPEND_REASON_DISK_SIZE) {
-        s_reason += " - out of disk space - change global prefs";
-    }
-    if (reason & SUSPEND_REASON_NO_RECENT_INPUT) {
-        s_reason += " - no recent user activity";
+    switch (reason) {
+    case SUSPEND_REASON_BATTERIES: return " - on batteries";
+    case SUSPEND_REASON_USER_ACTIVE: return " - user is active";
+    case SUSPEND_REASON_USER_REQ: return " - user request";
+    case SUSPEND_REASON_TIME_OF_DAY: return " - time of day";
+    case SUSPEND_REASON_BENCHMARKS: return " - running CPU benchmarks";
+    case SUSPEND_REASON_DISK_SIZE: return " - out of disk space - change global prefs";
+    case SUSPEND_REASON_NO_RECENT_INPUT: return " - no recent user activity";
+    case SUSPEND_REASON_INITIAL_DELAY: return " - initial delay";
+    case SUSPEND_REASON_EXCLUSIVE_APP_RUNNING: return " - an exclusive app is running";
+    case SUSPEND_REASON_CPU_USAGE: return " - CPU usage is too high";
     }
-    if (reason & SUSPEND_REASON_INITIAL_DELAY) {
-        s_reason += " - initial delay";
-    }
-    if (reason & SUSPEND_REASON_EXCLUSIVE_APP_RUNNING) {
-        s_reason += " - an exclusive app is running";
-    }
-    return s_reason;
+    return "";
 }
 
 void print_suspend_tasks_message(int reason) {
@@ -185,20 +199,19 @@ void print_suspend_tasks_message(int reason) {
 }
 
 int CLIENT_STATE::suspend_tasks(int reason) {
-    if (reason == SUSPEND_REASON_CPU_USAGE_LIMIT) {
+    if (reason == SUSPEND_REASON_CPU_THROTTLE) {
         if (log_flags.cpu_sched) {
             msg_printf(NULL, MSG_INFO, "[cpu_sched] Suspending - CPU throttle");
         }
-        active_tasks.suspend_all(true);
     } else {
         print_suspend_tasks_message(reason);
-        active_tasks.suspend_all(false);
     }
+    active_tasks.suspend_all(reason);
     return 0;
 }
 
 int CLIENT_STATE::resume_tasks(int reason) {
-    if (reason == SUSPEND_REASON_CPU_USAGE_LIMIT) {
+    if (reason == SUSPEND_REASON_CPU_THROTTLE) {
         if (log_flags.cpu_sched) {
             msg_printf(NULL, MSG_INFO, "[cpu_sched] Resuming - CPU throttle");
         }
@@ -227,7 +240,7 @@ int CLIENT_STATE::check_suspend_network() {
     if (global_prefs.net_times.suspended()) {
         return SUSPEND_REASON_TIME_OF_DAY;
     }
-    if (active_tasks.exclusive_app_running) {
+    if (exclusive_app_running) {
         return SUSPEND_REASON_EXCLUSIVE_APP_RUNNING;
     }
     return 0;
@@ -395,18 +408,19 @@ void CLIENT_STATE::read_global_prefs() {
         fclose(f);
     }
 
+    msg_printf(NULL, MSG_INFO, "Preferences:");
     msg_printf(NULL, MSG_INFO,
-        "Preferences limit memory usage when active to %.2fMB",
+        "   max memory usage when active: %.2fMB",
         (host_info.m_nbytes*global_prefs.ram_max_used_busy_frac)/MEGA
     );
     msg_printf(NULL, MSG_INFO,
-        "Preferences limit memory usage when idle to %.2fMB",
+        "   max memory usage when idle: %.2fMB",
         (host_info.m_nbytes*global_prefs.ram_max_used_idle_frac)/MEGA
     );
     double x;
     total_disk_usage(x);
     msg_printf(NULL, MSG_INFO,
-        "Preferences limit disk usage to %.2fGB",
+        "   max disk usage: %.2fGB",
         allowed_disk_usage(x)/GIGA
     );
     // max_cpus, bandwidth limits may have changed
@@ -414,11 +428,41 @@ void CLIENT_STATE::read_global_prefs() {
     set_ncpus();
     if (ncpus != host_info.p_ncpus) {
         msg_printf(NULL, MSG_INFO,
-            "Preferences limit # CPUs to %d", ncpus
+            "   max CPUs used: %d", ncpus
+        );
+    }
+    if (!global_prefs.run_if_user_active) {
+        msg_printf(NULL, MSG_INFO, "   don't compute while active");
+    }
+    if (!global_prefs.run_gpu_if_user_active) {
+        msg_printf(NULL, MSG_INFO, "   don't use GPU while active");
+    }
+    if (global_prefs.suspend_cpu_usage) {
+        msg_printf(NULL, MSG_INFO,
+            "   suspend work if non-BOINC CPU load exceeds %.0f %%",
+            global_prefs.suspend_cpu_usage
+        );
+    }
+    if (global_prefs.max_bytes_sec_down) {
+        msg_printf(NULL, MSG_INFO,
+            "   max download rate: %.0f bytes/sec",
+            global_prefs.max_bytes_sec_down
+        );
+    }
+    if (global_prefs.max_bytes_sec_up) {
+        msg_printf(NULL, MSG_INFO,
+            "   max upload rate: %.0f bytes/sec",
+            global_prefs.max_bytes_sec_up
         );
     }
     file_xfers->set_bandwidth_limits(true);
     file_xfers->set_bandwidth_limits(false);
+    msg_printf(NULL, MSG_INFO,
+        "   (to change, visit the web site of an attached project,"
+    );
+    msg_printf(NULL, MSG_INFO,
+        "   or click on Preferences)"
+    );
     request_schedule_cpus("Prefs update");
     request_work_fetch("Prefs update");
 }
@@ -470,4 +514,3 @@ double CLIENT_STATE::max_available_ram() {
     );
 }
 
-const char *BOINC_RCSID_92ad99cddf = "$Id: cs_prefs.cpp 19316 2009-10-16 19:02:00Z romw $";
diff --git a/client/cs_proxy.cpp b/client/cs_proxy.cpp
new file mode 100644
index 0000000..d166ec8
--- /dev/null
+++ b/client/cs_proxy.cpp
@@ -0,0 +1,84 @@
+// This file is part of BOINC.
+// http://boinc.berkeley.edu
+// Copyright (C) 2009 University of California
+//
+// BOINC is free software; you can redistribute it and/or modify it
+// under the terms of the GNU Lesser General Public License
+// as published by the Free Software Foundation,
+// either version 3 of the License, or (at your option) any later version.
+//
+// BOINC is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+// See the GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
+
+#include "common_defs.h"
+
+#include "client_msgs.h"
+
+#include "cs_proxy.h"
+
+PROXY_INFO gui_proxy_info;
+PROXY_INFO env_var_proxy_info;
+PROXY_INFO config_proxy_info;
+PROXY_INFO working_proxy_info;
+
+static void show_proxy_info(PROXY_INFO& p) {
+    if (p.use_http_proxy) {
+        if (p.http_server_port) {
+            msg_printf(NULL, MSG_INFO, "Using HTTP proxy %s:%d",
+                p.http_server_name, p.http_server_port
+            );
+        } else {
+            msg_printf(NULL, MSG_INFO, "Using HTTP proxy %s",
+                p.http_server_name
+            );
+        }
+    }
+    if (p.use_socks_proxy) {
+        if (p.socks_server_port) {
+            msg_printf(NULL, MSG_INFO, "Using SOCKS proxy %s:%d",
+                p.socks_server_name, p.socks_server_port
+            );
+        } else {
+            msg_printf(NULL, MSG_INFO, "Using SOCKS proxy %s",
+                p.socks_server_name
+            );
+        }
+    }
+    if (!p.use_http_proxy && !p.use_socks_proxy) {
+        msg_printf(NULL, MSG_INFO, "Not using a proxy");
+    }
+}
+
+void select_proxy_info() {
+    if (gui_proxy_info.present) {
+        working_proxy_info = gui_proxy_info;
+        msg_printf(0, MSG_INFO, "Using proxy info from GUI");
+        if (env_var_proxy_info.present) {
+            msg_printf(0, MSG_INFO, "Proxy info env vars overridden by GUI");
+        }
+        if (config_proxy_info.present) {
+            msg_printf(0, MSG_INFO, "Config file proxy info overridden by GUI");
+        }
+    } else if (config_proxy_info.present) {
+        working_proxy_info = config_proxy_info;
+        msg_printf(0, MSG_INFO, "Using proxy info from cc_config.xml");
+        if (env_var_proxy_info.present) {
+            msg_printf(0, MSG_INFO, "Proxy info env vars overridden by GUI");
+        }
+    } else if (env_var_proxy_info.present) {
+        working_proxy_info = env_var_proxy_info;
+        msg_printf(0, MSG_INFO, "Using proxy info from environment variables");
+    }
+    show_proxy_info(working_proxy_info);
+}
+
+void proxy_info_startup() {
+    select_proxy_info();
+    working_proxy_info.need_autodetect_proxy_settings = true;
+    working_proxy_info.have_autodetect_proxy_settings = false;
+}
diff --git a/client/cs_proxy.h b/client/cs_proxy.h
new file mode 100644
index 0000000..4e98086
--- /dev/null
+++ b/client/cs_proxy.h
@@ -0,0 +1,26 @@
+// This file is part of BOINC.
+// http://boinc.berkeley.edu
+// Copyright (C) 2009 University of California
+//
+// BOINC is free software; you can redistribute it and/or modify it
+// under the terms of the GNU Lesser General Public License
+// as published by the Free Software Foundation,
+// either version 3 of the License, or (at your option) any later version.
+//
+// BOINC is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+// See the GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
+
+#include "proxy_info.h"
+
+extern PROXY_INFO gui_proxy_info;
+extern PROXY_INFO env_var_proxy_info;
+extern PROXY_INFO config_proxy_info;
+extern PROXY_INFO working_proxy_info;
+
+extern void select_proxy_info();
+extern void proxy_info_startup();
diff --git a/client/cs_scheduler.cpp b/client/cs_scheduler.cpp
index d3f0616..89bb7ba 100644
--- a/client/cs_scheduler.cpp
+++ b/client/cs_scheduler.cpp
@@ -43,6 +43,7 @@
 #include "parse.h"
 #include "str_util.h"
 #include "str_replace.h"
+#include "url.h"
 #include "util.h"
 
 #include "client_msgs.h"
@@ -81,7 +82,7 @@ int CLIENT_STATE::make_scheduler_request(PROJECT* p) {
     if (!f) return ERR_FOPEN;
 
     double trs = total_resource_share();
-    double rrs = runnable_resource_share();
+    double rrs = runnable_resource_share(RSC_TYPE_ANY);
     double prrs = potentially_runnable_resource_share();
     double resource_share_fraction, rrs_fraction, prrs_fraction;
     if (trs) {
@@ -211,7 +212,8 @@ int CLIENT_STATE::make_scheduler_request(PROJECT* p) {
     // update hardware info, and write host info
     //
     host_info.get_host_info();
-    retval = host_info.write(mf, config.suppress_net_info);
+    set_ncpus();
+    retval = host_info.write(mf, config.suppress_net_info, false);
     //if (retval) return retval;
 
     // get and write disk usage
@@ -239,13 +241,8 @@ int CLIENT_STATE::make_scheduler_request(PROJECT* p) {
         coproc_ati->estimated_delay = ati_work_fetch.req_secs?ati_work_fetch.busy_time_estimator.get_busy_time():0;
     }
 
-    if (coprocs.coprocs.size()) {
-        fprintf(f, "    <coprocs>\n");
-        for (i=0; i<coprocs.coprocs.size(); i++) {
-            COPROC* c = coprocs.coprocs[i];
-            c->write_xml(mf);
-        }
-        fprintf(f, "    </coprocs>\n");
+    if (host_info.coprocs.coprocs.size()) {
+        host_info.coprocs.write_xml(mf);
     }
 
     // report results
@@ -833,11 +830,11 @@ int CLIENT_STATE::handle_scheduler_reply(PROJECT* project, char* scheduler_url)
             rp->set_state(RESULT_NEW, "handle_scheduler_reply");
             if (rp->avp->ncudas) {
                 est_cuda_duration += rp->estimated_duration(false);
-                coproc_cuda->usable = true;
+                gpus_usable = true;
                     // trigger a check of whether GPU is actually usable
             } else if (rp->avp->natis) {
                 est_ati_duration += rp->estimated_duration(false);
-                coproc_ati->usable = true;
+                gpus_usable = true;
             } else {
                 est_cpu_duration += rp->estimated_duration(false);
             }
@@ -857,13 +854,13 @@ int CLIENT_STATE::handle_scheduler_reply(PROJECT* project, char* scheduler_url)
             );
             if (coproc_cuda) {
                 msg_printf(project, MSG_INFO,
-                    "[sched_op_debug] estimated total NVIDIA CPU job duration: %.0f seconds",
+                    "[sched_op_debug] estimated total NVIDIA GPU job duration: %.0f seconds",
                     est_cuda_duration
                 );
             }
             if (coproc_ati) {
                 msg_printf(project, MSG_INFO,
-                    "[sched_op_debug] estimated total ATI CPU job duration: %.0f seconds",
+                    "[sched_op_debug] estimated total ATI GPU job duration: %.0f seconds",
                     est_ati_duration
                 );
             }
@@ -1160,9 +1157,8 @@ PROJECT* CLIENT_STATE::find_project_with_overdue_results() {
 // 
 void CLIENT_STATE::request_work_fetch(const char* where) {
     if (log_flags.work_fetch_debug) {
-        msg_printf(0, MSG_INFO, "[work_fetch_debug] Request work fetch: %s", where);
+        msg_printf(0, MSG_INFO, "[wfd] Request work fetch: %s", where);
     }
     must_check_work_fetch = true;
 }
 
-const char *BOINC_RCSID_d35a4a7711 = "$Id: cs_scheduler.cpp 19327 2009-10-16 19:29:28Z romw $";
diff --git a/client/cs_statefile.cpp b/client/cs_statefile.cpp
index 568d2bd..6ef0cbd 100644
--- a/client/cs_statefile.cpp
+++ b/client/cs_statefile.cpp
@@ -29,6 +29,8 @@
 #include "util.h"
 #include "error_numbers.h"
 #include "filesys.h"
+
+#include "cs_proxy.h"
 #include "file_names.h"
 #include "client_msgs.h"
 #include "client_state.h"
@@ -375,7 +377,7 @@ int CLIENT_STATE::parse_state_file() {
             continue;
         }
         if (match_tag(buf, "<host_info>")) {
-            retval = host_info.parse(mf);
+            retval = host_info.parse(mf, true);
             if (retval) {
                 msg_printf(NULL, MSG_INTERNAL_ERROR,
                     "Can't parse host info in state file"
@@ -420,6 +422,10 @@ int CLIENT_STATE::parse_state_file() {
             run_mode.set(retval, 0);
             continue;
         }
+        if (parse_int(buf, "<user_gpu_request>", retval)) {
+            gpu_mode.set(retval, 0);
+            continue;
+        }
         if (parse_int(buf, "<user_network_request>", retval)) {
             network_mode.set(retval, 0);
             continue;
@@ -442,7 +448,7 @@ int CLIENT_STATE::parse_state_file() {
             continue;
         }
         if (match_tag(buf, "<proxy_info>")) {
-            retval = proxy_info.parse(mf);
+            retval = gui_proxy_info.parse(mf);
             if (retval) {
                 msg_printf(NULL, MSG_INTERNAL_ERROR,
                     "Can't parse proxy info in state file"
@@ -484,6 +490,24 @@ int CLIENT_STATE::parse_state_file() {
     }
     sort_results();
     fclose(f);
+    
+    // if total resource share is zero, set all shares to 1
+    //
+    if (projects.size()) {
+        unsigned int i;
+        double x=0;
+        for (i=0; i<projects.size(); i++) {
+            x += projects[i]->resource_share;
+        }
+        if (!x) {
+            msg_printf(NULL, MSG_USER_ERROR,
+                "All projects have zero resource share; setting to 100"
+            );
+            for (i=0; i<projects.size(); i++) {
+                projects[i]->resource_share = 100;
+            }
+        }
+    }
     return 0;
 }
 
@@ -634,7 +658,7 @@ int CLIENT_STATE::write_state(MIOFILE& f) {
     int retval;
 
     f.printf("<client_state>\n");
-    retval = host_info.write(f, false);
+    retval = host_info.write(f, false, false);
     if (retval) return retval;
     retval = time_stats.write(f, false);
     if (retval) return retval;
@@ -684,6 +708,7 @@ int CLIENT_STATE::write_state(MIOFILE& f) {
         "<core_client_minor_version>%d</core_client_minor_version>\n"
         "<core_client_release>%d</core_client_release>\n"
         "<user_run_request>%d</user_run_request>\n"
+        "<user_gpu_request>%d</user_gpu_request>\n"
         "<user_network_request>%d</user_network_request>\n"
         "%s"
         "<new_version_check_time>%f</new_version_check_time>\n"
@@ -693,6 +718,7 @@ int CLIENT_STATE::write_state(MIOFILE& f) {
         core_client_version.minor,
         core_client_version.release,
         run_mode.get_perm(),
+        gpu_mode.get_perm(),
         network_mode.get_perm(),
         cpu_benchmarks_pending?"<cpu_benchmarks_pending/>\n":"",
         new_version_check_time,
@@ -704,7 +730,9 @@ int CLIENT_STATE::write_state(MIOFILE& f) {
     for (i=1; i<platforms.size(); i++) {
         f.printf("<alt_platform>%s</alt_platform>\n", platforms[i].name.c_str());
     }
-    proxy_info.write(f);
+    if (gui_proxy_info.present) {
+        gui_proxy_info.write(f);
+    }
     if (strlen(main_host_venue)) {
         f.printf("<host_venue>%s</host_venue>\n", main_host_venue);
     }
@@ -838,7 +866,7 @@ int CLIENT_STATE::write_state_gui(MIOFILE& f) {
     // However, BoincView (which does its own parsing) expects it
     // to be in the get_state() reply, so leave it in for now
     //
-    retval = host_info.write(f, false);
+    retval = host_info.write(f, false, false);
     if (retval) return retval;
     retval = time_stats.write(f, false);
     if (retval) return retval;
@@ -934,4 +962,3 @@ int CLIENT_STATE::write_file_transfers_gui(MIOFILE& f) {
     return 0;
 }
 
-const char *BOINC_RCSID_375ec798cc = "$Id: cs_statefile.cpp 19318 2009-10-16 19:07:56Z romw $";
diff --git a/client/cs_trickle.cpp b/client/cs_trickle.cpp
index eec6c8e..e08d9f1 100644
--- a/client/cs_trickle.cpp
+++ b/client/cs_trickle.cpp
@@ -143,4 +143,3 @@ int CLIENT_STATE::handle_trickle_down(PROJECT* project, FILE* in) {
     return ERR_XML_PARSE;
 }
 
-const char *BOINC_RCSID_acbefbad3d = "$Id: cs_trickle.cpp 16128 2008-10-04 16:00:28Z davea $";
diff --git a/client/dhrystone.cpp b/client/dhrystone.cpp
index 878fd9c..eeff2c6 100644
--- a/client/dhrystone.cpp
+++ b/client/dhrystone.cpp
@@ -249,5 +249,3 @@ void Proc_5(DS_DATA& dd)
         Bool_Glob = FALSE;
 }
 
-
-const char *BOINC_RCSID_5107112def = "$Id: dhrystone.cpp 16069 2008-09-26 18:20:24Z davea $";
diff --git a/client/dhrystone2.cpp b/client/dhrystone2.cpp
index 10acc58..8cee2b7 100644
--- a/client/dhrystone2.cpp
+++ b/client/dhrystone2.cpp
@@ -123,6 +123,3 @@ bool Func_3(Enumeration Enum_Par_Val)
     return (false);
 }
 
-
-
-const char *BOINC_RCSID_20575a27a0 = "$Id: dhrystone2.cpp 16069 2008-09-26 18:20:24Z davea $";
diff --git a/client/file_names.cpp b/client/file_names.cpp
index 864fd17..6a0e2e4 100644
--- a/client/file_names.cpp
+++ b/client/file_names.cpp
@@ -36,6 +36,7 @@
 #include "error_numbers.h"
 #include "str_util.h"
 #include "str_replace.h"
+#include "url.h"
 #include "util.h"
 #include "client_msgs.h"
 #include "sandbox.h"
@@ -132,20 +133,24 @@ int make_project_dir(PROJECT& p) {
 #ifndef _WIN32
     mode_t old_mask;
     if (g_use_sandbox) {
-        old_mask = umask(2);     // Project directories must be world-readable
+        old_mask = umask(2);        // Allow writing by group
          chmod(PROJECTS_DIR,
             S_IRUSR|S_IWUSR|S_IXUSR
             |S_IRGRP|S_IWGRP|S_IXGRP
-            |S_IROTH|S_IXOTH
         );
         umask(old_mask);
+        // Only user boinc_master and group boinc_project can access 
+        // project directories, to keep authenticators private
+        set_to_project_group(PROJECTS_DIR);
     }
 #endif
     get_project_dir(&p, buf, sizeof(buf));
     retval = boinc_mkdir(buf);
 #ifndef _WIN32
     if (g_use_sandbox) {
-        old_mask = umask(2);     // Project directories must be world-readable
+        old_mask = umask(2);
+        // Contents of projects directory must be world-readable so BOINC Client can read 
+        // files written by projects which have user boinc_project and group boinc_project
         chmod(buf,
             S_IRUSR|S_IWUSR|S_IXUSR
             |S_IRGRP|S_IWGRP|S_IXGRP
@@ -184,20 +189,25 @@ int make_slot_dir(int slot) {
 #ifndef _WIN32
     mode_t old_mask;
     if (g_use_sandbox) {
-        old_mask = umask(2);     // Slot directories must be world-readable
+        old_mask = umask(2);        // Allow writing by group
         chmod(SLOTS_DIR,
             S_IRUSR|S_IWUSR|S_IXUSR
             |S_IRGRP|S_IWGRP|S_IXGRP
-            |S_IROTH|S_IXOTH
         );
         umask(old_mask);
+        // Only user boinc_master and group boinc_project can 
+        // access slot directories, to keep authenticators private
+        set_to_project_group(SLOTS_DIR);
     }
+
 #endif
     get_slot_dir(slot, buf, sizeof(buf));
     int retval = boinc_mkdir(buf);
 #ifndef _WIN32
     if (g_use_sandbox) {
-        old_mask = umask(2);     // Slot directories must be world-readable
+        old_mask = umask(2);
+        // Contents of slots directory must be world-readable so BOINC Client can read 
+        // files written by projects which have user boinc_project and group boinc_project
         chmod(buf,
             S_IRUSR|S_IWUSR|S_IXUSR
             |S_IRGRP|S_IWGRP|S_IXGRP
@@ -332,4 +342,3 @@ bool is_version_dir(char* buf, VERSION_INFO& vi) {
     return (n==3);
 }
 
-const char *BOINC_RCSID_7d362a6a52 = "$Id: file_names.cpp 18437 2009-06-16 20:54:44Z davea $";
diff --git a/client/file_xfer.cpp b/client/file_xfer.cpp
index 6c78ee4..b6d5971 100644
--- a/client/file_xfer.cpp
+++ b/client/file_xfer.cpp
@@ -89,6 +89,11 @@ int FILE_XFER::init_upload(FILE_INFO& file_info) {
         fip->upload_offset = 0;
     }
 
+    if (log_flags.file_xfer_debug) {
+        msg_printf(file_info.project, MSG_INFO,
+            "[fxd] starting upload, upload_offset %.0f", file_info.upload_offset
+        );
+    }
     if (file_info.upload_offset < 0) {
         bytes_xferred = 0;
         sprintf(header,
@@ -426,4 +431,3 @@ void FILE_XFER_SET::set_bandwidth_limits(bool is_upload) {
     }
 }
 
-const char *BOINC_RCSID_31ba21bea3 = "$Id: file_xfer.cpp 18786 2009-07-31 19:46:47Z davea $";
diff --git a/client/gui_http.cpp b/client/gui_http.cpp
index 0e9a768..2022d18 100644
--- a/client/gui_http.cpp
+++ b/client/gui_http.cpp
@@ -75,4 +75,3 @@ bool GUI_HTTP::poll() {
     return true;
 }
 
-const char *BOINC_RCSID_7c374a67d3="$Id: gui_http.cpp 18988 2009-09-02 15:33:06Z romw $";
diff --git a/client/gui_rpc_server.cpp b/client/gui_rpc_server.cpp
index 858d0cc..fbe207c 100644
--- a/client/gui_rpc_server.cpp
+++ b/client/gui_rpc_server.cpp
@@ -485,4 +485,3 @@ bool GUI_RPC_CONN_SET::quits_sent() {
     return true;
 }
 
-const char *BOINC_RCSID_88dd75dd85 = "$Id: gui_rpc_server.cpp 18440 2009-06-16 22:17:04Z davea $";
diff --git a/client/gui_rpc_server_ops.cpp b/client/gui_rpc_server_ops.cpp
index 8ab26b6..192b6d2 100644
--- a/client/gui_rpc_server_ops.cpp
+++ b/client/gui_rpc_server_ops.cpp
@@ -51,6 +51,7 @@
 #endif
 
 #include "str_util.h"
+#include "url.h"
 #include "client_state.h"
 #include "util.h"
 #include "error_numbers.h"
@@ -61,6 +62,7 @@
 #include "file_names.h"
 #include "client_msgs.h"
 #include "client_state.h"
+#include "cs_proxy.h"
 
 using std::string;
 using std::vector;
@@ -313,6 +315,27 @@ static void handle_set_run_mode(char* buf, MIOFILE& fout) {
     fout.printf("<success/>\n");
 }
 
+static void handle_set_gpu_mode(char* buf, MIOFILE& fout) {
+    double duration = 0;
+    int mode;
+    parse_double(buf, "<duration>", duration);
+    if (match_tag(buf, "<always")) {
+        mode = RUN_MODE_ALWAYS;
+    } else if (match_tag(buf, "<never")) {
+        mode = RUN_MODE_NEVER;
+    } else if (match_tag(buf, "<auto")) {
+        mode = RUN_MODE_AUTO;
+    } else if (match_tag(buf, "<restore")) {
+        mode = RUN_MODE_RESTORE;
+    } else {
+        fout.printf("<error>Missing mode</error>\n");
+        return;
+    }
+    gstate.gpu_mode.set(mode, duration);
+    gstate.request_schedule_cpus("GPU mode changed");
+    fout.printf("<success/>\n");
+}
+
 static void handle_set_network_mode(char* buf, MIOFILE& fout) {
     double duration = 0;
     int mode;
@@ -346,10 +369,13 @@ static void handle_run_benchmarks(char* , MIOFILE& fout) {
 static void handle_set_proxy_settings(char* buf, MIOFILE& fout) {
     MIOFILE in;
     in.init_buf_read(buf);
-    gstate.proxy_info.parse(in);
+    gui_proxy_info.parse(in);
+    if (!strlen(gui_proxy_info.http_server_name) && !strlen(gui_proxy_info.socks_server_name)) {
+        gui_proxy_info.present = false;
+    }
     gstate.set_client_state_dirty("Set proxy settings RPC");
     fout.printf("<success/>\n");
-    gstate.show_proxy_info();
+    select_proxy_info();
 
     // tell running apps to reread app_info file (for F at h)
     //
@@ -357,7 +383,7 @@ static void handle_set_proxy_settings(char* buf, MIOFILE& fout) {
 }
 
 static void handle_get_proxy_settings(char* , MIOFILE& fout) {
-    gstate.proxy_info.write(fout);
+    gui_proxy_info.write(fout);
 }
 
 // params:
@@ -504,7 +530,7 @@ static void handle_result_op(char* buf, MIOFILE& fout, const char* op) {
 }
 
 static void handle_get_host_info(char*, MIOFILE& fout) {
-    gstate.host_info.write(fout, false);
+    gstate.host_info.write(fout, false, true);
 }
 
 static void handle_get_screensaver_tasks(MIOFILE& fout) {
@@ -518,8 +544,7 @@ static void handle_get_screensaver_tasks(MIOFILE& fout) {
     for (i=0; i<gstate.active_tasks.active_tasks.size(); i++) {
         atp = gstate.active_tasks.active_tasks[i];
         if ((atp->task_state() == PROCESS_EXECUTING) || 
-                ((atp->task_state() == PROCESS_SUSPENDED) && 
-                        (gstate.suspend_reason & SUSPEND_REASON_CPU_USAGE_LIMIT))) {
+                ((atp->task_state() == PROCESS_SUSPENDED) && (gstate.suspend_reason == SUSPEND_REASON_CPU_THROTTLE))) {
             atp->result->write_gui(fout);
         }
     }
@@ -573,10 +598,13 @@ static void handle_get_cc_status(GUI_RPC_CONN* gr, MIOFILE& fout) {
         "   <task_suspend_reason>%d</task_suspend_reason>\n"
         "   <network_suspend_reason>%d</network_suspend_reason>\n"
         "   <task_mode>%d</task_mode>\n"
-        "   <network_mode>%d</network_mode>\n"
         "   <task_mode_perm>%d</task_mode_perm>\n"
-        "   <network_mode_perm>%d</network_mode_perm>\n"
         "   <task_mode_delay>%f</task_mode_delay>\n"
+        "   <gpu_mode>%d</gpu_mode>\n"
+        "   <gpu_mode_perm>%d</gpu_mode_perm>\n"
+        "   <gpu_mode_delay>%f</gpu_mode_delay>\n"
+        "   <network_mode>%d</network_mode>\n"
+        "   <network_mode_perm>%d</network_mode_perm>\n"
         "   <network_mode_delay>%f</network_mode_delay>\n"
         "   <disallow_attach>%d</disallow_attach>\n"
         "   <simple_gui_only>%ds</simple_gui_only>\n",
@@ -585,10 +613,13 @@ static void handle_get_cc_status(GUI_RPC_CONN* gr, MIOFILE& fout) {
         gstate.suspend_reason,
         gstate.network_suspend_reason,
         gstate.run_mode.get_current(),
-        gstate.network_mode.get_current(),
         gstate.run_mode.get_perm(),
-        gstate.network_mode.get_perm(),
         gstate.run_mode.delay(),
+        gstate.gpu_mode.get_current(),
+        gstate.gpu_mode.get_perm(),
+        gstate.gpu_mode.delay(),
+        gstate.network_mode.get_current(),
+        gstate.network_mode.get_perm(),
         gstate.network_mode.delay(),
         config.disallow_attach?1:0,
         config.simple_gui_only?1:0
@@ -953,10 +984,14 @@ static int set_debt(XML_PARSER& xp) {
             canonicalize_master_url(url);
             PROJECT* p = gstate.lookup_project(url);
             if (!p) return ERR_NOT_FOUND;
-            if (got_std) p->short_term_debt = short_term_debt;
-            if (got_ltd) p->cpu_pwf.debt = long_term_debt;
-            if (got_cuda_debt) p->cuda_pwf.debt = cuda_debt;
-            if (got_ati_debt) p->ati_pwf.debt = ati_debt;
+            if (got_std) {
+                p->cpu_pwf.short_term_debt = short_term_debt;
+                p->cuda_pwf.short_term_debt = short_term_debt;
+                p->ati_pwf.short_term_debt = short_term_debt;
+            }
+            if (got_ltd) p->cpu_pwf.long_term_debt = long_term_debt;
+            if (got_cuda_debt) p->cuda_pwf.long_term_debt = cuda_debt;
+            if (got_ati_debt) p->ati_pwf.long_term_debt = ati_debt;
             return 0;
         }
         if (xp.parse_str(tag, "master_url", url, sizeof(url))) continue;
@@ -1056,6 +1091,11 @@ static void handle_set_cc_config(char* buf, MIOFILE& fout) {
     );
 }
 
+// Some of the RPCs have empty-element request messages.
+// We accept both <foo/> and <foo></foo>
+//
+#define match_req(buf, tag) (match_tag(buf, "<" tag ">") || match_tag(buf, "<" tag "/>"))
+
 int GUI_RPC_CONN::handle_rpc() {
     char request_msg[4096];
     int n, retval=0;
@@ -1087,14 +1127,14 @@ int GUI_RPC_CONN::handle_rpc() {
     // - if we get an unexpected auth1 or auth2, disconnect
 
     mf.printf("<boinc_gui_rpc_reply>\n");
-    if (match_tag(request_msg, "<auth1")) {
+    if (match_req(request_msg, "auth1")) {
         if (got_auth1 && auth_needed) {
             retval = ERR_AUTHENTICATOR;
         } else {
             handle_auth1(mf);
             got_auth1 = true;
         }
-    } else if (match_tag(request_msg, "<auth2")) {
+    } else if (match_req(request_msg, "auth2")) {
         if ((!got_auth1 || got_auth2) && auth_needed) {
             retval = ERR_AUTHENTICATOR;
         } else {
@@ -1113,41 +1153,41 @@ int GUI_RPC_CONN::handle_rpc() {
     // sharing this computer (e.g. what jobs are running)
     // but not for anything sensitive (passwords etc.)
 
-    } else if (match_tag(request_msg, "<exchange_versions")) {
+    } else if (match_req(request_msg, "exchange_versions")) {
         handle_exchange_versions(mf);
-    } else if (match_tag(request_msg, "<get_state")) {
+    } else if (match_req(request_msg, "get_state")) {
         gstate.write_state_gui(mf);
-    } else if (match_tag(request_msg, "<get_results")) {
+    } else if (match_req(request_msg, "get_results")) {
         bool active_only = false;
         parse_bool(request_msg, "active_only", active_only);
         mf.printf("<results>\n");
         gstate.write_tasks_gui(mf, active_only);
         mf.printf("</results>\n");
-    } else if (match_tag(request_msg, "<get_screensaver_tasks")) {
+    } else if (match_req(request_msg, "get_screensaver_tasks")) {
         handle_get_screensaver_tasks(mf);
-    } else if (match_tag(request_msg, "<result_show_graphics")) {
+    } else if (match_req(request_msg, "result_show_graphics")) {
         handle_result_show_graphics(request_msg, mf);
-    } else if (match_tag(request_msg, "<get_file_transfers")) {
+    } else if (match_req(request_msg, "get_file_transfers")) {
         gstate.write_file_transfers_gui(mf);
-    } else if (match_tag(request_msg, "<get_simple_gui_info")) {
+    } else if (match_req(request_msg, "get_simple_gui_info")) {
         handle_get_simple_gui_info(mf);
-    } else if (match_tag(request_msg, "<get_project_status")) {
+    } else if (match_req(request_msg, "get_project_status")) {
         handle_get_project_status(mf);
-    } else if (match_tag(request_msg, "<get_disk_usage")) {
+    } else if (match_req(request_msg, "get_disk_usage")) {
         handle_get_disk_usage(mf);
-    } else if (match_tag(request_msg, "<get_messages")) {
+    } else if (match_req(request_msg, "get_messages")) {
         handle_get_messages(request_msg, mf);
-    } else if (match_tag(request_msg, "<get_message_count")) {
+    } else if (match_req(request_msg, "get_message_count")) {
         handle_get_message_count(request_msg, mf);
-    } else if (match_tag(request_msg, "<get_host_info")) {
+    } else if (match_req(request_msg, "get_host_info")) {
         handle_get_host_info(request_msg, mf);
-    } else if (match_tag(request_msg, "<get_statistics")) {
+    } else if (match_req(request_msg, "get_statistics")) {
         handle_get_statistics(request_msg, mf);
-    } else if (match_tag(request_msg, "<get_newer_version>")) {
+    } else if (match_req(request_msg, "get_newer_version")) {
         handle_get_newer_version(mf);
-    } else if (match_tag(request_msg, "<get_cc_status")) {
+    } else if (match_req(request_msg, "get_cc_status")) {
         handle_get_cc_status(this, mf);
-    } else if (match_tag(request_msg, "<get_all_projects_list/>")) {
+    } else if (match_req(request_msg, "get_all_projects_list")) {
         read_all_projects_list_file(mf);
 
     // Operations that require authentication start here
@@ -1158,64 +1198,66 @@ int GUI_RPC_CONN::handle_rpc() {
             retval = ERR_AUTHENTICATOR;
         }
         sent_unauthorized = true;
-    } else if (match_tag(request_msg, "<project_nomorework")) {
+    } else if (match_req(request_msg, "project_nomorework")) {
          handle_project_op(request_msg, mf, "nomorework");
-     } else if (match_tag(request_msg, "<project_allowmorework")) {
+     } else if (match_req(request_msg, "project_allowmorework")) {
          handle_project_op(request_msg, mf, "allowmorework");
-    } else if (match_tag(request_msg, "<project_detach_when_done")) {
+    } else if (match_req(request_msg, "project_detach_when_done")) {
          handle_project_op(request_msg, mf, "detach_when_done");
-    } else if (match_tag(request_msg, "<project_dont_detach_when_done")) {
+    } else if (match_req(request_msg, "project_dont_detach_when_done")) {
          handle_project_op(request_msg, mf, "dont_detach_when_done");
-    } else if (match_tag(request_msg, "<set_network_mode")) {
+    } else if (match_req(request_msg, "set_network_mode")) {
         handle_set_network_mode(request_msg, mf);
-    } else if (match_tag(request_msg, "<run_benchmarks")) {
+    } else if (match_req(request_msg, "run_benchmarks")) {
         handle_run_benchmarks(request_msg, mf);
-    } else if (match_tag(request_msg, "<get_proxy_settings")) {
+    } else if (match_req(request_msg, "get_proxy_settings")) {
         handle_get_proxy_settings(request_msg, mf);
-    } else if (match_tag(request_msg, "<set_proxy_settings")) {
+    } else if (match_req(request_msg, "set_proxy_settings")) {
         handle_set_proxy_settings(request_msg, mf);
-    } else if (match_tag(request_msg, "<network_available")) {
+    } else if (match_req(request_msg, "network_available")) {
         handle_network_available(request_msg, mf);
-    } else if (match_tag(request_msg, "<abort_file_transfer")) {
+    } else if (match_req(request_msg, "abort_file_transfer")) {
         handle_file_transfer_op(request_msg, mf, "abort");
-    } else if (match_tag(request_msg, "<project_detach")) {
+    } else if (match_req(request_msg, "project_detach")) {
         handle_project_op(request_msg, mf, "detach");
-    } else if (match_tag(request_msg, "<abort_result")) {
+    } else if (match_req(request_msg, "abort_result")) {
         handle_result_op(request_msg, mf, "abort");
-    } else if (match_tag(request_msg, "<suspend_result")) {
+    } else if (match_req(request_msg, "suspend_result")) {
         handle_result_op(request_msg, mf, "suspend");
-    } else if (match_tag(request_msg, "<resume_result")) {
+    } else if (match_req(request_msg, "resume_result")) {
         handle_result_op(request_msg, mf, "resume");
-    } else if (match_tag(request_msg, "<project_suspend")) {
+    } else if (match_req(request_msg, "project_suspend")) {
         handle_project_op(request_msg, mf, "suspend");
-    } else if (match_tag(request_msg, "<project_resume")) {
+    } else if (match_req(request_msg, "project_resume")) {
         handle_project_op(request_msg, mf, "resume");
-    } else if (match_tag(request_msg, "<set_run_mode")) {
+    } else if (match_req(request_msg, "set_run_mode")) {
         handle_set_run_mode(request_msg, mf);
-    } else if (match_tag(request_msg, "<quit")) {
+    } else if (match_req(request_msg, "set_gpu_mode")) {
+        handle_set_gpu_mode(request_msg, mf);
+    } else if (match_req(request_msg, "quit")) {
         handle_quit(request_msg, mf);
-    } else if (match_tag(request_msg, "<acct_mgr_info")) {
+    } else if (match_req(request_msg, "acct_mgr_info")) {
         handle_acct_mgr_info(request_msg, mf);
-    } else if (match_tag(request_msg, "<read_global_prefs_override/>")) {
+    } else if (match_req(request_msg, "read_global_prefs_override")) {
         mf.printf("<success/>\n");
         gstate.read_global_prefs();
         gstate.request_schedule_cpus("Preferences override");
         gstate.request_work_fetch("Preferences override");
-    } else if (match_tag(request_msg, "<get_project_init_status")) {
+    } else if (match_req(request_msg, "get_project_init_status")) {
         handle_get_project_init_status(request_msg, mf);
-    } else if (match_tag(request_msg, "<get_global_prefs_file")) {
+    } else if (match_req(request_msg, "get_global_prefs_file")) {
         handle_get_global_prefs_file(mf);
-    } else if (match_tag(request_msg, "<get_global_prefs_working")) {
+    } else if (match_req(request_msg, "get_global_prefs_working")) {
         handle_get_global_prefs_working(mf);
-    } else if (match_tag(request_msg, "<get_global_prefs_override")) {
+    } else if (match_req(request_msg, "get_global_prefs_override")) {
         handle_get_global_prefs_override(mf);
-    } else if (match_tag(request_msg, "<set_global_prefs_override")) {
+    } else if (match_req(request_msg, "set_global_prefs_override")) {
         handle_set_global_prefs_override(request_msg, mf);
-    } else if (match_tag(request_msg, "<get_cc_config")) {
+    } else if (match_req(request_msg, "get_cc_config")) {
         handle_get_cc_config(mf);
-    } else if (match_tag(request_msg, "<set_cc_config")) {
+    } else if (match_req(request_msg, "set_cc_config")) {
         handle_set_cc_config(request_msg, mf);
-    } else if (match_tag(request_msg, "<read_cc_config/>")) {
+    } else if (match_req(request_msg, "read_cc_config")) {
         mf.printf("<success/>\n");
         read_config_file(false);
         msg_printf(0, MSG_INFO, "Re-read config file");
@@ -1224,7 +1266,7 @@ int GUI_RPC_CONN::handle_rpc() {
         gstate.set_ncpus();
         gstate.request_schedule_cpus("Core client configuration");
         gstate.request_work_fetch("Core client configuration");
-    } else if (match_tag(request_msg, "<set_debts")) {
+    } else if (match_req(request_msg, "set_debts")) {
         handle_set_debts(request_msg, mf);
     } else {
 
@@ -1236,31 +1278,31 @@ int GUI_RPC_CONN::handle_rpc() {
         double saved_time = gstate.gui_rpcs.time_of_last_rpc_needing_network;
         gstate.gui_rpcs.time_of_last_rpc_needing_network = gstate.now;
 
-        if (match_tag(request_msg, "<retry_file_transfer")) {
+        if (match_req(request_msg, "retry_file_transfer")) {
             handle_file_transfer_op(request_msg, mf, "retry");
-        } else if (match_tag(request_msg, "<project_reset")) {
+        } else if (match_req(request_msg, "project_reset")) {
             handle_project_op(request_msg, mf, "reset");
-        } else if (match_tag(request_msg, "<project_update")) {
+        } else if (match_req(request_msg, "project_update")) {
             handle_project_op(request_msg, mf, "update");
-        } else if (match_tag(request_msg, "<get_project_config>")) {
+        } else if (match_req(request_msg, "get_project_config")) {
             handle_get_project_config(request_msg, mf);
-        } else if (match_tag(request_msg, "<get_project_config_poll")) {
+        } else if (match_req(request_msg, "get_project_config_poll")) {
             handle_get_project_config_poll(request_msg, mf);
-        } else if (match_tag(request_msg, "<lookup_account>")) {
+        } else if (match_req(request_msg, "lookup_account")) {
             handle_lookup_account(request_msg, mf);
-        } else if (match_tag(request_msg, "<lookup_account_poll")) {
+        } else if (match_req(request_msg, "lookup_account_poll")) {
             handle_lookup_account_poll(request_msg, mf);
-        } else if (match_tag(request_msg, "<create_account>")) {
+        } else if (match_req(request_msg, "create_account")) {
             handle_create_account(request_msg, mf);
-        } else if (match_tag(request_msg, "<create_account_poll")) {
+        } else if (match_req(request_msg, "create_account_poll")) {
             handle_create_account_poll(request_msg, mf);
-        } else if (match_tag(request_msg, "<project_attach>")) {
+        } else if (match_req(request_msg, "project_attach")) {
             handle_project_attach(request_msg, mf);
-        } else if (match_tag(request_msg, "<project_attach_poll")) {
+        } else if (match_req(request_msg, "project_attach_poll")) {
             handle_project_attach_poll(request_msg, mf);
-        } else if (match_tag(request_msg, "<acct_mgr_rpc>")) {
+        } else if (match_req(request_msg, "acct_mgr_rpc")) {
             handle_acct_mgr_rpc(request_msg, mf);
-        } else if (match_tag(request_msg, "<acct_mgr_rpc_poll")) {
+        } else if (match_req(request_msg, "acct_mgr_rpc_poll")) {
             handle_acct_mgr_rpc_poll(request_msg, mf);
 
         // DON'T JUST ADD NEW RPCS HERE - THINK ABOUT THEIR
@@ -1287,4 +1329,4 @@ int GUI_RPC_CONN::handle_rpc() {
     }
     return retval;
 }
-const char *BOINC_RCSID_7bf15dcb49="$Id: gui_rpc_server_ops.cpp 19319 2009-10-16 19:10:05Z romw $";
+
diff --git a/client/hostinfo_network.cpp b/client/hostinfo_network.cpp
index 7ae3b32..0807e39 100644
--- a/client/hostinfo_network.cpp
+++ b/client/hostinfo_network.cpp
@@ -117,5 +117,3 @@ void HOST_INFO::generate_host_cpid() {
 #endif
 }
 
-
-const char *BOINC_RCSID_9275b20aa5 = "$Id: hostinfo_network.cpp 18658 2009-07-22 18:41:02Z davea $";
diff --git a/client/hostinfo_unix.cpp b/client/hostinfo_unix.cpp
index b77b4d0..b35aeea 100644
--- a/client/hostinfo_unix.cpp
+++ b/client/hostinfo_unix.cpp
@@ -1396,4 +1396,3 @@ bool HOST_INFO::users_idle(bool check_all_logins, double idle_time_to_run) {
 
 #endif  // ! __APPLE__
 
-const char *BOINC_RCSID_2cf92d205b = "$Id: hostinfo_unix.cpp 18437 2009-06-16 20:54:44Z davea $";
diff --git a/client/hostinfo_win.cpp b/client/hostinfo_win.cpp
index 2266e4f..dacae15 100644
--- a/client/hostinfo_win.cpp
+++ b/client/hostinfo_win.cpp
@@ -37,28 +37,6 @@ HINSTANCE g_hClientLibraryDll;
 #endif
 
 
-// Newer processor features than what is currently defined in
-//   Visual Studio 2003
-#ifndef PF_SSE_DAZ_MODE_AVAILABLE
-#define PF_SSE_DAZ_MODE_AVAILABLE               11   
-#endif
-#ifndef PF_NX_ENABLED
-#define PF_NX_ENABLED                           12   
-#endif
-#ifndef PF_SSE3_INSTRUCTIONS_AVAILABLE
-#define PF_SSE3_INSTRUCTIONS_AVAILABLE          13   
-#endif
-#ifndef PF_COMPARE_EXCHANGE128
-#define PF_COMPARE_EXCHANGE128                  14   
-#endif
-#ifndef PF_COMPARE64_EXCHANGE128
-#define PF_COMPARE64_EXCHANGE128                15   
-#endif
-#ifndef PF_CHANNELS_ENABLED
-#define PF_CHANNELS_ENABLED                     16
-#endif
-
-
 // Newer product types than what is currently defined in
 //   Visual Studio 2005
 #ifndef PRODUCT_ULTIMATE
@@ -615,126 +593,237 @@ int get_os_information(
 }
 
 
-// Returns the processor make, model, and additional cpu flags supported by
-//   the processor, use the Linux CPU processor feature descriptions.
-//
-int get_processor_info(
-    char* p_vendor, int p_vendor_size, char* p_model, int p_model_size,
-    char* p_features, int p_features_size, double& p_cache
-)
-{
-    int CPUInfo[4] = {-1};
-	char vendorName[256], processorName[256], identifierName[256], capabilities[256], temp_model[256];
-	HKEY hKey = NULL;
-	LONG retval = 0;
-	DWORD nameSize = 0, procSpeed = 0;
-	bool gotIdent = false, gotProcName = false, gotMHz = false, gotVendIdent = false;
-
-    strcpy(vendorName, "");
-    strcpy(processorName, "");
-    strcpy(capabilities, "");
-    strcpy(temp_model, "");
-
-    // determine what the cpu's capabilities are
-    if (!IsProcessorFeaturePresent(PF_FLOATING_POINT_EMULATED)) {
-        strncat(capabilities, "fpu ", sizeof(capabilities) - strlen(capabilities));
-    }
-    if (IsProcessorFeaturePresent(PF_RDTSC_INSTRUCTION_AVAILABLE)) {
-        strncat(capabilities, "tsc ", sizeof(capabilities) - strlen(capabilities));
+// Handle the cpuid instruction on supported compilers
+// NOTE: This only handles structured exceptions with Microsoft compilers.
+// 
+int get_cpuid(int info_type, int& a, int& b, int& c, int& d) {
+
+#ifdef _MSC_VER
+
+    // Microsoft compiler - use intrinsic
+    int retval = 1;
+    int CPUInfo[4] = {0,0,0,0};
+
+    __try {
+        __cpuid(CPUInfo, info_type);
+
+        a = CPUInfo[0];
+        b = CPUInfo[1];
+        c = CPUInfo[2];
+        d = CPUInfo[3];
+
+        retval = 0;
     }
-    if (IsProcessorFeaturePresent(PF_PAE_ENABLED)) {
-        strncat(capabilities, "pae ", sizeof(capabilities) - strlen(capabilities));
+    __except (EXCEPTION_EXECUTE_HANDLER) {}
+    return retval;
+
+#elif defined(__GNUC__)
+
+    // GCC compiler
+    __asm__ __volatile__ ("cpuid": "=a" (ax), "=b" (bx), "=c" (cx), "=d" (dx) : "a" (info_type));
+    return 0;
+
+#else
+    return 1;
+#endif
+}
+
+
+// Returns the processor vendor.
+// see: http://msdn.microsoft.com/en-us/library/hskdteyh.aspx
+// see: http://www.intel.com/Assets/PDF/appnote/241618.pdf
+// see: http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/25481.pdf
+int get_processor_vendor(char* name, int name_size) {
+    int eax, ebx, ecx, edx;
+
+    if (name_size < 13) return 1;
+
+    memset(name, 0, sizeof(name_size));
+
+    if (!get_cpuid(0x00000000, eax, ebx, ecx, edx)) {
+        *((int*)(name + 0)) = ebx;
+        *((int*)(name + 4)) = edx;
+        *((int*)(name + 8)) = ecx;
+        *((int*)(name + 12)) = '\0';
     }
-    if (IsProcessorFeaturePresent(PF_NX_ENABLED)) {
-        strncat(capabilities, "nx ", sizeof(capabilities) - strlen(capabilities));
+    return 0;
+}
+
+
+// Returns the processor family, model, stepping.
+// see: http://msdn.microsoft.com/en-us/library/hskdteyh.aspx
+// see: http://www.intel.com/Assets/PDF/appnote/241618.pdf
+// see: http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/25481.pdf
+int get_processor_version(int& family, int& model, int& stepping) {
+    int eax, ebx, ecx, edx;
+
+    if (!get_cpuid(0x00000001, eax, ebx, ecx, edx)) {
+        family = (((eax >> 8) + (eax >> 20)) & 0xff);
+        model = (((((eax >> 16) & 0xf) << 4) + ((eax >> 4) & 0xf)) & 0xff);
+        stepping = (eax & 0xf);
     }
-    if (IsProcessorFeaturePresent(PF_XMMI_INSTRUCTIONS_AVAILABLE)) {
-        strncat(capabilities, "sse ", sizeof(capabilities) - strlen(capabilities));
+    return 0;
+}
+
+
+// Returns the processor name.
+// see: http://msdn.microsoft.com/en-us/library/hskdteyh.aspx
+// see: http://www.intel.com/Assets/PDF/appnote/241618.pdf
+// see: http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/25481.pdf
+int get_processor_name(char* name, int name_size) {
+    int eax, ebx, ecx, edx, i;
+
+    if (name_size < 48) return 1;
+
+    memset(name, 0, sizeof(name_size));
+
+    if (!get_cpuid(0x80000002, eax, ebx, ecx, edx)) {
+        *((int*)(name + 0))  = eax;
+        *((int*)(name + 4))  = ebx;
+        *((int*)(name + 8))  = ecx;
+        *((int*)(name + 12)) = edx;
     }
-    if (IsProcessorFeaturePresent(PF_XMMI64_INSTRUCTIONS_AVAILABLE)) {
-        strncat(capabilities, "sse2 ", sizeof(capabilities) - strlen(capabilities));
+    if (!get_cpuid(0x80000003, eax, ebx, ecx, edx)) {
+        *((int*)(name + 16)) = eax;
+        *((int*)(name + 20)) = ebx;
+        *((int*)(name + 24)) = ecx;
+        *((int*)(name + 28)) = edx;
     }
-    if (IsProcessorFeaturePresent(PF_SSE3_INSTRUCTIONS_AVAILABLE)) {
-        strncat(capabilities, "pni ", sizeof(capabilities) - strlen(capabilities));
+    if (!get_cpuid(0x80000004, eax, ebx, ecx, edx)) {
+        *((int*)(name + 32)) = eax;
+        *((int*)(name + 36)) = ebx;
+        *((int*)(name + 40)) = ecx;
+        *((int*)(name + 44)) = edx;
     }
-    if (IsProcessorFeaturePresent(PF_3DNOW_INSTRUCTIONS_AVAILABLE)) {
-        strncat(capabilities, "3dnow ", sizeof(capabilities) - strlen(capabilities));
+
+    // Old processors contain junk in the brand string, Intel's documentation
+    // doesn't mention this at all.  So before returning, change all non-ascii
+    // characters to spaces.
+    for (i = 0; i < strlen(name); i++) {
+        if (!isprint(*(name + i))) {
+            *(name + i) = ' ';
+        }
     }
-    if (IsProcessorFeaturePresent(PF_MMX_INSTRUCTIONS_AVAILABLE)) {
-        strncat(capabilities, "mmx ", sizeof(capabilities) - strlen(capabilities));
+
+    return 0;
+}
+
+
+// Returns the processor cache.
+// see: http://msdn.microsoft.com/en-us/library/hskdteyh.aspx
+// see: http://www.intel.com/Assets/PDF/appnote/241618.pdf
+// see: http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/25481.pdf
+int get_processor_cache(int& cache) {
+    int eax, ebx, ecx, edx;
+
+    if (!get_cpuid(0x80000006, eax, ebx, ecx, edx)) {
+        cache = ((ecx >> 16) & 0xffff) * 1024;
     }
-    strip_whitespace(capabilities);
+    return 0;
+}
 
 
-#ifndef __CYGWIN__
-    // determine CPU cache size
-    // see: http://msdn.microsoft.com/en-us/library/hskdteyh(VS.80).aspx
-    __cpuid(CPUInfo, 0x80000006);
-    p_cache = (double)((CPUInfo[2] >> 16) & 0xffff) * 1024;
-#endif
-
-
-	retval = RegOpenKeyEx(HKEY_LOCAL_MACHINE, "Hardware\\Description\\System\\CentralProcessor\\0", 0, KEY_QUERY_VALUE, &hKey);
-	if(retval == ERROR_SUCCESS) {
-        // Win9x and WinNT store different information in these field.
-        // NT Examples:
-        //     ProcessorNameString: Intel(R) Xeon(TM) CPU 3.06GHz
-        //     Identifier: x86 Family 15 Model 2 Stepping 7
-        //     VendorIdentifier: GenuineIntel
-        //     ~MHz: 3056
-        // 9X Examples:
-        //     ProcessorNameString: <Not Defined>
-        //     Identifier: Pentium(r) Processor
-        //     ~MHz: <Not Defined>
-        //     VendorIdentifier: GenuineIntel
-
-        // Look in various places for processor information, add'l
-		// entries suggested by mark mcclure
-		nameSize = sizeof(vendorName);
-		retval = RegQueryValueEx(hKey, "VendorIdentifier", NULL, NULL, (LPBYTE)vendorName, &nameSize);
-		if (retval == ERROR_SUCCESS) gotVendIdent = true;
-
-		nameSize = sizeof(identifierName);
-		retval = RegQueryValueEx(hKey, "Identifier", NULL, NULL, (LPBYTE)identifierName, &nameSize);
-		if (retval == ERROR_SUCCESS) gotIdent = true;
-
-		nameSize = sizeof(processorName);
-		retval = RegQueryValueEx(hKey, "ProcessorNameString", NULL, NULL, (LPBYTE)processorName, &nameSize);
-		if (retval == ERROR_SUCCESS) gotProcName = true;
-
-		nameSize = sizeof(DWORD);
-		retval = RegQueryValueEx(hKey, "~MHz", NULL, NULL, (LPBYTE)&procSpeed, &nameSize);
-		if (retval == ERROR_SUCCESS) gotMHz = true;
-	}
+// Returns the features supported by the processor, use the 
+// Linux CPU processor feature mnemonics.
+// see: http://msdn.microsoft.com/en-us/library/hskdteyh.aspx
+// see: http://www.intel.com/Assets/PDF/appnote/241618.pdf
+// see: http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/25481.pdf
+#define FEATURE_TEST(test, feature_name) \
+    if (test) strncat(features, feature_name, features_size - strlen(features))
 
-    // populate vendor field.
-    if (gotVendIdent) {
-        strlcpy( p_vendor, vendorName, p_vendor_size );
-    } else {
-        strlcpy( p_vendor, "Unknown", p_vendor_size );
+int get_processor_features(char* vendor, char* features, int features_size) {
+    int std_eax, std_ebx, std_ecx, std_edx;
+    int ext_eax, ext_ebx, ext_ecx, ext_edx;
+    int std_supported = 0, ext_supported = 0, intel_supported = 0, amd_supported = 0;
+
+    memset(features, 0, sizeof(features_size));
+
+    if (!get_cpuid(0x00000001, std_eax, std_ebx, std_ecx, std_edx)) {
+        std_supported = 1;
+    }
+    if (!get_cpuid(0x80000001, ext_eax, ext_ebx, ext_ecx, ext_edx)) {
+        ext_supported = 1;
+    }
+    if (strcmp(vendor, "GenuineIntel") == 0) {
+        intel_supported = 1;
+    }
+    if (strcmp(vendor, "AuthenticAMD") == 0) {
+        amd_supported = 1;
     }
 
-    // construct the human readable model name
-    if (gotProcName) {
-        strlcpy( temp_model, processorName, sizeof(temp_model) );
-    } else if (gotIdent && gotMHz) {
-        sprintf( temp_model, "%s %dMHz", identifierName, procSpeed );
-    } else if (gotVendIdent && gotMHz) {
-        sprintf( temp_model, "%s %dMHz", vendorName, procSpeed );
-    } else if (gotIdent) {
-        strlcpy( temp_model, identifierName, sizeof(temp_model) );
-    } else if (gotVendIdent) {
-        strlcpy( temp_model, vendorName, sizeof(temp_model) );
-    } else {
-        strlcpy( temp_model, "Unknown", sizeof(temp_model) );
+    FEATURE_TEST((std_edx & (1 << 0)), "fpu ");
+    FEATURE_TEST((std_edx & (1 << 1)), "vme ");
+    FEATURE_TEST((std_edx & (1 << 2)), "de ");
+    FEATURE_TEST((std_edx & (1 << 3)), "pse ");
+    FEATURE_TEST((std_edx & (1 << 4)), "tsc ");
+    FEATURE_TEST((std_edx & (1 << 5)), "msr ");
+    FEATURE_TEST((std_edx & (1 << 6)), "pae ");
+    FEATURE_TEST((std_edx & (1 << 7)), "mce ");
+    FEATURE_TEST((std_edx & (1 << 8)), "cx8 ");
+    FEATURE_TEST((std_edx & (1 << 9)), "apic ");
+    FEATURE_TEST((std_edx & (1 << 11)), "sep ");
+    FEATURE_TEST((std_edx & (1 << 12)), "mtrr ");
+    FEATURE_TEST((std_edx & (1 << 13)), "pge ");
+    FEATURE_TEST((std_edx & (1 << 14)), "mca ");
+    FEATURE_TEST((std_edx & (1 << 15)), "cmov ");
+    FEATURE_TEST((std_edx & (1 << 16)), "pat ");
+    FEATURE_TEST((std_edx & (1 << 17)), "pse36 ");
+    FEATURE_TEST((std_edx & (1 << 18)), "psn ");
+    FEATURE_TEST((std_edx & (1 << 19)), "clflush ");
+    FEATURE_TEST((std_edx & (1 << 21)), "dts ");
+    FEATURE_TEST((std_edx & (1 << 22)), "acpi ");
+    FEATURE_TEST((std_edx & (1 << 23)), "mmx ");
+    FEATURE_TEST((std_edx & (1 << 24)), "fxsr ");
+    FEATURE_TEST((std_edx & (1 << 25)), "sse ");
+    FEATURE_TEST((std_edx & (1 << 26)), "sse2 ");
+    FEATURE_TEST((std_edx & (1 << 27)), "ss ");
+    FEATURE_TEST((std_edx & (1 << 28)), "htt ");
+    FEATURE_TEST((std_edx & (1 << 29)), "tm ");
+
+    FEATURE_TEST((std_ecx & (1 << 0)), "pni ");
+    FEATURE_TEST((std_ecx & (1 << 9)), "ssse3 ");
+    FEATURE_TEST((std_ecx & (1 << 13)), "cx16 ");
+    FEATURE_TEST((std_ecx & (1 << 19)), "sse4_1 ");
+    FEATURE_TEST((std_ecx & (1 << 20)), "sse4_2 ");
+
+    FEATURE_TEST((ext_edx & (1 << 11)), "syscall ");
+    FEATURE_TEST((ext_edx & (1 << 20)), "nx ");
+    FEATURE_TEST((ext_edx & (1 << 29)), "lm ");
+
+    if (intel_supported) {
+        // Intel only features
+        FEATURE_TEST((std_ecx & (1 << 5)), "vmx ");
+        FEATURE_TEST((std_ecx & (1 << 6)), "smx ");
+        FEATURE_TEST((std_ecx & (1 << 8)), "tm2 ");
+		FEATURE_TEST((std_ecx & (1 << 12)), "fma ");
+        FEATURE_TEST((std_ecx & (1 << 18)), "dca ");
+		FEATURE_TEST((std_ecx & (1 << 22)), "movebe ");
+        FEATURE_TEST((std_ecx & (1 << 23)), "popcnt ");
+		FEATURE_TEST((std_ecx & (1 << 25)), "aes ");
+
+        FEATURE_TEST((std_edx & (1 << 31)), "pbe ");
     }
 
-    // Merge all the seperate pieces of information into one.
-    snprintf(p_model, p_model_size, "%s [%s]", temp_model, identifierName);
-    p_model[p_model_size-1] = 0;
-    strlcpy(p_features, capabilities, p_features_size);
+    if (amd_supported) {
+        // AMD only features
+		FEATURE_TEST((ext_ecx & (1 << 2)), "svm ");
+        FEATURE_TEST((ext_ecx & (1 << 6)), "sse4a ");
+        FEATURE_TEST((ext_ecx & (1 << 9)), "osvw "); 
+ 		FEATURE_TEST((ext_ecx & (1 << 10)), "ibs ");
+		FEATURE_TEST((ext_ecx & (1 << 11)), "xop ");
+		FEATURE_TEST((ext_ecx & (1 << 12)), "skinit ");
+		FEATURE_TEST((ext_ecx & (1 << 13)), "wdt ");
+        FEATURE_TEST((ext_ecx & (1 << 15)), "lwp ");
+		FEATURE_TEST((ext_ecx & (1 << 16)), "fma4 ");
+        FEATURE_TEST((ext_ecx & (1 << 18)), "cvt16 ");
+
+		FEATURE_TEST((ext_edx & (1 << 26)), "page1gb ");
+		FEATURE_TEST((ext_edx & (1 << 27)), "rdtscp ");
+        FEATURE_TEST((ext_edx & (1 << 30)), "3dnowext ");
+        FEATURE_TEST((ext_edx & (1 << 31)), "3dnow ");
+    }
 
-	RegCloseKey(hKey);
+    strip_whitespace(features);
 
     return 0;
 }
@@ -752,6 +841,45 @@ int get_processor_count(int& processor_count) {
 }
 
 
+// Returns the processor make, model, and additional cpu flags supported by
+//   the processor, use the Linux CPU processor feature descriptions.
+//
+int get_processor_info(
+    char* p_vendor, int p_vendor_size, char* p_model, int p_model_size,
+    char* p_features, int p_features_size, double& p_cache, int& p_ncpus
+)
+{
+    int family = 0, model = 0, stepping = 0, cache = 0;
+    char vendor_name[256], processor_name[256], features[256];
+
+    get_processor_vendor(vendor_name, sizeof(vendor_name));
+    get_processor_version(family, model, stepping);
+    get_processor_name(processor_name, sizeof(processor_name));
+    get_processor_cache(cache);
+    get_processor_features(vendor_name, features, sizeof(features));
+    get_processor_count(p_ncpus);
+
+    snprintf(p_vendor, p_vendor_size,
+        "%s", 
+        vendor_name
+    );
+
+    snprintf(p_model, p_model_size,
+        "%s [Family %d Model %d Stepping %d]", 
+        processor_name, family, model, stepping
+    );
+
+    snprintf(p_features, p_features_size,
+        "%s", 
+        features
+    );
+
+    p_cache = (double)cache;
+
+    return 0;
+}
+
+
 // Gets host information; called on startup and before each sched RPC
 //
 int HOST_INFO::get_host_info() {
@@ -765,9 +893,9 @@ int HOST_INFO::get_host_info() {
         p_vendor, sizeof(p_vendor),
         p_model, sizeof(p_model),
         p_features, sizeof(p_features),
-        m_cache
+        m_cache,
+        p_ncpus
     );
-    get_processor_count(p_ncpus);
     get_local_network_info();
     if (!strlen(host_cpid)) {
         generate_host_cpid();
@@ -803,7 +931,5 @@ bool HOST_INFO::users_idle(bool /*check_all_logins*/, double idle_time_to_run) {
         return seconds_idle > seconds_time_to_run;
     }
 
-    return false;
 }
 
-const char *BOINC_RCSID_37fbd07edd = "$Id: hostinfo_win.cpp 19200 2009-09-28 16:13:55Z romw $";
diff --git a/client/http_curl.cpp b/client/http_curl.cpp
index c8b54a6..3e1736d 100644
--- a/client/http_curl.cpp
+++ b/client/http_curl.cpp
@@ -37,6 +37,7 @@
 #include "log_flags.h"
 #include "str_util.h"
 #include "str_replace.h"
+#include "url.h"
 #include "util.h"
 
 #include "network.h"
@@ -44,6 +45,8 @@
 #include "client_msgs.h"
 #include "base64.h"
 #include "client_state.h"
+#include "cs_proxy.h"
+
 #include "http_curl.h"
 
 using std::min;
@@ -52,67 +55,157 @@ using std::vector;
 static CURLM* g_curlMulti = NULL;
 static char g_user_agent_string[256] = {""};
 static const char g_content_type[] = {"Content-Type: application/x-www-form-urlencoded"};
+static unsigned int g_trace_count = 0;
 
+char* get_user_agent_string() {
+    sprintf(g_user_agent_string, "BOINC client (%s %d.%d.%d)",
+        gstate.get_primary_platform(),
+        BOINC_MAJOR_VERSION, BOINC_MINOR_VERSION, BOINC_RELEASE
+    );
+    return (char*)&g_user_agent_string;
+}
 
-// Breaks a URL down into its protocol, server, port and file components
-// format of url:
-// [http[s]://]host.dom.dom[:port][/dir/file]
-// [socks]://]host.dom.dom[:port][/dir/file]
-//
-void parse_url(const char* url, int &protocol, char* host, int &port, char* file) {
-    char* p;
-    char buf[256];
-
-    // strip off the protocol if present
+size_t libcurl_write(void *ptr, size_t size, size_t nmemb, HTTP_OP* phop) {
+    // take the stream param as a FILE* and write to disk
+    // TODO: maybe assert stRead == size*nmemb,
+    // add exception handling on phop members
     //
-    if (strncmp(url, "http://", 7) == 0) {
-        safe_strcpy(buf, url+7);
-        protocol = URL_PROTOCOL_HTTP;
-    } else if (strncmp(url, "https://", 8) == 0) {
-        safe_strcpy(buf, url+8);
-        protocol = URL_PROTOCOL_HTTPS;
-    } else if (strncmp(url, "socks://", 8) == 0) {
-        safe_strcpy(buf, url+8);
-        protocol = URL_PROTOCOL_SOCKS;
-    } else {
-        safe_strcpy(buf, url);
-        protocol = URL_PROTOCOL_UNKNOWN;
+    size_t stWrite = fwrite(ptr, size, nmemb, phop->fileOut);
+    if (log_flags.http_xfer_debug) {
+        msg_printf(NULL, MSG_INFO,
+            "[http_xfer_debug] [ID#%d] HTTP: wrote %d bytes", phop->trace_id, (int)stWrite
+        );
     }
+    phop->bytes_xferred += (double)(stWrite);
+    phop->update_speed();  // this should update the transfer speed
+    return stWrite;
+}
+
+size_t libcurl_read( void *ptr, size_t size, size_t nmemb, HTTP_OP* phop) {
+    // OK here's the deal -- phop points to the calling object,
+    // which has already pre-opened the file.  we'll want to
+    // use pByte as a pointer for fseek calls into the file, and
+    // write out size*nmemb # of bytes to ptr
 
-    // parse and strip off file part if present
+    // take the stream param as a FILE* and write to disk
+    // if (pByte) delete [] pByte;
+    // pByte = new unsigned char[content_length];
+    // memset(pByte, 0x00, content_length); // may as will initialize it!
+
+    // note that fileIn was opened earlier,
+    // go to lSeek from the top and read from there
     //
-    p = strchr(buf, '/');
-    if (p) {
-        strcpy(file, p+1);
-        *p = 0;
-    } else {
-        strcpy(file, "");
+    size_t stSend = size * nmemb;
+    int stRead = 0;
+
+    if (phop->req1 && !phop->bSentHeader) {
+        // need to send headers first, then data file
+        // so requests from 0 to strlen(req1)-1 are from memory,
+        // and from strlen(req1) to content_length are from the file
+        if (phop->lSeek < (long) strlen(phop->req1)) {
+            // need to read header, either just starting to read
+            // (i.e. this is the first time in this function for this phop)
+            // or the last read didn't ask for the entire header
+
+            stRead = (int)strlen(phop->req1) - phop->lSeek;
+                // how much of header left to read
+
+            // only memcpy if request isn't out of bounds
+            if (stRead < 0) {
+                stRead = 0;
+            } else {
+                memcpy(ptr, (void*)(phop->req1 + phop->lSeek), stRead);
+            }
+            phop->lSeek += (long) stRead;  // increment lSeek to new position
+
+            // Don't count header in bytes transferred.
+            // Otherwise the GUI will show e.g. "400 out of 300 bytes xferred"
+            //phop->bytes_xferred += (double)(stRead);
+
+            // see if we're done with headers
+            if (phop->lSeek >= (long) strlen(phop->req1)) {
+                phop->bSentHeader = true;
+                phop->lSeek = 0;
+            }
+            return stRead;
+        } else {
+            // shouldn't happen
+            phop->bSentHeader = true;
+            phop->lSeek = 0;
+        }
+    }
+    if (phop->fileIn) {
+        long lFileSeek = phop->lSeek + (long) phop->file_offset;
+        fseek(phop->fileIn, lFileSeek, SEEK_SET);
+        if (!feof(phop->fileIn)) {
+            stRead = (int)fread(ptr, 1, stSend, phop->fileIn);
+        }
+        phop->lSeek += (long) stRead;
+        phop->bytes_xferred += (double)(stRead);
     }
+    phop->update_speed();
+    return stRead;
+}
 
-    // parse and strip off port if present
-    //
-    p = strchr(buf,':');
-    if (p) {
-        port = atol(p+1);
-        *p = 0;
-    } else {
-        // CMC note:  if they didn't pass in a port #,
-        //    but the url starts with https://, assume they
-        //    want a secure port (HTTPS, port 443)
-        port = (protocol == URL_PROTOCOL_HTTPS) ? 443 : 80;
+curlioerr libcurl_ioctl(CURL*, curliocmd cmd, HTTP_OP* phop) {
+    // reset input stream to beginning - resends header
+    // and restarts data back to starting point
+
+    switch(cmd) {
+    case CURLIOCMD_RESTARTREAD:
+        phop->lSeek = 0;
+        phop->bytes_xferred = phop->file_offset;
+        phop->bSentHeader = false;
+        break;
+    default: // should never get here
+        return CURLIOE_UNKNOWNCMD;
     }
+    return CURLIOE_OK;
+}
 
-    // what remains is the host
-    //
-    strcpy(host, buf);
+void libcurl_logdebug(
+    HTTP_OP* phop, const char* desc, char *data, size_t size
+) {
+    char hdr[256];
+    char buf[2048], *p = buf;
+    size_t copy_size;
+
+    sprintf(hdr, "[ID#%d] %s", phop->trace_id, desc);
+
+    copy_size = min(size, sizeof(buf)-1);
+    strncpy(buf, data, copy_size);
+    buf[copy_size]='\0';
+
+    p = strtok(buf, "\n");
+    while(p) {
+        if (log_flags.http_debug) {
+            msg_printf(0, MSG_INFO,
+                "[http_debug] %s %s\n", hdr, p
+            );
+        }
+        p = strtok(NULL, "\n");
+    }
 }
 
-char* get_user_agent_string() {
-    sprintf(g_user_agent_string, "BOINC client (%s %d.%d.%d)",
-        gstate.get_primary_platform(),
-        BOINC_MAJOR_VERSION, BOINC_MINOR_VERSION, BOINC_RELEASE
-    );
-    return (char*)&g_user_agent_string;
+int libcurl_debugfunction(
+    CURL*, curl_infotype type, char *data, size_t size, HTTP_OP* phop
+) {
+    const char* desc = NULL;
+    switch (type) {
+    case CURLINFO_TEXT:
+        desc = "Info: ";
+        break;
+    case CURLINFO_HEADER_OUT:
+        desc = "Sent header to server:";
+        break;
+    case CURLINFO_HEADER_IN:
+        desc = "Received header from server:";
+        break;
+    default: /* in case a new one is introduced to shock us */
+       return 0;
+    }
+    libcurl_logdebug(phop, desc, data, size);
+    return 0;
 }
 
 void HTTP_OP::init() {
@@ -148,7 +241,7 @@ HTTP_OP::HTTP_OP() {
     http_op_state = HTTP_STATE_IDLE;
     http_op_type = HTTP_OP_NONE;
     http_op_retval = 0;
-    trace_id = 0;
+    trace_id = g_trace_count++;
     pcurlList = NULL; // these have to be NULL, just in constructor
     curlEasy = NULL;
     pcurlFormStart = NULL;
@@ -251,27 +344,23 @@ int HTTP_OP::init_post2(
 // is URL in proxy exception list?
 //
 bool HTTP_OP::no_proxy_for_url(const char* url) {
+    PARSED_URL purl, purl2;
+    char noproxy[256];
+
     if (log_flags.proxy_debug) {
         msg_printf(0, MSG_INFO, "[proxy_debug] HTTP_OP::no_proxy_for_url(): %s", url);
     }
-    char hosturl[256];
-    char file[256];
-    char hostnoproxy[256];
-    char noproxy[256];
-    int protocol;
-    int port;
 
-    // extract the host from the url
-    parse_url(url, protocol, hosturl, port, file);
+    parse_url(url, purl);
 
     // tokenize the noproxy-entry and check for identical hosts
     //
-    strcpy(noproxy, gstate.proxy_info.noproxy_hosts);
+    strcpy(noproxy, working_proxy_info.noproxy_hosts);
     char* token = strtok(noproxy, ",");
-    while(token!= NULL) {
+    while (token != NULL) {
         // extract the host from the no_proxy url
-        parse_url(token, protocol, hostnoproxy, port, file);
-        if (hostnoproxy == hosturl) {
+        parse_url(token, purl2);
+        if (!strcmp(purl.host, purl2.host)) {
             if (log_flags.proxy_debug) {
                 msg_printf(0, MSG_INFO, "[proxy_debug] disabling proxy for %s", url);
             }
@@ -581,11 +670,9 @@ int HTTP_OP::libcurl_exec(
     // turn on debug info if tracing enabled
     //
     if (log_flags.http_debug) {
-        static int trace_count = 0;
         curlErr = curl_easy_setopt(curlEasy, CURLOPT_DEBUGFUNCTION, libcurl_debugfunction);
         curlErr = curl_easy_setopt(curlEasy, CURLOPT_DEBUGDATA, this );
         curlErr = curl_easy_setopt(curlEasy, CURLOPT_VERBOSE, 1L);
-        trace_id = trace_count++;
     }
 
     // last but not least, add this to the curl_multi
@@ -641,144 +728,6 @@ int HTTP_OP_SET::nops() {
     return (int)http_ops.size();
 }
 
-size_t libcurl_write(void *ptr, size_t size, size_t nmemb, HTTP_OP* phop) {
-    // take the stream param as a FILE* and write to disk
-    // TODO: maybe assert stRead == size*nmemb,
-    // add exception handling on phop members
-    //
-    size_t stWrite = fwrite(ptr, size, nmemb, phop->fileOut);
-    if (log_flags.http_xfer_debug) {
-        msg_printf(NULL, MSG_INFO,
-            "[http_xfer_debug] HTTP: wrote %d bytes", (int)stWrite
-        );
-    }
-    phop->bytes_xferred += (double)(stWrite);
-    phop->update_speed();  // this should update the transfer speed
-    return stWrite;
-}
-
-size_t libcurl_read( void *ptr, size_t size, size_t nmemb, HTTP_OP* phop) {
-    // OK here's the deal -- phop points to the calling object,
-    // which has already pre-opened the file.  we'll want to
-    // use pByte as a pointer for fseek calls into the file, and
-    // write out size*nmemb # of bytes to ptr
-
-    // take the stream param as a FILE* and write to disk
-    // if (pByte) delete [] pByte;
-    // pByte = new unsigned char[content_length];
-    // memset(pByte, 0x00, content_length); // may as will initialize it!
-
-    // note that fileIn was opened earlier,
-    // go to lSeek from the top and read from there
-    //
-    size_t stSend = size * nmemb;
-    int stRead = 0;
-
-    if (phop->req1 && !phop->bSentHeader) {
-        // need to send headers first, then data file
-        // so requests from 0 to strlen(req1)-1 are from memory,
-        // and from strlen(req1) to content_length are from the file
-        if (phop->lSeek < (long) strlen(phop->req1)) {
-            // need to read header, either just starting to read
-            // (i.e. this is the first time in this function for this phop)
-            // or the last read didn't ask for the entire header
-
-            stRead = (int)strlen(phop->req1) - phop->lSeek;
-                // how much of header left to read
-
-            // only memcpy if request isn't out of bounds
-            if (stRead < 0) {
-                stRead = 0;
-            } else {
-                memcpy(ptr, (void*)(phop->req1 + phop->lSeek), stRead);
-            }
-            phop->lSeek += (long) stRead;  // increment lSeek to new position
-
-            // Don't count header in bytes transferred.
-            // Otherwise the GUI will show e.g. "400 out of 300 bytes xferred"
-            //phop->bytes_xferred += (double)(stRead);
-
-            // see if we're done with headers
-            if (phop->lSeek >= (long) strlen(phop->req1)) {
-                phop->bSentHeader = true;
-                phop->lSeek = 0;
-            }
-            return stRead;
-        } else {
-            // shouldn't happen
-            phop->bSentHeader = true;
-            phop->lSeek = 0;
-        }
-    }
-    if (phop->fileIn) {
-        long lFileSeek = phop->lSeek + (long) phop->file_offset;
-        fseek(phop->fileIn, lFileSeek, SEEK_SET);
-        if (!feof(phop->fileIn)) {
-            stRead = (int)fread(ptr, 1, stSend, phop->fileIn);
-        }
-        phop->lSeek += (long) stRead;
-        phop->bytes_xferred += (double)(stRead);
-    }
-    phop->update_speed();
-    return stRead;
-}
-
-curlioerr libcurl_ioctl(CURL*, curliocmd cmd, HTTP_OP* phop) {
-    // reset input stream to beginning - resends header
-    // and restarts data back to starting point
-
-    switch(cmd) {
-    case CURLIOCMD_RESTARTREAD:
-        phop->lSeek = 0;
-        phop->bytes_xferred = phop->file_offset;
-        phop->bSentHeader = false;
-        break;
-    default: // should never get here
-        return CURLIOE_UNKNOWNCMD;
-    }
-    return CURLIOE_OK;
-}
-
-int libcurl_debugfunction(
-    CURL*, curl_infotype type,
-    unsigned char *data, size_t size, HTTP_OP* phop
-) {
-    const char *text;
-    char hdr[100];
-    char buf[1024];
-    size_t mysize;
-
-    switch (type) {
-    case CURLINFO_TEXT:
-        if (log_flags.http_debug) {
-            msg_printf(0, MSG_INFO,
-                "[http_debug] [ID#%i] info: %s\n", phop->trace_id, data
-            );
-        }
-        return 0;
-    case CURLINFO_HEADER_OUT:
-        text = "Sent header to server:";
-        break;
-    case CURLINFO_HEADER_IN:
-        text = "Received header from server:";
-        break;
-    default: /* in case a new one is introduced to shock us */
-       return 0;
-    }
-
-    sprintf( hdr,"[ID#%i] %s", phop->trace_id, text);
-    mysize = min(size, sizeof(buf)-1);
-    strncpy(buf, (char *)data, mysize);
-    buf[mysize]='\0';
-    if (log_flags.http_debug) {
-        msg_printf(0, MSG_INFO,
-            "[http_debug] %s %s\n", hdr, buf
-        );
-    }
-    return 0;
-}
-
-
 // Curl self-explanatory setopt params for proxies:
 //    CURLOPT_HTTPPROXYTUNNEL
 //    CURLOPT_PROXYTYPE  (pass in CURLPROXY_HTTP or CURLPROXY_SOCKS5)
@@ -802,7 +751,7 @@ void HTTP_OP::setup_proxy_session(bool no_proxy) {
         return;
     }
 
-    pi = gstate.proxy_info;
+    pi = working_proxy_info;
     if (pi.use_http_proxy) {
         if (log_flags.proxy_debug) {
             msg_printf(
@@ -833,10 +782,7 @@ void HTTP_OP::setup_proxy_session(bool no_proxy) {
         }
 
     } else if (pi.use_socks_proxy) {
-
-        // pi.socks_version selects between socks5 & socks4.
-        // But libcurl only supports socks5, so ignore it.
-        //
+        // CURL only supports SOCKS version 5
         curlErr = curl_easy_setopt(curlEasy, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
         curlErr = curl_easy_setopt(curlEasy, CURLOPT_PROXYPORT, (long) pi.socks_server_port);
         curlErr = curl_easy_setopt(curlEasy, CURLOPT_PROXY, (char*) pi.socks_server_name);
@@ -1174,4 +1120,3 @@ void HTTP_OP_SET::cleanup_temp_files() {
     dir_close(d);
 }
 
-const char *BOINC_RCSID_57f273bb60 = "$Id: http_curl.cpp 19101 2009-09-18 20:48:19Z romw $";
diff --git a/client/http_curl.h b/client/http_curl.h
index 68035e3..2106bd6 100644
--- a/client/http_curl.h
+++ b/client/http_curl.h
@@ -21,12 +21,8 @@
 
 // We use libcurl: http://curl.haxx.se/libcurl
 
-#ifndef _HTTP_
-#define _HTTP_
-
-// SOCKS #defines
-#define SOCKS_VERSION_4             0x04
-#define SOCKS_VERSION_5             0x05
+#ifndef _HTTP_CURL_
+#define _HTTP_CURL_
 
 #include <curl/curl.h>
 
@@ -68,7 +64,7 @@ public:
 
     int content_length;
     double file_offset;
-    int trace_id;
+    unsigned int trace_id;
     char request_header[4096];
 
     FILE* fileIn;
@@ -165,15 +161,6 @@ private:
     );
 };
 
-// global function used by libcurl to write http replies to disk
-//
-size_t libcurl_write(void *ptr, size_t size, size_t nmemb, HTTP_OP* phop);
-size_t libcurl_read( void *ptr, size_t size, size_t nmemb, HTTP_OP* phop);
-curlioerr libcurl_ioctl(CURL *handle, curliocmd cmd, HTTP_OP* phop);
-int libcurl_debugfunction(CURL *handle, curl_infotype type,
-	unsigned char *data, size_t size, HTTP_OP* phop
-);
-
 /// represents a set of HTTP requests in progress
 
 class HTTP_OP_SET {
@@ -195,12 +182,6 @@ public:
 
 };
 
-#define URL_PROTOCOL_UNKNOWN 0
-#define URL_PROTOCOL_HTTP    1
-#define URL_PROTOCOL_HTTPS   2
-#define URL_PROTOCOL_SOCKS   3
-
 extern char* get_user_agent_string();
-extern void parse_url(const char* url, int &protocol, char* host, int &port, char* file);
 
-#endif //__HTTP_H
+#endif //__HTTP_CURL_
diff --git a/client/log_flags.cpp b/client/log_flags.cpp
index 4009d96..8b4559c 100644
--- a/client/log_flags.cpp
+++ b/client/log_flags.cpp
@@ -30,13 +30,15 @@
 
 #include "error_numbers.h"
 #include "common_defs.h"
-#include "file_names.h"
-#include "client_state.h"
-#include "client_msgs.h"
 #include "parse.h"
 #include "str_util.h"
 #include "filesys.h"
 
+#include "file_names.h"
+#include "client_state.h"
+#include "client_msgs.h"
+#include "cs_proxy.h"
+
 using std::string;
 
 LOG_FLAGS log_flags;
@@ -76,8 +78,10 @@ int LOG_FLAGS::parse(XML_PARSER& xp) {
         if (xp.parse_bool(tag, "coproc_debug", coproc_debug)) continue;
         if (xp.parse_bool(tag, "cpu_sched", cpu_sched)) continue;
         if (xp.parse_bool(tag, "cpu_sched_debug", cpu_sched_debug)) continue;
+        if (xp.parse_bool(tag, "cpu_sched_status", cpu_sched_status)) continue;
         if (xp.parse_bool(tag, "dcf_debug", dcf_debug)) continue;
         if (xp.parse_bool(tag, "debt_debug", debt_debug)) continue;
+        if (xp.parse_bool(tag, "std_debug", std_debug)) continue;
         if (xp.parse_bool(tag, "file_xfer_debug", file_xfer_debug)) continue;
         if (xp.parse_bool(tag, "guirpc_debug", guirpc_debug)) continue;
         if (xp.parse_bool(tag, "http_debug", http_debug)) continue;
@@ -134,6 +138,7 @@ void LOG_FLAGS::show() {
     show_flag(buf, coproc_debug, "coproc_debug");
     show_flag(buf, cpu_sched, "cpu_sched");
     show_flag(buf, cpu_sched_debug, "cpu_sched_debug");
+    show_flag(buf, cpu_sched_status, "cpu_sched_status");
     show_flag(buf, dcf_debug, "dcf_debug");
     show_flag(buf, debt_debug, "debt_debug");
     show_flag(buf, file_xfer_debug, "file_xfer_debug");
@@ -150,6 +155,7 @@ void LOG_FLAGS::show() {
     show_flag(buf, slot_debug, "slot_debug");
     show_flag(buf, state_debug, "state_debug");
     show_flag(buf, statefile_debug, "statefile_debug");
+    show_flag(buf, std_debug, "std_debug");
     show_flag(buf, task_debug, "task_debug");
     show_flag(buf, time_debug, "time_debug");
     show_flag(buf, unparsed_xml, "unparsed_xml");
@@ -160,10 +166,17 @@ void LOG_FLAGS::show() {
     }
 }
 
+static void show_gpu_ignore(vector<int>& devs, const char* name) {
+    for (unsigned int i=0; i<devs.size(); i++) {
+        msg_printf(NULL, MSG_INFO, "Config: ignoring %s GPU %d", name, devs[i]);
+    }
+}
+
 // TODO: show other config options
 //
 void CONFIG::show() {
-    if (config.ncpus>=0) {
+    unsigned int i;
+    if (config.ncpus>0) {
         msg_printf(NULL, MSG_INFO, "Config: use at most %d CPUs", config.ncpus);
     }
     if (config.no_gpus) {
@@ -181,12 +194,28 @@ void CONFIG::show() {
     if (config.zero_debts) {
         msg_printf(NULL, MSG_INFO, "Config: zero long-term debts on startup");
     }
+    show_gpu_ignore(ignore_cuda_dev, "NVIDIA");
+    show_gpu_ignore(ignore_ati_dev, "ATI");
+    for (i=0; i<exclusive_apps.size(); i++) {
+        msg_printf(NULL, MSG_INFO,
+            "Config: don't compute while %s is running",
+            exclusive_apps[i].c_str()
+        );
+    }
+    for (i=0; i<exclusive_gpu_apps.size(); i++) {
+        msg_printf(NULL, MSG_INFO,
+            "Config: don't use GPUs while %s is running",
+            exclusive_gpu_apps[i].c_str()
+        );
+    }
 }
 
 CONFIG::CONFIG() {
     clear();
 }
 
+// this is called first thing by client
+//
 void CONFIG::clear() {
     allow_multiple_clients = false;
     alt_platforms.clear();
@@ -196,8 +225,11 @@ void CONFIG::clear() {
     dont_check_file_sizes = false;
     dont_contact_ref_site = false;
     exclusive_apps.clear();
+    exclusive_gpu_apps.clear();
     force_auth = "default";
     http_1_0 = false;
+    ignore_cuda_dev.clear();
+    ignore_ati_dev.clear();
     max_file_xfers = MAX_FILE_XFERS;
     max_file_xfers_per_project = MAX_FILE_XFERS_PER_PROJECT;
     max_stderr_file_size = 0;
@@ -213,6 +245,7 @@ void CONFIG::clear() {
     save_stats_days = 30;
     simple_gui_only = false;
     start_delay = 0;
+    stderr_head = false;
     suppress_net_info = false;
     use_all_gpus = false;
     use_certs = false;
@@ -224,8 +257,19 @@ int CONFIG::parse_options(XML_PARSER& xp) {
     char tag[1024], path[256];
     bool is_tag, btemp;
     string s;
+    int n;
+
+    //clear();
+    // don't do this here because some options are set by cmdline args,
+    // which are parsed first
+    // but do clear these, which aren't accessable via cmdline:
+    //
+    alt_platforms.clear();
+    exclusive_apps.clear();
+    exclusive_gpu_apps.clear();
+    ignore_cuda_dev.clear();
+    ignore_ati_dev.clear();
 
-    clear();
     while (!xp.get(tag, sizeof(tag), is_tag)) {
         if (!is_tag) {
             msg_printf(NULL, MSG_USER_ERROR,
@@ -267,11 +311,23 @@ int CONFIG::parse_options(XML_PARSER& xp) {
             exclusive_apps.push_back(s);
             continue;
         }
+        if (xp.parse_string(tag, "exclusive_gpu_app", s)) {
+            exclusive_gpu_apps.push_back(s);
+            continue;
+        }
         if (xp.parse_string(tag, "force_auth", force_auth)) {
             downcase_string(force_auth);
             continue;
         }
         if (xp.parse_bool(tag, "http_1_0", http_1_0)) continue;
+        if (xp.parse_int(tag, "ignore_cuda_dev", n)) {
+            ignore_cuda_dev.push_back(n);
+            continue;
+        }
+        if (xp.parse_int(tag, "ignore_ati_dev", n)) {
+            ignore_ati_dev.push_back(n);
+            continue;
+        }
         if (xp.parse_int(tag, "max_file_xfers", max_file_xfers)) continue;
         if (xp.parse_int(tag, "max_file_xfers_per_project", max_file_xfers_per_project)) continue;
         if (xp.parse_int(tag, "max_stderr_file_size", max_stderr_file_size)) continue;
@@ -287,8 +343,9 @@ int CONFIG::parse_options(XML_PARSER& xp) {
         if (xp.parse_bool(tag, "os_random_only", os_random_only)) continue;
 #ifndef SIM
         if (!strcmp(tag, "proxy_info")) {
-            int retval = gstate.proxy_info.parse(*xp.f);
+            int retval = config_proxy_info.parse_config(*xp.f);
             if (retval) return retval;
+            continue;
         }
 #endif
         if (xp.parse_bool(tag, "report_results_immediately", report_results_immediately)) continue;
@@ -296,6 +353,7 @@ int CONFIG::parse_options(XML_PARSER& xp) {
         if (xp.parse_int(tag, "save_stats_days", save_stats_days)) continue;
         if (xp.parse_bool(tag, "simple_gui_only", simple_gui_only)) continue;
         if (xp.parse_double(tag, "start_delay", start_delay)) continue;
+        if (xp.parse_bool(tag, "stderr_head", stderr_head)) continue;
         if (xp.parse_bool(tag, "suppress_net_info", suppress_net_info)) continue;
         if (xp.parse_bool(tag, "use_all_gpus", use_all_gpus)) continue;
         if (xp.parse_bool(tag, "use_certs", use_certs)) continue;
@@ -371,4 +429,3 @@ int read_config_file(bool init) {
     return 0;
 }
 
-const char *BOINC_RCSID_5f23de6652 = "$Id: log_flags.cpp 19316 2009-10-16 19:02:00Z romw $";
diff --git a/client/log_flags.h b/client/log_flags.h
index 9b5b349..7453ba8 100644
--- a/client/log_flags.h
+++ b/client/log_flags.h
@@ -62,10 +62,14 @@ struct LOG_FLAGS {
         // preemption and resumption
     bool cpu_sched_debug;
         // explain scheduler decisions
+    bool cpu_sched_status;
+        // show what's running
     bool dcf_debug;
         // show changes to duration correction factors
     bool debt_debug;
-        // changes to debt
+        // changes to long-term debt
+    bool std_debug;
+        // changes to short-term debt
     bool file_xfer_debug;
         // show completion of FILE_XFER
     bool guirpc_debug;
@@ -105,36 +109,40 @@ struct LOG_FLAGS {
 
 struct CONFIG {
     bool dont_check_file_sizes;
+    bool dont_contact_ref_site;
+    std::vector<std::string> exclusive_apps;
+    std::vector<std::string> exclusive_gpu_apps;
+    std::string force_auth;
     bool http_1_0;
     int save_stats_days;
     int ncpus;
+    std::vector<int> ignore_cuda_dev;
+    std::vector<int> ignore_ati_dev;
     int max_file_xfers;
     int max_file_xfers_per_project;
-    bool suppress_net_info;
     bool disallow_attach;
     bool os_random_only;
     bool no_alt_platform;
     bool simple_gui_only;
-    bool dont_contact_ref_site;
     std::vector<std::string> alt_platforms;
     int max_stdout_file_size;
     int max_stderr_file_size;
     bool report_results_immediately;
     double start_delay;
     bool run_apps_manually;
-    std::string force_auth;
     bool allow_multiple_clients;
+    bool stderr_head;
+    bool suppress_net_info;
+    bool use_all_gpus;
     bool use_certs;
     bool use_certs_only;
         // overrides use_certs
-    std::vector<std::string> exclusive_apps;
     std::string client_version_check_url;
     std::string client_download_url;
     std::string network_test_url;
     bool no_gpus;
     bool zero_debts;
     bool no_priority_change;
-    bool use_all_gpus;
 
     CONFIG();
     void clear();
diff --git a/client/main.cpp b/client/main.cpp
index c5f0b81..b698e1e 100644
--- a/client/main.cpp
+++ b/client/main.cpp
@@ -56,6 +56,8 @@ typedef void (CALLBACK* ClientLibraryShutdown)();
 #include "prefs.h"
 #include "filesys.h"
 #include "network.h"
+
+#include "cs_proxy.h"
 #include "client_state.h"
 #include "file_names.h"
 #include "log_flags.h"
@@ -210,6 +212,7 @@ static void init_core_client(int argc, char** argv) {
     setbuf(stdout, 0);
     setbuf(stderr, 0);
 
+    config.clear();
     gstate.parse_cmdline(argc, argv);
 
 #ifdef _WIN32
@@ -340,13 +343,15 @@ int boinc_main_loop() {
         return retval;
     }
 
-    log_message_startup("BOINC initialization completed, beginning process execution...");
-
     // must parse env vars after gstate.init();
     // otherwise items will get overwritten with state file info
     //
     gstate.parse_env_vars();
 
+    // do this after parsing env vars
+    //
+    proxy_info_startup();
+
     if (gstate.projects.size() == 0) {
         msg_printf(NULL, MSG_INFO,
             "This computer is not attached to any projects"
@@ -356,6 +361,8 @@ int boinc_main_loop() {
         );
     }
 
+    log_message_startup("Initialization completed");
+
     while (1) {
         if (!gstate.poll_slow_events()) {
             gstate.do_io_or_sleep(POLL_INTERVAL);
@@ -567,5 +574,3 @@ int main(int argc, char** argv) {
     return retval;
 }
 
-
-const char *BOINC_RCSID_f02264aefe = "$Id: main.cpp 18813 2009-08-04 05:52:04Z charlief $";
diff --git a/client/makefile_sim b/client/makefile_sim
index 0a53bbf..5901684 100644
--- a/client/makefile_sim
+++ b/client/makefile_sim
@@ -1,3 +1,6 @@
+# makefile for client simulator
+# DO MAKE CLEAN IN CLIENT/ and LIB/ FIRST
+
 CXXFLAGS = -g -DSIM \
     -I ../lib \
     -I ..
diff --git a/client/net_stats.cpp b/client/net_stats.cpp
index ec1747a..8c2bc72 100644
--- a/client/net_stats.cpp
+++ b/client/net_stats.cpp
@@ -40,6 +40,7 @@
 #include "client_msgs.h"
 #include "client_state.h"
 #include "file_names.h"
+#include "cs_proxy.h"
 
 #include "net_stats.h"
 
@@ -219,8 +220,8 @@ int LOOKUP_WEBSITE_OP::do_rpc(string& url) {
         net_status.need_physical_connection = true;
 		net_status.last_comm_time = 0;
 
-        gstate.proxy_info.need_autodetect_proxy_settings = true;
-        gstate.proxy_info.have_autodetect_proxy_settings = false;
+        working_proxy_info.need_autodetect_proxy_settings = true;
+        working_proxy_info.have_autodetect_proxy_settings = false;
         msg_printf(0, MSG_USER_ERROR,
             "BOINC can't access Internet - check network connection or proxy configuration."
         );
@@ -264,4 +265,3 @@ void NET_STATUS::poll() {
 	}
 }
 
-const char *BOINC_RCSID_733b4006f5 = "$Id: net_stats.cpp 18985 2009-09-02 14:53:35Z romw $";
diff --git a/client/pers_file_xfer.cpp b/client/pers_file_xfer.cpp
index 05b22c9..e119320 100644
--- a/client/pers_file_xfer.cpp
+++ b/client/pers_file_xfer.cpp
@@ -446,6 +446,7 @@ void PERS_FILE_XFER::suspend() {
         delete fxp;
         fxp = 0;
     }
+    fip->upload_offset = -1;
 }
 
 PERS_FILE_XFER_SET::PERS_FILE_XFER_SET(FILE_XFER_SET* p) {
@@ -511,4 +512,3 @@ void PERS_FILE_XFER_SET::suspend() {
     }
 }
 
-const char *BOINC_RCSID_76edfcfb49 = "$Id: pers_file_xfer.cpp 19156 2009-09-24 17:53:41Z romw $";
diff --git a/client/rr_sim.cpp b/client/rr_sim.cpp
index 2042c27..0d45ac5 100644
--- a/client/rr_sim.cpp
+++ b/client/rr_sim.cpp
@@ -169,6 +169,8 @@ void set_rrsim_flops(RESULT* rp) {
     // if the project's total CPU usage is more than its share, scale
     //
     double share_cpus = p->cpu_pwf.runnable_share*gstate.ncpus;
+    if (!share_cpus) share_cpus = gstate.ncpus;
+        // deal with projects w/ resource share = 0
     double r2 = r1;
     if (p->cpu_pwf.sim_nused > share_cpus) {
         r2 *= (share_cpus / p->cpu_pwf.sim_nused);
@@ -182,8 +184,8 @@ void set_rrsim_flops(RESULT* rp) {
 #if 0
     if (log_flags.rr_simulation) {
         msg_printf(p, MSG_INFO,
-            "[rr_sim] set_rrsim_flops: %f (r1 %f r2 %f r3 %f)",
-            rp->rrsim_flops, r1, r2, r3
+            "[rr_sim] set_rrsim_flops: %.2fG (r1 %.4f r2 %.4f r3 %.4f)",
+            rp->rrsim_flops/1e9, r1, r2, r3
         );
     }
 #endif
@@ -225,6 +227,26 @@ void CLIENT_STATE::print_deadline_misses() {
     }
 }
 
+#if 0
+// compute a per-app-version "temporary DCF" based on the elapsed time
+// and fraction done of running jobs
+//
+void compute_temp_dcf() {
+    unsigned int i;
+    for (i=0; i<gstate.app_versions.size(); i++) {
+        gstate.app_versions[i]->temp_dcf = 1;
+    }
+    for (i=0; i<gstate.active_tasks.active_tasks.size(); i++) {
+        ACTIVE_TASK* atp = gstate.active_tasks.active_tasks[i];
+        double x = atp->est_dur(false) / atp->result->estimated_duration(false);
+        APP_VERSION* avp = atp->result->avp;
+        if (x < avp->temp_dcf) {
+            avp->temp_dcf = x;
+        }
+    }
+}
+#endif
+
 void CLIENT_STATE::rr_simulation() {
     PROJECT* p, *pbest;
     RESULT* rp, *rpbest;
@@ -234,6 +256,7 @@ void CLIENT_STATE::rr_simulation() {
     double ar = available_ram();
 
     work_fetch.rr_init();
+    //compute_temp_dcf();
 
     if (log_flags.rr_simulation) {
         msg_printf(0, MSG_INFO,
@@ -266,7 +289,9 @@ void CLIENT_STATE::rr_simulation() {
 
         p = rp->project;
         p->pwf.has_runnable_jobs = true;
-        if (rp->uses_cuda()) {
+        p->cpu_pwf.nused_total += rp->avp->avg_ncpus;
+        if (rp->uses_cuda() && coproc_cuda) {
+            p->cuda_pwf.nused_total += rp->avp->ncudas;
             p->cuda_pwf.has_runnable_jobs = true;
             if (cuda_work_fetch.sim_nused < coproc_cuda->count) {
                 sim_status.activate(rp, 0);
@@ -274,7 +299,8 @@ void CLIENT_STATE::rr_simulation() {
             } else {
                 cuda_work_fetch.pending.push_back(rp);
             }
-        } else if (rp->uses_ati()) {
+        } else if (rp->uses_ati() && coproc_ati) {
+            p->ati_pwf.nused_total += rp->avp->natis;
             p->ati_pwf.has_runnable_jobs = true;
             if (ati_work_fetch.sim_nused < coproc_ati->count) {
                 sim_status.activate(rp, 0);
@@ -320,6 +346,7 @@ void CLIENT_STATE::rr_simulation() {
         for (i=0; i<sim_status.active.size(); i++) {
             rp = sim_status.active[i];
             set_rrsim_flops(rp);
+            //rp->rrsim_finish_delay = rp->avp->temp_dcf*rp->rrsim_flops_left/rp->rrsim_flops;
             rp->rrsim_finish_delay = rp->rrsim_flops_left/rp->rrsim_flops;
             if (!rpbest || rp->rrsim_finish_delay < rpbest->rrsim_finish_delay) {
                 rpbest = rp;
diff --git a/client/sandbox.h b/client/sandbox.h
index 4bdd98a..cf861be 100644
--- a/client/sandbox.h
+++ b/client/sandbox.h
@@ -22,6 +22,7 @@ extern int switcher_exec(const char* util_filename, const char* cmdline);
 extern int client_clean_out_dir(const char*, const char* reason);
 extern int delete_project_owned_file(const char* path, bool retry);
 extern int remove_project_owned_dir(const char* name);
+extern int remove_project_owned_file_or_dir(const char* path);
 extern int check_security(int use_sandbox, int isManager);
 
 #define BOINC_PROJECT_GROUP_NAME "boinc_project"
diff --git a/client/scheduler_op.cpp b/client/scheduler_op.cpp
index 2464e3f..5999f39 100644
--- a/client/scheduler_op.cpp
+++ b/client/scheduler_op.cpp
@@ -251,18 +251,18 @@ int SCHEDULER_OP::start_rpc(PROJECT* p) {
     }
     if (log_flags.sched_op_debug) {
         msg_printf(p, MSG_INFO,
-            "[sched_op_debug] CPU work request: %.2f seconds; %d idle CPUs",
+            "[sched_op_debug] CPU work request: %.2f seconds; %.2f idle CPUs",
             cpu_work_fetch.req_secs, cpu_work_fetch.req_instances
         );
         if (coproc_cuda) {
             msg_printf(p, MSG_INFO,
-                "[sched_op_debug] NVIDIA GPU work request: %.2f seconds; %d idle GPUs",
+                "[sched_op_debug] NVIDIA GPU work request: %.2f seconds; %.2f idle GPUs",
                 cuda_work_fetch.req_secs, cuda_work_fetch.req_instances
             );
         }
         if (coproc_ati) {
             msg_printf(p, MSG_INFO,
-                "[sched_op_debug] ATI GPU work request: %.2f seconds; %d idle GPUs",
+                "[sched_op_debug] ATI GPU work request: %.2f seconds; %.2f idle GPUs",
                 ati_work_fetch.req_secs, ati_work_fetch.req_instances
             );
         }
@@ -870,4 +870,3 @@ USER_MESSAGE::USER_MESSAGE(char* m, char* p) {
     priority = p;
 }
 
-const char *BOINC_RCSID_11c806525b = "$Id: scheduler_op.cpp 19099 2009-09-18 20:43:43Z romw $";
diff --git a/client/sim.cpp b/client/sim.cpp
index 8a1d6d0..9323c7d 100644
--- a/client/sim.cpp
+++ b/client/sim.cpp
@@ -172,23 +172,33 @@ void CLIENT_STATE::get_workload(vector<IP_RESULT>& ip_results) {
     init_ip_results(work_buf_min(), ncpus, ip_results);
 }
 
+// simulate trying to do an RPC
+// return false if we didn't actually do one
+//
 bool CLIENT_STATE::simulate_rpc(PROJECT* _p) {
     char buf[256];
     SIM_PROJECT* p = (SIM_PROJECT*) _p;
-    static double last_time=0;
+    static double last_time=-1e9;
     vector<IP_RESULT> ip_results;
     int infeasible_count = 0;
 
     double diff = now - last_time;
     if (diff && diff < host_info.connection_interval) {
-        msg_printf(NULL, MSG_INFO, "simulate_rpc: too soon %f < %f", diff, host_info.connection_interval);
+        msg_printf(NULL, MSG_INFO,
+            "simulate_rpc: too soon %f < %f",
+            diff, host_info.connection_interval
+        );
         return false;
     }
     last_time = now;
 
-    sprintf(buf, "RPC to %s; asking for %f<br>", p->project_name, cpu_work_fetch.req_secs);
+    sprintf(buf, "RPC to %s; asking for %f/%.2f<br>",
+        p->project_name, cpu_work_fetch.req_secs, cpu_work_fetch.req_instances
+    );
     html_msg += buf;
 
+    msg_printf(0, MSG_INFO, buf);
+
     handle_completed_results();
 
     if (server_uses_workload) {
@@ -197,7 +207,8 @@ bool CLIENT_STATE::simulate_rpc(PROJECT* _p) {
 
     bool sent_something = false;
     double work_left = cpu_work_fetch.req_secs;
-    while (work_left > 0) {
+    double instances_needed = cpu_work_fetch.req_instances;
+    while (work_left > 0 || instances_needed>0) {
         RESULT* rp = new RESULT;
         WORKUNIT* wup = new WORKUNIT;
         make_job(p, wup, rp);
@@ -224,15 +235,17 @@ bool CLIENT_STATE::simulate_rpc(PROJECT* _p) {
         );
         html_msg += buf;
         work_left -= p->duration_correction_factor*wup->rsc_fpops_est/host_info.p_fpops;
+        instances_needed -= 1;
     }
 
     if (cpu_work_fetch.req_secs > 0 && !sent_something) {
         p->backoff();
-    } else {
-        p->nrpc_failures = 0;
     }
-    request_schedule_cpus("simulate_rpc");
-    request_work_fetch("simulate_rpc");
+    p->nrpc_failures = 0;
+    if (sent_something) {
+        request_schedule_cpus("simulate_rpc");
+        request_work_fetch("simulate_rpc");
+    }
     return true;
 }
 
@@ -246,23 +259,62 @@ void SIM_PROJECT::backoff() {
 
 bool CLIENT_STATE::scheduler_rpc_poll() {
     PROJECT *p;
+    bool action = false;
+    static double last_time=0;
+    static double last_work_fetch_time = 0;
+    double elapsed_time;
+
+    // check only every 5 sec
+    //
+    if (now - last_time < SCHEDULER_RPC_POLL_PERIOD) {
+        msg_printf(NULL, MSG_INFO, "RPC poll: not time %f - %f < %f",
+            now, last_time, SCHEDULER_RPC_POLL_PERIOD
+        );
+        return false;
+    }
+    last_time = now;
 
     msg_printf(NULL, MSG_INFO, "RPC poll start");
-    p = next_project_sched_rpc_pending();
-    if (p) {
-        return simulate_rpc(p);
-    }
+    while (1) {
+        p = next_project_sched_rpc_pending();
+        if (p) {
+            work_fetch.compute_work_request(p);
+            action = simulate_rpc(p);
+            break;
+        }
     
-    p = find_project_with_overdue_results();
-    if (p) {
-        return simulate_rpc(p);
+        p = find_project_with_overdue_results();
+        if (p) {
+            work_fetch.compute_work_request(p);
+            action = simulate_rpc(p);
+            break;
+        }
+
+        // should we check work fetch?  Do this at most once/minute
+
+        if (must_check_work_fetch) {
+            last_work_fetch_time = 0;
+        }
+        elapsed_time = now - last_work_fetch_time;
+        if (elapsed_time < WORK_FETCH_PERIOD) {
+            return false;
+        }
+        must_check_work_fetch = false;
+        last_work_fetch_time = now;
+
+        p = work_fetch.choose_project();
+        if (p) {
+            action = simulate_rpc(p);
+            break;
+        }
+        break;
     }
-    p = work_fetch.choose_project();
-    if (p) {
-        return simulate_rpc(p);
+    if (action) {
+        msg_printf(p, MSG_INFO, "RPC poll: did an RPC");
+    } else {
+        msg_printf(0, MSG_INFO, "RPC poll: didn't do an RPC");
     }
-    msg_printf(NULL, MSG_INFO, "RPC poll: nothing to do");
-    return false;
+    return action;
 }
 
 bool ACTIVE_TASK_SET::poll() {
@@ -280,9 +332,9 @@ bool ACTIVE_TASK_SET::poll() {
     for (i=0; i<gstate.projects.size(); i++) {
         p = (SIM_PROJECT*) gstate.projects[i];
         p->idle = true;
-        sprintf(buf, "%s STD: %f min RPC<br>",
-            p->project_name, p->short_term_debt,
-            time_to_string(p->min_rpc_time)
+        sprintf(buf, "%s STD: %f LTD %f<br>",
+            p->project_name, p->cpu_pwf.short_term_debt,
+            p->pwf.overall_debt
         );
         gstate.html_msg += buf;
     }
@@ -579,11 +631,16 @@ void CLIENT_STATE::html_end(bool show_next) {
 
 void CLIENT_STATE::simulate() {
     bool action;
-    now = 0;
+    double start = START_TIME;
+    now = start;
     html_start(false);
+    msg_printf(0, MSG_INFO,
+        "starting simultion. delta %f duration %f", delta, duration
+    );
     while (1) {
         running = host_info.available.sample(now);
         while (1) {
+            msg_printf(0, MSG_INFO, "polling");
             action = active_tasks.poll();
             if (running) {
                 action |= handle_finished_apps();
@@ -591,11 +648,19 @@ void CLIENT_STATE::simulate() {
                 action |= enforce_schedule();
                 action |= scheduler_rpc_poll();
             }
+            msg_printf(0, MSG_INFO, action?"did action":"did no action");
             if (!action) break;
         }
         now += delta;
+        msg_printf(0, MSG_INFO, "took time step");
+        for (unsigned int i=0; i<active_tasks.active_tasks.size(); i++) {
+            ACTIVE_TASK* atp = active_tasks.active_tasks[i];
+            if (atp->task_state() == PROCESS_EXECUTING) {
+                atp->elapsed_time += delta;
+            }
+        }
         html_rec();
-        if (now > duration) break;
+        if (now > start + duration) break;
     }
     html_end(false);
 }
@@ -718,18 +783,22 @@ int main(int argc, char** argv) {
         total_results.divide((int)(dirs.size()));
         total_results.print(stdout, "Total");
     } else {
+        msg_printf(0, MSG_INFO, "SIMULATION START");
         read_config_file(true);
+        config.show();
+
         int retval;
         bool flag;
 
-        retval = gstate.parse_projects(PROJECTS_FILE);
-        if (retval) parse_error(PROJECTS_FILE, retval);
         retval = gstate.parse_host(HOST_FILE);
         if (retval) parse_error(HOST_FILE, retval);
+        retval = gstate.parse_projects(PROJECTS_FILE);
+        if (retval) parse_error(PROJECTS_FILE, retval);
         retval = gstate.global_prefs.parse_file(PREFS_FILE, "", flag);
         if (retval) parse_error(PREFS_FILE, retval);
 
         gstate.set_ncpus();
+        work_fetch.init();
         gstate.request_work_fetch("init");
         gstate.simulate();
 
diff --git a/client/sim.h b/client/sim.h
index aef99d5..eea4784 100644
--- a/client/sim.h
+++ b/client/sim.h
@@ -90,7 +90,7 @@ public:
     double lambda;
     int parse(XML_PARSER&, char* end_tag);
     bool sample(double);
-    void init();
+    void init(double);
     RANDOM_PROCESS();
 };
 
@@ -226,7 +226,7 @@ private:
     double potentially_runnable_resource_share();
     double nearly_runnable_resource_share();
 public:
-    double runnable_resource_share();
+    double runnable_resource_share(int);
     void request_work_fetch(const char*);
         // Check if work fetch needed.  Called when:
         // - core client starts (CS::init())
@@ -307,6 +307,9 @@ extern bool dcf_stats;
 extern bool cpu_sched_rr_only;
 extern bool dual_dcf;
 extern bool work_fetch_old;
+extern bool gpus_usable;
+
+#define SCHEDULER_RPC_POLL_PERIOD   5.0
 
 #define WORK_FETCH_PERIOD   60
 
@@ -317,3 +320,9 @@ extern bool work_fetch_old;
     // debt is adjusted at least this often,
     // since adjust_debts() is called from enforce_schedule()
 #define HANDLE_FINISHED_APPS_PERIOD 1.0
+
+#define MAX_STD   (86400)
+    // maximum short-term debt
+
+#define START_TIME  946684800
+    // Jan 1 2000
diff --git a/client/sim_util.cpp b/client/sim_util.cpp
index 62c6400..28da5bf 100644
--- a/client/sim_util.cpp
+++ b/client/sim_util.cpp
@@ -138,7 +138,6 @@ void SIM_PROJECT::init() {
     anonymous_platform = false;
     non_cpu_intensive = false;
     verify_files_on_app_start = false;
-    short_term_debt = 0;
     send_file_list = false;
     suspended_via_gui = false;
     dont_request_more_work = false;
@@ -147,7 +146,6 @@ void SIM_PROJECT::init() {
     strcpy(code_sign_key, "");
     user_files.clear();
     project_files.clear();
-    anticipated_debt = 0;
     next_runnable_result = NULL;
     duration_correction_factor = 1;
     project_files_downloaded_time = 0;
@@ -393,6 +391,10 @@ bool RANDOM_PROCESS::sample(double t) {
             value = true;
         }
     }
+    msg_printf(0, MSG_INFO,
+        "value: %d lambda: %f t %f time_left %f",
+        value, lambda, t, time_left
+    );
     return value;
 }
 
@@ -400,7 +402,8 @@ RANDOM_PROCESS::RANDOM_PROCESS() {
     frac = 1;
 }
 
-void RANDOM_PROCESS::init() {
+void RANDOM_PROCESS::init(double st) {
+    last_time = st;
     value = true;
     time_left = exponential(lambda);
     off_lambda = lambda/frac - lambda;
@@ -490,23 +493,23 @@ int SIM_HOST::parse(XML_PARSER& xp) {
     bool is_tag;
     int retval;
 
-    p_ncpus = 1;
     connection_interval = 0;
+    p_ncpus = 1;
     while(!xp.get(tag, sizeof(tag), is_tag)) {
         if (!is_tag) return ERR_XML_PARSE;
         if (!strcmp(tag, "/host")) return 0;
         else if (xp.parse_double(tag, "p_fpops", p_fpops)) continue;
         else if (xp.parse_double(tag, "m_nbytes", m_nbytes)) continue;
-        else if (xp.parse_double(tag, "connection_interval", connection_interval)) continue;
         else if (xp.parse_int(tag, "p_ncpus", p_ncpus)) continue;
+        else if (xp.parse_double(tag, "connection_interval", connection_interval)) continue;
         else if (!strcmp(tag, "available")) {
             retval = available.parse(xp, "/available");
             if (retval) return retval;
-            available.init();
+            available.init(START_TIME);
         } else if (!strcmp(tag, "idle")) {
             retval = idle.parse(xp, "/idle");
             if (retval) return retval;
-            idle.init();
+            idle.init(START_TIME);
         } else {
             printf("unrecognized: %s\n", tag);
             return ERR_XML_PARSE;
diff --git a/client/switcher.cpp b/client/switcher.cpp
index f502d05..237feda 100644
--- a/client/switcher.cpp
+++ b/client/switcher.cpp
@@ -33,12 +33,20 @@
 #include <pwd.h>	// getpwuid
 #include <grp.h>
 
+#include "app_ipc.h"
+
 using std::strcpy;
 
 int main(int argc, char** argv) {
-    passwd      *pw;
-    group       *grp;
-    char        user_name[256], group_name[256];
+    passwd          *pw;
+    group           *grp;
+    char            user_name[256], group_name[256];
+    APP_INIT_DATA   aid;
+    FILE            *f;
+    int             retval = -1;
+    char            libpath[8192];
+    char            newlibs[256];
+    char            *projectDirName;
 
     strcpy(user_name, "boinc_project");
     strcpy(group_name, "boinc_project");
@@ -74,6 +82,49 @@ int main(int argc, char** argv) {
     pw = getpwnam(user_name);
     if (pw) setuid(pw->pw_uid);
 
+    // For unknown reasons, the LD_LIBRARY_PATH and DYLD_LIBRARY_PATH
+    // environment variables are not passed in to switcher, though all 
+    // other environment variables do get propagated.  So we recreate 
+    // LD_LIBRARY_PATH and DYLD_LIBRARY_PATH here.
+    f = fopen(INIT_DATA_FILE, "r");
+    if (f) {
+        retval = parse_init_data_file(f, aid);
+        fclose(f);
+    }
+
+    if (!retval) {
+        // Get project name without leading path
+        projectDirName = strrchr(aid.project_dir, '/');
+        if (projectDirName) {
+            ++projectDirName;
+        } else {
+            projectDirName = aid.project_dir;
+        } 
+        sprintf(newlibs, "../../%s:.:../..", projectDirName);
+#ifdef __APPLE__
+        strcat(newlibs, ":/usr/local/cuda/lib/");
+#endif
+        char* p = getenv("LD_LIBRARY_PATH");
+        if (p) {
+            sprintf(libpath, "%s:%s", newlibs, p);
+        } else {
+            strcpy(libpath, newlibs);
+        }
+        setenv("LD_LIBRARY_PATH", libpath, 1);
+
+        // On the Mac, do the same for DYLD_LIBRARY_PATH
+        //
+#ifdef __APPLE__
+        p = getenv("DYLD_LIBRARY_PATH");
+        if (p) {
+            sprintf(libpath, "%s:%s", newlibs, p);
+        } else {
+            strcpy(libpath, newlibs);
+        }
+        setenv("DYLD_LIBRARY_PATH", libpath, 1);
+#endif
+    }
+
     execv(argv[1], argv+2);
     
     // If we got here execv failed
diff --git a/client/sysmon_win.cpp b/client/sysmon_win.cpp
index 267b4f0..ff42665 100644
--- a/client/sysmon_win.cpp
+++ b/client/sysmon_win.cpp
@@ -18,18 +18,21 @@
 #include "boinc_win.h"
 #include "diagnostics.h"
 #include "error_numbers.h"
-#include "str_util.h"
+#include "url.h"
 #include "util.h"
 #include "win_util.h"
 #include "prefs.h"
 #include "filesys.h"
 #include "network.h"
+
 #include "client_state.h"
 #include "log_flags.h"
 #include "client_msgs.h"
 #include "http_curl.h"
 #include "sandbox.h"
 #include "main.h"
+#include "cs_proxy.h"
+
 #include "sysmon_win.h"
 
 
@@ -124,10 +127,7 @@ static void windows_detect_autoproxy_settings() {
     HINTERNET                 hWinHttp = NULL;
     WINHTTP_AUTOPROXY_OPTIONS autoproxy_options;
     WINHTTP_PROXY_INFO        proxy_info;
-    int                       proxy_protocol = 0;
-    char                      proxy_server[256];
-    int                       proxy_port = 0;
-    char                      proxy_file[256];
+    PARSED_URL purl;
     std::wstring              network_test_url;
     size_t                    pos;
 
@@ -190,22 +190,17 @@ static void windows_detect_autoproxy_settings() {
                 }
 
                 // Parse the remaining url
-                parse_url(
-                    proxy.c_str(),
-                    proxy_protocol,
-                    proxy_server,
-                    proxy_port,
-                    proxy_file
-                );
+                parse_url(proxy.c_str(), purl);
 
                 // Store the results for future use.
-                gstate.proxy_info.autodetect_protocol = proxy_protocol;
-                strcpy(gstate.proxy_info.autodetect_server_name, proxy_server);
-                gstate.proxy_info.autodetect_port = proxy_port;
+                working_proxy_info.autodetect_protocol = purl.protocol;
+                strcpy(working_proxy_info.autodetect_server_name, purl.host);
+                working_proxy_info.autodetect_port = purl.port;
 
                 if (log_flags.proxy_debug) {
                     msg_printf(NULL, MSG_INFO,
-                        "[proxy_debug] automatic proxy detected %s:%d", proxy_server, proxy_port
+                        "[proxy_debug] automatic proxy detected %s:%d",
+                        purl.host, purl.port
                     );
                 }
             }
@@ -217,9 +212,9 @@ static void windows_detect_autoproxy_settings() {
     } else {
         // We can get here if the user is switching from a network that
         // requires a proxy to one that does not require a proxy.
-        gstate.proxy_info.autodetect_protocol = 0;
-        strcpy(gstate.proxy_info.autodetect_server_name, "");
-        gstate.proxy_info.autodetect_port = 0;
+        working_proxy_info.autodetect_protocol = 0;
+        strcpy(working_proxy_info.autodetect_server_name, "");
+        working_proxy_info.autodetect_port = 0;
         if (log_flags.proxy_debug) {
             msg_printf(NULL, MSG_INFO, "[proxy_debug] no automatic proxy detected");
         }
@@ -242,11 +237,11 @@ static LRESULT CALLBACK WindowsMonitorSystemWndProc(
 
                 // System Monitor 1 second timer
                 case 1:
-                    if (gstate.proxy_info.need_autodetect_proxy_settings) {
-                        gstate.proxy_info.have_autodetect_proxy_settings = false;
+                    if (working_proxy_info.need_autodetect_proxy_settings) {
+                        working_proxy_info.have_autodetect_proxy_settings = false;
                         windows_detect_autoproxy_settings();
-                        gstate.proxy_info.need_autodetect_proxy_settings = false;
-                        gstate.proxy_info.have_autodetect_proxy_settings = true;
+                        working_proxy_info.need_autodetect_proxy_settings = false;
+                        working_proxy_info.have_autodetect_proxy_settings = true;
                     }
                 default:
                     break;
@@ -297,7 +292,7 @@ static LRESULT CALLBACK WindowsMonitorSystemWndProc(
                     msg_printf(NULL, MSG_INFO, "Windows is resuming operations");
 
                     // Check for a proxy
-                    gstate.proxy_info.need_autodetect_proxy_settings = true;
+                    working_proxy_info.need_autodetect_proxy_settings = true;
 
                     resume_client();
                     break;
@@ -727,5 +722,3 @@ VOID LogEventInfoMessage(LPTSTR lpszMsg)
     }
 }
 
-
-const char *BOINC_RCSID_ad2dd5eef4 = "$Id: sysmon_win.cpp 19372 2009-10-23 16:58:23Z romw $";
diff --git a/client/time_stats.cpp b/client/time_stats.cpp
index 468ad65..fb230a2 100644
--- a/client/time_stats.cpp
+++ b/client/time_stats.cpp
@@ -152,7 +152,7 @@ void TIME_STATS::get_log_after(double t, MIOFILE& mf) {
 void TIME_STATS::update(int suspend_reason) {
     double dt, w1, w2;
 
-    bool is_active = !(suspend_reason & ~SUSPEND_REASON_CPU_USAGE_LIMIT);
+    bool is_active = !(suspend_reason & ~SUSPEND_REASON_CPU_THROTTLE);
     if (last_update == 0) {
         // this is the first time this client has executed.
         // Assume that everything is active
@@ -359,4 +359,3 @@ void TIME_STATS::log_append_net(int new_state) {
     }
 }
 
-const char *BOINC_RCSID_472504d8c2 = "$Id: time_stats.cpp 19066 2009-09-17 15:12:30Z romw $";
diff --git a/client/whetstone.cpp b/client/whetstone.cpp
index fd0e4d8..c64556e 100644
--- a/client/whetstone.cpp
+++ b/client/whetstone.cpp
@@ -278,4 +278,3 @@ int whetstone(double& flops, double& cpu_time, double min_cpu_time) {
     return 0;
 }
 
-const char *BOINC_RCSID_595304be61 = "$Id: whetstone.cpp 17954 2009-04-30 21:48:20Z davea $";
diff --git a/client/win/boinc_cli.rc b/client/win/boinc_cli.rc
index 56ff6e8..2f0d3b6 100644
--- a/client/win/boinc_cli.rc
+++ b/client/win/boinc_cli.rc
@@ -117,7 +117,7 @@ BEGIN
             VALUE "FileDescription", "BOINC client"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinc_cli"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinc.exe"
             VALUE "ProductName", "BOINC core client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -152,7 +152,7 @@ BEGIN
             VALUE "FileDescription", "BOINC client"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinc_cli"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinc.exe"
             VALUE "ProductName", "BOINC core client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -187,7 +187,7 @@ BEGIN
             VALUE "FileDescription", "BOINC client"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinc_cli"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinc.exe"
             VALUE "ProductName", "BOINC core client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -222,7 +222,7 @@ BEGIN
             VALUE "FileDescription", "BOINC client"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinc_cli"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinc.exe"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
diff --git a/client/win/boinc_cmd.rc b/client/win/boinc_cmd.rc
index eccb45a..ff8a17c 100644
--- a/client/win/boinc_cmd.rc
+++ b/client/win/boinc_cmd.rc
@@ -116,7 +116,7 @@ BEGIN
             VALUE "FileDescription", "BOINC Command Line Client"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinccmd"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinccmd.exe"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -151,7 +151,7 @@ BEGIN
             VALUE "FileDescription", "BOINC Command Line Client"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinccmd"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinccmd.exe"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -186,7 +186,7 @@ BEGIN
             VALUE "FileDescription", "BOINC Command Line Client"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinccmd"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinccmd.exe"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -221,7 +221,7 @@ BEGIN
             VALUE "FileDescription", "BOINC Command Line Client"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinccmd"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinccmd.exe"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
diff --git a/client/work_fetch.cpp b/client/work_fetch.cpp
index caba170..ad14645 100644
--- a/client/work_fetch.cpp
+++ b/client/work_fetch.cpp
@@ -44,6 +44,32 @@ WORK_FETCH work_fetch;
     // so if the project develops a GPU app,
     // we'll find out about it within a day.
 
+#define FETCH_IF_IDLE_INSTANCE          0
+    // If resource has an idle instance,
+    // get work for it from the project with greatest LTD,
+    // even if it's overworked.
+#define FETCH_IF_MAJOR_SHORTFALL        1
+    // If resource is saturated for less than work_buf_min(),
+    // get work for it from the project with greatest LTD,
+    // even if it's overworked.
+#define FETCH_IF_MINOR_SHORTFALL        2
+    // If resource is saturated for less than work_buf_total(),
+    // get work for it from the non-overworked project with greatest LTD.
+#define FETCH_IF_PROJECT_STARVED        3
+    // If any project is not overworked and has too few jobs
+    // to use its instance share,
+    // get work from the one with greatest LTD.
+
+static char* criterion_name(int criterion) {
+    switch (criterion) {
+    case FETCH_IF_IDLE_INSTANCE: return "idle instance";
+    case FETCH_IF_MAJOR_SHORTFALL: return "major shortfall";
+    case FETCH_IF_MINOR_SHORTFALL: return "minor shortfall";
+    case FETCH_IF_PROJECT_STARVED: return "starved";
+    }
+    return "unknown";
+}
+
 static inline const char* rsc_name(int t) {
     switch (t) {
     case RSC_TYPE_CPU: return "CPU";
@@ -53,30 +79,66 @@ static inline const char* rsc_name(int t) {
     return "Unknown";
 }
 
-RSC_PROJECT_WORK_FETCH& RSC_WORK_FETCH::project_state(PROJECT* p) {
+inline bool prefs_prevent_fetch(PROJECT* p, int rsc_type) {
     switch(rsc_type) {
-    case RSC_TYPE_CPU: return p->cpu_pwf;
-    case RSC_TYPE_CUDA: return p->cuda_pwf;
-    case RSC_TYPE_ATI: return p->ati_pwf;
-    default: return p->cpu_pwf;
+    case RSC_TYPE_CPU:
+        if (p->no_cpu_pref) return true;
+        break;
+    case RSC_TYPE_CUDA:
+        if (p->no_cuda_pref) return true;
+        break;
+    case RSC_TYPE_ATI:
+        if (p->no_ati_pref) return true;
+        break;
     }
+    return false;
 }
 
-bool RSC_WORK_FETCH::may_have_work(PROJECT* p) {
-    switch(rsc_type) {
-    case RSC_TYPE_CPU: if (p->no_cpu) return false;
-    case RSC_TYPE_CUDA: if (p->no_cuda) return false;
-    case RSC_TYPE_ATI: if (p->no_ati) return false;
+// does the project have a downloading or runnable job?
+//
+static bool has_a_job(PROJECT* p) {
+    for (unsigned int j=0; j<gstate.results.size(); j++) {
+        RESULT* rp = gstate.results[j];
+        if (rp->project != p) continue;
+        if (rp->state() <= RESULT_FILES_DOWNLOADED) {
+            return true;
+        }
     }
-    RSC_PROJECT_WORK_FETCH& w = project_state(p);
-    return (w.backoff_time < gstate.now);
+    return false;
+}
+
+inline bool has_coproc_app(PROJECT* p, int rsc_type) {
+    unsigned int i;
+    for (i=0; i<gstate.app_versions.size(); i++) {
+        APP_VERSION* avp = gstate.app_versions[i];
+        if (avp->project != p) continue;
+        switch(rsc_type) {
+        case RSC_TYPE_CUDA:
+            if (avp->ncudas) return true;
+            break;
+        case RSC_TYPE_ATI:
+            if (avp->natis) return true;
+            break;
+        }
+    }
+    return false;
 }
 
+///////////////  RSC_PROJECT_WORK_FETCH  ///////////////
+
 bool RSC_PROJECT_WORK_FETCH::compute_may_have_work(PROJECT* p, int rsc_type) {
     switch(rsc_type) {
-    case RSC_TYPE_CPU: if (p->no_cpu) return false; break;
-    case RSC_TYPE_CUDA: if (p->no_cuda) return false; break;
-    case RSC_TYPE_ATI: if (p->no_ati) return false; break;
+    case RSC_TYPE_CPU:
+        if (p->no_cpu_pref) return false;
+        break;
+    case RSC_TYPE_CUDA:
+        if (p->no_cuda_pref) return false;
+        if (p->cuda_low_mem) return false;
+        break;
+    case RSC_TYPE_ATI:
+        if (p->no_ati_pref) return false;
+        if (p->ati_low_mem) return false;
+        break;
     }
     return (backoff_time < gstate.now);
 }
@@ -87,9 +149,84 @@ void RSC_PROJECT_WORK_FETCH::rr_init(PROJECT* p, int rsc_type) {
     fetchable_share = 0;
     has_runnable_jobs = false;
     sim_nused = 0;
+    nused_total = 0;
     deadlines_missed = 0;
 }
 
+// see if the project's debt is beyond what would normally happen;
+// if so we conclude that it had a long job that ran in EDF mode;
+// avoid asking it for work unless absolutely necessary.
+//
+bool RSC_PROJECT_WORK_FETCH::overworked() {
+    double x = gstate.work_buf_total() + gstate.global_prefs.cpu_scheduling_period(); 
+    if (x < 86400) x = 86400;
+    return (long_term_debt < -x);
+}
+
+// should this project be accumulating LTD for this resource?
+//
+bool RSC_PROJECT_WORK_FETCH::debt_eligible(PROJECT* p, RSC_WORK_FETCH& rwf) {
+    if (p->non_cpu_intensive) return false;
+    if (p->suspended_via_gui) return false;
+    if (p->some_result_suspended()) return false;
+    if (has_runnable_jobs) return true;
+        // must precede the done_request_more_work check
+    if (p->dont_request_more_work) return false;
+    if (backoff_time > gstate.now) return false;
+    if (prefs_prevent_fetch(p, rwf.rsc_type)) return false;
+
+    // NOTE: it's critical that all conditions that might prevent
+    // us from asking the project for work of this type
+    // be included in the above list.
+    // Otherwise we might get in a state where debt accumulates,
+    // pushing other projects into overworked state
+
+    // The last time we asked for work we didn't get any,
+    // but it's been a while since we asked.
+    // In this case, accumulate debt until we reach (around) zero, then stop.
+    //
+    if (backoff_interval == MAX_BACKOFF_INTERVAL) {
+        if (long_term_debt > -DEBT_ADJUST_PERIOD) {
+            return false;
+        }
+    }
+    if (p->min_rpc_time > gstate.now) return false;
+    return true;
+}
+
+void RSC_PROJECT_WORK_FETCH::backoff(PROJECT* p, const char* name) {
+    if (backoff_interval) {
+        backoff_interval *= 2;
+        if (backoff_interval > MAX_BACKOFF_INTERVAL) backoff_interval = MAX_BACKOFF_INTERVAL;
+    } else {
+        backoff_interval = MIN_BACKOFF_INTERVAL;
+    }
+    double x = drand()*backoff_interval;
+    backoff_time = gstate.now + x;
+    if (log_flags.work_fetch_debug) {
+        msg_printf(p, MSG_INFO,
+            "[wfd] backing off %s %.0f sec", name, x
+        );
+    }
+}
+
+///////////////  RSC_WORK_FETCH  ///////////////
+
+RSC_PROJECT_WORK_FETCH& RSC_WORK_FETCH::project_state(PROJECT* p) {
+    switch(rsc_type) {
+    case RSC_TYPE_CPU: return p->cpu_pwf;
+    case RSC_TYPE_CUDA: return p->cuda_pwf;
+    case RSC_TYPE_ATI: return p->ati_pwf;
+    default: return p->cpu_pwf;
+    }
+}
+
+bool RSC_WORK_FETCH::may_have_work(PROJECT* p) {
+    if (prefs_prevent_fetch(p, rsc_type)) return false;
+    RSC_PROJECT_WORK_FETCH& w = project_state(p);
+    return (w.backoff_time < gstate.now);
+}
+
 void RSC_WORK_FETCH::rr_init() {
     shortfall = 0;
     nidle_now = 0;
@@ -102,46 +239,6 @@ void RSC_WORK_FETCH::rr_init() {
     busy_time_estimator.reset();
 }
 
-void WORK_FETCH::rr_init() {
-    cpu_work_fetch.rr_init();
-    if (coproc_cuda) {
-        cuda_work_fetch.rr_init();
-    }
-    if (coproc_ati) {
-        ati_work_fetch.rr_init();
-    }
-    for (unsigned int i=0; i<gstate.projects.size(); i++) {
-        PROJECT* p = gstate.projects[i];
-        p->pwf.can_fetch_work = p->pwf.compute_can_fetch_work(p);
-        p->pwf.has_runnable_jobs = false;
-        p->cpu_pwf.rr_init(p, RSC_TYPE_CPU);
-        if (coproc_cuda) {
-            p->cuda_pwf.rr_init(p, RSC_TYPE_CUDA);
-        }
-        if (coproc_ati) {
-            p->ati_pwf.rr_init(p, RSC_TYPE_ATI);
-        }
-    }
-}
-
-bool PROJECT_WORK_FETCH::compute_can_fetch_work(PROJECT* p) {
-    if (p->non_cpu_intensive) return false;
-    if (p->suspended_via_gui) return false;
-    if (p->master_url_fetch_pending) return false;
-    if (p->min_rpc_time > gstate.now) return false;
-    if (p->dont_request_more_work) return false;
-    if (p->some_download_stalled()) return false;
-    if (p->some_result_suspended()) return false;
-    if (p->too_many_uploading_results) return false;
-    return true;
-}
-
-void PROJECT_WORK_FETCH::reset(PROJECT* p) {
-    p->cpu_pwf.reset();
-    p->cuda_pwf.reset();
-    p->ati_pwf.reset();
-}
-
 void RSC_WORK_FETCH::accumulate_shortfall(double d_time) {
     double idle = ninstances - sim_nused;
     if (idle > 1e-6) {
@@ -165,37 +262,15 @@ void RSC_WORK_FETCH::update_busy_time(double dur, double nused) {
     busy_time_estimator.update(dur, nused);
 }
 
-// see if the project's debt is beyond what would normally happen;
-// if so we conclude that it had a long job that ran in EDF mode;
-// avoid asking it for work unless absolutely necessary.
-//
-bool RSC_PROJECT_WORK_FETCH::overworked() {
-    double x = gstate.work_buf_total() + gstate.global_prefs.cpu_scheduling_period(); 
-    if (x < 86400) x = 86400;
-    return (debt < -x);
+static bool wacky_dcf(PROJECT* p) {
+    double dcf = p->duration_correction_factor;
+    return (dcf < 0.02 || dcf > 80.0);
 }
 
-#define FETCH_IF_IDLE_INSTANCE          0
-    // If resource has an idle instance,
-    // get work for it from the project with greatest LTD,
-    // even if it's overworked.
-#define FETCH_IF_MAJOR_SHORTFALL        1
-    // If resource is saturated for less than work_buf_min(),
-    // get work for it from the project with greatest LTD,
-    // even if it's overworked.
-#define FETCH_IF_MINOR_SHORTFALL        2
-    // If resource is saturated for less than work_buf_total(),
-    // get work for it from the non-overworked project with greatest LTD.
-#define FETCH_IF_PROJECT_STARVED        3
-    // If any project is not overworked and has no runnable jobs
-    // (for any resource, not just this one)
-    // get work from the one with greatest LTD.
-
 // Choose the best project to ask for work for this resource,
 // given the specific criterion
 //
 PROJECT* RSC_WORK_FETCH::choose_project(int criterion) {
-    double req;
     PROJECT* pbest = NULL;
 
     switch (criterion) {
@@ -218,20 +293,31 @@ PROJECT* RSC_WORK_FETCH::choose_project(int criterion) {
         if (!p->pwf.can_fetch_work) continue;
         if (!project_state(p).may_have_work) continue;
         RSC_PROJECT_WORK_FETCH& rpwf = project_state(p);
+        if (rpwf.anon_skip) continue;
         switch (criterion) {
         case FETCH_IF_MINOR_SHORTFALL:
             if (rpwf.overworked()) continue;
+            if (wacky_dcf(p)) continue;
+            if (!p->resource_share) continue;
+            break;
+        case FETCH_IF_MAJOR_SHORTFALL:
+            if (wacky_dcf(p)) continue;
+            if (!p->resource_share) continue;
             break;
         case FETCH_IF_PROJECT_STARVED:
             if (rpwf.overworked()) continue;
-            if (p->pwf.has_runnable_jobs) continue;
+            if (rpwf.nused_total >= ninstances*rpwf.fetchable_share) continue;
+            if (!p->resource_share) continue;
             break;
         }
+
         if (pbest) {
+            if (!p->resource_share) {
+                continue;
+            }
             if (pbest->pwf.overall_debt > p->pwf.overall_debt) {
                 continue;
             }
-
         }
         pbest = p;
     }
@@ -242,87 +328,71 @@ PROJECT* RSC_WORK_FETCH::choose_project(int criterion) {
     work_fetch.clear_request();
     switch (criterion) {
     case FETCH_IF_IDLE_INSTANCE:
-        if (log_flags.work_fetch_debug) {
-            msg_printf(pbest, MSG_INFO,
-                "chosen: %s idle instance", rsc_name(rsc_type)
-            );
-        }
-        req = share_request(pbest);
-        if (req > shortfall) req = shortfall;
-        set_request(pbest, req);
-        break;
     case FETCH_IF_MAJOR_SHORTFALL:
-        if (log_flags.work_fetch_debug) {
-            msg_printf(pbest, MSG_INFO,
-                "chosen: %s major shortfall", rsc_name(rsc_type)
-            );
-        }
-        req = share_request(pbest);
-        if (req > shortfall) req = shortfall;
-        set_request(pbest, req);
+        set_request(pbest, true);
+        break;
+    case FETCH_IF_PROJECT_STARVED:
+        set_request(pbest, false);
         break;
     case FETCH_IF_MINOR_SHORTFALL:
-        if (log_flags.work_fetch_debug) {
-            msg_printf(pbest, MSG_INFO,
-                "chosen: %s minor shortfall", rsc_name(rsc_type)
-            );
-        }
-        work_fetch.set_shortfall_requests(pbest);
+        // in this case, potentially request work for all resources
+        //
+        work_fetch.set_all_requests(pbest);
         break;
-    case FETCH_IF_PROJECT_STARVED:
+    }
+    // in principle there should be a nonzero request.
+    // check, just in case
+    //
+    if (!req_secs && !req_instances) {
         if (log_flags.work_fetch_debug) {
             msg_printf(pbest, MSG_INFO,
-                "chosen: %s starved", rsc_name(rsc_type)
+                "[wfd] error: project chosen but zero request"
             );
         }
-        req = share_request(pbest);
-        set_request(pbest, req);
-        break;
+        return 0;
     }
-    return pbest;
-}
 
-void WORK_FETCH::set_shortfall_requests(PROJECT* p) {
-    cpu_work_fetch.set_shortfall_request(p);
-    if (coproc_cuda && coproc_cuda->usable) {
-        cuda_work_fetch.set_shortfall_request(p);
-    }
-    if (coproc_ati && coproc_ati->usable) {
-        ati_work_fetch.set_shortfall_request(p);
+    if (log_flags.work_fetch_debug) {
+        msg_printf(pbest, MSG_INFO,
+            "chosen: %s %s: %.2f inst, %.2f sec",
+            criterion_name(criterion), rsc_name(rsc_type),
+            req_instances, req_secs
+        );
     }
+
+    return pbest;
 }
 
-void RSC_WORK_FETCH::set_shortfall_request(PROJECT* p) {
-    if (!shortfall) return;
+// request this project's share of shortfall and instances.
+// don't request anything if project is overworked or backed off.
+//
+void RSC_WORK_FETCH::set_request(PROJECT* p, bool allow_overworked) {
     RSC_PROJECT_WORK_FETCH& w = project_state(p);
     if (!w.may_have_work) return;
-    if (w.overworked()) return;
-    set_request(p, shortfall);
-}
-
-void WORK_FETCH::set_overall_debts() {
-    for (unsigned i=0; i<gstate.projects.size(); i++) {
-        PROJECT* p = gstate.projects[i];
-        p->pwf.overall_debt = p->cpu_pwf.debt;
-        if (coproc_cuda) {
-            p->pwf.overall_debt += cuda_work_fetch.speed*p->cuda_pwf.debt;
-        }
-        if (coproc_ati) {
-            p->pwf.overall_debt += ati_work_fetch.speed*p->ati_pwf.debt;
+    if (w.anon_skip) return;
+    if (!allow_overworked && w.overworked()) return;
+    if (shortfall) {
+        if (wacky_dcf(p)) {
+            // if project's DCF is too big or small,
+            // its completion time estimates are useless; just ask for 1 second
+            //
+            req_secs = 1;
+        } else {
+            req_secs = shortfall * w.fetchable_share;
         }
     }
-}
 
-void WORK_FETCH::zero_debts() {
-    for (unsigned i=0; i<gstate.projects.size(); i++) {
-        PROJECT* p = gstate.projects[i];
-        p->cpu_pwf.debt = 0;
-        if (coproc_cuda) {
-            p->cuda_pwf.debt = 0;
-        }
-        if (coproc_ati) {
-            p->ati_pwf.debt = 0;
-        }
+    // the number of additional instances needed to have our share
+    //
+    double x1 = (ninstances * w.fetchable_share) - w.nused_total;
+
+    // our share of the idle instances
+    //
+    double x2 = nidle_now * w.fetchable_share;
+
+    req_instances = std::max(x1, x2);
+    if (req_instances && !req_secs) {
+        req_secs = 1;
     }
 }
 
@@ -341,19 +411,19 @@ void RSC_WORK_FETCH::print_state(const char* name) {
         bool blocked_by_prefs = false;
         switch (rsc_type) {
         case RSC_TYPE_CPU:
-            if (p->no_cpu) blocked_by_prefs = true;
+            if (p->no_cpu_pref) blocked_by_prefs = true;
             break;
         case RSC_TYPE_CUDA:
-            if (p->no_cuda) blocked_by_prefs = true;
+            if (p->no_cuda_pref) blocked_by_prefs = true;
             break;
         case RSC_TYPE_ATI:
-            if (p->no_ati) blocked_by_prefs = true;
+            if (p->no_ati_pref) blocked_by_prefs = true;
             break;
         }
         msg_printf(p, MSG_INFO,
-            "[wfd] %s: fetch share %.2f debt %.2f backoff dt %.2f int %.2f%s%s%s%s%s%s%s",
+            "[wfd] %s: fetch share %.2f LTD %.2f backoff dt %.2f int %.2f%s%s%s%s%s%s%s",
             name,
-            pwf.fetchable_share, pwf.debt, bt, pwf.backoff_interval,
+            pwf.fetchable_share, pwf.long_term_debt, bt, pwf.backoff_interval,
             p->suspended_via_gui?" (susp via GUI)":"",
             p->master_url_fetch_pending?" (master fetch pending)":"",
             p->min_rpc_time > gstate.now?" (comm deferred)":"",
@@ -365,6 +435,300 @@ void RSC_WORK_FETCH::print_state(const char* name) {
     }
 }
 
+void RSC_WORK_FETCH::clear_request() {
+    req_secs = 0;
+    req_instances = 0;
+}
+
+// update long-term debts for a resource.
+//
+void RSC_WORK_FETCH::update_long_term_debts() {
+    unsigned int i;
+    int neligible = 0;
+    double ders = 0;
+    PROJECT* p;
+
+    // find the total resource share of eligible projects
+    //
+    for (i=0; i<gstate.projects.size(); i++) {
+        p = gstate.projects[i];
+        RSC_PROJECT_WORK_FETCH& w = project_state(p);
+        if (w.debt_eligible(p, *this)) {
+            ders += p->resource_share;
+            neligible++;
+        }
+    }
+    if (!neligible) {
+        if (log_flags.debt_debug) {
+            msg_printf(0, MSG_INFO,
+                "[debt] %s: no eligible projects", rsc_name(rsc_type)
+            );
+        }
+        return;
+    }
+
+    double max_debt=0;
+    bool first = true;
+    for (i=0; i<gstate.projects.size(); i++) {
+        p = gstate.projects[i];
+        if (p->non_cpu_intensive) continue;
+        if (!p->resource_share) continue;
+        RSC_PROJECT_WORK_FETCH& w = project_state(p);
+        if (w.debt_eligible(p, *this)) {
+            double share_frac = p->resource_share/ders;
+
+            // the change to a project's debt is:
+            // (how much it's owed) - (how much it got)
+            //
+            double delta = share_frac*secs_this_debt_interval - w.secs_this_debt_interval;
+            delta /= ninstances;
+            w.long_term_debt += delta;
+            if (log_flags.debt_debug) {
+                msg_printf(p, MSG_INFO,
+                    "[debt] %s LTD %.2f delta %.2f (%.2f*%.2f - %.2f)/%d",
+                    rsc_name(rsc_type),
+                    w.long_term_debt, delta, share_frac,
+                    secs_this_debt_interval,
+                    w.secs_this_debt_interval,
+                    ninstances
+                );
+            }
+            if (first) {
+                max_debt = w.long_term_debt;
+                first = false;
+            } else {
+                if (w.long_term_debt > max_debt) {
+                    max_debt = w.long_term_debt;
+                }
+            }
+        } else {
+            if (log_flags.debt_debug) {
+                msg_printf(p, MSG_INFO,
+                    "[debt] %s ineligible; LTD %.2f",
+                    rsc_name(rsc_type), w.long_term_debt
+                );
+            }
+        }
+    }
+
+    // The net change may be
+    // - positive if the resource wasn't fully utilized during the debt interval
+    // - negative it was overcommitted (e.g., CPU)
+    // We need to keep eligible projects from diverging from non-eligible ones;
+    // also, if all the debts are large negative we need to gradually
+    // shift them towards zero.
+    // To do this, we add an offset as follows:
+    // delta_limit is the largest rate at which any project's debt
+    // could increase or decrease.
+    // If the largest debt is close to zero (relative to delta_limit)
+    // than add an offset that will bring it exactly to zero.
+    // Otherwise add an offset of 2*delta_limit,
+    // which will gradually bring all the debts towards zero
+    //
+    // The policy of keeping the max debt at zero is important;
+    // it means that new projects will begin in parity with high-debt project,
+    // and won't wait for months to get work.
+    //
+    double offset;
+    double delta_limit = secs_this_debt_interval;
+    if (max_debt > -2*delta_limit) {
+        if (fabs(max_debt) < 1e-6) max_debt = 0;
+        offset = max_debt?-max_debt:0;  // avoid -0
+    } else {
+        offset = 2*delta_limit;
+    }
+    if (log_flags.debt_debug) {
+        msg_printf(0, MSG_INFO, "[debt] %s LTD: adding offset %f",
+            rsc_name(rsc_type), offset
+        );
+    }
+    for (i=0; i<gstate.projects.size(); i++) {
+        p = gstate.projects[i];
+        if (p->non_cpu_intensive) continue;
+        if (!p->resource_share) continue;
+        RSC_PROJECT_WORK_FETCH& w = project_state(p);
+        if (w.debt_eligible(p, *this)) {
+            w.long_term_debt += offset;
+        } else {
+            if (offset > 0) {
+                w.long_term_debt += offset;
+            }
+        }
+        if (w.long_term_debt > 0) w.long_term_debt = 0;
+    }
+}
+
+
+// update short-term debts for a resource.
+//
+void RSC_WORK_FETCH::update_short_term_debts() {
+    unsigned int i;
+    PROJECT* p;
+    int nprojects=0, nrprojects=0;
+    double share_frac;
+    double total_short_term_debt = 0;
+    double rrs = gstate.runnable_resource_share(rsc_type);
+
+    for (i=0; i<gstate.projects.size(); i++) {
+        double delta;
+        p = gstate.projects[i];
+        if (p->non_cpu_intensive) continue;
+        if (!p->resource_share) continue;
+        RSC_PROJECT_WORK_FETCH& rpwf = project_state(p);
+        nprojects++;
+
+        if (p->runnable(rsc_type)) {
+            nrprojects++;
+            share_frac = p->resource_share/rrs;
+            delta = share_frac*secs_this_debt_interval
+                - rpwf.secs_this_debt_interval;
+            delta /= ninstances;
+            if (log_flags.std_debug) {
+                msg_printf(p, MSG_INFO,
+                    "[std_debug] %s STD delta %.2f (%.2f*%.2f - %.2f)/%d",
+                    rsc_name(rsc_type),
+                    delta,
+                    share_frac,
+                    secs_this_debt_interval,
+                    rpwf.secs_this_debt_interval,
+                    ninstances
+                );
+            }
+            rpwf.short_term_debt += delta;
+        }
+        total_short_term_debt += rpwf.short_term_debt;
+    }
+
+    //  normalize so mean is zero, and limit abs value to MAX_STD
+    //
+    if (nrprojects) {
+        double avg_short_term_debt = total_short_term_debt / nprojects;
+        for (i=0; i<gstate.projects.size(); i++) {
+            p = gstate.projects[i];
+            if (p->non_cpu_intensive) continue;
+            if (!p->resource_share) continue;
+            RSC_PROJECT_WORK_FETCH& rpwf = project_state(p);
+            rpwf.short_term_debt -= avg_short_term_debt;
+            if (rpwf.short_term_debt > MAX_STD) {
+                rpwf.short_term_debt = MAX_STD;
+            }
+            if (rpwf.short_term_debt < -MAX_STD) {
+                rpwf.short_term_debt = -MAX_STD;
+            }
+            if (p->runnable(rsc_type)) {
+                if (log_flags.std_debug) {
+                    msg_printf(p, MSG_INFO,
+                        "[std_debug] %s STD %.2f",
+                        rsc_name(rsc_type), rpwf.short_term_debt
+                    );
+                }
+            }
+        }
+    }
+}
+
+///////////////  PROJECT_WORK_FETCH  ///////////////
+
+bool PROJECT_WORK_FETCH::compute_can_fetch_work(PROJECT* p) {
+    if (p->non_cpu_intensive) return false;
+    if (p->suspended_via_gui) return false;
+    if (p->master_url_fetch_pending) return false;
+    if (p->min_rpc_time > gstate.now) return false;
+    if (p->dont_request_more_work) return false;
+    if (p->some_download_stalled()) return false;
+    if (p->some_result_suspended()) return false;
+    if (p->too_many_uploading_results) return false;
+    return true;
+}
+
+void PROJECT_WORK_FETCH::reset(PROJECT* p) {
+    p->cpu_pwf.reset();
+    p->cuda_pwf.reset();
+    p->ati_pwf.reset();
+}
+
+///////////////  WORK_FETCH  ///////////////
+
+void WORK_FETCH::rr_init() {
+    cpu_work_fetch.rr_init();
+    // do these even if no device; there may be "coproc_missing" jobs
+    cuda_work_fetch.rr_init();
+    ati_work_fetch.rr_init();
+    for (unsigned int i=0; i<gstate.projects.size(); i++) {
+        PROJECT* p = gstate.projects[i];
+        p->pwf.can_fetch_work = p->pwf.compute_can_fetch_work(p);
+        p->pwf.has_runnable_jobs = false;
+        p->cpu_pwf.rr_init(p, RSC_TYPE_CPU);
+        if (coproc_cuda) {
+            p->cuda_pwf.rr_init(p, RSC_TYPE_CUDA);
+        }
+        if (coproc_ati) {
+            p->ati_pwf.rr_init(p, RSC_TYPE_ATI);
+        }
+    }
+}
+
+void WORK_FETCH::set_all_requests(PROJECT* p) {
+    cpu_work_fetch.set_request(p, false);
+    if (coproc_cuda && gpus_usable) {
+        cuda_work_fetch.set_request(p, false);
+    }
+    if (coproc_ati && gpus_usable) {
+        ati_work_fetch.set_request(p, false);
+    }
+}
+
+// Compute an "overall long-term debt" for each project.
+// This is a sum of per-resource terms, scaled by the relative speed of the resource.
+// The term for a resource is its LTD plus an estimate of queued work.
+//
+void WORK_FETCH::set_overall_debts() {
+    unsigned int i;
+    PROJECT* p;
+    RESULT* rp;
+    APP_VERSION* avp;
+
+    for (i=0; i<gstate.projects.size(); i++) {
+        p = gstate.projects[i];
+        p->cpu_pwf.queue_est = 0;
+        p->cuda_pwf.queue_est = 0;
+        p->ati_pwf.queue_est = 0;
+    }
+    for (i=0; i<gstate.results.size(); i++) {
+        rp = gstate.results[i];
+        p = rp->project;
+        if (!rp->nearly_runnable()) continue;
+        if (p->non_cpu_intensive) continue;
+        double dt = rp->estimated_time_remaining(false);
+        avp = rp->avp;
+        p->cpu_pwf.queue_est += dt*avp->avg_ncpus;
+        p->cuda_pwf.queue_est += dt*avp->ncudas;
+        p->ati_pwf.queue_est += dt*avp->natis;
+    }
+    for (i=0; i<gstate.projects.size(); i++) {
+        p = gstate.projects[i];
+        double queue_debt = p->cpu_pwf.queue_est/gstate.ncpus;
+        p->pwf.overall_debt = p->cpu_pwf.long_term_debt - queue_debt;
+        if (coproc_cuda) {
+            p->pwf.overall_debt += cuda_work_fetch.relative_speed*
+                (p->cuda_pwf.long_term_debt - p->cuda_pwf.queue_est/coproc_cuda->count);
+        }
+        if (coproc_ati) {
+            p->pwf.overall_debt += ati_work_fetch.relative_speed*
+                (p->ati_pwf.long_term_debt - p->ati_pwf.queue_est/coproc_ati->count);
+        }
+    }
+}
+
+void WORK_FETCH::zero_debts() {
+    for (unsigned i=0; i<gstate.projects.size(); i++) {
+        PROJECT* p = gstate.projects[i];
+        p->cpu_pwf.zero_debt();
+        p->cuda_pwf.zero_debt();
+        p->ati_pwf.zero_debt();
+    }
+}
+
 void WORK_FETCH::print_state() {
     msg_printf(0, MSG_INFO, "[wfd] ------- start work fetch state -------");
     msg_printf(0, MSG_INFO, "[wfd] target work buffer: %.2f + %.2f sec",
@@ -380,35 +744,17 @@ void WORK_FETCH::print_state() {
     for (unsigned int i=0; i<gstate.projects.size(); i++) {
         PROJECT* p = gstate.projects[i];
         if (p->non_cpu_intensive) continue;
-        msg_printf(p, MSG_INFO, "[wfd] overall_debt %.0f", p->pwf.overall_debt);
+        msg_printf(p, MSG_INFO, "[wfd] overall LTD %.2f", p->pwf.overall_debt);
     }
     msg_printf(0, MSG_INFO, "[wfd] ------- end work fetch state -------");
 }
 
-void RSC_WORK_FETCH::clear_request() {
-    req_secs = 0;
-    req_instances = 0;
-}
-
 void WORK_FETCH::clear_request() {
     cpu_work_fetch.clear_request();
     cuda_work_fetch.clear_request();
     ati_work_fetch.clear_request();
 }
 
-// does the project have a downloading or runnable job?
-//
-static bool has_a_job(PROJECT* p) {
-    for (unsigned int j=0; j<gstate.results.size(); j++) {
-        RESULT* rp = gstate.results[j];
-        if (rp->project != p) continue;
-        if (rp->state() <= RESULT_FILES_DOWNLOADED) {
-            return true;
-        }
-    }
-    return false;
-}
-
 // we're going to contact this project for reasons other than work fetch;
 // decide if we should piggy-back a work fetch request.
 //
@@ -441,7 +787,7 @@ void WORK_FETCH::compute_work_request(PROJECT* p) {
         // Otherwise we can have a situation where a GPU is idle,
         // we ask only for GPU work, and the project never has any
         //
-        work_fetch.set_shortfall_requests(pbest);
+        work_fetch.set_all_requests(pbest);
         return;
     }
 
@@ -472,6 +818,10 @@ PROJECT* WORK_FETCH::non_cpu_intensive_project_needing_work() {
 PROJECT* WORK_FETCH::choose_project() {
     PROJECT* p = 0;
 
+    if (log_flags.work_fetch_debug) {
+        msg_printf(0, MSG_INFO, "[wfd]: work fetch start");
+    }
+
     p = non_cpu_intensive_project_needing_work();
     if (p) return p;
 
@@ -480,13 +830,13 @@ PROJECT* WORK_FETCH::choose_project() {
     gstate.rr_simulation();
     set_overall_debts();
 
-    bool cuda_usable = coproc_cuda && coproc_cuda->usable;
-    bool ati_usable = coproc_ati && coproc_ati->usable;
+    bool cuda_usable = coproc_cuda && gpus_usable;
+    bool ati_usable = coproc_ati && gpus_usable;
 
     if (cuda_usable) {
         p = cuda_work_fetch.choose_project(FETCH_IF_IDLE_INSTANCE);
     }
-    if (ati_usable) {
+    if (!p && ati_usable) {
         p = ati_work_fetch.choose_project(FETCH_IF_IDLE_INSTANCE);
     }
     if (!p) {
@@ -535,27 +885,6 @@ PROJECT* WORK_FETCH::choose_project() {
     return p;
 }
 
-double RSC_WORK_FETCH::share_request(PROJECT* p) {
-    double dcf = p->duration_correction_factor;
-    if (dcf < 0.02 || dcf > 80.0) {
-        // if project's DCF is too big or small,
-        // its completion time estimates are useless; just ask for 1 second
-        //
-        return 1;
-    } else {
-        // otherwise ask for the project's share
-        //
-        RSC_PROJECT_WORK_FETCH& w = project_state(p);
-        return gstate.work_buf_total()*w.fetchable_share;
-    }
-}
-
-void RSC_WORK_FETCH::set_request(PROJECT* p, double r) {
-    RSC_PROJECT_WORK_FETCH& w = project_state(p);
-    req_secs = r;
-    req_instances = (int)ceil(w.fetchable_share*nidle_now);
-}
-
 void WORK_FETCH::accumulate_inst_sec(ACTIVE_TASK* atp, double dt) {
     APP_VERSION* avp = atp->result->avp;
     PROJECT* p = atp->result->project;
@@ -574,113 +903,6 @@ void WORK_FETCH::accumulate_inst_sec(ACTIVE_TASK* atp, double dt) {
     }
 }
 
-// update long-term debts for a resource.
-//
-void RSC_WORK_FETCH::update_debts() {
-    unsigned int i;
-    int neligible = 0;
-    double ders = 0;
-    PROJECT* p;
-
-    // find the total resource share of eligible projects
-    //
-    for (i=0; i<gstate.projects.size(); i++) {
-        p = gstate.projects[i];
-        RSC_PROJECT_WORK_FETCH& w = project_state(p);
-        if (w.debt_eligible(p, *this)) {
-            ders += p->resource_share;
-            neligible++;
-        }
-    }
-    if (!neligible) {
-        if (log_flags.debt_debug) {
-            msg_printf(0, MSG_INFO,
-                "[debt] %s: no eligible projects", rsc_name(rsc_type)
-            );
-        }
-        return;
-    }
-
-    double max_debt=0;
-    bool first = true;
-    for (i=0; i<gstate.projects.size(); i++) {
-        p = gstate.projects[i];
-        if (p->non_cpu_intensive) continue;
-        RSC_PROJECT_WORK_FETCH& w = project_state(p);
-        if (w.debt_eligible(p, *this)) {
-            double share_frac = p->resource_share/ders;
-
-            // the change to a project's debt is:
-            // (how much it's owed) - (how much it got)
-            //
-            double delta = share_frac*secs_this_debt_interval - w.secs_this_debt_interval;
-            w.debt += delta;
-            if (log_flags.debt_debug) {
-                msg_printf(p, MSG_INFO,
-                    "[debt] %s debt %.2f delta %.2f share frac %.2f (%.2f/%.2f) secs %.2f rsc_secs %.2f",
-                    rsc_name(rsc_type),
-                    w.debt, delta, share_frac, p->resource_share, ders, secs_this_debt_interval,
-                    w.secs_this_debt_interval
-                );
-            }
-            if (first) {
-                max_debt = w.debt;
-                first = false;
-            } else {
-                if (w.debt > max_debt) {
-                    max_debt = w.debt;
-                }
-            }
-        } else {
-            if (log_flags.debt_debug) {
-                msg_printf(p, MSG_INFO,
-                    "[debt] %s ineligible; debt %.2f",
-                    rsc_name(rsc_type), w.debt
-                );
-            }
-        }
-    }
-
-    // The net change may be
-    // - positive if the resource wasn't fully utilized during the debt interval
-    // - negative it was overcommitted (e.g., CPU)
-    // We need to keep eligible projects from diverging from non-eligible ones;
-    // also, if all the debts are large negative we need to gradually
-    // shift them towards zero.
-    // To do this, we add an offset as follows:
-    // delta_limit is the largest rate at which any project's debt
-    // could increase or decrease.
-    // If the largest debt is close to zero (relative to delta_limit)
-    // than add an offset that will bring it exactly to zero.
-    // Otherwise add an offset of 2*delta_limit,
-    // which will gradually bring all the debts towards zero
-    //
-    // The policy of keeping the max debt at zero is important;
-    // it means that new projects will begin in parity with high-debt project,
-    // and won't wait for months to get work.
-    //
-    double offset;
-    double delta_limit = secs_this_debt_interval*ninstances;
-    if (max_debt > -2*delta_limit) {
-        offset = max_debt?-max_debt:0;  // avoid -0
-    } else {
-        offset = 2*delta_limit;
-    }
-    if (log_flags.debt_debug) {
-        msg_printf(0, MSG_INFO, "[debt] %s debt: adding offset %.2f",
-            rsc_name(rsc_type), offset
-        );
-    }
-    for (i=0; i<gstate.projects.size(); i++) {
-        p = gstate.projects[i];
-        if (p->non_cpu_intensive) continue;
-        RSC_PROJECT_WORK_FETCH& w = project_state(p);
-        if (w.debt_eligible(p, *this)) {
-            w.debt += offset;
-        }
-    }
-}
-
 // find total and per-project resource shares for each resource
 //
 void WORK_FETCH::compute_shares() {
@@ -723,50 +945,22 @@ void WORK_FETCH::compute_shares() {
         }
         if (!p->pwf.can_fetch_work) continue;
         if (p->cpu_pwf.may_have_work) {
-            p->cpu_pwf.fetchable_share = p->resource_share/cpu_work_fetch.total_fetchable_share;
+            p->cpu_pwf.fetchable_share = cpu_work_fetch.total_fetchable_share?p->resource_share/cpu_work_fetch.total_fetchable_share:1;
+            if (log_flags.work_fetch_debug) {
+                msg_printf(p, MSG_INFO,
+                    "[wfd] FS: %f = %f/%f\n",
+                    p->cpu_pwf.fetchable_share, p->resource_share,
+                    cpu_work_fetch.total_fetchable_share
+                );
+            }
         }
         if (coproc_cuda && p->cuda_pwf.may_have_work) {
-            p->cuda_pwf.fetchable_share = p->resource_share/cuda_work_fetch.total_fetchable_share;
+            p->cuda_pwf.fetchable_share = cuda_work_fetch.total_fetchable_share?p->resource_share/cuda_work_fetch.total_fetchable_share:1;
         }
         if (coproc_ati && p->ati_pwf.may_have_work) {
-            p->ati_pwf.fetchable_share = p->resource_share/ati_work_fetch.total_fetchable_share;
-        }
-    }
-}
-
-// should this project be accumulating debt for this resource?
-//
-bool RSC_PROJECT_WORK_FETCH::debt_eligible(PROJECT* p, RSC_WORK_FETCH& rwf) {
-    if (p->non_cpu_intensive) return false;
-    if (p->suspended_via_gui) return false;
-    if (p->dont_request_more_work) return false;
-    if (has_runnable_jobs) return true;
-    if (backoff_time > gstate.now) return false;
-
-    // The last time we asked for work we didn't get any,
-    // but it's been a while since we asked.
-    // In this case, accumulate debt until we reach (around) zero, then stop.
-    //
-    if (backoff_interval == MAX_BACKOFF_INTERVAL) {
-        if (debt > -rwf.ninstances*DEBT_ADJUST_PERIOD) {
-            return false;
-        }
-    }
-    if (p->min_rpc_time > gstate.now) return false;
-    return true;
-}
-
-inline bool has_coproc_app(PROJECT* p, int rsc_type) {
-    unsigned int i;
-    for (i=0; i<gstate.app_versions.size(); i++) {
-        APP_VERSION* avp = gstate.app_versions[i];
-        if (avp->project != p) continue;
-        switch(rsc_type) {
-        case RSC_TYPE_CUDA: if (avp->ncudas) return true;
-        case RSC_TYPE_ATI: if (avp->natis) return true;
+            p->ati_pwf.fetchable_share = ati_work_fetch.total_fetchable_share?p->resource_share/ati_work_fetch.total_fetchable_share:1;
         }
     }
-    return false;
 }
 
 void WORK_FETCH::write_request(FILE* f, PROJECT* p) {
@@ -792,7 +986,7 @@ void WORK_FETCH::write_request(FILE* f, PROJECT* p) {
     fprintf(f,
         "    <work_req_seconds>%f</work_req_seconds>\n"
         "    <cpu_req_secs>%f</cpu_req_secs>\n"
-        "    <cpu_req_instances>%d</cpu_req_instances>\n"
+        "    <cpu_req_instances>%f</cpu_req_instances>\n"
         "    <estimated_delay>%f</estimated_delay>\n",
         work_req,
         cpu_work_fetch.req_secs,
@@ -802,18 +996,18 @@ void WORK_FETCH::write_request(FILE* f, PROJECT* p) {
     if (log_flags.work_fetch_debug) {
         char buf[256], buf2[256];
         sprintf(buf,
-            "[wfd] request: %.2f sec CPU (%.2f sec, %d)",
+            "[wfd] request: %.2f sec CPU (%.2f sec, %.2f)",
             work_req,
             cpu_work_fetch.req_secs, cpu_work_fetch.req_instances
         );
         if (coproc_cuda) {
-            sprintf(buf2, " NVIDIA GPU (%.2f sec, %d)",
+            sprintf(buf2, " NVIDIA GPU (%.2f sec, %.2f)",
                 cuda_work_fetch.req_secs, cuda_work_fetch.req_instances
             );
             strcat(buf, buf2);
         }
         if (coproc_ati) {
-            sprintf(buf2, " ATI GPU (%.2f sec, %d)",
+            sprintf(buf2, " ATI GPU (%.2f sec, %.2f)",
                 ati_work_fetch.req_secs, ati_work_fetch.req_instances
             );
             strcat(buf, buf2);
@@ -919,21 +1113,27 @@ void WORK_FETCH::init() {
     if (config.zero_debts) {
         zero_debts();
     }
-}
 
-void RSC_PROJECT_WORK_FETCH::backoff(PROJECT* p, const char* name) {
-    if (backoff_interval) {
-        backoff_interval *= 2;
-        if (backoff_interval > MAX_BACKOFF_INTERVAL) backoff_interval = MAX_BACKOFF_INTERVAL;
-    } else {
-        backoff_interval = MIN_BACKOFF_INTERVAL;
-    }
-    double x = drand()*backoff_interval;
-    backoff_time = gstate.now + x;
-    if (log_flags.work_fetch_debug) {
-        msg_printf(p, MSG_INFO,
-            "[wfd] backing off %s %.0f sec", name, x
-        );
+    // see what resources anon platform projects can use
+    //
+    unsigned int i, j;
+    for (i=0; i<gstate.projects.size(); i++) {
+        PROJECT* p = gstate.projects[i];
+        if (!p->anonymous_platform) continue;
+        p->cpu_pwf.anon_skip = true;
+        p->cuda_pwf.anon_skip = true;
+        p->ati_pwf.anon_skip = true;
+        for (j=0; j<gstate.app_versions.size(); j++) {
+            APP_VERSION* avp = gstate.app_versions[j];
+            if (avp->project != p) continue;
+            if (avp->ncudas) {
+                p->cuda_pwf.anon_skip = false;
+            } else if (avp->natis) {
+                p->ati_pwf.anon_skip = false;
+            } else {
+                p->cpu_pwf.anon_skip = false;
+            }
+        }
     }
 }
 
@@ -967,11 +1167,24 @@ void CLIENT_STATE::compute_nuploading_results() {
     }
 }
 
-bool PROJECT::runnable() {
+bool PROJECT::runnable(int rsc_type) {
     if (suspended_via_gui) return false;
     for (unsigned int i=0; i<gstate.results.size(); i++) {
         RESULT* rp = gstate.results[i];
         if (rp->project != this) continue;
+        switch (rsc_type) {
+        case RSC_TYPE_ANY:
+            break;
+        case RSC_TYPE_CPU:
+            if (rp->uses_coprocs()) continue;
+            break;
+        case RSC_TYPE_CUDA:
+            if (rp->avp->ncudas == 0) continue;
+            break;
+        case RSC_TYPE_ATI:
+            if (rp->avp->natis == 0) continue;
+            break;
+        }
         if (rp->runnable()) return true;
     }
     return false;
@@ -1007,14 +1220,14 @@ bool PROJECT::can_request_work() {
 }
 
 bool PROJECT::potentially_runnable() {
-    if (runnable()) return true;
+    if (runnable(RSC_TYPE_ANY)) return true;
     if (can_request_work()) return true;
     if (downloading()) return true;
     return false;
 }
 
 bool PROJECT::nearly_runnable() {
-    if (runnable()) return true;
+    if (runnable(RSC_TYPE_ANY)) return true;
     if (downloading()) return true;
     return false;
 }
@@ -1024,6 +1237,7 @@ bool RESULT::runnable() {
     if (project->suspended_via_gui) return false;
     if (state() != RESULT_FILES_DOWNLOADED) return false;
     if (coproc_missing) return false;
+    if (schedule_backoff > gstate.now) return false;
     return true;
 }
 
@@ -1065,35 +1279,34 @@ double RESULT::estimated_time_remaining(bool for_work_fetch) {
     if (computing_done()) return 0;
     ACTIVE_TASK* atp = gstate.lookup_active_task_by_result(this);
     if (atp) {
-        return atp->est_time_to_completion(for_work_fetch);
+        return atp->est_dur(for_work_fetch) - atp->elapsed_time;
     }
     return estimated_duration(for_work_fetch);
 }
 
-// Returns the estimated elapsed time to completion (in seconds) of this task.
+// Returns the estimated total elapsed time of this task.
 // Compute this as a weighted average of estimates based on
 // 1) the workunit's flops count (static estimate)
 // 2) the current elapsed time and fraction done (dynamic estimate)
 //
-double ACTIVE_TASK::est_time_to_completion(bool for_work_fetch) {
+double ACTIVE_TASK::est_dur(bool for_work_fetch) {
     if (fraction_done >= 1) return 0;
     double wu_est = result->estimated_duration(for_work_fetch);
     if (fraction_done <= 0) return wu_est;
-    double frac_est = (elapsed_time / fraction_done) - elapsed_time;
-#if 0
-    // commenting this out for now - could cause big discontinuity
-    //
-    if (elapsed_time >= wu_est) {
-        // if the job has already run longer than static estimate,
-        // just use the dynamic estimate.
-        //
-        return frac_est;
-    }
-#endif
+    if (wu_est < elapsed_time) wu_est = elapsed_time;
+    double frac_est = elapsed_time / fraction_done;
     double fraction_left = 1-fraction_done;
     double wu_weight = fraction_left * fraction_left;
     double fd_weight = 1 - wu_weight;
-    double x = fd_weight*frac_est + wu_weight*fraction_left*wu_est;
+    double x = fd_weight*frac_est + wu_weight*wu_est;
+#if 1
+    if (log_flags.rr_simulation) {
+        msg_printf(result->project, MSG_INFO,
+            "[rr_sim] %s dur: %.2f = %.3f*%.2f + %.3f*%.2f",
+            result->name, x, fd_weight, frac_est, wu_weight, wu_est
+        );
+    }
+#endif
     return x;
 }
 
diff --git a/client/work_fetch.h b/client/work_fetch.h
index 0fb23b1..8d98f06 100644
--- a/client/work_fetch.h
+++ b/client/work_fetch.h
@@ -23,9 +23,10 @@
 
 #include <vector>
 
-#define RSC_TYPE_CPU    0
-#define RSC_TYPE_CUDA   1
-#define RSC_TYPE_ATI    2
+#define RSC_TYPE_ANY    0
+#define RSC_TYPE_CPU    1
+#define RSC_TYPE_CUDA   2
+#define RSC_TYPE_ATI    3
 
 class PROJECT;
 struct RESULT;
@@ -39,13 +40,22 @@ struct RSC_PROJECT_WORK_FETCH {
     // the following are persistent (saved in state file)
     double backoff_time;
     double backoff_interval;
-    double debt;
+    double long_term_debt;
+    double short_term_debt;
 
     // the following used by debt accounting
+    double anticipated_debt;
+        // short-term debt, adjusted by scheduled jobs
     double secs_this_debt_interval;
     inline void reset_debt_accounting() {
         secs_this_debt_interval = 0;
     }
+    double queue_est;
+        // an estimate of instance-secs of queued work;
+        // a temp used in computing overall debts
+    bool anon_skip;
+        // set if this project is anonymous platform
+        // and it has no app version that uses this resource
 
     // the following are used by rr_simulation()
     //
@@ -59,6 +69,7 @@ struct RSC_PROJECT_WORK_FETCH {
         // determines how many instances this project deserves
     bool has_runnable_jobs;
     double sim_nused;
+    double nused_total;     // sum of instances over all runnable jobs
     int deadlines_missed;
     int deadlines_missed_copy;
         // copy of the above used during schedule_cpus()
@@ -67,12 +78,21 @@ struct RSC_PROJECT_WORK_FETCH {
         memset(this, 0, sizeof(*this));
     }
 
-    // whether this project is accumulating debt for this resource
+    // whether this project should accumulate debt for this resource
+    //
     bool debt_eligible(PROJECT*, RSC_WORK_FETCH&);
+
+    inline void zero_debt() {
+        long_term_debt = 0;
+        short_term_debt = 0;
+    }
+
     inline void reset() {
         backoff_time = 0;
         backoff_interval = 0;
-        debt = 0;
+        long_term_debt = 0;
+        short_term_debt = 0;
+        anticipated_debt = 0;
     }
 
     bool may_have_work;
@@ -144,7 +164,7 @@ struct BUSY_TIME_ESTIMATOR {
 struct RSC_WORK_FETCH {
     int rsc_type;
     int ninstances;
-    double speed;   // total FLOPS relative to CPU total FLOPS
+    double relative_speed;   // total FLOPS relative to CPU total FLOPS
 
     // the following used/set by rr_simulation():
     //
@@ -167,13 +187,13 @@ struct RSC_WORK_FETCH {
     void init(int t, int n, double sp) {
         rsc_type = t;
         ninstances = n;
-        speed = sp;
+        relative_speed = sp;
         busy_time_estimator.init(n);
     }
     // the following specify the work request for this resource
     //
     double req_secs;
-    int req_instances;
+    double req_instances;
 
     // debt accounting
     double secs_this_debt_interval;
@@ -188,12 +208,11 @@ struct RSC_WORK_FETCH {
     PROJECT* choose_project(int);
     void accumulate_debt();
     RSC_PROJECT_WORK_FETCH& project_state(PROJECT*);
-    void update_debts();
+    void update_long_term_debts();
+    void update_short_term_debts();
     void print_state(const char*);
     void clear_request();
-    void set_request(PROJECT*, double);
-    double share_request(PROJECT*);
-    void set_shortfall_request(PROJECT*);
+    void set_request(PROJECT*, bool allow_overworked);
     bool may_have_work(PROJECT*);
     RSC_WORK_FETCH() {
         memset(this, 0, sizeof(*this));
@@ -230,7 +249,7 @@ struct WORK_FETCH {
         PROJECT*, SCHEDULER_REPLY*, std::vector<RESULT*>new_results
     );
     void set_initial_work_request();
-    void set_shortfall_requests(PROJECT*);
+    void set_all_requests(PROJECT*);
     void print_state();
     void init();
     void rr_init();
diff --git a/clientctrl/boincsvcctrl.rc b/clientctrl/boincsvcctrl.rc
index 73fd5b1..dc6eecf 100644
--- a/clientctrl/boincsvcctrl.rc
+++ b/clientctrl/boincsvcctrl.rc
@@ -100,7 +100,7 @@ BEGIN
             VALUE "FileDescription", "BOINC service controller"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boincsvcctrl"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boincsvcctrl.exe"
             VALUE "ProductName", "BOINC core client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -135,7 +135,7 @@ BEGIN
             VALUE "FileDescription", "BOINC service controller"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boincsvcctrl"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boincsvcctrl.exe"
             VALUE "ProductName", "BOINC core client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -170,7 +170,7 @@ BEGIN
             VALUE "FileDescription", "BOINC service controller"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boincsvcctrl"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boincsvcctrl.exe"
             VALUE "ProductName", "BOINC core client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -205,7 +205,7 @@ BEGIN
             VALUE "FileDescription", "BOINC service controller"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boincsvcctrl"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boincsvcctrl.exe"
             VALUE "ProductName", "BOINC core client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
diff --git a/clientgui/AccountInfoPage.cpp b/clientgui/AccountInfoPage.cpp
index 18cbfd6..ea82bbc 100644
--- a/clientgui/AccountInfoPage.cpp
+++ b/clientgui/AccountInfoPage.cpp
@@ -105,8 +105,7 @@ bool CAccountInfoPage::Create( CBOINCBaseWizard* parent )
 ////@end CAccountInfoPage member initialisation
  
 ////@begin CAccountInfoPage creation
-    wxBitmap wizardBitmap(wxNullBitmap);
-    wxWizardPageEx::Create( parent, ID_ACCOUNTINFOPAGE, wizardBitmap );
+    wxWizardPageEx::Create( parent, ID_ACCOUNTINFOPAGE );
 
     CreateControls();
     GetSizer()->Fit(this);
@@ -213,6 +212,13 @@ void CAccountInfoPage::CreateControls()
     //   it can be a username or an email address.
     m_pAccountPasswordCtrl->SetValidator( wxTextValidator(wxFILTER_NONE, &m_strAccountPassword) );
     m_pAccountConfirmPasswordCtrl->SetValidator( wxTextValidator(wxFILTER_NONE, &m_strAccountConfirmPassword) );
+    
+#ifdef __WXMAC__
+    //Accessibility
+    HIViewRef buttonView = (HIViewRef)m_pAccountCreateCtrl->GetHandle();
+    HIObjectRef   theObject = (HIObjectRef)HIViewGetSuperview(buttonView);
+    HIObjectSetAccessibilityIgnored(theObject, true);
+#endif
 ////@end CAccountInfoPage content construction
 
 }
diff --git a/clientgui/AccountManagerInfoPage.cpp b/clientgui/AccountManagerInfoPage.cpp
index 1d10d0e..b8b4f25 100644
--- a/clientgui/AccountManagerInfoPage.cpp
+++ b/clientgui/AccountManagerInfoPage.cpp
@@ -93,8 +93,7 @@ bool CAccountManagerInfoPage::Create( CBOINCBaseWizard* parent )
     m_bAccountManagerListPopulated = false;
 
 ////@begin CAccountManagerInfoPage creation
-    wxBitmap wizardBitmap(wxNullBitmap);
-    wxWizardPageEx::Create( parent, ID_ACCOUNTMANAGERINFOPAGE, wizardBitmap );
+    wxWizardPageEx::Create( parent, ID_ACCOUNTMANAGERINFOPAGE );
 
     CreateControls();
     GetSizer()->Fit(this);
@@ -155,6 +154,13 @@ void CAccountManagerInfoPage::CreateControls()
 
     // Set validators
     m_pProjectUrlCtrl->SetValidator( CValidateURL( & m_strProjectURL ) );
+    
+#ifdef __WXMAC__
+    //Accessibility
+    HIViewRef listView = (HIViewRef)m_pProjectListCtrl->GetHandle();
+    HIObjectRef   theObject = (HIObjectRef)HIViewGetSuperview(listView);
+    HIObjectSetAccessibilityIgnored(theObject, true);
+#endif
 ////@end CAccountManagerInfoPage content construction
 }
 
@@ -265,7 +271,11 @@ void CAccountManagerInfoPage::OnPageChanged( wxWizardExEvent& event ) {
             m_pProjectListCtrl->Append(
                 wxString(pl.account_managers[i]->url.c_str(), wxConvUTF8),
                 wxString(pl.account_managers[i]->name.c_str(), wxConvUTF8),
+                wxString(pl.account_managers[i]->image.c_str(), wxConvUTF8),
                 wxString(pl.account_managers[i]->description.c_str(), wxConvUTF8),
+                false,
+                false,
+                false,
                 true
             );
         }
diff --git a/clientgui/AccountManagerProcessingPage.cpp b/clientgui/AccountManagerProcessingPage.cpp
index f0a7c6d..ce2a080 100644
--- a/clientgui/AccountManagerProcessingPage.cpp
+++ b/clientgui/AccountManagerProcessingPage.cpp
@@ -117,8 +117,7 @@ bool CAccountManagerProcessingPage::Create( CBOINCBaseWizard* parent )
     m_iCurrentState = ATTACHACCTMGR_INIT;
  
 ////@begin CAccountManagerProcessingPage creation
-    wxBitmap wizardBitmap(wxNullBitmap);
-    wxWizardPageEx::Create( parent, ID_ACCOUNTMANAGERPROCESSINGPAGE, wizardBitmap );
+    wxWizardPageEx::Create( parent, ID_ACCOUNTMANAGERPROCESSINGPAGE );
 
     CreateControls();
     GetSizer()->Fit(this);
diff --git a/clientgui/AccountManagerPropertiesPage.cpp b/clientgui/AccountManagerPropertiesPage.cpp
index 3377c58..9f371e0 100644
--- a/clientgui/AccountManagerPropertiesPage.cpp
+++ b/clientgui/AccountManagerPropertiesPage.cpp
@@ -124,8 +124,7 @@ bool CAccountManagerPropertiesPage::Create( CBOINCBaseWizard* parent )
     m_iCurrentState = ACCTMGRPROP_INIT;
  
 ////@begin CAccountManagerPropertiesPage creation
-    wxBitmap wizardBitmap(wxNullBitmap);
-    wxWizardPageEx::Create( parent, ID_ACCOUNTMANAGERPROPERTIESPAGE, wizardBitmap );
+    wxWizardPageEx::Create( parent, ID_ACCOUNTMANAGERPROPERTIESPAGE );
 
     CreateControls();
     GetSizer()->Fit(this);
diff --git a/clientgui/AdvancedFrame.cpp b/clientgui/AdvancedFrame.cpp
index 8000b3b..16f46a6 100644
--- a/clientgui/AdvancedFrame.cpp
+++ b/clientgui/AdvancedFrame.cpp
@@ -165,6 +165,7 @@ BEGIN_EVENT_TABLE (CAdvancedFrame, CBOINCBaseFrame)
     EVT_MENU(ID_WIZARDDETACH, CAdvancedFrame::OnWizardDetach)
     // Activity
     EVT_MENU_RANGE(ID_ADVACTIVITYRUNALWAYS, ID_ADVACTIVITYSUSPEND, CAdvancedFrame::OnActivitySelection)
+    EVT_MENU_RANGE(ID_ADVACTIVITYGPUALWAYS, ID_ADVACTIVITYGPUSUSPEND, CAdvancedFrame::OnGPUSelection)
     EVT_MENU_RANGE(ID_ADVNETWORKRUNALWAYS, ID_ADVNETWORKSUSPEND, CAdvancedFrame::OnNetworkSelection)
     // Advanced
     EVT_MENU(ID_OPTIONS, CAdvancedFrame::OnOptions)
@@ -215,9 +216,9 @@ CAdvancedFrame::CAdvancedFrame(wxString title, wxIcon* icon, wxIcon* icon32, wxP
     SetIcons(icons);
 
     // Create UI elements
-    wxCHECK_RET(CreateMenu(false), _T("Failed to create menu bar."));
-    wxCHECK_RET(CreateNotebook(false), _T("Failed to create notebook."));
-    wxCHECK_RET(CreateStatusbar(false), _T("Failed to create status bar."));
+    wxCHECK_RET(CreateMenu(), _T("Failed to create menu bar."));
+    wxCHECK_RET(CreateNotebook(), _T("Failed to create notebook."));
+    wxCHECK_RET(CreateStatusbar(), _T("Failed to create status bar."));
 
     RestoreState();
 
@@ -274,7 +275,7 @@ CAdvancedFrame::~CAdvancedFrame() {
 }
 
 
-bool CAdvancedFrame::CreateMenu( bool bRPCsSafe ) {
+bool CAdvancedFrame::CreateMenu() {
     wxLogTrace(wxT("Function Start/End"), wxT("CAdvancedFrame::CreateMenu - Function Begin"));
 
     CMainDocument*     pDoc = wxGetApp().GetDocument();
@@ -289,8 +290,8 @@ bool CAdvancedFrame::CreateMenu( bool bRPCsSafe ) {
     wxASSERT(wxDynamicCast(pDoc, CMainDocument));
     wxASSERT(wxDynamicCast(pSkinAdvanced, CSkinAdvanced));
 
-    if (bRPCsSafe) {
-        // Account managers have a different menu arrangement
+    // Account managers have a different menu arrangement
+    if (pDoc->IsConnected()) {
         pDoc->rpc.acct_mgr_info(ami);
         is_acct_mgr_detected = ami.acct_mgr_url.size() ? true : false;
     }
@@ -304,9 +305,11 @@ bool CAdvancedFrame::CreateMenu( bool bRPCsSafe ) {
         _("Close the %s window"), 
         pSkinAdvanced->GetApplicationName().c_str()
     );
+    strMenuName = _("&Close Window");
+    strMenuName += wxT("\tCtrl+W");
     menuFile->Append(
         ID_CLOSEWINDOW,
-        _("&Close Window\tCTRL+W"),
+        strMenuName,
         strMenuDescription
     );
 
@@ -327,51 +330,45 @@ bool CAdvancedFrame::CreateMenu( bool bRPCsSafe ) {
 
     menuView->Append(
         ID_ADVPROJECTSVIEW,
-        _("&Projects\tCTRL+SHIFT+P"),
+        _("&Projects\tCtrl+Shift+P"),
         _("Display projects")
     );
 
     menuView->Append(
         ID_ADVTASKSVIEW,
-        _("&Tasks\tCTRL+SHIFT+T"),
+        _("&Tasks\tCtrl+Shift+T"),
         _("Display tasks")
     );
 
     menuView->Append(
         ID_ADVTRANSFERSVIEW,
-        _("Trans&fers\tCTRL+SHIFT+X"),
+        _("Trans&fers\tCtrl+Shift+X"),
         _("Display transfers")
     );
 
     menuView->Append(
         ID_ADVMESSAGESVIEW,
-        _("&Messages\tCTRL+SHIFT+M"),
+        _("&Messages\tCtrl+Shift+M"),
         _("Display messages")
     );
 
     menuView->Append(
         ID_ADVSTATISTICSVIEW,
-        _("&Statistics\tCTRL+SHIFT+S"),
+        _("&Statistics\tCtrl+Shift+S"),
         _("Display statistics")
     );
 
     menuView->Append(
         ID_ADVRESOURCEUSAGEVIEW,
-        _("&Disk usage\tCTRL+SHIFT+D"),
+        _("&Disk usage\tCtrl+Shift+D"),
         _("Display disk usage")
     );
 
-    menuView->Append(
-        ID_ADVNEWSVIEW,
-        _("&News\tCTRL+SHIFT+N"),
-        _("Display news")
-    );
-
     menuView->AppendSeparator();
 
     menuView->Append(
         ID_CHANGEGUI,
-        _("Simple &View...\tCTRL+SHIFT+V"),
+        _("Simple &View...\tCtrl+Shift+V"),
         _("Display the simple graphical interface.")
     );
 
@@ -409,15 +406,17 @@ bool CAdvancedFrame::CreateMenu( bool bRPCsSafe ) {
             strMenuName,
             strMenuDescription
         );
-        strMenuName.Printf(
-            _("&Stop using %s..."), 
-            wxString(ami.acct_mgr_name.c_str(), wxConvUTF8).c_str()
-        );
+
         menuTools->Append(
             ID_WIZARDATTACH, 
             _("Attach to &project..."),
             _("Attach to a project to begin processing work")
         );
+
+        strMenuName.Printf(
+            _("&Stop using %s..."), 
+            wxString(ami.acct_mgr_name.c_str(), wxConvUTF8).c_str()
+        );
         menuTools->Append(
             ID_WIZARDDETACH, 
             strMenuName,
@@ -444,22 +443,59 @@ bool CAdvancedFrame::CreateMenu( bool bRPCsSafe ) {
         _("Stop work regardless of preferences")
     );
 
-#if defined(__WXMSW__) || defined(__WXMAC__)
-    menuActivity->AppendSeparator();
+    if (pDoc->state.have_cuda || pDoc->state.have_ati) {
+
+#ifndef __WXGTK__
+        menuActivity->AppendSeparator();
 #else
-    // for some reason, the above radio items do not display the active
-    // selection on linux (wxGtk library) with the separator here,
-    // so we add a blank disabled menu item instead
-    //
-    menuActivity->Append(
-        ID_ADVACTIVITYMENUSEPARATOR,
-        (const wxChar *) wxT(" "), // wxEmptyString here causes a wxWidgets
-                                   //   assertion when debugging
-        wxEmptyString,
-        wxITEM_NORMAL              // wxITEM_SEPARATOR here causes a wxWidgets
-                                   //   assertion when debugging
-    );
-    menuActivity->Enable(ID_ADVACTIVITYMENUSEPARATOR, false);
+        // for some reason, the above radio items do not display the active
+        // selection on linux (wxGtk library) with the separator here,
+        // so we add a blank disabled menu item instead
+        //
+        wxMenuItem* pItem = menuActivity->Append(
+            ID_MENUSEPARATOR1,
+            (const wxChar *) wxT(" "),
+                // wxEmptyString here causes a wxWidgets assertion when debugging
+            wxEmptyString,
+            wxITEM_NORMAL
+                // wxITEM_SEPARATOR here causes a wxWidgets assertion when debugging
+        );
+        pItem->Enable(false); // disable this menu item
+#endif
+
+        menuActivity->AppendRadioItem(
+            ID_ADVACTIVITYGPUALWAYS,
+            _("Use GPU always"),
+            _("Allow GPU work regardless of preferences")
+        );
+        menuActivity->AppendRadioItem(
+            ID_ADVACTIVITYGPUBASEDONPREPERENCES,
+            _("Use GPU based on &preferences"),
+            _("Allow GPU work according to your preferences")
+        );
+        menuActivity->AppendRadioItem(
+            ID_ADVACTIVITYGPUSUSPEND,
+            _("Use GPU never"),
+            _("Stop GPU work regardless of preferences")
+        );
+    }
+
+#ifndef __WXGTK__
+        menuActivity->AppendSeparator();
+#else
+        // for some reason, the above radio items do not display the active
+        // selection on linux (wxGtk library) with the separator here,
+        // so we add a blank disabled menu item instead
+        //
+        wxMenuItem* pItem = menuActivity->Append(
+            ID_MENUSEPARATOR2,
+            (const wxChar *) wxT(" "),
+                // wxEmptyString here causes a wxWidgets assertion when debugging
+            wxEmptyString,
+            wxITEM_NORMAL
+                // wxITEM_SEPARATOR here causes a wxWidgets assertion when debugging
+        );
+        pItem->Enable(false); // disable this menu item
 #endif
 
     menuActivity->AppendRadioItem(
@@ -469,12 +505,12 @@ bool CAdvancedFrame::CreateMenu( bool bRPCsSafe ) {
     );
     menuActivity->AppendRadioItem(
         ID_ADVNETWORKRUNBASEDONPREPERENCES,
-        _("Network activity based on &preferences"),
+        _("Network activity based on pre&ferences"),
         _("Allow network activity according to your preferences")
     );
     menuActivity->AppendRadioItem(
         ID_ADVNETWORKSUSPEND,
-        _("&Network activity suspended"),
+        _("Network activity s&uspended"),
         _("Stop BOINC network activity")
     );
 
@@ -586,10 +622,6 @@ bool CAdvancedFrame::CreateMenu( bool bRPCsSafe ) {
         strMenuDescription
     );
 
-#ifndef __WXMAC__
-    menuHelp->AppendSeparator();
-#endif
-
     // %s is the project name
     //    i.e. 'BOINC Manager', 'GridRepublic Manager'
     strMenuName.Printf(
@@ -653,7 +685,7 @@ bool CAdvancedFrame::CreateMenu( bool bRPCsSafe ) {
 }
 
 
-bool CAdvancedFrame::CreateNotebook( bool /* bRPCsSafe */ ) {
+bool CAdvancedFrame::CreateNotebook() {
     wxLogTrace(wxT("Function Start/End"), wxT("CAdvancedFrame::CreateNotebook - Function Begin"));
 
     // create frame panel
@@ -678,6 +710,11 @@ bool CAdvancedFrame::CreateNotebook( bool /* bRPCsSafe */ ) {
     pPanel->SetSizer(pPanelSizer);
     pPanel->Layout();
 
+#ifdef __WXMAC__
+    //Accessibility
+    HIObjectSetAccessibilityIgnored((HIObjectRef)pPanel->GetHandle(), true);
+#endif
+
     wxLogTrace(wxT("Function Start/End"), wxT("CAdvancedFrame::CreateNotebook - Function End"));
     return true;
 }
@@ -727,7 +764,7 @@ bool CAdvancedFrame::CreateNotebookPage( CBOINCBaseView* pwndNewNotebookPage) {
 }
 
 
-bool CAdvancedFrame::CreateStatusbar( bool /* bRPCsSafe */ ) {
+bool CAdvancedFrame::CreateStatusbar() {
     wxLogTrace(wxT("Function Start/End"), wxT("CAdvancedFrame::CreateStatusbar - Function Begin"));
 
     if (m_pStatusbar)
@@ -816,10 +853,10 @@ bool CAdvancedFrame::SaveState() {
     //
     pConfig->SetPath(strBaseConfigLocation);
 
-     // Store the latest window dimensions.
+    // Store the latest window dimensions.
     SaveWindowDimensions();
 
-   pConfig->Write(wxT("CurrentPage"), m_pNotebook->GetSelection());
+    pConfig->Write(wxT("CurrentPage"), m_pNotebook->GetSelection());
 
     //
     // Save Page(s) State
@@ -1129,21 +1166,48 @@ void CAdvancedFrame::OnActivitySelection(wxCommandEvent& event) {
     wxASSERT(pDoc);
     wxASSERT(wxDynamicCast(pDoc, CMainDocument));
 
-    switch(event.GetId()) {
-    case ID_ADVACTIVITYRUNALWAYS:
-        pDoc->SetActivityRunMode(RUN_MODE_ALWAYS, 0);
-        break;
-    case ID_ADVACTIVITYSUSPEND:
-        pDoc->SetActivityRunMode(RUN_MODE_NEVER, 0);
-        break;
-    case ID_ADVACTIVITYRUNBASEDONPREPERENCES:
-        pDoc->SetActivityRunMode(RUN_MODE_AUTO, 0);
-        break;
+    if (event.IsChecked()) {
+        switch(event.GetId()) {
+        case ID_ADVACTIVITYRUNALWAYS:
+            pDoc->SetActivityRunMode(RUN_MODE_ALWAYS, 0);
+            break;
+        case ID_ADVACTIVITYSUSPEND:
+            pDoc->SetActivityRunMode(RUN_MODE_NEVER, 0);
+            break;
+        case ID_ADVACTIVITYRUNBASEDONPREPERENCES:
+            pDoc->SetActivityRunMode(RUN_MODE_AUTO, 0);
+            break;
+        }
     }
 
     wxLogTrace(wxT("Function Start/End"), wxT("CAdvancedFrame::OnActivitySelection - Function End"));
 }
 
+void CAdvancedFrame::OnGPUSelection(wxCommandEvent& event) {
+    wxLogTrace(wxT("Function Start/End"), wxT("CAdvancedFrame::OnGPUSelection - Function Begin"));
+
+    CMainDocument* pDoc      = wxGetApp().GetDocument();
+
+    wxASSERT(pDoc);
+    wxASSERT(wxDynamicCast(pDoc, CMainDocument));
+
+    if (event.IsChecked()) {
+        switch(event.GetId()) {
+        case ID_ADVACTIVITYGPUALWAYS:
+            pDoc->SetGPURunMode(RUN_MODE_ALWAYS, 0);
+            break;
+        case ID_ADVACTIVITYGPUSUSPEND:
+            pDoc->SetGPURunMode(RUN_MODE_NEVER, 0);
+            break;
+        case ID_ADVACTIVITYGPUBASEDONPREPERENCES:
+            pDoc->SetGPURunMode(RUN_MODE_AUTO, 0);
+            break;
+        }
+    }
+
+    wxLogTrace(wxT("Function Start/End"), wxT("CAdvancedFrame::OnGPUSelection - Function End"));
+}
+
 
 void CAdvancedFrame::OnNetworkSelection(wxCommandEvent& event) {
     wxLogTrace(wxT("Function Start/End"), wxT("CAdvancedFrame::OnNetworkSelection - Function Begin"));
@@ -1153,17 +1217,18 @@ void CAdvancedFrame::OnNetworkSelection(wxCommandEvent& event) {
     wxASSERT(pDoc);
     wxASSERT(wxDynamicCast(pDoc, CMainDocument));
 
-
-    switch(event.GetId()) {
-    case ID_ADVNETWORKRUNALWAYS:
-        pDoc->SetNetworkRunMode(RUN_MODE_ALWAYS, 0);
-        break;
-    case ID_ADVNETWORKSUSPEND:
-        pDoc->SetNetworkRunMode(RUN_MODE_NEVER, 0);
-        break;
-    case ID_ADVNETWORKRUNBASEDONPREPERENCES:
-        pDoc->SetNetworkRunMode(RUN_MODE_AUTO, 0);
-        break;
+    if (event.IsChecked()) {
+        switch(event.GetId()) {
+        case ID_ADVNETWORKRUNALWAYS:
+            pDoc->SetNetworkRunMode(RUN_MODE_ALWAYS, 0);
+            break;
+        case ID_ADVNETWORKSUSPEND:
+            pDoc->SetNetworkRunMode(RUN_MODE_NEVER, 0);
+            break;
+        case ID_ADVNETWORKRUNBASEDONPREPERENCES:
+            pDoc->SetNetworkRunMode(RUN_MODE_AUTO, 0);
+            break;
+        }
     }
 
     wxLogTrace(wxT("Function Start/End"), wxT("CAdvancedFrame::OnNetworkSelection - Function End"));
@@ -1617,10 +1682,6 @@ void CAdvancedFrame::OnConnect(CFrameEvent& WXUNUSED(event)) {
     }
 
 
-    // Update the menus
-    DeleteMenu();
-    CreateMenu();
-
     // Stop all timers so that the wizard is the only thing doing anything
     StopTimers();
 
@@ -1713,6 +1774,12 @@ void CAdvancedFrame::OnConnect(CFrameEvent& WXUNUSED(event)) {
         }
     }
 
+    // Update the menus
+    DeleteMenu();
+    CreateMenu();
+#ifdef __WXMAC__
+    wxGetApp().GetMacSystemMenu()->BuildMenu();
+#endif
 
     // Restart timers to continue normal operations.
     StartTimers();
@@ -1770,6 +1837,9 @@ void CAdvancedFrame::OnFrameRender(wxTimerEvent& WXUNUSED(event)) {
                 CC_STATUS  status;
                 if ((pDoc->IsConnected()) && (0 == pDoc->GetCoreClientStatus(status))) {
                     UpdateActivityModeControls(status);
+                    if (pDoc->state.have_cuda || pDoc->state.have_ati) {
+                        UpdateGPUModeControls(status);
+                    }
                     UpdateNetworkModeControls(status);
 
                     if (status.disallow_attach) {
@@ -1877,56 +1947,136 @@ void CAdvancedFrame::ResetReminderTimers() {
 
 
 void CAdvancedFrame::UpdateActivityModeControls( CC_STATUS& status ) {
-    wxMenuBar* pMenuBar      = GetMenuBar();
-
+    wxMenuBar* pMenuBar = GetMenuBar();
     wxASSERT(pMenuBar);
     wxASSERT(wxDynamicCast(pMenuBar, wxMenuBar));
 
-    // Skip if everything is already setup, Linux and possibly a few other platforms
-    //   will emulate a click event for a menu item even when the action of setting
-    //   a controls value wasn't initiated via user interaction. This in turn causes
-    //   the set_* RPC to be called which will cause the state file to become dirty.
     if ((RUN_MODE_ALWAYS == status.task_mode) && pMenuBar->IsChecked(ID_ADVACTIVITYRUNALWAYS)) return;
     if ((RUN_MODE_NEVER == status.task_mode) && pMenuBar->IsChecked(ID_ADVACTIVITYSUSPEND)) return;
     if ((RUN_MODE_AUTO == status.task_mode) && pMenuBar->IsChecked(ID_ADVACTIVITYRUNBASEDONPREPERENCES)) return;
 
-    // Set things up.
-    pMenuBar->Check(ID_ADVACTIVITYRUNALWAYS, false);
-    pMenuBar->Check(ID_ADVACTIVITYSUSPEND, false);
-    pMenuBar->Check(ID_ADVACTIVITYRUNBASEDONPREPERENCES, false);
-    if (RUN_MODE_ALWAYS == status.task_mode)
-        pMenuBar->Check(ID_ADVACTIVITYRUNALWAYS, true);
-    if (RUN_MODE_NEVER == status.task_mode)
-        pMenuBar->Check(ID_ADVACTIVITYSUSPEND, true);
-    if (RUN_MODE_AUTO == status.task_mode)
-        pMenuBar->Check(ID_ADVACTIVITYRUNBASEDONPREPERENCES, true);
+    if (RUN_MODE_ALWAYS == status.task_mode) {
+        if (!pMenuBar->IsChecked(ID_ADVACTIVITYRUNALWAYS)) {
+            pMenuBar->Check(ID_ADVACTIVITYRUNALWAYS, true);
+        }
+        if (pMenuBar->IsChecked(ID_ADVACTIVITYSUSPEND)) {
+            pMenuBar->Check(ID_ADVACTIVITYSUSPEND, false);
+        }
+        if (pMenuBar->IsChecked(ID_ADVACTIVITYRUNBASEDONPREPERENCES)) {
+            pMenuBar->Check(ID_ADVACTIVITYRUNBASEDONPREPERENCES, false);
+        }
+    }
+    if (RUN_MODE_NEVER == status.task_mode) {
+        if (!pMenuBar->IsChecked(ID_ADVACTIVITYSUSPEND)) {
+            pMenuBar->Check(ID_ADVACTIVITYSUSPEND, true);
+        }
+        if (pMenuBar->IsChecked(ID_ADVACTIVITYRUNALWAYS)) {
+            pMenuBar->Check(ID_ADVACTIVITYRUNALWAYS, false);
+        }
+        if (pMenuBar->IsChecked(ID_ADVACTIVITYRUNBASEDONPREPERENCES)) {
+            pMenuBar->Check(ID_ADVACTIVITYRUNBASEDONPREPERENCES, false);
+        }
+    }
+    if (RUN_MODE_AUTO == status.task_mode) {
+        if (!pMenuBar->IsChecked(ID_ADVACTIVITYRUNBASEDONPREPERENCES)) {
+            pMenuBar->Check(ID_ADVACTIVITYRUNBASEDONPREPERENCES, true);
+        }
+        if (pMenuBar->IsChecked(ID_ADVACTIVITYRUNALWAYS)) {
+            pMenuBar->Check(ID_ADVACTIVITYRUNALWAYS, false);
+        }
+        if (pMenuBar->IsChecked(ID_ADVACTIVITYSUSPEND)) {
+            pMenuBar->Check(ID_ADVACTIVITYSUSPEND, false);
+        }
+    }
 }
 
+void CAdvancedFrame::UpdateGPUModeControls( CC_STATUS& status ) {
+    wxMenuBar* pMenuBar = GetMenuBar();
+    wxASSERT(pMenuBar);
+    wxASSERT(wxDynamicCast(pMenuBar, wxMenuBar));
 
-void CAdvancedFrame::UpdateNetworkModeControls( CC_STATUS& status ) {
-    wxMenuBar* pMenuBar      = GetMenuBar();
+    if ((RUN_MODE_ALWAYS == status.gpu_mode) && pMenuBar->IsChecked(ID_ADVACTIVITYGPUALWAYS)) return;
+    if ((RUN_MODE_NEVER == status.gpu_mode) && pMenuBar->IsChecked(ID_ADVACTIVITYGPUSUSPEND)) return;
+    if ((RUN_MODE_AUTO == status.gpu_mode) && pMenuBar->IsChecked(ID_ADVACTIVITYGPUBASEDONPREPERENCES)) return;
 
+    if (RUN_MODE_ALWAYS == status.gpu_mode) {
+        if (!pMenuBar->IsChecked(ID_ADVACTIVITYGPUALWAYS)) {
+            pMenuBar->Check(ID_ADVACTIVITYGPUALWAYS, true);
+        }
+        if (pMenuBar->IsChecked(ID_ADVACTIVITYGPUSUSPEND)) {
+            pMenuBar->Check(ID_ADVACTIVITYGPUSUSPEND, false);
+        }
+        if (pMenuBar->IsChecked(ID_ADVACTIVITYGPUBASEDONPREPERENCES)) {
+            pMenuBar->Check(ID_ADVACTIVITYGPUBASEDONPREPERENCES, false);
+        }
+    }
+    if (RUN_MODE_NEVER == status.gpu_mode) {
+        if (!pMenuBar->IsChecked(ID_ADVACTIVITYGPUSUSPEND)) {
+            pMenuBar->Check(ID_ADVACTIVITYGPUSUSPEND, true);
+        }
+        if (pMenuBar->IsChecked(ID_ADVACTIVITYGPUALWAYS)) {
+            pMenuBar->Check(ID_ADVACTIVITYGPUALWAYS, false);
+        }
+        if (pMenuBar->IsChecked(ID_ADVACTIVITYGPUBASEDONPREPERENCES)) {
+            pMenuBar->Check(ID_ADVACTIVITYGPUBASEDONPREPERENCES, false);
+        }
+    }
+    if (RUN_MODE_AUTO == status.gpu_mode) {
+        if (!pMenuBar->IsChecked(ID_ADVACTIVITYGPUBASEDONPREPERENCES)) {
+            pMenuBar->Check(ID_ADVACTIVITYGPUBASEDONPREPERENCES, true);
+        }
+        if (pMenuBar->IsChecked(ID_ADVACTIVITYGPUALWAYS)) {
+            pMenuBar->Check(ID_ADVACTIVITYGPUALWAYS, false);
+        }
+        if (pMenuBar->IsChecked(ID_ADVACTIVITYGPUSUSPEND)) {
+            pMenuBar->Check(ID_ADVACTIVITYGPUSUSPEND, false);
+        }
+    }
+}
+
+
+void CAdvancedFrame::UpdateNetworkModeControls( CC_STATUS& status ) {
+    wxMenuBar* pMenuBar = GetMenuBar();
     wxASSERT(pMenuBar);
     wxASSERT(wxDynamicCast(pMenuBar, wxMenuBar));
 
-    // Skip if everything is already setup, Linux and possibly a few other platforms
-    //   will emulate a click event for a menu item even when the action of setting
-    //   a controls value wasn't initiated via user interaction. This in turn causes
-    //   the set_* RPC to be called which will cause the state file to become dirty.
     if ((RUN_MODE_ALWAYS == status.network_mode) && pMenuBar->IsChecked(ID_ADVNETWORKRUNALWAYS)) return;
     if ((RUN_MODE_NEVER == status.network_mode) && pMenuBar->IsChecked(ID_ADVNETWORKSUSPEND)) return;
     if ((RUN_MODE_AUTO == status.network_mode) && pMenuBar->IsChecked(ID_ADVNETWORKRUNBASEDONPREPERENCES)) return;
 
-    // Set things up.
-    pMenuBar->Check(ID_ADVNETWORKRUNALWAYS, false);
-    pMenuBar->Check(ID_ADVNETWORKSUSPEND, false);
-    pMenuBar->Check(ID_ADVNETWORKRUNBASEDONPREPERENCES, false);
-    if (RUN_MODE_ALWAYS == status.network_mode)
-        pMenuBar->Check(ID_ADVNETWORKRUNALWAYS, true);
-    if (RUN_MODE_NEVER == status.network_mode)
-        pMenuBar->Check(ID_ADVNETWORKSUSPEND, true);
-    if (RUN_MODE_AUTO == status.network_mode)
-        pMenuBar->Check(ID_ADVNETWORKRUNBASEDONPREPERENCES, true);
+    if (RUN_MODE_ALWAYS == status.network_mode) {
+        if (!pMenuBar->IsChecked(ID_ADVNETWORKRUNALWAYS)) {
+            pMenuBar->Check(ID_ADVNETWORKRUNALWAYS, true);
+        }
+        if (pMenuBar->IsChecked(ID_ADVNETWORKSUSPEND)) {
+            pMenuBar->Check(ID_ADVNETWORKSUSPEND, false);
+        }
+        if (pMenuBar->IsChecked(ID_ADVNETWORKRUNBASEDONPREPERENCES)) {
+            pMenuBar->Check(ID_ADVNETWORKRUNBASEDONPREPERENCES, false);
+        }
+    }
+    if (RUN_MODE_NEVER == status.network_mode) {
+        if (!pMenuBar->IsChecked(ID_ADVNETWORKSUSPEND)) {
+            pMenuBar->Check(ID_ADVNETWORKSUSPEND, true);
+        }
+        if (pMenuBar->IsChecked(ID_ADVNETWORKRUNALWAYS)) {
+            pMenuBar->Check(ID_ADVNETWORKRUNALWAYS, false);
+        }
+        if (pMenuBar->IsChecked(ID_ADVNETWORKRUNBASEDONPREPERENCES)) {
+            pMenuBar->Check(ID_ADVNETWORKRUNBASEDONPREPERENCES, false);
+        }
+    }
+    if (RUN_MODE_AUTO == status.network_mode) {
+        if (!pMenuBar->IsChecked(ID_ADVNETWORKRUNBASEDONPREPERENCES)) {
+            pMenuBar->Check(ID_ADVNETWORKRUNBASEDONPREPERENCES, true);
+        }
+        if (pMenuBar->IsChecked(ID_ADVNETWORKRUNALWAYS)) {
+            pMenuBar->Check(ID_ADVNETWORKRUNALWAYS, false);
+        }
+        if (pMenuBar->IsChecked(ID_ADVNETWORKSUSPEND)) {
+            pMenuBar->Check(ID_ADVNETWORKSUSPEND, false);
+        }
+    }
 }
 
 
@@ -1988,5 +2138,3 @@ void CAdvancedFrame::StopTimers() {
     m_pFrameRenderTimer->Stop();
 }
 
-
-const char *BOINC_RCSID_d881a56dc5 = "$Id: AdvancedFrame.cpp 19371 2009-10-23 16:57:02Z romw $";
diff --git a/clientgui/AdvancedFrame.h b/clientgui/AdvancedFrame.h
index b78ad0f..d911697 100644
--- a/clientgui/AdvancedFrame.h
+++ b/clientgui/AdvancedFrame.h
@@ -76,6 +76,7 @@ public:
     void OnWizardDetach( wxCommandEvent& event );
 
     void OnActivitySelection( wxCommandEvent& event );
+    void OnGPUSelection( wxCommandEvent& event );
     void OnNetworkSelection( wxCommandEvent& event );
 
     void OnOptions( wxCommandEvent& event );
@@ -123,15 +124,15 @@ private:
 
     wxString        m_strBaseTitle;
 
-    bool            CreateMenu( bool bRPCsSafe = true );
+    bool            CreateMenu();
     bool            DeleteMenu();
 
-    bool            CreateNotebook( bool bRPCsSafe = true );
+    bool            CreateNotebook();
     bool            RepopulateNotebook();
     bool            CreateNotebookPage( CBOINCBaseView* pwndNewNotebookPage );
     bool            DeleteNotebook();
 
-    bool            CreateStatusbar( bool bRPCsSafe = true );
+    bool            CreateStatusbar();
     bool            DeleteStatusbar();
 
     bool            RestoreState();
@@ -139,6 +140,7 @@ private:
     void            SaveWindowDimensions();
 
     void            UpdateActivityModeControls( CC_STATUS& status );
+    void            UpdateGPUModeControls( CC_STATUS& status );
     void            UpdateNetworkModeControls( CC_STATUS& status );
     void            UpdateRefreshTimerInterval( wxInt32 iCurrentNotebookPage );
 
diff --git a/clientgui/AlreadyExistsPage.cpp b/clientgui/AlreadyExistsPage.cpp
index 3d43463..590626c 100644
--- a/clientgui/AlreadyExistsPage.cpp
+++ b/clientgui/AlreadyExistsPage.cpp
@@ -81,8 +81,7 @@ bool CErrAlreadyExistsPage::Create( CBOINCBaseWizard* parent )
 ////@end CErrAlreadyExistsPage member initialisation
  
 ////@begin CErrAlreadyExistsPage creation
-    wxBitmap wizardBitmap(wxNullBitmap);
-    wxWizardPageEx::Create( parent, ID_ERRALREADYEXISTSPAGE, wizardBitmap );
+    wxWizardPageEx::Create( parent, ID_ERRALREADYEXISTSPAGE );
 
     CreateControls();
     GetSizer()->Fit(this);
diff --git a/clientgui/AsyncRPC.cpp b/clientgui/AsyncRPC.cpp
index 6e5053e..c2fccfd 100755
--- a/clientgui/AsyncRPC.cpp
+++ b/clientgui/AsyncRPC.cpp
@@ -495,6 +495,12 @@ int RPCThread::ProcessRPCRequest() {
             *(double*)(current_request->arg2)
         );
         break;
+    case RPC_SET_GPU_MODE:
+        retval = (m_pDoc->rpcClient).set_gpu_mode(
+            *(int*)(current_request->arg1), 
+            *(double*)(current_request->arg2)
+        );
+        break;
     case RPC_SET_NETWORK_MODE:
         retval = (m_pDoc->rpcClient).set_network_mode(
             *(int*)(current_request->arg1),
@@ -978,6 +984,7 @@ void CMainDocument::HandleCompletedRPC() {
                 exchangeBuf->version_info = arg1->version_info;
                 exchangeBuf->executing_as_daemon = arg1->executing_as_daemon;
                 exchangeBuf->have_cuda = arg1->have_cuda;
+                exchangeBuf->have_ati = arg1->have_ati;
             }
             break;
         case RPC_GET_RESULTS:
diff --git a/clientgui/AsyncRPC.h b/clientgui/AsyncRPC.h
index 0d11873..d37d794 100644
--- a/clientgui/AsyncRPC.h
+++ b/clientgui/AsyncRPC.h
@@ -95,6 +95,7 @@ enum RPC_SELECTOR {
     RPC_SHOW_GRAPHICS,
     RPC_PROJECT_OP,
     RPC_SET_RUN_MODE,
+    RPC_SET_GPU_MODE,
     RPC_SET_NETWORK_MODE,
     RPC_GET_SCREENSAVER_TASKS,
     RPC_RUN_BENCHMARKS,
@@ -249,6 +250,8 @@ public:
         // if duration is zero, change is permanent.
         // otherwise, after duration expires,
         // restore last permanent mode
+    int set_gpu_mode(int mode, double duration)
+            { return RPC_Wait(RPC_SET_GPU_MODE, (void*)&mode, (void*)&duration); }
     int set_network_mode(int mode, double duration)
             { return RPC_Wait(RPC_SET_NETWORK_MODE, (void*)&mode, (void*)&duration); }
     int get_screensaver_tasks(int& suspend_reason, RESULTS& rbuf)
diff --git a/clientgui/BOINCBaseFrame.cpp b/clientgui/BOINCBaseFrame.cpp
index 60d7ffa..fe0b993 100644
--- a/clientgui/BOINCBaseFrame.cpp
+++ b/clientgui/BOINCBaseFrame.cpp
@@ -800,5 +800,3 @@ void CFrameAlertEvent::ProcessResponse(const int response) const {
     }
 }
 
-
-const char *BOINC_RCSID_0a1bd38a5b = "$Id: BOINCBaseFrame.cpp 19325 2009-10-16 19:24:59Z romw $";
diff --git a/clientgui/BOINCBaseView.cpp b/clientgui/BOINCBaseView.cpp
index 597e360..480711e 100644
--- a/clientgui/BOINCBaseView.cpp
+++ b/clientgui/BOINCBaseView.cpp
@@ -62,8 +62,10 @@ CBOINCBaseView::CBOINCBaseView(wxNotebook* pNotebook) :
 
     SetAutoLayout(TRUE);
 
+#if BASEVIEW_STRIPES    
     m_pWhiteBackgroundAttr = NULL;
     m_pGrayBackgroundAttr = NULL;
+#endif
 }
 
 
@@ -123,8 +125,18 @@ CBOINCBaseView::CBOINCBaseView(
     m_SortArrows->Add( wxIcon( sortdescending_xpm ) );
     m_pListPane->SetImageList(m_SortArrows, wxIMAGE_LIST_SMALL);
     
-    m_pWhiteBackgroundAttr = new wxListItemAttr(*wxBLACK, *wxWHITE, wxNullFont);
-    m_pGrayBackgroundAttr = new wxListItemAttr(*wxBLACK, wxColour(240, 240, 240), wxNullFont);
+#if BASEVIEW_STRIPES    
+    m_pWhiteBackgroundAttr = new wxListItemAttr(
+        wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT),
+        wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW),
+        wxNullFont
+    );
+    m_pGrayBackgroundAttr = new wxListItemAttr(
+        wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT),
+        wxColour(240, 240, 240),
+        wxNullFont
+    );
+#endif
 }
 
 
@@ -143,6 +155,7 @@ CBOINCBaseView::~CBOINCBaseView() {
     m_arrSelectedKeys2.Clear();
     m_iSortedIndexes.Clear();
 
+#if BASEVIEW_STRIPES    
     if (m_pWhiteBackgroundAttr) {
         delete m_pWhiteBackgroundAttr;
         m_pWhiteBackgroundAttr = NULL;
@@ -152,7 +165,8 @@ CBOINCBaseView::~CBOINCBaseView() {
         delete m_pGrayBackgroundAttr;
         m_pGrayBackgroundAttr = NULL;
     }
-}
+#endif
+    }
 
 
 // The name of the view.
@@ -246,11 +260,18 @@ int CBOINCBaseView::FireOnListGetItemImage(long item) const {
 }
 
 
+#if BASEVIEW_STRIPES
 wxListItemAttr* CBOINCBaseView::FireOnListGetItemAttr(long item) const {
     return OnListGetItemAttr(item);
 }
 
 
+wxListItemAttr* CBOINCBaseView::OnListGetItemAttr(long item) const {
+    return item % 2 ? m_pGrayBackgroundAttr : m_pWhiteBackgroundAttr;
+}
+#endif
+
+
 void CBOINCBaseView::OnListRender(wxTimerEvent& event) {
     if (!m_bProcessingListRenderEvent) {
         m_bProcessingListRenderEvent = true;
@@ -278,11 +299,12 @@ void CBOINCBaseView::OnListRender(wxTimerEvent& event) {
                     m_pListPane->SetItemCount(iDocCount);
                     m_bNeedSort = true;
                } else {
-                    // We can't just call SetItemCount() here because we need to 
-                    // let the virtual ListCtrl adjust its list of selected rows
-                    // to remove (deselect) any beyond the new last row
+                    // The virtual ListCtrl keeps a separate its list of selected rows; 
+                    // make sure it does not reference any rows beyond the new last row.
+                    // We can ClearSelections() because we called SaveSelections() above.
+                    ClearSelections();
+                    m_pListPane->SetItemCount(iDocCount);
                     for (iIndex = (iCacheCount - 1); iIndex >= iDocCount; --iIndex) {
-                        m_pListPane->DeleteItem(iIndex);
                         iReturnValue = RemoveCacheElement();
                         wxASSERT(!iReturnValue);
                     }
@@ -419,11 +441,6 @@ int CBOINCBaseView::OnListGetItemImage(long WXUNUSED(item)) const {
 }
 
 
-wxListItemAttr* CBOINCBaseView::OnListGetItemAttr(long item) const {
-    return item % 2 ? m_pGrayBackgroundAttr : m_pWhiteBackgroundAttr;
-}
-
-
 int CBOINCBaseView::GetDocCount() {
     return 0;
 }
@@ -509,9 +526,8 @@ bool CBOINCBaseView::SynchronizeCacheItem(wxInt32 WXUNUSED(iRowIndex), wxInt32 W
 void CBOINCBaseView::OnColClick(wxListEvent& event) {
     wxListItem      item;
     int             newSortColumn = event.GetColumn();
-     wxArrayInt selections;
-    int i, j, m;
-    
+    wxArrayInt      selections;
+    int             i, j, m;
 
     item.SetMask(wxLIST_MASK_IMAGE);
     if (newSortColumn == m_iSortColumn) {
@@ -1084,5 +1100,3 @@ wxString CBOINCBaseView::HtmlEntityDecode(wxString strRaw) {
 	return strDecodedHtml;
 }
 
-
-const char *BOINC_RCSID_0a1bd38a5a = "$Id: BOINCBaseView.cpp 19325 2009-10-16 19:24:59Z romw $";
diff --git a/clientgui/BOINCBaseView.h b/clientgui/BOINCBaseView.h
index 6f702b5..f5ae3cc 100644
--- a/clientgui/BOINCBaseView.h
+++ b/clientgui/BOINCBaseView.h
@@ -22,9 +22,18 @@
 #pragma interface "BOINCBaseView.cpp"
 #endif
 
+#define BASEVIEW_STRIPES 1
+#define BASEVIEW_RULES 0
+
 #define DEFAULT_TASK_FLAGS             wxTAB_TRAVERSAL | wxADJUST_MINSIZE | wxFULL_REPAINT_ON_RESIZE
+
+#if BASEVIEW_RULES
+#define DEFAULT_LIST_SINGLE_SEL_FLAGS  wxLC_REPORT | wxLC_VIRTUAL | wxLC_HRULES | wxLC_SINGLE_SEL
+#define DEFAULT_LIST_MULTI_SEL_FLAGS   wxLC_REPORT | wxLC_VIRTUAL | wxLC_HRULES
+#else
 #define DEFAULT_LIST_SINGLE_SEL_FLAGS  wxLC_REPORT | wxLC_VIRTUAL | wxLC_SINGLE_SEL
 #define DEFAULT_LIST_MULTI_SEL_FLAGS   wxLC_REPORT | wxLC_VIRTUAL
+#endif
 
 
 class CBOINCTaskCtrl;
@@ -56,8 +65,17 @@ class CTaskItemGroup : wxObject {
 public:
 	CTaskItemGroup();
 	CTaskItemGroup( wxString strName ) :
-		m_strName(strName), m_pStaticBox(NULL), m_pStaticBoxSizer(NULL) { m_Tasks.clear(); };
-    ~CTaskItemGroup() {};
+            m_strName(strName), m_pStaticBox(NULL), m_pStaticBoxSizer(NULL) {
+            m_Tasks.clear();
+#ifdef __WXMAC__
+            m_pTaskGroupAccessibilityEventHandlerRef = NULL;
+#endif
+        };
+    ~CTaskItemGroup() {
+#ifdef __WXMAC__
+        RemoveMacAccessibilitySupport();
+#endif
+    };
     wxButton* button(int i) {return m_Tasks[i]->m_pButton;}
 
     wxString                m_strName;
@@ -66,6 +84,14 @@ public:
     wxStaticBoxSizer*       m_pStaticBoxSizer;
 
 	std::vector<CTaskItem*> m_Tasks;
+
+#ifdef __WXMAC__
+    void                    SetupMacAccessibilitySupport();
+    void                    RemoveMacAccessibilitySupport();
+    
+private:
+    EventHandlerRef         m_pTaskGroupAccessibilityEventHandlerRef;
+#endif
 };
 
 typedef bool     (*ListSortCompareFunc)(int, int);
@@ -107,7 +133,9 @@ public:
     void                    FireOnListDeselected( wxListEvent& event );
     wxString                FireOnListGetItemText( long item, long column ) const;
     int                     FireOnListGetItemImage( long item ) const;
+#if BASEVIEW_STRIPES
     wxListItemAttr*         FireOnListGetItemAttr( long item ) const;
+#endif
     
     int                     GetProgressColumn() { return m_iProgressColumn; }
     virtual double          GetProgressValue(long item);
@@ -120,6 +148,10 @@ public:
 	void                    ClearSavedSelections();
 	void                    ClearSelections();
     void                    RefreshTaskPane();
+
+#ifdef __WXMAC__
+    CBOINCListCtrl*         GetListCtrl() { return m_pListPane; }
+#endif    
  
     std::vector<CTaskItemGroup*> m_TaskGroups;
 
@@ -142,7 +174,6 @@ protected:
     virtual void            OnCacheHint(wxListEvent& event);
     virtual wxString        OnListGetItemText( long item, long column ) const;
     virtual int             OnListGetItemImage( long item ) const;
-    virtual wxListItemAttr* OnListGetItemAttr( long item ) const;
 
     void                    OnColClick(wxListEvent& event);
     
@@ -177,6 +208,13 @@ protected:
     static  wxString        HtmlEntityEncode(wxString strRaw);
     static  wxString        HtmlEntityDecode(wxString strRaw);
 
+#if BASEVIEW_STRIPES
+    virtual wxListItemAttr* OnListGetItemAttr( long item ) const;
+
+    wxListItemAttr*         m_pWhiteBackgroundAttr;
+    wxListItemAttr*         m_pGrayBackgroundAttr;
+#endif
+
     bool                    m_bProcessingTaskRenderEvent;
     bool                    m_bProcessingListRenderEvent;
 
@@ -192,10 +230,6 @@ protected:
 
     CBOINCTaskCtrl*         m_pTaskPane;
     CBOINCListCtrl*         m_pListPane;
-
-    wxListItemAttr*         m_pWhiteBackgroundAttr;
-    wxListItemAttr*         m_pGrayBackgroundAttr;
-
 };
 
 
diff --git a/clientgui/BOINCBaseWizard.cpp b/clientgui/BOINCBaseWizard.cpp
index 673f569..f6fbb5d 100644
--- a/clientgui/BOINCBaseWizard.cpp
+++ b/clientgui/BOINCBaseWizard.cpp
@@ -54,8 +54,8 @@ CBOINCBaseWizard::CBOINCBaseWizard() :
     close_when_completed = false;
 }
 
-CBOINCBaseWizard::CBOINCBaseWizard(wxWindow *parent, int id, const wxString& title, const wxBitmap& bitmap, const wxPoint& pos, long style) :
-    wxWizardEx(parent, id, title, bitmap, pos, style)
+CBOINCBaseWizard::CBOINCBaseWizard(wxWindow *parent, int id, const wxString& title, const wxPoint& pos, long style) :
+    wxWizardEx(parent, id, title, pos, style)
 {
     IsAttachToProjectWizard = false;
     IsAccountManagerWizard = false;
diff --git a/clientgui/BOINCBaseWizard.h b/clientgui/BOINCBaseWizard.h
index d303da1..d7e2973 100644
--- a/clientgui/BOINCBaseWizard.h
+++ b/clientgui/BOINCBaseWizard.h
@@ -36,7 +36,6 @@ public:
     CBOINCBaseWizard(wxWindow *parent,
              int id = wxID_ANY,
              const wxString& title = wxEmptyString,
-             const wxBitmap& bitmap = wxNullBitmap,
              const wxPoint& pos = wxDefaultPosition,
              long style = wxDEFAULT_DIALOG_STYLE);
 
diff --git a/clientgui/BOINCGUIApp.cpp b/clientgui/BOINCGUIApp.cpp
index b07acab..b6a7a56 100644
--- a/clientgui/BOINCGUIApp.cpp
+++ b/clientgui/BOINCGUIApp.cpp
@@ -80,8 +80,7 @@ bool s_bSkipExitConfirmation = false;
 OSErr QuitAppleEventHandler( const AppleEvent *appleEvt, AppleEvent* reply, UInt32 refcon ) {
         DescType            senderType;
         Size                actualSize;
-        ProcessSerialNumber SenderPSN, ourPSN;
-        Boolean             isSame;
+        ProcessSerialNumber SenderPSN;
         ProcessInfoRec      pInfo;
         FSSpec              fileSpec;
         OSStatus            anErr;
@@ -97,14 +96,6 @@ OSErr QuitAppleEventHandler( const AppleEvent *appleEvt, AppleEvent* reply, UInt
                                     &senderType, &SenderPSN, sizeof(SenderPSN), &actualSize);
 
         if (anErr == noErr) {
-             
-            GetCurrentProcess(&ourPSN);
-
-            anErr = SameProcess(&SenderPSN, &ourPSN, &isSame);
-
-            if (anErr == noErr) {
-                if (!isSame) {
-
                 pInfo.processInfoLength = sizeof( ProcessInfoRec );
                 pInfo.processName = NULL;
                 pInfo.processAppSpec = &fileSpec;
@@ -112,13 +103,11 @@ OSErr QuitAppleEventHandler( const AppleEvent *appleEvt, AppleEvent* reply, UInt
                 anErr = GetProcessInformation(&SenderPSN, &pInfo);
 
                 // Consider a Quit command from our Dock menu as coming from this application
-                if (pInfo.processSignature != 'dock') {
+            if ( (pInfo.processSignature != 'dock') && (pInfo.processSignature != 'BNC!') ) {
                     s_bSkipExitConfirmation = true; // Not from our app, our dock icon or our taskbar icon
                     wxGetApp().ExitMainLoop();  // Prevents wxMac from issuing events to closed frames
-                }
             }
         }
-    }
     
     return wxGetApp().MacHandleAEQuit((AppleEvent*)appleEvt, reply);
 }
@@ -284,6 +273,34 @@ bool CBOINCGUIApp::OnInit() {
     m_pLog->AddTraceMask(wxT("Function Status"));
 
  
+    // Initialize the internationalization module
+#ifdef __WXMSW__
+    // On Windows, set all locales for this thread on a per-thread basis
+    _configthreadlocale(_ENABLE_PER_THREAD_LOCALE);
+#endif
+    m_pLocale = new wxLocale();
+    wxASSERT(m_pLocale);
+
+
+    // Look for the localization files by absolute and relative locations.
+    //   preference given to the absolute location.
+    m_pLocale->Init(iSelectedLanguage);
+    if (!m_strBOINCMGRRootDirectory.IsEmpty()) {
+        m_pLocale->AddCatalogLookupPathPrefix(
+            wxString(m_strBOINCMGRRootDirectory + wxT("locale"))
+        );
+    }
+    m_pLocale->AddCatalogLookupPathPrefix(wxT("locale"));
+    m_pLocale->AddCatalog(wxT("BOINC-Manager"));
+
+    InitSupportedLanguages();
+
+
+    // Note: JAWS for Windows will only speak the context-sensitive
+    // help if you use this help provider:
+    wxHelpProvider::Set(new wxHelpControllerHelpProvider());
+
+ 
 #ifdef SANDBOX
     // Make sure owners, groups and permissions are correct for the current setting of g_use_sandbox
     if (!iErrorCode) {
@@ -305,10 +322,10 @@ bool CBOINCGUIApp::OnInit() {
 
         if (iErrorCode == -1099) {
             strDialogMessage = 
-                _("You currently are not authorized to manage the client.\nPlease contact your administrator to add you to the 'boinc_master' user group.");
+                _("You currently are not authorized to manage the client.\n\nTo run BOINC as this user, please:\n  - reinstall BOINC 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.");
         } else {
         strDialogMessage.Printf(
-                _("BOINC ownership or permissions are not set properly; please reinstall BOINC.\n(Error code %d)\n"),
+                _("BOINC ownership or permissions are not set properly; please reinstall BOINC.\n(Error code %d)"),
             iErrorCode
         );
 
@@ -323,6 +340,7 @@ bool CBOINCGUIApp::OnInit() {
     }
 #endif      // SANDBOX
 
+
     // Enable known image types
     wxInitAllImageHandlers();
 
@@ -333,34 +351,6 @@ bool CBOINCGUIApp::OnInit() {
 #endif
 
 
-    // Initialize the internationalization module
-#ifdef __WXMSW__
-    // On Windows, set all locales for this thread on a per-thread basis
-    _configthreadlocale(_ENABLE_PER_THREAD_LOCALE);
-#endif
-    m_pLocale = new wxLocale();
-    wxASSERT(m_pLocale);
-
-
-    // Look for the localization files by absolute and relative locations.
-    //   preference given to the absolute location.
-    m_pLocale->Init(iSelectedLanguage);
-    if (!m_strBOINCMGRRootDirectory.IsEmpty()) {
-        m_pLocale->AddCatalogLookupPathPrefix(
-            wxString(m_strBOINCMGRRootDirectory + wxT("locale"))
-        );
-    }
-    m_pLocale->AddCatalogLookupPathPrefix(wxT("locale"));
-    m_pLocale->AddCatalog(wxT("BOINC-Manager"));
-
-    InitSupportedLanguages();
-
-
-    // Note: JAWS for Windows will only speak the context-sensitive
-    // help if you use this help provider:
-    wxHelpProvider::Set(new wxHelpControllerHelpProvider());
-
-
     // Initialize the skin manager
     m_pSkinManager = new CSkinManager(m_bDebugSkins);
     wxASSERT(m_pSkinManager);
@@ -1211,4 +1201,3 @@ int CBOINCGUIApp::FilterEvent(wxEvent &event) {
 #endif
 }
 
-const char *BOINC_RCSID_487cbf3018 = "$Id: BOINCGUIApp.cpp 19047 2009-09-11 20:40:00Z charlief $";
diff --git a/clientgui/BOINCGUIApp.rc b/clientgui/BOINCGUIApp.rc
index 6f3d047..a323fcd 100644
--- a/clientgui/BOINCGUIApp.rc
+++ b/clientgui/BOINCGUIApp.rc
@@ -132,7 +132,7 @@ BEGIN
             VALUE "FileDescription", "GridRepublic for Windows"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boincmgr"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "gridrepublic.exe"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -167,7 +167,7 @@ BEGIN
             VALUE "FileDescription", "Progress Thru Processors for Windows"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boincmgr"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "progressthruprocessors.exe"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -202,7 +202,7 @@ BEGIN
             VALUE "FileDescription", "World Community Grid for Windows"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boincmgr"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "worldcommunitygrid.exe"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -237,7 +237,7 @@ BEGIN
             VALUE "FileDescription", "BOINC Manager for Windows"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boincmgr"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boincmgr.exe"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
diff --git a/clientgui/BOINCListCtrl.cpp b/clientgui/BOINCListCtrl.cpp
index 0f53880..85485f1 100644
--- a/clientgui/BOINCListCtrl.cpp
+++ b/clientgui/BOINCListCtrl.cpp
@@ -55,6 +55,10 @@ CBOINCListCtrl::CBOINCListCtrl(
     
 #if USE_NATIVE_LISTCONTROL
     m_bProgressBarEventPending = false;
+#else
+#ifdef __WXMAC__
+    SetupMacAccessibilitySupport();
+#endif
 #endif
 
     Connect(
@@ -68,6 +72,9 @@ CBOINCListCtrl::CBOINCListCtrl(
 CBOINCListCtrl::~CBOINCListCtrl()
 {
     m_iRowsNeedingProgressBars.Clear();
+#ifdef __WXMAC__
+    RemoveMacAccessibilitySupport();
+#endif
 }
 
 
@@ -246,12 +253,14 @@ int CBOINCListCtrl::OnGetItemImage(long item) const {
 }
 
 
+#if BASEVIEW_STRIPES
 wxListItemAttr* CBOINCListCtrl::OnGetItemAttr(long item) const {
     wxASSERT(m_pParentView);
     wxASSERT(wxDynamicCast(m_pParentView, CBOINCBaseView));
 
     return m_pParentView->FireOnListGetItemAttr(item);
 }
+#endif
 
 
 void CBOINCListCtrl::DrawProgressBars()
@@ -435,4 +444,3 @@ void CBOINCListCtrl::RefreshCell(int row, int col) {
     RefreshRect(r);
 }
 
-const char *BOINC_RCSID_5cf411daa0 = "$Id: BOINCListCtrl.cpp 17006 2009-01-24 00:05:53Z charlief $";
diff --git a/clientgui/BOINCListCtrl.h b/clientgui/BOINCListCtrl.h
index f396ba9..6de337a 100644
--- a/clientgui/BOINCListCtrl.h
+++ b/clientgui/BOINCListCtrl.h
@@ -71,7 +71,9 @@ private:
 
     virtual wxString        OnGetItemText(long item, long column) const;
     virtual int             OnGetItemImage(long item) const;
+#if BASEVIEW_STRIPES
     virtual wxListItemAttr* OnGetItemAttr(long item) const;
+#endif
 
     CBOINCBaseView*         m_pParentView;
     wxArrayInt              m_iRowsNeedingProgressBars;
@@ -91,6 +93,17 @@ private:
     void                    DrawProgressBars(void);
     wxScrolledWindow*       GetMainWin(void) { return (wxScrolledWindow*) m_mainWin; }
     wxCoord                 GetHeaderHeight(void) { return m_headerHeight; }
+#ifdef __WXMAC__
+    void                    SetupMacAccessibilitySupport();
+    void                    RemoveMacAccessibilitySupport();
+    CBOINCBaseView*         GetParentView() { return m_pParentView; }
+    
+    HIViewRef               m_headerView;
+    HIViewRef               m_bodyView;
+
+    EventHandlerRef         m_pHeaderAccessibilityEventHandlerRef;
+    EventHandlerRef         m_pBodyAccessibilityEventHandlerRef;
+#endif
 #endif
 };
 
diff --git a/clientgui/BOINCTaskBar.cpp b/clientgui/BOINCTaskBar.cpp
index f3dd1e8..fd2ecdc 100644
--- a/clientgui/BOINCTaskBar.cpp
+++ b/clientgui/BOINCTaskBar.cpp
@@ -53,6 +53,7 @@ BEGIN_EVENT_TABLE(CTaskBarIcon, wxTaskBarIconEx)
     EVT_MENU(wxID_OPEN, CTaskBarIcon::OnOpen)
     EVT_MENU(ID_OPENWEBSITE, CTaskBarIcon::OnOpenWebsite)
     EVT_MENU(ID_TB_SUSPEND, CTaskBarIcon::OnSuspendResume)
+    EVT_MENU(ID_TB_SUSPEND_GPU, CTaskBarIcon::OnSuspendResumeGPU)
     EVT_MENU(wxID_ABOUT, CTaskBarIcon::OnAbout)
     EVT_MENU(wxID_EXIT, CTaskBarIcon::OnExit)
 
@@ -186,7 +187,7 @@ void CTaskBarIcon::OnOpen(wxCommandEvent& WXUNUSED(event)) {
 #ifdef __WXMSW__
         ::SetForegroundWindow((HWND)pFrame->GetHandle());
 #endif
-	}
+    }
 #ifdef __WXMAC__
     else {
         wxGetApp().ShowCurrentGUI();
@@ -220,26 +221,37 @@ void CTaskBarIcon::OnOpenWebsite(wxCommandEvent& WXUNUSED(event)) {
 
 void CTaskBarIcon::OnSuspendResume(wxCommandEvent& WXUNUSED(event)) {
     wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnSuspendResume - Function Begin"));
-
     CMainDocument* pDoc      = wxGetApp().GetDocument();
     CC_STATUS      status;
-
     wxASSERT(pDoc);
     wxASSERT(wxDynamicCast(pDoc, CMainDocument));
 
     ResetTaskBar();
-
     pDoc->GetCoreClientStatus(status);
     if (status.task_mode_perm != status.task_mode) {
         pDoc->SetActivityRunMode(RUN_MODE_RESTORE, 0);
     } else {
         pDoc->SetActivityRunMode(RUN_MODE_NEVER, 3600);
     }
-
     wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnSuspendResume - Function End"));
 }
 
+void CTaskBarIcon::OnSuspendResumeGPU(wxCommandEvent& WXUNUSED(event)) {
+    wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnSuspendResumeGPU - Function Begin"));
+    CMainDocument* pDoc      = wxGetApp().GetDocument();
+    CC_STATUS      status;
+    wxASSERT(pDoc);
+    wxASSERT(wxDynamicCast(pDoc, CMainDocument));
 
+    ResetTaskBar();
+    pDoc->GetCoreClientStatus(status);
+    if (status.gpu_mode_perm != status.gpu_mode) {
+        pDoc->SetGPURunMode(RUN_MODE_RESTORE, 0);
+    } else {
+        pDoc->SetGPURunMode(RUN_MODE_NEVER, 3600);
+    }
+    wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnSuspendResumeGPU - Function End"));
+}
 void CTaskBarIcon::OnAbout(wxCommandEvent& WXUNUSED(event)) {
     bool bWasVisible;
 
@@ -331,7 +343,7 @@ void CTaskBarIcon::OnMouseMove(wxTaskBarIconEvent& WXUNUSED(event)) {
             }
 
             pDoc->GetCoreClientStatus(status);
-            if (status.task_suspend_reason && !(status.task_suspend_reason & SUSPEND_REASON_CPU_USAGE_LIMIT)) {
+            if (status.task_suspend_reason && !(status.task_suspend_reason & SUSPEND_REASON_CPU_THROTTLE)) {
                 strBuffer.Printf(
                     _("Computation is suspended.")
                 );
@@ -339,7 +351,7 @@ void CTaskBarIcon::OnMouseMove(wxTaskBarIconEvent& WXUNUSED(event)) {
                 strMessage += strBuffer;
             }
 
-            if (status.network_suspend_reason && !(status.network_suspend_reason & SUSPEND_REASON_CPU_USAGE_LIMIT)) {
+            if (status.network_suspend_reason && !(status.network_suspend_reason & SUSPEND_REASON_CPU_THROTTLE)) {
                 strBuffer.Printf(
                     _("Network activity is suspended.")
                 );
@@ -609,6 +621,9 @@ wxMenu *CTaskBarIcon::BuildContextMenu() {
     pMenu->AppendSeparator();
 
     pMenu->AppendCheckItem(ID_TB_SUSPEND, _("Snooze"), wxEmptyString);
+    if (pDoc->state.have_cuda || pDoc->state.have_ati) {
+        pMenu->AppendCheckItem(ID_TB_SUSPEND_GPU, _("Snooze GPU"), wxEmptyString);
+    }
 
     pMenu->AppendSeparator();
 
@@ -690,22 +705,52 @@ void CTaskBarIcon::AdjustMenuItems(wxMenu* pMenu) {
     if (pDoc->WaitingForRPC()) return;
 
     pDoc->GetCoreClientStatus(status);
-    if (RUN_MODE_NEVER == status.task_mode) {
-        if (status.task_mode_perm == status.task_mode) {
+    switch (status.task_mode) {
+    case RUN_MODE_NEVER:
+        switch (status.task_mode_perm) {
+        case RUN_MODE_NEVER:
             pMenu->Check(ID_TB_SUSPEND, false);
             pMenu->Enable(ID_TB_SUSPEND, false);
-        } else {
+            break;
+        default:
             pMenu->Check(ID_TB_SUSPEND, true);
             if (!is_dialog_detected) {
-            pMenu->Enable(ID_TB_SUSPEND, true);
+                pMenu->Enable(ID_TB_SUSPEND, true);
             }
         }
-    } else {
+        if (pDoc->state.have_cuda || pDoc->state.have_ati) {
+            pMenu->Check(ID_TB_SUSPEND_GPU, false);
+            pMenu->Enable(ID_TB_SUSPEND_GPU, false);
+        }
+        break;
+    default:
         pMenu->Check(ID_TB_SUSPEND, false);
-            if (!is_dialog_detected) {
-        pMenu->Enable(ID_TB_SUSPEND, true);
+        if (!is_dialog_detected) {
+            pMenu->Enable(ID_TB_SUSPEND, true);
+        }
+        if (pDoc->state.have_cuda || pDoc->state.have_ati) {
+            switch (status.gpu_mode) {
+            case RUN_MODE_NEVER:
+                switch (status.gpu_mode_perm) {
+                case RUN_MODE_NEVER:
+                    pMenu->Check(ID_TB_SUSPEND_GPU, false);
+                    pMenu->Enable(ID_TB_SUSPEND_GPU, false);
+                    break;
+                default:
+                    pMenu->Check(ID_TB_SUSPEND_GPU, true);
+                    if (!is_dialog_detected) {
+                        pMenu->Enable(ID_TB_SUSPEND_GPU, true);
+                    }
+                }
+                break;
+            default:
+                pMenu->Check(ID_TB_SUSPEND_GPU, false);
+                if (!is_dialog_detected) {
+                    pMenu->Enable(ID_TB_SUSPEND_GPU, true);
+                }
+                break;
             }
+        }
     }
 }
 
-const char *BOINC_RCSID_531575eeaa = "$Id: BOINCTaskBar.cpp 17859 2009-04-23 03:40:49Z romw $";
diff --git a/clientgui/BOINCTaskBar.h b/clientgui/BOINCTaskBar.h
index a09afa6..5338606 100644
--- a/clientgui/BOINCTaskBar.h
+++ b/clientgui/BOINCTaskBar.h
@@ -40,6 +40,7 @@ public:
     void OnOpenWebsite(wxCommandEvent& event);
     void OnOpen(wxCommandEvent& event);
     void OnSuspendResume(wxCommandEvent& event);
+    void OnSuspendResumeGPU(wxCommandEvent& event);
     void OnAbout(wxCommandEvent& event);
     void OnExit(wxCommandEvent& event);
     void OnShutdown(wxTaskBarIconExEvent& event);
diff --git a/clientgui/BOINCTaskCtrl.cpp b/clientgui/BOINCTaskCtrl.cpp
index e68b792..75f6ba3 100644
--- a/clientgui/BOINCTaskCtrl.cpp
+++ b/clientgui/BOINCTaskCtrl.cpp
@@ -39,6 +39,14 @@ CBOINCTaskCtrl::CBOINCTaskCtrl(CBOINCBaseView* pView, wxWindowID iTaskWindowID,
     SetVirtualSize( 200, 1000 );
     EnableScrolling(false, true);
     SetScrollRate( 0, 10 );
+
+#ifdef __WXMAC__
+    //Accessibility
+    HIObjectSetAccessibilityIgnored((HIObjectRef)GetHandle(), true);
+    HIViewRef parentView = (HIViewRef)m_pParent->GetHandle();
+    HIObjectSetAccessibilityIgnored((HIObjectRef)parentView, true);
+
+#endif
 }
 
 
@@ -162,6 +170,9 @@ wxInt32 CBOINCTaskCtrl::UpdateControls() {
             pGroup->m_pStaticBox = new wxStaticBox(this, wxID_ANY, pGroup->m_strName);
             pGroup->m_pStaticBoxSizer = new wxStaticBoxSizer(pGroup->m_pStaticBox, wxVERTICAL);
             m_pSizer->Add(pGroup->m_pStaticBoxSizer, 0, wxEXPAND|wxALL, 5);
+#ifdef __WXMAC__
+            pGroup->SetupMacAccessibilitySupport();
+#endif
         }
     }
 
@@ -233,5 +244,3 @@ bool CBOINCTaskCtrl::OnRestoreState(wxConfigBase* pConfig) {
     return true;
 }
 
-
-const char *BOINC_RCSID_125ef3d14d = "$Id: BOINCTaskCtrl.cpp 15762 2008-08-06 18:36:30Z davea $";
diff --git a/clientgui/CompletionErrorPage.cpp b/clientgui/CompletionErrorPage.cpp
index ecd59c4..5766403 100644
--- a/clientgui/CompletionErrorPage.cpp
+++ b/clientgui/CompletionErrorPage.cpp
@@ -84,8 +84,7 @@ bool CCompletionErrorPage::Create( CBOINCBaseWizard* parent )
 ////@end CCompletionErrorPage member initialisation
  
 ////@begin CCompletionErrorPage creation
-    wxBitmap wizardBitmap(wxNullBitmap);
-    wxWizardPageEx::Create( parent, ID_COMPLETIONERRORPAGE, wizardBitmap );
+    wxWizardPageEx::Create( parent, ID_COMPLETIONERRORPAGE );
 
     CreateControls();
     GetSizer()->Fit(this);
diff --git a/clientgui/CompletionPage.cpp b/clientgui/CompletionPage.cpp
index 823471e..fa64f56 100644
--- a/clientgui/CompletionPage.cpp
+++ b/clientgui/CompletionPage.cpp
@@ -85,8 +85,7 @@ bool CCompletionPage::Create( CBOINCBaseWizard* parent )
 ////@end CCompletionPage member initialisation
  
 ////@begin CCompletionPage creation
-    wxBitmap wizardBitmap(wxNullBitmap);
-    wxWizardPageEx::Create( parent, ID_COMPLETIONPAGE, wizardBitmap );
+    wxWizardPageEx::Create( parent, ID_COMPLETIONPAGE );
 
     CreateControls();
     GetSizer()->Fit(this);
@@ -124,6 +123,13 @@ void CCompletionPage::CreateControls()
     m_pCompletionMessage = new wxStaticText;
     m_pCompletionMessage->Create( itemWizardPage79, wxID_STATIC, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 );
     itemBoxSizer80->Add(m_pCompletionMessage, 0, wxALIGN_LEFT|wxALL, 5);
+    
+#ifdef __WXMAC__
+    //Accessibility
+    HIViewRef textView = (HIViewRef)m_pCompletionTitle->GetHandle();
+    HIObjectRef   theObject = (HIObjectRef)HIViewGetSuperview(textView);
+    HIObjectSetAccessibilityIgnored(theObject, true);
+#endif
 ////@end CCompletionPage content construction
 }
   
diff --git a/clientgui/DlgAbout.cpp b/clientgui/DlgAbout.cpp
index 87ef1ff..8676347 100644
--- a/clientgui/DlgAbout.cpp
+++ b/clientgui/DlgAbout.cpp
@@ -172,7 +172,7 @@ void CDlgAbout::CreateControls() {
     itemFlexGridSizer7->Add(itemStaticText12, 0, wxALIGN_RIGHT|wxALIGN_TOP|wxLEFT|wxRIGHT, 5);
 
     wxStaticText* itemStaticText13 = new wxStaticText;
-    itemStaticText13->Create( itemDialog1, wxID_STATIC, _("(C) 2003-2008 University of California, Berkeley.\nAll Rights Reserved."), wxDefaultPosition, wxDefaultSize, 0 );
+    itemStaticText13->Create( itemDialog1, wxID_STATIC, _("(C) 2003-2010 University of California, Berkeley.\nAll Rights Reserved."), wxDefaultPosition, wxDefaultSize, 0 );
     itemFlexGridSizer7->Add(itemStaticText13, 0, wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL|wxLEFT|wxRIGHT, 5);
 
     m_AboutBOINCSloganCtrl = new wxStaticText;
@@ -232,4 +232,3 @@ wxIcon CDlgAbout::GetIconResource(const wxString& WXUNUSED(name)) {
 ////@end CDlgAbout icon retrieval
 }
 
-const char *BOINC_RCSID_b40c2996e6="$Id: DlgAbout.cpp 16381 2008-10-31 22:11:38Z romw $";
diff --git a/clientgui/DlgAdvPreferences.cpp b/clientgui/DlgAdvPreferences.cpp
index 5b32047..9890fec 100644
--- a/clientgui/DlgAdvPreferences.cpp
+++ b/clientgui/DlgAdvPreferences.cpp
@@ -95,6 +95,7 @@ CDlgAdvPreferences::~CDlgAdvPreferences() {
 void CDlgAdvPreferences::SetValidators() {
 	//proc page
 	m_txtProcIdleFor->SetValidator(wxTextValidator(wxFILTER_NUMERIC));
+	m_txtMaxLoad->SetValidator(wxTextValidator(wxFILTER_NUMERIC));
 	m_txtProcSwitchEvery->SetValidator(wxTextValidator(wxFILTER_NUMERIC));
 	m_txtProcUseProcessors->SetValidator(wxTextValidator(wxFILTER_NUMERIC));
 	m_txtProcUseCPUTime->SetValidator(wxTextValidator(wxFILTER_NUMERIC));
@@ -133,7 +134,7 @@ void CDlgAdvPreferences::SetSpecialTooltips() {
 	m_txtNetSunday->SetToolTip(TXT_NET_TIME_TOOLTIP);
 }
 
-/* saves selected tab page and dialog size*/
+/* saves dialog siz e*/
 bool CDlgAdvPreferences::SaveState() {
     wxString        strBaseConfigLocation = wxString(wxT("/DlgAdvPreferences/"));
     wxConfigBase*   pConfig = wxConfigBase::Get(FALSE);
@@ -143,16 +144,14 @@ bool CDlgAdvPreferences::SaveState() {
 
 	pConfig->SetPath(strBaseConfigLocation);
 	pConfig->Write(wxT("CurrentPage"),m_Notebook->GetSelection());
-	pConfig->Write(wxT("Width"),this->GetSize().GetWidth());
-	pConfig->Write(wxT("Height"),this->GetSize().GetHeight());
 	return true;
 }
 
-/* restores former selected tab page and dialog size*/
+/* restores former dialog size */
 bool CDlgAdvPreferences::RestoreState() {
     wxString        strBaseConfigLocation = wxString(wxT("/DlgAdvPreferences/"));
     wxConfigBase*   pConfig = wxConfigBase::Get(FALSE);
-	int				p,w,h;
+	int				p;
 
 	wxASSERT(pConfig);
 
@@ -162,9 +161,6 @@ bool CDlgAdvPreferences::RestoreState() {
 
 	pConfig->Read(wxT("CurrentPage"), &p,0);
 	m_Notebook->SetSelection(p);	
-	pConfig->Read(wxT("Width"), &w,-1);
-	pConfig->Read(wxT("Height"), &h,-1);
-	this->SetSize(w,h);	
 
 	return true;
 }
@@ -229,7 +225,11 @@ void CDlgAdvPreferences::ReadPreferenceSettings() {
 	// idle for X minutes
 	buffer.Printf(wxT("%.2f"),prefs.idle_time_to_run);
 	*m_txtProcIdleFor << buffer;
-	// siwtch every X minutes
+
+	buffer.Printf(wxT("%.0f"), prefs.suspend_cpu_usage);
+	*m_txtMaxLoad << buffer;
+
+	// switch every X minutes
 	buffer.Printf(wxT("%.2f"),prefs.cpu_scheduling_period_minutes);
 	*m_txtProcSwitchEvery << buffer;
 	// max cpus
@@ -331,6 +331,11 @@ bool CDlgAdvPreferences::SavePreferencesSettings() {
 		prefs.idle_time_to_run=td;
 		mask.idle_time_to_run=true;
 	}
+
+    m_txtMaxLoad->GetValue().ToDouble(&td);
+    prefs.suspend_cpu_usage=td;
+    mask.suspend_cpu_usage=true;
+
 	//
 	prefs.cpu_times.start_hour=TimeStringToDouble(m_txtProcEveryDayStart->GetValue());
 	mask.start_hour = true;        
@@ -489,6 +494,11 @@ bool CDlgAdvPreferences::ValidateInput() {
 			return false;
 		}
 	}
+    buffer = m_txtMaxLoad->GetValue();
+    if(!IsValidFloatValue(buffer)) {
+        ShowErrorMessage(invMsgFloat, m_txtMaxLoad);
+        return false;
+    }
 	
 	buffer = m_txtProcEveryDayStart->GetValue();
 	if(!IsValidTimeValue(buffer)) {
diff --git a/clientgui/DlgAdvPreferencesBase.cpp b/clientgui/DlgAdvPreferencesBase.cpp
index 9778b1d..d093fc2 100644
--- a/clientgui/DlgAdvPreferencesBase.cpp
+++ b/clientgui/DlgAdvPreferencesBase.cpp
@@ -102,27 +102,74 @@ CDlgAdvPreferencesBase::CDlgAdvPreferencesBase( wxWindow* parent, int id, wxStri
     );
 	sbSizer4->Add( m_chkGPUProcInUse, 0, wxALL, 5 );
 
-	wxFlexGridSizer* fgSizer5;
-	fgSizer5 = new wxFlexGridSizer( 2, 4, 0, 0 );
+    // min idle time
+	wxFlexGridSizer* fgSizer5 = new wxFlexGridSizer( 2, 4, 0, 0 );
 	fgSizer5->AddGrowableCol( 3 );
 	fgSizer5->SetFlexibleDirection( wxHORIZONTAL );
 	fgSizer5->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
-
-	m_staticText26 = new wxStaticText( m_panelProcessor, ID_DEFAULT, _("Only after computer has been idle for"), wxDefaultPosition, wxDefaultSize, 0 );
-	fgSizer5->Add( m_staticText26, 0, wxALL, 5 );
-
-	m_txtProcIdleFor = new wxTextCtrl( m_panelProcessor, ID_TXTPROCIDLEFOR, wxT(""), wxDefaultPosition, wxSize( 50,-1 ), wxTE_RIGHT );
-	m_txtProcIdleFor->SetToolTip( _("do work only after you haven't used the computer for this number of minutes") );
-
+	fgSizer5->Add(
+        new wxStaticText(
+            m_panelProcessor, ID_DEFAULT,
+            _("Only after computer has been idle for"),
+            wxDefaultPosition, wxDefaultSize, 0
+        ),
+        0, wxALL, 5
+    );
+	m_txtProcIdleFor = new wxTextCtrl(
+        m_panelProcessor, ID_TXTPROCIDLEFOR, wxT(""), wxDefaultPosition,
+        wxSize( 50,-1 ), wxTE_RIGHT
+    );
+	m_txtProcIdleFor->SetToolTip(
+        _("do work only after you haven't used the computer for this number of minutes")
+    );
 	fgSizer5->Add( m_txtProcIdleFor, 0, wxALL, 1 );
+	fgSizer5->Add(
+        new wxStaticText(
+            m_panelProcessor, ID_DEFAULT, _("minutes"),
+            wxDefaultPosition, wxDefaultSize, 0
+        ),
+        0, wxALL, 5
+    );
+	fgSizer5->Add(
+        new wxStaticText( m_panelProcessor, ID_DEFAULT, wxT(""), wxDefaultPosition, wxDefaultSize, 0),
+        0, wxALL, 5
+    );
+	sbSizer4->Add( fgSizer5, 0, wxEXPAND, 5);
+
+    // max CPU load
+	wxFlexGridSizer* fgSizer13 = new wxFlexGridSizer( 2, 4, 0, 0 );
+	fgSizer13->AddGrowableCol( 3 );
+	fgSizer13->SetFlexibleDirection( wxHORIZONTAL );
+	fgSizer13->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
+	fgSizer13->Add(
+        new wxStaticText(
+            m_panelProcessor, ID_DEFAULT,
+            _("While processor usage is less than"),
+            wxDefaultPosition, wxDefaultSize, 0
+        ),
+        0, wxALL, 5
+    );
+	m_txtMaxLoad = new wxTextCtrl(
+        m_panelProcessor, ID_TXTMAXLOAD, wxT(""), wxDefaultPosition,
+        wxSize( 30,-1 ), wxTE_RIGHT
+    );
+	m_txtMaxLoad->SetToolTip(
+        _("suspend work if processor usage exceeds this level")
+    );
+	fgSizer13->Add( m_txtMaxLoad, 0, wxALL, 1 );
+	fgSizer13->Add(
+        new wxStaticText(
+            m_panelProcessor, ID_DEFAULT, _("percent (0 means no restriction)"),
+            wxDefaultPosition, wxDefaultSize, 0
+        ),
+        0, wxALL, 5
+    );
+	fgSizer13->Add(
+        new wxStaticText( m_panelProcessor, ID_DEFAULT, wxT(""), wxDefaultPosition, wxDefaultSize, 0),
+        0, wxALL, 5
+    );
+	sbSizer4->Add( fgSizer13, 0, wxEXPAND, 5);
 
-	m_staticText27 = new wxStaticText( m_panelProcessor, ID_DEFAULT, _("minutes"), wxDefaultPosition, wxDefaultSize, 0 );
-	fgSizer5->Add( m_staticText27, 0, wxALL, 5 );
-
-	m_staticText28 = new wxStaticText( m_panelProcessor, ID_DEFAULT, wxT(""), wxDefaultPosition, wxDefaultSize, 0 );
-	fgSizer5->Add( m_staticText28, 0, wxALL, 5 );
-
-	sbSizer4->Add( fgSizer5, 0, wxEXPAND, 5 );
 
 	wxBoxSizer* bSizer111;
 	bSizer111 = new wxBoxSizer( wxHORIZONTAL );
@@ -230,7 +277,7 @@ CDlgAdvPreferencesBase::CDlgAdvPreferencesBase( wxWindow* parent, int id, wxStri
 	fgSizer3->SetFlexibleDirection( wxHORIZONTAL );
 	fgSizer3->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
 
-	m_staticText18 = new wxStaticText( m_panelProcessor, ID_DEFAULT, _("Switch between applications between every"), wxDefaultPosition, wxDefaultSize, wxALIGN_RIGHT );
+	m_staticText18 = new wxStaticText( m_panelProcessor, ID_DEFAULT, _("Switch between applications every"), wxDefaultPosition, wxDefaultSize, wxALIGN_RIGHT );
 	fgSizer3->Add( m_staticText18, 0, wxALL|wxEXPAND, 5 );
 
 	m_txtProcSwitchEvery = new wxTextCtrl( m_panelProcessor, ID_TXTPROCSWITCHEVERY, wxT(""), wxDefaultPosition, wxSize( 50,-1 ), wxTE_RIGHT );
@@ -597,6 +644,7 @@ CDlgAdvPreferencesBase::CDlgAdvPreferencesBase( wxWindow* parent, int id, wxStri
 	bSizer5->Fit( m_panelButtons );
 	bSizer1->Add( m_panelButtons, 0, wxALIGN_BOTTOM|wxALIGN_CENTER_HORIZONTAL|wxALL, 1 );
 
+    bSizer1->Fit( this );
 	this->SetSizer( bSizer1 );
 	this->Layout();
 }
diff --git a/clientgui/DlgAdvPreferencesBase.h b/clientgui/DlgAdvPreferencesBase.h
index 0113ace..2f77c76 100644
--- a/clientgui/DlgAdvPreferencesBase.h
+++ b/clientgui/DlgAdvPreferencesBase.h
@@ -84,6 +84,7 @@
 #define ID_TXTPROCUSEPROCESSORS 20054
 #define ID_TXTPROCWEDNESDAY 20055
 #define ID_CHKGPUPROCINUSE 20056
+#define ID_TXTMAXLOAD 20057
 
 /**
  * Class CDlgAdvPreferencesBase
@@ -102,9 +103,8 @@ class CDlgAdvPreferencesBase : public wxDialog
 		wxCheckBox* m_chkProcOnBatteries;
 		wxCheckBox* m_chkProcInUse;
 		wxCheckBox* m_chkGPUProcInUse;
-		wxStaticText* m_staticText26;
 		wxTextCtrl* m_txtProcIdleFor;
-		wxStaticText* m_staticText27;
+		wxTextCtrl* m_txtMaxLoad;
 		wxStaticText* m_staticText28;
 		wxStaticText* m_staticText351;
 		wxTextCtrl* m_txtProcEveryDayStart;
@@ -202,7 +202,7 @@ class CDlgAdvPreferencesBase : public wxDialog
 		wxButton* m_btnHelp;
 	
 	public:
-		CDlgAdvPreferencesBase( wxWindow* parent, int id = -1, wxString title = wxT(""), wxPoint pos = wxDefaultPosition, wxSize size = wxSize( 547,526 ), int style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER );
+		CDlgAdvPreferencesBase( wxWindow* parent, int id = -1, wxString title = wxT(""), wxPoint pos = wxDefaultPosition, wxSize size = wxSize( 547,526 ), int style = wxDEFAULT_DIALOG_STYLE );
 	
 };
 
diff --git a/clientgui/DlgItemProperties.cpp b/clientgui/DlgItemProperties.cpp
index 3534f6e..65faa0a 100755
--- a/clientgui/DlgItemProperties.cpp
+++ b/clientgui/DlgItemProperties.cpp
@@ -1,433 +1,534 @@
-// This file is part of BOINC.
-// http://boinc.berkeley.edu
-// Copyright (C) 2008 University of California
-//
-// BOINC is free software; you can redistribute it and/or modify it
-// under the terms of the GNU Lesser General Public License
-// as published by the Free Software Foundation,
-// either version 3 of the License, or (at your option) any later version.
-//
-// BOINC is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-// See the GNU Lesser General Public License for more details.
-//
-// You should have received a copy of the GNU Lesser General Public License
-// along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
-//
-#if defined(__GNUG__) && !defined(__APPLE__)
-#pragma implementation "DlgItemProperties.h"
-#endif
-
-#include "stdwx.h"
-#include "util.h"
-#include "DlgItemProperties.h"
-#include "BOINCGUIApp.h"
-#include "Events.h"
-#include "error_numbers.h"
-
-IMPLEMENT_DYNAMIC_CLASS(CDlgItemProperties, wxDialog)
-
-/* Constructor */
-CDlgItemProperties::CDlgItemProperties(wxWindow* parent) : 
-    wxDialog( parent, ID_ANYDIALOG, wxEmptyString, wxDefaultPosition, 
-                wxSize( 503,480 ), wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER ) {
-	SetSizeHints( wxDefaultSize, wxDefaultSize );
-	SetExtraStyle( wxWS_EX_VALIDATE_RECURSIVELY );
-	
-	m_bSizer1 = new wxBoxSizer( wxVERTICAL );
-	
-	m_scrolledWindow = new wxScrolledWindow( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxHSCROLL|wxVSCROLL );
-	m_scrolledWindow->SetScrollRate( 5, 5 );
-	wxBoxSizer* m_bSizer2;
-	m_bSizer2 = new wxBoxSizer( wxVERTICAL );
-	
-	m_gbSizer = new wxGridBagSizer( 0, 0 );
-	m_gbSizer->AddGrowableCol( 1 );
-	m_gbSizer->SetFlexibleDirection( wxBOTH );
-	m_gbSizer->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
-	
-	m_bSizer2->Add( m_gbSizer, 1, wxEXPAND, 5 );
-	
-	m_scrolledWindow->SetSizer( m_bSizer2 );
-	m_scrolledWindow->Layout();
-	m_bSizer2->Fit( m_scrolledWindow );
-	m_bSizer1->Add( m_scrolledWindow, 1, wxEXPAND | wxALL, 5 );
-	
-	m_btnClose = new wxButton( this, wxID_OK, _("&Close"), wxDefaultPosition, wxDefaultSize, 0 );
-	m_btnClose->SetDefault(); 
-	m_bSizer1->Add( m_btnClose, 0, wxALIGN_BOTTOM|wxALIGN_CENTER_HORIZONTAL|wxALL, 5 );
-	
-	SetSizer( m_bSizer1 );
-	Layout();
-	
-	Centre( wxBOTH );
-
-	m_current_row=0;
-}
-
-// destructor
-CDlgItemProperties::~CDlgItemProperties() {
-}
-
-// show project properties
-//
-void CDlgItemProperties::renderInfos(PROJECT* project_in) {
-	std::string projectname;
-	//collecting infos
-	project_in->get_name(projectname);
-	//disk usage needs additional lookups
-	CMainDocument* pDoc = wxGetApp().GetDocument();
-	pDoc->CachedDiskUsageUpdate();
-    
-	// CachedDiskUsageUpdate() may have invalidated our project 
-	// pointer, so get an updated pointer to this project
-	PROJECT* project = pDoc->project(wxString(projectname.c_str(),wxConvUTF8));
-	if(!project) return;     // TODO: display some sort of error alert?
-
-	std::vector<PROJECT*> dp = pDoc->disk_usage.projects;
-	double diskusage=0.0;	
-	for (unsigned int i=0; i< dp.size(); i++) {
-		PROJECT* tp = dp[i];		
-		std::string tname;		
-		tp->get_name(tname);
-		wxString t1(wxString(tname.c_str(),wxConvUTF8));
-		if(t1.IsSameAs(wxString(projectname.c_str(),wxConvUTF8)) || t1.IsSameAs(wxString(project->master_url.c_str(),wxConvUTF8))) {
-			diskusage =tp->disk_usage;
-			break;
-		}
-	}
-	//set dialog title
-	wxString wxTitle = _("Properties of project ");
-	wxTitle.append(wxString(projectname.c_str(),wxConvUTF8));
-	SetTitle(wxTitle);
-	//layout controls
-	addSection(_("General"));
-	addProperty(_("Master URL"),wxString(project->master_url.c_str(),wxConvUTF8));
-	addProperty(_("User name"),wxString(project->user_name.c_str(),wxConvUTF8));
-	addProperty(_("Team name"),wxString(project->team_name.c_str(),wxConvUTF8));
-	addProperty(_("Resource share"),wxString::Format(wxT("%0.0f"),project->resource_share));
-    if (project->min_rpc_time > dtime()) {
-		addProperty(_("Scheduler RPC deferred for"), FormatTime(project->min_rpc_time - dtime()));
-    }
-    if (project->download_backoff) {
-		addProperty(_("File downloads deferred for"), FormatTime(project->download_backoff));
-    }
-    if (project->upload_backoff) {
-		addProperty(_("File uploads deferred for"), FormatTime(project->upload_backoff));
-    }
-	addProperty(_("Disk usage"),FormatDiskSpace(diskusage));
-    addProperty(_("Computer ID"), wxString::Format(wxT("%d"), project->hostid));
-	addProperty(_("Non CPU intensive"),project->non_cpu_intensive ? _("yes") : _("no"));
-	addProperty(_("Suspended via GUI"),project->suspended_via_gui ? _("yes") : _("no"));
-	addProperty(_("Don't request more work"),project->dont_request_more_work ? _("yes") : _("no"));
-	addProperty(_("Scheduler call in progress"),project->scheduler_rpc_in_progress ? _("yes") : _("no"));
-	addProperty(_("Attached via account manager"),project->attached_via_acct_mgr ? _("yes") : _("no"));
-	addProperty(_("Detach when done"),project->detach_when_done ? _("yes") : _("no"));
-	addProperty(_("Ended"),project->ended ? _("yes") : _("no"));
-	addSection(_("Credit"));
-	addProperty(_("User"),
-        wxString::Format(
-            wxT("%0.2f total, %0.2f average"),
-            project->user_total_credit,
-            project->user_expavg_credit
-        )
-    );
-	addProperty(_("Host"),
-        wxString::Format(
-            wxT("%0.2f total, %0.2f average"),
-            project->host_total_credit,
-            project->host_expavg_credit
-        )
-    );
-	
-    if (!project->non_cpu_intensive) {
-	    addSection(_("Scheduling"));
-	    addProperty(_("CPU scheduling priority"),wxString::Format(wxT("%0.2f"), project->short_term_debt));
-	    addProperty(_("CPU work fetch priority"),wxString::Format(wxT("%0.2f"), project->cpu_long_term_debt));
-        double x = project->cpu_backoff_time - dtime();
-        if (x<0) x = 0;
-        addProperty(_("CPU work fetch deferred for"), FormatTime(x));
-        addProperty(_("CPU work fetch deferral interval"), FormatTime(project->cpu_backoff_interval));
-        if (pDoc->state.have_cuda) {
-            addProperty(_("NVIDIA GPU work fetch priority"),wxString::Format(wxT("%0.2f"), project->cuda_debt));
-            x = project->cuda_backoff_time - dtime();
-            if (x<0) x = 0;
-            addProperty(_("NVIDIA GPU work fetch deferred for"), FormatTime(x));
-            addProperty(_("NVIDIA GPU work fetch deferral interval"), FormatTime(project->cuda_backoff_interval));
-        }
-        if (pDoc->state.have_ati) {
-            addProperty(_("ATI GPU work fetch priority"),wxString::Format(wxT("%0.2f"), project->ati_debt));
-            x = project->ati_backoff_time - dtime();
-            if (x<0) x = 0;
-            addProperty(_("ATI GPU work fetch deferred for"), FormatTime(x));
-            addProperty(_("ATI GPU work fetch deferral interval"), FormatTime(project->ati_backoff_interval));
-        }
-	    addProperty(_("Duration correction factor"),wxString::Format(wxT("%0.4f"), project->duration_correction_factor));
-    }
-    m_gbSizer->Layout();
-	m_scrolledWindow->FitInside();
-}
-
-// show task properties
-//
-void CDlgItemProperties::renderInfos(RESULT* result) {
-    wxDateTime dt;
-	wxString wxTitle = _("Properties of task ");
-	wxTitle.append(wxString(result->name.c_str(),wxConvUTF8));
-	SetTitle(wxTitle);
-
-	addProperty(_("Application"), FormatApplicationName(result));
-	addProperty(_("Workunit name"),wxString(result->wu_name.c_str(),wxConvUTF8));
-	addProperty(_("State"), FormatStatus(result));
-    if (result->received_time) {
-        dt.Set((time_t)result->received_time);
-	    addProperty(_("Received"), dt.Format());
-    }
-    dt.Set((time_t)result->report_deadline);
-	addProperty(_("Report deadline"), dt.Format());
-	if (result->resources.size()) {
-		addProperty(_("Resources"), wxString(result->resources.c_str(), wxConvUTF8));
-	}
-    if (result->active_task) {
-		addProperty(_("CPU time at last checkpoint"), FormatTime(result->checkpoint_cpu_time));
-		addProperty(_("CPU time"), FormatTime(result->current_cpu_time));
-        if (result->elapsed_time >= 0) {
-		    addProperty(_("Elapsed time"), FormatTime(result->elapsed_time));
-        }
-		addProperty(_("Estimated time remaining"), FormatTime(result->estimated_cpu_time_remaining));
-		addProperty(_("Fraction done"), wxString::Format(wxT("%.3f %%"), result->fraction_done*100));
-		addProperty(_("Virtual memory size"), FormatDiskSpace(result->swap_size));
-		addProperty(_("Working set size"), FormatDiskSpace(result->working_set_size_smoothed));
-        if (result->slot >= 0) {
-            addProperty(_("Directory"), wxString::Format(wxT("slots/%d"), result->slot));
-        }
-	} else if (result->state >= RESULT_COMPUTE_ERROR) {
-		addProperty(_("CPU time"), FormatTime(result->final_cpu_time));
-		addProperty(_("Elapsed time"), FormatTime(result->final_elapsed_time));
-    }
-	m_gbSizer->Layout();
-	m_scrolledWindow->FitInside();
-}
-
-//
-wxString CDlgItemProperties::FormatDiskSpace(double bytes) {	
-    double         xTera = 1099511627776.0;
-    double         xGiga = 1073741824.0;
-    double         xMega = 1048576.0;
-    double         xKilo = 1024.0;
-	wxString strBuffer= wxEmptyString;
-
-    if (bytes >= xTera) {
-        strBuffer.Printf(wxT("%0.2f TB"), bytes/xTera);
-    } else if (bytes >= xGiga) {
-        strBuffer.Printf(wxT("%0.2f GB"), bytes/xGiga);
-    } else if (bytes >= xMega) {
-        strBuffer.Printf(wxT("%0.2f MB"), bytes/xMega);
-    } else if (bytes >= xKilo) {
-        strBuffer.Printf(wxT("%0.2f KB"), bytes/xKilo);
-    } else {
-        strBuffer.Printf(wxT("%0.0f bytes"), bytes);
-    }
-    return strBuffer;
-}
-
-//
-wxString CDlgItemProperties::FormatApplicationName(RESULT* result ) {
-	wxString       strBuffer = wxEmptyString;
-    CMainDocument* pDoc = wxGetApp().GetDocument();
-    RESULT*        state_result = NULL;
-    wxString       strAppBuffer = wxEmptyString;
-    wxString       strClassBuffer = wxEmptyString;
-
-    wxASSERT(pDoc);
-    wxASSERT(wxDynamicCast(pDoc, CMainDocument));
-
-    if (result) {
-        state_result = pDoc->state.lookup_result(result->project_url, result->name);
-        if (!state_result) {
-            pDoc->ForceCacheUpdate();
-            state_result = pDoc->state.lookup_result(result->project_url, result->name);
-        }
-        wxASSERT(state_result);
-
-        if (!state_result) return strBuffer;
-        WORKUNIT* wup = state_result->wup;
-        if (!wup) return strBuffer;
-        APP* app = wup->app;
-        if (!app) return strBuffer;
-        APP_VERSION* avp = state_result->avp;
-        if (!avp) return strBuffer;
-
-        if (app->user_friendly_name.size()) {
-            strAppBuffer = wxString(state_result->app->user_friendly_name.c_str(), wxConvUTF8);
-        } else {
-            strAppBuffer = wxString(state_result->avp->app_name.c_str(), wxConvUTF8);
-        }
-
-        if (avp->plan_class.size()) {
-            strClassBuffer.Printf(
-                wxT(" (%s)"),
-                wxString(avp->plan_class.c_str(), wxConvUTF8).c_str()
-            );
-        }
-
-        strBuffer.Printf(
-            wxT("%s %d.%02d %s"), 
-            strAppBuffer.c_str(),
-            state_result->avp->version_num / 100,
-            state_result->avp->version_num % 100,
-            strClassBuffer.c_str()
-        );
-    }
-    return strBuffer;
-}
-
-
-//
-wxString CDlgItemProperties::FormatStatus(RESULT* result) {
-	wxString strBuffer= wxEmptyString;
-    CMainDocument* doc = wxGetApp().GetDocument();    
-    CC_STATUS      status;
-
-    wxASSERT(doc);
-    wxASSERT(wxDynamicCast(doc, CMainDocument));
-
-    doc->GetCoreClientStatus(status);
-    
-	int throttled = status.task_suspend_reason & SUSPEND_REASON_CPU_USAGE_LIMIT;
-    switch(result->state) {
-    case RESULT_NEW:
-        strBuffer = _("New"); 
-        break;
-    case RESULT_FILES_DOWNLOADING:
-        if (result->ready_to_report) {
-            strBuffer = _("Download failed");
-        } else {
-            strBuffer = _("Downloading");
-        }
-        break;
-    case RESULT_FILES_DOWNLOADED:
-        if (result->project_suspended_via_gui) {
-            strBuffer = _("Project suspended by user");
-        } else if (result->suspended_via_gui) {
-            strBuffer = _("Task suspended by user");
-        } else if (status.task_suspend_reason && !throttled) {
-            strBuffer = _("Suspended");
-            if (status.task_suspend_reason & SUSPEND_REASON_BATTERIES) {
-                strBuffer += _(" - on batteries");
-            }
-            if (status.task_suspend_reason & SUSPEND_REASON_USER_ACTIVE) {
-                strBuffer += _(" - user active");
-            }
-            if (status.task_suspend_reason & SUSPEND_REASON_USER_REQ) {
-                strBuffer += _(" - computation suspended");
-            }
-            if (status.task_suspend_reason & SUSPEND_REASON_TIME_OF_DAY) {
-                strBuffer += _(" - time of day");
-            }
-            if (status.task_suspend_reason & SUSPEND_REASON_BENCHMARKS) {
-                strBuffer += _(" - CPU benchmarks");
-            }
-            if (status.task_suspend_reason & SUSPEND_REASON_DISK_SIZE) {
-                strBuffer += _(" - need disk space");
-            }
-        } else if (result->active_task) {
-            if (result->too_large) {
-                strBuffer = _("Waiting for memory");
-            } else if (result->needs_shmem) {
-                strBuffer = _("Waiting for shared memory");
-            } else if (result->scheduler_state == CPU_SCHED_SCHEDULED) {
-                if (result->edf_scheduled) {
-                    strBuffer = _("Running, high priority");
-                } else {
-                    strBuffer = _("Running");
-                }
-            } else if (result->scheduler_state == CPU_SCHED_PREEMPTED) {
-                strBuffer = _("Waiting to run");
-            } else if (result->scheduler_state == CPU_SCHED_UNINITIALIZED) {
-                strBuffer = _("Ready to start");
-            }
-        } else {
-            strBuffer = _("Ready to start");
-        }
-        break;
-    case RESULT_COMPUTE_ERROR:
-        strBuffer = _("Computation error");
-        break;
-    case RESULT_FILES_UPLOADING:
-        if (result->ready_to_report) {
-            strBuffer = _("Upload failed");
-        } else {
-            strBuffer = _("Uploading");
-        }
-        break;
-    case RESULT_ABORTED:
-        switch(result->exit_status) {
-        case ERR_ABORTED_VIA_GUI:
-            strBuffer = _("Aborted by user");
-            break;
-        case ERR_ABORTED_BY_PROJECT:
-            strBuffer = _("Aborted by project");
-            break;
-        default:
-            strBuffer = _("Aborted");
-        }
-        break;
-    default:
-        if (result->got_server_ack) {
-            strBuffer = _("Acknowledged");
-        } else if (result->ready_to_report) {
-            strBuffer = _("Ready to report");
-        } else {
-            strBuffer.Format(_("Error: invalid state '%d'"), result->state);
-        }
-        break;
-    }
-    return strBuffer;
-}
-
-// 
-wxString CDlgItemProperties::FormatTime(float fBuffer) {
-    wxInt32        iHour = 0;
-    wxInt32        iMin = 0;
-    wxInt32        iSec = 0;
-    wxTimeSpan     ts;
-	wxString strBuffer= wxEmptyString;
-
-    if (0 >= fBuffer) {
-        strBuffer = wxT("---");
-    } else {
-        iHour = (wxInt32)(fBuffer / (60 * 60));
-        iMin  = (wxInt32)(fBuffer / 60) % 60;
-        iSec  = (wxInt32)(fBuffer) % 60;
-
-        ts = wxTimeSpan(iHour, iMin, iSec);
-
-        strBuffer = ts.Format();
-    }
-
-    return strBuffer;
-}
-
-// adds a title section label to the dialog 
-void CDlgItemProperties::addSection(const wxString& title) {
-	wxStaticText* staticText = new wxStaticText( m_scrolledWindow, wxID_ANY, title, wxDefaultPosition, wxDefaultSize, 0);
-	staticText->Wrap( -1 );
-	staticText->SetFont( wxFont( wxNORMAL_FONT->GetPointSize(), 70, 90, 92, false, wxEmptyString ) );	
-	m_gbSizer->Add( staticText, wxGBPosition( m_current_row, 0 ), wxGBSpan( 1, 2 ), wxALL|wxEXPAND, 3);
-	m_current_row++;
-}
-
-// adds a property row to the dialog 
-void CDlgItemProperties::addProperty(const wxString& name, const wxString& value) {
-	
-	wxStaticText* staticText = new wxStaticText( m_scrolledWindow, wxID_ANY, name, wxDefaultPosition, wxDefaultSize, 0 );
-	staticText->Wrap( -1 );
-	m_gbSizer->Add( staticText, wxGBPosition( m_current_row, 0 ), wxGBSpan( 1, 1 ), wxALL, 3 );
-	
-	staticText = new wxStaticText( m_scrolledWindow, wxID_ANY, value, wxDefaultPosition, wxDefaultSize, 0 );
-	staticText->Wrap( -1 );
-	m_gbSizer->Add( staticText, wxGBPosition( m_current_row, 1 ), wxGBSpan( 1, 1 ), wxALL|wxEXPAND, 3 );
-	m_current_row++;
-}
+// This file is part of BOINC.
+// http://boinc.berkeley.edu
+// Copyright (C) 2008 University of California
+//
+// BOINC is free software; you can redistribute it and/or modify it
+// under the terms of the GNU Lesser General Public License
+// as published by the Free Software Foundation,
+// either version 3 of the License, or (at your option) any later version.
+//
+// BOINC is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+// See the GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
+//
+#if defined(__GNUG__) && !defined(__APPLE__)
+#pragma implementation "DlgItemProperties.h"
+#endif
+
+#include "stdwx.h"
+#include "util.h"
+#include "DlgItemProperties.h"
+#include "BOINCGUIApp.h"
+#include "BOINCBaseFrame.h"
+#include "AdvancedFrame.h"
+#include "Events.h"
+#include "error_numbers.h"
+
+IMPLEMENT_DYNAMIC_CLASS(CDlgItemProperties, wxDialog)
+
+BEGIN_EVENT_TABLE(CDlgItemProperties, wxDialog)
+END_EVENT_TABLE()
+
+/* Constructor */
+CDlgItemProperties::CDlgItemProperties(wxWindow* parent) : 
+    wxDialog( parent, ID_ANYDIALOG, wxEmptyString, wxDefaultPosition, 
+                wxSize( 503,480 ), wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER ) {
+    CBOINCBaseFrame* pFrame = wxGetApp().GetFrame();
+    wxASSERT(pFrame);
+    if (!pFrame) return;
+
+	SetSizeHints( wxDefaultSize, wxDefaultSize );
+	SetExtraStyle( wxWS_EX_VALIDATE_RECURSIVELY );
+	
+	m_bSizer1 = new wxBoxSizer( wxVERTICAL );
+	
+	m_scrolledWindow = new wxScrolledWindow( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxHSCROLL|wxVSCROLL );
+	m_scrolledWindow->SetScrollRate( 5, 5 );
+	wxBoxSizer* m_bSizer2;
+	m_bSizer2 = new wxBoxSizer( wxVERTICAL );
+	
+	m_gbSizer = new wxGridBagSizer( 0, 0 );
+	m_gbSizer->AddGrowableCol( 1 );
+	m_gbSizer->SetFlexibleDirection( wxBOTH );
+	m_gbSizer->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
+	
+	m_bSizer2->Add( m_gbSizer, 1, wxEXPAND, 5 );
+	
+	m_scrolledWindow->SetSizer( m_bSizer2 );
+	m_scrolledWindow->Layout();
+	m_bSizer2->Fit( m_scrolledWindow );
+	m_bSizer1->Add( m_scrolledWindow, 1, wxEXPAND | wxALL, 5 );
+	
+	m_btnClose = new wxButton( this, wxID_OK, _("&Close"), wxDefaultPosition, wxDefaultSize, 0 );
+	m_btnClose->SetDefault(); 
+	m_bSizer1->Add( m_btnClose, 0, wxALIGN_BOTTOM|wxALIGN_CENTER_HORIZONTAL|wxALL, 5 );
+	
+	SetSizer( m_bSizer1 );
+	Layout();
+	
+	Centre( wxBOTH );
+
+	m_current_row=0;
+
+    int currentTabView = pFrame->GetCurrentViewPage();
+    switch(currentTabView) {
+        case VW_PROJ:
+        m_strBaseConfigLocation = wxString(wxT("/DlgProjectProperties/"));
+        break;
+        case VW_TASK:
+        m_strBaseConfigLocation = wxString(wxT("/DlgTaskProperties/"));
+        break;
+        default:
+        m_strBaseConfigLocation = wxString(wxT("/DlgProperties/"));
+        break;
+    }
+
+	RestoreState();
+}
+
+// destructor
+CDlgItemProperties::~CDlgItemProperties() {
+	SaveState();
+}
+
+/* saves dialog size and (on Mac) position */
+bool CDlgItemProperties::SaveState() {
+    wxConfigBase*   pConfig = wxConfigBase::Get(FALSE);
+
+    wxASSERT(pConfig);
+	if (!pConfig) return false;
+
+	pConfig->SetPath(m_strBaseConfigLocation);
+	pConfig->Write(wxT("Width"), GetSize().GetWidth());
+	pConfig->Write(wxT("Height"), GetSize().GetHeight());
+#ifdef __WXMAC__
+    pConfig->Write(wxT("XPos"), GetPosition().x);
+    pConfig->Write(wxT("YPos"), GetPosition().y);
+#endif
+	return true;
+}
+
+/* restores former dialog size and (on Mac) position */
+bool CDlgItemProperties::RestoreState() {
+    wxConfigBase*   pConfig = wxConfigBase::Get(FALSE);
+	int				iWidth, iHeight;
+
+	wxASSERT(pConfig);
+
+    if (!pConfig) return false;
+
+	pConfig->SetPath(m_strBaseConfigLocation);
+
+	pConfig->Read(wxT("Width"), &iWidth, wxDefaultCoord);
+	pConfig->Read(wxT("Height"), &iHeight, wxDefaultCoord);
+
+#ifndef __WXMAC__
+    // Set size to saved values or defaults if no saved values
+    SetSize(iWidth, iHeight);	
+#else
+	int				iTop, iLeft;
+    
+    pConfig->Read(wxT("YPos"), &iTop, wxDefaultCoord);
+    pConfig->Read(wxT("XPos"), &iLeft, wxDefaultCoord);
+    
+    // If either co-ordinate is less then 0 then set it equal to 0 to ensure
+    // it displays on the screen.
+    if ((iLeft < 0) && (iLeft != wxDefaultCoord)) iLeft = 30;
+    if ((iTop < 0) && (iTop != wxDefaultCoord)) iTop = 30;
+
+    // Set size and position to saved values or defaults if no saved values
+    SetSize(iLeft, iTop, iWidth, iHeight, wxSIZE_USE_EXISTING);
+
+    // Now make sure window is on screen
+    GetScreenPosition(&iLeft, &iTop);
+    GetSize(&iWidth, &iHeight);
+    
+    Rect titleRect = {iTop, iLeft, iTop+22, iLeft+iWidth };
+    InsetRect(&titleRect, 5, 5);                // Make sure at least a 5X5 piece visible
+    RgnHandle displayRgn = NewRgn();
+    CopyRgn(GetGrayRgn(), displayRgn);          // Region encompassing all displays
+    Rect menuRect = ((**GetMainDevice())).gdRect;
+    menuRect.bottom = GetMBarHeight() + menuRect.top;
+    RgnHandle menuRgn = NewRgn();
+    RectRgn(menuRgn, &menuRect);                // Region hidden by menu bar
+    DiffRgn(displayRgn, menuRgn, displayRgn);   // Subtract menu bar region
+    if (!RectInRgn(&titleRect, displayRgn)) {
+        iTop = iLeft = 30;
+        SetSize(iLeft, iTop, iWidth, iHeight, wxSIZE_USE_EXISTING);
+    }
+    DisposeRgn(menuRgn);
+    DisposeRgn(displayRgn);
+#endif
+
+	return true;
+}
+// show project properties
+//
+void CDlgItemProperties::renderInfos(PROJECT* project_in) {
+	std::string projectname;
+	//collecting infos
+	project_in->get_name(projectname);
+	//disk usage needs additional lookups
+	CMainDocument* pDoc = wxGetApp().GetDocument();
+	pDoc->CachedDiskUsageUpdate();
+    
+	// CachedDiskUsageUpdate() may have invalidated our project 
+	// pointer, so get an updated pointer to this project
+	PROJECT* project = pDoc->project(wxString(projectname.c_str(),wxConvUTF8));
+	if(!project) return;     // TODO: display some sort of error alert?
+
+	std::vector<PROJECT*> dp = pDoc->disk_usage.projects;
+	double diskusage=0.0;	
+	for (unsigned int i=0; i< dp.size(); i++) {
+		PROJECT* tp = dp[i];		
+		std::string tname;		
+		tp->get_name(tname);
+		wxString t1(wxString(tname.c_str(),wxConvUTF8));
+		if(t1.IsSameAs(wxString(projectname.c_str(),wxConvUTF8)) || t1.IsSameAs(wxString(project->master_url.c_str(),wxConvUTF8))) {
+			diskusage =tp->disk_usage;
+			break;
+		}
+	}
+	//set dialog title
+	wxString wxTitle = _("Properties of project ");
+	wxTitle.append(wxString(projectname.c_str(),wxConvUTF8));
+	SetTitle(wxTitle);
+	//layout controls
+	addSection(_("General"));
+	addProperty(_("Master URL"),wxString(project->master_url.c_str(),wxConvUTF8));
+	addProperty(_("User name"),wxString(project->user_name.c_str(),wxConvUTF8));
+	addProperty(_("Team name"),wxString(project->team_name.c_str(),wxConvUTF8));
+	addProperty(_("Resource share"),wxString::Format(wxT("%0.0f"),project->resource_share));
+    if (project->min_rpc_time > dtime()) {
+		addProperty(_("Scheduler RPC deferred for"), FormatTime(project->min_rpc_time - dtime()));
+    }
+    if (project->download_backoff) {
+		addProperty(_("File downloads deferred for"), FormatTime(project->download_backoff));
+    }
+    if (project->upload_backoff) {
+		addProperty(_("File uploads deferred for"), FormatTime(project->upload_backoff));
+    }
+	addProperty(_("Disk usage"),FormatDiskSpace(diskusage));
+    addProperty(_("Computer ID"), wxString::Format(wxT("%d"), project->hostid));
+	addProperty(_("Non CPU intensive"),project->non_cpu_intensive ? _("yes") : _("no"));
+	addProperty(_("Suspended via GUI"),project->suspended_via_gui ? _("yes") : _("no"));
+	addProperty(_("Don't request more work"),project->dont_request_more_work ? _("yes") : _("no"));
+	addProperty(_("Scheduler call in progress"),project->scheduler_rpc_in_progress ? _("yes") : _("no"));
+	addProperty(_("Attached via account manager"),project->attached_via_acct_mgr ? _("yes") : _("no"));
+	addProperty(_("Detach when done"),project->detach_when_done ? _("yes") : _("no"));
+	addProperty(_("Ended"),project->ended ? _("yes") : _("no"));
+	addSection(_("Credit"));
+	addProperty(_("User"),
+        wxString::Format(
+            wxT("%0.2f total, %0.2f average"),
+            project->user_total_credit,
+            project->user_expavg_credit
+        )
+    );
+	addProperty(_("Host"),
+        wxString::Format(
+            wxT("%0.2f total, %0.2f average"),
+            project->host_total_credit,
+            project->host_expavg_credit
+        )
+    );
+	
+    if (!project->non_cpu_intensive) {
+	    addSection(_("Scheduling"));
+	    addProperty(_("CPU scheduling priority"),wxString::Format(wxT("%0.2f"), project->cpu_short_term_debt));
+	    addProperty(_("CPU work fetch priority"),wxString::Format(wxT("%0.2f"), project->cpu_long_term_debt));
+        double x = project->cpu_backoff_time - dtime();
+        if (x<0) x = 0;
+        addProperty(_("CPU work fetch deferred for"), FormatTime(x));
+        addProperty(_("CPU work fetch deferral interval"), FormatTime(project->cpu_backoff_interval));
+        if (pDoc->state.have_cuda) {
+            addProperty(_("NVIDIA GPU scheduling priority"),wxString::Format(wxT("%0.2f"), project->cuda_short_term_debt));
+            addProperty(_("NVIDIA GPU work fetch priority"),wxString::Format(wxT("%0.2f"), project->cuda_debt));
+            x = project->cuda_backoff_time - dtime();
+            if (x<0) x = 0;
+            addProperty(_("NVIDIA GPU work fetch deferred for"), FormatTime(x));
+            addProperty(_("NVIDIA GPU work fetch deferral interval"), FormatTime(project->cuda_backoff_interval));
+        }
+        if (pDoc->state.have_ati) {
+            addProperty(_("ATI GPU scheduling priority"),wxString::Format(wxT("%0.2f"), project->ati_short_term_debt));
+            addProperty(_("ATI GPU work fetch priority"),wxString::Format(wxT("%0.2f"), project->ati_debt));
+            x = project->ati_backoff_time - dtime();
+            if (x<0) x = 0;
+            addProperty(_("ATI GPU work fetch deferred for"), FormatTime(x));
+            addProperty(_("ATI GPU work fetch deferral interval"), FormatTime(project->ati_backoff_interval));
+        }
+	    addProperty(_("Duration correction factor"),wxString::Format(wxT("%0.4f"), project->duration_correction_factor));
+    }
+    m_gbSizer->Layout();
+	m_scrolledWindow->FitInside();
+}
+
+// show task properties
+//
+void CDlgItemProperties::renderInfos(RESULT* result) {
+    wxDateTime dt;
+	wxString wxTitle = _("Properties of task ");
+	wxTitle.append(wxString(result->name.c_str(),wxConvUTF8));
+	SetTitle(wxTitle);
+
+	addProperty(_("Application"), FormatApplicationName(result));
+	addProperty(_("Workunit name"),wxString(result->wu_name.c_str(),wxConvUTF8));
+	addProperty(_("State"), FormatStatus(result));
+    if (result->received_time) {
+        dt.Set((time_t)result->received_time);
+	    addProperty(_("Received"), dt.Format());
+    }
+    dt.Set((time_t)result->report_deadline);
+	addProperty(_("Report deadline"), dt.Format());
+	if (result->resources.size()) {
+		addProperty(_("Resources"), wxString(result->resources.c_str(), wxConvUTF8));
+	}
+    if (result->active_task) {
+		addProperty(_("CPU time at last checkpoint"), FormatTime(result->checkpoint_cpu_time));
+		addProperty(_("CPU time"), FormatTime(result->current_cpu_time));
+        if (result->elapsed_time >= 0) {
+		    addProperty(_("Elapsed time"), FormatTime(result->elapsed_time));
+        }
+		addProperty(_("Estimated time remaining"), FormatTime(result->estimated_cpu_time_remaining));
+		addProperty(_("Fraction done"), wxString::Format(wxT("%.3f %%"), result->fraction_done*100));
+		addProperty(_("Virtual memory size"), FormatDiskSpace(result->swap_size));
+		addProperty(_("Working set size"), FormatDiskSpace(result->working_set_size_smoothed));
+        if (result->slot >= 0) {
+            addProperty(_("Directory"), wxString::Format(wxT("slots/%d"), result->slot));
+        }
+        if (result->pid) {
+            addProperty(_("Process ID"), wxString::Format(wxT("%d"), result->pid));
+        }
+	} else if (result->state >= RESULT_COMPUTE_ERROR) {
+		addProperty(_("CPU time"), FormatTime(result->final_cpu_time));
+		addProperty(_("Elapsed time"), FormatTime(result->final_elapsed_time));
+    }
+	m_gbSizer->Layout();
+	m_scrolledWindow->FitInside();
+}
+
+//
+wxString CDlgItemProperties::FormatDiskSpace(double bytes) {	
+    double         xTera = 1099511627776.0;
+    double         xGiga = 1073741824.0;
+    double         xMega = 1048576.0;
+    double         xKilo = 1024.0;
+	wxString strBuffer= wxEmptyString;
+
+    if (bytes >= xTera) {
+        strBuffer.Printf(wxT("%0.2f TB"), bytes/xTera);
+    } else if (bytes >= xGiga) {
+        strBuffer.Printf(wxT("%0.2f GB"), bytes/xGiga);
+    } else if (bytes >= xMega) {
+        strBuffer.Printf(wxT("%0.2f MB"), bytes/xMega);
+    } else if (bytes >= xKilo) {
+        strBuffer.Printf(wxT("%0.2f KB"), bytes/xKilo);
+    } else {
+        strBuffer.Printf(wxT("%0.0f bytes"), bytes);
+    }
+    return strBuffer;
+}
+
+//
+wxString CDlgItemProperties::FormatApplicationName(RESULT* result ) {
+	wxString       strBuffer = wxEmptyString;
+    CMainDocument* pDoc = wxGetApp().GetDocument();
+    RESULT*        state_result = NULL;
+    wxString       strAppBuffer = wxEmptyString;
+    wxString       strClassBuffer = wxEmptyString;
+
+    wxASSERT(pDoc);
+    wxASSERT(wxDynamicCast(pDoc, CMainDocument));
+
+    if (result) {
+        state_result = pDoc->state.lookup_result(result->project_url, result->name);
+        if (!state_result) {
+            pDoc->ForceCacheUpdate();
+            state_result = pDoc->state.lookup_result(result->project_url, result->name);
+        }
+        wxASSERT(state_result);
+
+        if (!state_result) return strBuffer;
+        WORKUNIT* wup = state_result->wup;
+        if (!wup) return strBuffer;
+        APP* app = wup->app;
+        if (!app) return strBuffer;
+        APP_VERSION* avp = state_result->avp;
+        if (!avp) return strBuffer;
+
+        if (app->user_friendly_name.size()) {
+            strAppBuffer = wxString(state_result->app->user_friendly_name.c_str(), wxConvUTF8);
+        } else {
+            strAppBuffer = wxString(state_result->avp->app_name.c_str(), wxConvUTF8);
+        }
+
+        if (avp->plan_class.size()) {
+            strClassBuffer.Printf(
+                wxT(" (%s)"),
+                wxString(avp->plan_class.c_str(), wxConvUTF8).c_str()
+            );
+        }
+
+        strBuffer.Printf(
+            wxT("%s %d.%02d %s"), 
+            strAppBuffer.c_str(),
+            state_result->avp->version_num / 100,
+            state_result->avp->version_num % 100,
+            strClassBuffer.c_str()
+        );
+    }
+    return strBuffer;
+}
+
+
+//
+wxString CDlgItemProperties::FormatStatus(RESULT* result) {
+	wxString strBuffer= wxEmptyString;
+    CMainDocument* doc = wxGetApp().GetDocument();    
+    CC_STATUS      status;
+
+    wxASSERT(doc);
+    wxASSERT(wxDynamicCast(doc, CMainDocument));
+
+    doc->GetCoreClientStatus(status);
+    
+	int throttled = status.task_suspend_reason & SUSPEND_REASON_CPU_THROTTLE;
+    switch(result->state) {
+    case RESULT_NEW:
+        strBuffer = _("New"); 
+        break;
+    case RESULT_FILES_DOWNLOADING:
+        if (result->ready_to_report) {
+            strBuffer = _("Download failed");
+        } else {
+            strBuffer = _("Downloading");
+        }
+        break;
+    case RESULT_FILES_DOWNLOADED:
+        if (result->project_suspended_via_gui) {
+            strBuffer = _("Project suspended by user");
+        } else if (result->suspended_via_gui) {
+            strBuffer = _("Task suspended by user");
+        } else if (status.task_suspend_reason && !throttled) {
+            strBuffer = _("Suspended");
+            if (status.task_suspend_reason & SUSPEND_REASON_BATTERIES) {
+                strBuffer += _(" - on batteries");
+            }
+            if (status.task_suspend_reason & SUSPEND_REASON_USER_ACTIVE) {
+                strBuffer += _(" - user active");
+            }
+            if (status.task_suspend_reason & SUSPEND_REASON_USER_REQ) {
+                strBuffer += _(" - computation suspended");
+            }
+            if (status.task_suspend_reason & SUSPEND_REASON_TIME_OF_DAY) {
+                strBuffer += _(" - time of day");
+            }
+            if (status.task_suspend_reason & SUSPEND_REASON_BENCHMARKS) {
+                strBuffer += _(" - CPU benchmarks");
+            }
+            if (status.task_suspend_reason & SUSPEND_REASON_DISK_SIZE) {
+                strBuffer += _(" - need disk space");
+            }
+        } else if (result->active_task) {
+            if (result->too_large) {
+                strBuffer = _("Waiting for memory");
+            } else if (result->needs_shmem) {
+                strBuffer = _("Waiting for shared memory");
+            } else if (result->scheduler_state == CPU_SCHED_SCHEDULED) {
+                if (result->edf_scheduled) {
+                    strBuffer = _("Running, high priority");
+                } else {
+                    strBuffer = _("Running");
+                }
+            } else if (result->scheduler_state == CPU_SCHED_PREEMPTED) {
+                strBuffer = _("Waiting to run");
+            } else if (result->scheduler_state == CPU_SCHED_UNINITIALIZED) {
+                strBuffer = _("Ready to start");
+            }
+        } else {
+            strBuffer = _("Ready to start");
+        }
+        break;
+    case RESULT_COMPUTE_ERROR:
+        strBuffer = _("Computation error");
+        break;
+    case RESULT_FILES_UPLOADING:
+        if (result->ready_to_report) {
+            strBuffer = _("Upload failed");
+        } else {
+            strBuffer = _("Uploading");
+        }
+        break;
+    case RESULT_ABORTED:
+        switch(result->exit_status) {
+        case ERR_ABORTED_VIA_GUI:
+            strBuffer = _("Aborted by user");
+            break;
+        case ERR_ABORTED_BY_PROJECT:
+            strBuffer = _("Aborted by project");
+            break;
+        default:
+            strBuffer = _("Aborted");
+        }
+        break;
+    default:
+        if (result->got_server_ack) {
+            strBuffer = _("Acknowledged");
+        } else if (result->ready_to_report) {
+            strBuffer = _("Ready to report");
+        } else {
+            strBuffer.Format(_("Error: invalid state '%d'"), result->state);
+        }
+        break;
+    }
+    return strBuffer;
+}
+
+// 
+wxString CDlgItemProperties::FormatTime(float fBuffer) {
+    wxInt32        iHour = 0;
+    wxInt32        iMin = 0;
+    wxInt32        iSec = 0;
+    wxTimeSpan     ts;
+	wxString strBuffer= wxEmptyString;
+
+    if (0 >= fBuffer) {
+        strBuffer = wxT("---");
+    } else {
+        iHour = (wxInt32)(fBuffer / (60 * 60));
+        iMin  = (wxInt32)(fBuffer / 60) % 60;
+        iSec  = (wxInt32)(fBuffer) % 60;
+
+        ts = wxTimeSpan(iHour, iMin, iSec);
+
+        strBuffer = ts.Format();
+    }
+
+    return strBuffer;
+}
+
+// adds a title section label to the dialog 
+void CDlgItemProperties::addSection(const wxString& title) {
+	wxStaticText* staticText = new wxStaticText( m_scrolledWindow, wxID_ANY, title, wxDefaultPosition, wxDefaultSize, 0);
+	staticText->Wrap( -1 );
+	staticText->SetFont( wxFont( wxNORMAL_FONT->GetPointSize(), 70, 90, 92, false, wxEmptyString ) );	
+	m_gbSizer->Add( staticText, wxGBPosition( m_current_row, 0 ), wxGBSpan( 1, 2 ), wxALL|wxEXPAND, 3);
+	m_current_row++;
+}
+
+// adds a property row to the dialog 
+void CDlgItemProperties::addProperty(const wxString& name, const wxString& value) {
+	
+	wxStaticText* staticText = new wxStaticText( m_scrolledWindow, wxID_ANY, name, wxDefaultPosition, wxDefaultSize, 0 );
+	staticText->Wrap( -1 );
+	m_gbSizer->Add( staticText, wxGBPosition( m_current_row, 0 ), wxGBSpan( 1, 1 ), wxALL, 3 );
+	
+	staticText = new wxStaticText( m_scrolledWindow, wxID_ANY, value, wxDefaultPosition, wxDefaultSize, 0 );
+	staticText->Wrap( -1 );
+	m_gbSizer->Add( staticText, wxGBPosition( m_current_row, 1 ), wxGBSpan( 1, 1 ), wxALL|wxEXPAND, 3 );
+	m_current_row++;
+}
diff --git a/clientgui/DlgItemProperties.h b/clientgui/DlgItemProperties.h
index dfe8433..fdcfc46 100755
--- a/clientgui/DlgItemProperties.h
+++ b/clientgui/DlgItemProperties.h
@@ -1,66 +1,70 @@
-// This file is part of BOINC.
-// http://boinc.berkeley.edu
-// Copyright (C) 2008 University of California
-//
-// BOINC is free software; you can redistribute it and/or modify it
-// under the terms of the GNU Lesser General Public License
-// as published by the Free Software Foundation,
-// either version 3 of the License, or (at your option) any later version.
-//
-// BOINC is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-// See the GNU Lesser General Public License for more details.
-//
-// You should have received a copy of the GNU Lesser General Public License
-// along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
-//
-#ifndef _DLGITEMPROPERTIES_H_
-#define _DLGITEMPROPERTIES_H_
-
-#if defined(__GNUG__) && !defined(__APPLE__)
-#pragma interface "DlgItemProperties.cpp"
-#endif
-
-#include <wx/intl.h>
-
-#include <wx/gdicmn.h>
-#include <wx/gbsizer.h>
-#include <wx/sizer.h>
-#include <wx/scrolwin.h>
-#include <wx/font.h>
-#include <wx/colour.h>
-#include <wx/settings.h>
-#include <wx/string.h>
-#include <wx/button.h>
-#include <wx/dialog.h>
-
-#include "MainDocument.h"
-
-class CDlgItemProperties : public wxDialog {
-	DECLARE_DYNAMIC_CLASS( CDlgItemProperties )
-public:
-	CDlgItemProperties(wxWindow* parent=NULL);//to act as standard constructor set a default value
-	virtual ~CDlgItemProperties();
-	//
-	void renderInfos(PROJECT* project);
-	void renderInfos(RESULT* result);
-private:
-	int m_current_row;
-	//formatting methods
-	wxString FormatDiskSpace(double bytes);
-	wxString FormatApplicationName(RESULT* result );
-	wxString FormatStatus(RESULT* result);
-	wxString FormatTime(float fBuffer);
-	//generic layout methods
-	void addSection(const wxString& title);
-	void addProperty(const wxString& name, const wxString& value);
-protected:
-        wxBoxSizer* m_bSizer1;
-        wxScrolledWindow* m_scrolledWindow;
-        wxGridBagSizer* m_gbSizer;
-        wxButton* m_btnClose;
-};
-
-#endif // _DLGITEMPROPERTIES_H_
-
+// This file is part of BOINC.
+// http://boinc.berkeley.edu
+// Copyright (C) 2008 University of California
+//
+// BOINC is free software; you can redistribute it and/or modify it
+// under the terms of the GNU Lesser General Public License
+// as published by the Free Software Foundation,
+// either version 3 of the License, or (at your option) any later version.
+//
+// BOINC is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+// See the GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
+//
+#ifndef _DLGITEMPROPERTIES_H_
+#define _DLGITEMPROPERTIES_H_
+
+#if defined(__GNUG__) && !defined(__APPLE__)
+#pragma interface "DlgItemProperties.cpp"
+#endif
+
+#include <wx/intl.h>
+
+#include <wx/gdicmn.h>
+#include <wx/gbsizer.h>
+#include <wx/sizer.h>
+#include <wx/scrolwin.h>
+#include <wx/font.h>
+#include <wx/colour.h>
+#include <wx/settings.h>
+#include <wx/string.h>
+#include <wx/button.h>
+#include <wx/dialog.h>
+
+#include "MainDocument.h"
+
+class CDlgItemProperties : public wxDialog {
+	DECLARE_DYNAMIC_CLASS( CDlgItemProperties )
+    DECLARE_EVENT_TABLE()
+public:
+	CDlgItemProperties(wxWindow* parent=NULL);//to act as standard constructor set a default value
+	virtual ~CDlgItemProperties();
+    //
+	void renderInfos(PROJECT* project);
+	void renderInfos(RESULT* result);
+private:
+	int m_current_row;
+	//formatting methods
+	wxString FormatDiskSpace(double bytes);
+	wxString FormatApplicationName(RESULT* result );
+	wxString FormatStatus(RESULT* result);
+	wxString FormatTime(float fBuffer);
+	//generic layout methods
+    bool SaveState();
+    bool RestoreState();
+	void addSection(const wxString& title);
+	void addProperty(const wxString& name, const wxString& value);
+protected:
+        wxBoxSizer* m_bSizer1;
+        wxScrolledWindow* m_scrolledWindow;
+        wxGridBagSizer* m_gbSizer;
+        wxButton* m_btnClose;
+        wxString m_strBaseConfigLocation;
+};
+
+#endif // _DLGITEMPROPERTIES_H_
+
diff --git a/clientgui/DlgOptions.cpp b/clientgui/DlgOptions.cpp
index dbcddc4..4271fa7 100644
--- a/clientgui/DlgOptions.cpp
+++ b/clientgui/DlgOptions.cpp
@@ -571,5 +571,3 @@ wxIcon CDlgOptions::GetIconResource( const wxString& WXUNUSED(name) )
 ////@end CDlgOptions icon retrieval
 }
 
-
-const char *BOINC_RCSID_5743f67054="$Id: DlgOptions.cpp 17519 2009-03-06 00:04:16Z romw $";
diff --git a/clientgui/DlgSelectComputer.cpp b/clientgui/DlgSelectComputer.cpp
index 044edb4..a72251c 100644
--- a/clientgui/DlgSelectComputer.cpp
+++ b/clientgui/DlgSelectComputer.cpp
@@ -209,4 +209,3 @@ void CDlgSelectComputer::OnComputerNameUpdated( wxCommandEvent& WXUNUSED(event)
     }
 }
 
-const char *BOINC_RCSID_28d78701f5="$Id: DlgSelectComputer.cpp 15762 2008-08-06 18:36:30Z davea $";
diff --git a/clientgui/Events.h b/clientgui/Events.h
index f299c1e..091f37b 100644
--- a/clientgui/Events.h
+++ b/clientgui/Events.h
@@ -66,20 +66,24 @@
 #define ID_ADVACTIVITYRUNALWAYS                 6010
 #define ID_ADVACTIVITYRUNBASEDONPREPERENCES     6011
 #define ID_ADVACTIVITYSUSPEND                   6012
-#define ID_ADVACTIVITYMENUSEPARATOR             6013
-#define ID_ADVNETWORKRUNALWAYS                  6014
-#define ID_ADVNETWORKRUNBASEDONPREPERENCES      6015
-#define ID_ADVNETWORKSUSPEND                    6016
+#define ID_MENUSEPARATOR1                       6013
+#define ID_ADVACTIVITYGPUALWAYS                 6014
+#define ID_ADVACTIVITYGPUBASEDONPREPERENCES     6015
+#define ID_ADVACTIVITYGPUSUSPEND                6016
+#define ID_MENUSEPARATOR2                       6017
+#define ID_ADVNETWORKRUNALWAYS                  6018
+#define ID_ADVNETWORKRUNBASEDONPREPERENCES      6019
+#define ID_ADVNETWORKSUSPEND                    6020
 
 // Advanced Menu
-#define ID_OPTIONS                              6017
-#define ID_PREFERENCES                          6018
-#define ID_SELECTCOMPUTER                       6019
-#define ID_SHUTDOWNCORECLIENT                   6020
-#define ID_RUNBENCHMARKS                        6021
-#define ID_RETRYCOMMUNICATIONS                  6022
-#define ID_READCONFIG                           6023
-#define ID_READPREFERENCES                      6026
+#define ID_OPTIONS                              6021
+#define ID_PREFERENCES                          6022
+#define ID_SELECTCOMPUTER                       6023
+#define ID_SHUTDOWNCORECLIENT                   6026
+#define ID_RUNBENCHMARKS                        6027
+#define ID_RETRYCOMMUNICATIONS                  6028
+#define ID_READCONFIG                           6029
+#define ID_READPREFERENCES                      6030
 
 // Help Menu
 #define ID_HELPBOINC                            6035  // Locked: Used by manager_links.php
@@ -154,6 +158,7 @@
 // Taskbar/System Tray
 //
 #define ID_TB_SUSPEND                           6801
+#define ID_TB_SUSPEND_GPU                       6802
 
 //
 // Dialogs
diff --git a/clientgui/LogBOINC.cpp b/clientgui/LogBOINC.cpp
index 00801a4..e6310f5 100644
--- a/clientgui/LogBOINC.cpp
+++ b/clientgui/LogBOINC.cpp
@@ -39,4 +39,3 @@ void wxLogBOINC::DoLogString(const wxChar *szString, time_t t) {
     wxLogStderr::DoLogString(szString, t);
 }
 
-const char *BOINC_RCSID_4f7bf42814="$Id: LogBOINC.cpp 15762 2008-08-06 18:36:30Z davea $";
diff --git a/clientgui/MainDocument.cpp b/clientgui/MainDocument.cpp
index a13e3c0..b8ccc11 100644
--- a/clientgui/MainDocument.cpp
+++ b/clientgui/MainDocument.cpp
@@ -739,6 +739,21 @@ int CMainDocument::SetActivityRunMode(int iMode, int iTimeout) {
 }
 
 
+int CMainDocument::SetGPURunMode(int iMode, int iTimeout) {
+    CC_STATUS ccs;
+
+    if (IsConnected()) {
+        int retval = rpc.set_gpu_mode(iMode, iTimeout);
+        if (retval) return retval;
+        if (iMode == RUN_MODE_RESTORE) {
+            GetCoreClientStatus(ccs, true);
+        } else {
+            status.network_mode = iMode;
+        }
+    }
+    return 0;
+}
+
 int CMainDocument::SetNetworkRunMode(int iMode, int iTimeout) {
     int       iRetVal = 0;
     CC_STATUS ccs;
@@ -758,33 +773,52 @@ int CMainDocument::SetNetworkRunMode(int iMode, int iTimeout) {
 }
 
 
+// We use 0 to indicate that the RPC has never been called yet, so 
+// set last update time to (time_t)1 here rather than to (time_t)0, 
+// and only if it is currently not zero.
 void CMainDocument::RefreshRPCs() {
 
-    m_dtCachedCCStatusTimestamp = wxDateTime((time_t)0);
-//    m_iGet_status_rpc_result = -1;
+    if (!m_dtCachedCCStatusTimestamp.IsEqualTo(wxDateTime((time_t)0))) {
+        m_dtCachedCCStatusTimestamp = wxDateTime((time_t)1);
+//      m_iGet_status_rpc_result = -1;
+    }
     
-    m_dtProjecStatusTimestamp = wxDateTime((time_t)0);
-//  m_iGet_project_status1_rpc_result = -1;
+    if (!m_dtProjecStatusTimestamp.IsEqualTo(wxDateTime((time_t)0))) {
+        m_dtProjecStatusTimestamp = wxDateTime((time_t)1);
+//      m_iGet_project_status1_rpc_result = -1;
+    }
         
-    m_dtResultsTimestamp = wxDateTime((time_t)0);
-//  m_iGet_results_rpc_result = -1;
+    if (!m_dtResultsTimestamp.IsEqualTo(wxDateTime((time_t)0))) {
+        m_dtResultsTimestamp = wxDateTime((time_t)1);
+//      m_iGet_results_rpc_result = -1;
+    }
         
-    m_dtFileTransfersTimestamp = wxDateTime((time_t)0);
-//  m_iGet_file_transfers_rpc_result = 0;
+    if (!m_dtFileTransfersTimestamp.IsEqualTo(wxDateTime((time_t)0))) {
+        m_dtFileTransfersTimestamp = wxDateTime((time_t)1);
+//      m_iGet_file_transfers_rpc_result = 0;
+    }
         
 //  m_iGet_messages_rpc_result = -1;
         
-    m_dtDiskUsageTimestamp = wxDateTime((time_t)0);
-//  m_iGet_dsk_usage_rpc_result = -1;
+    if (!m_dtDiskUsageTimestamp.IsEqualTo(wxDateTime((time_t)0))) {
+        m_dtDiskUsageTimestamp = wxDateTime((time_t)1);
+//      m_iGet_dsk_usage_rpc_result = -1;
+    }
 
-    m_dtStatisticsStatusTimestamp = wxDateTime((time_t)0);
-//  m_iGet_statistics_rpc_result = -1;
+    if (!m_dtStatisticsStatusTimestamp.IsEqualTo(wxDateTime((time_t)0))) {
+        m_dtStatisticsStatusTimestamp = wxDateTime((time_t)1);
+//      m_iGet_statistics_rpc_result = -1;
+    }
         
-    m_dtCachedSimpleGUITimestamp = wxDateTime((time_t)0);
-//  m_iGet_simple_gui2_rpc_result = -1;
+    if (!m_dtCachedSimpleGUITimestamp.IsEqualTo(wxDateTime((time_t)0))) {
+        m_dtCachedSimpleGUITimestamp = wxDateTime((time_t)1);
+//      m_iGet_simple_gui2_rpc_result = -1;
+    }
 
-    m_dtCachedAcctMgrInfoTimestamp = wxDateTime((time_t)0);
-    m_iAcct_mgr_info_rpc_result = -1;
+    if (!m_dtCachedAcctMgrInfoTimestamp.IsEqualTo(wxDateTime((time_t)0))) {
+        m_dtCachedAcctMgrInfoTimestamp = wxDateTime((time_t)1);
+        m_iAcct_mgr_info_rpc_result = -1;
+    }
 
 //  m_iGet_state_rpc_result = -1;
 }
@@ -2153,5 +2187,3 @@ int CMainDocument::GetSimpleGUIWorkCount() {
     return iCount;
 }
 
-
-const char *BOINC_RCSID_aa03a835ba = "$Id: MainDocument.cpp 18928 2009-08-27 21:04:52Z charlief $";
diff --git a/clientgui/MainDocument.h b/clientgui/MainDocument.h
index 6fc0c17..933c374 100644
--- a/clientgui/MainDocument.h
+++ b/clientgui/MainDocument.h
@@ -143,6 +143,7 @@ public:
 
     int                         GetCoreClientStatus(CC_STATUS&, bool bForce = false);
     int                         SetActivityRunMode(int iMode, int iTimeout);
+    int                         SetGPURunMode(int iMode, int iTimeout);
     int                         SetNetworkRunMode(int iMode, int iTimeout);
 
     void                        RefreshRPCs();
diff --git a/clientgui/NoInternetConnectionPage.cpp b/clientgui/NoInternetConnectionPage.cpp
index c90e5d4..a62c79c 100644
--- a/clientgui/NoInternetConnectionPage.cpp
+++ b/clientgui/NoInternetConnectionPage.cpp
@@ -81,8 +81,7 @@ bool CErrNoInternetConnectionPage::Create( CBOINCBaseWizard* parent )
 ////@end CErrNoInternetConnectionPage member initialisation
 
 ////@begin CErrNoInternetConnectionPage creation
-    wxBitmap wizardBitmap(wxNullBitmap);
-    wxWizardPageEx::Create( parent, ID_ERRNOINTERNETCONNECTIONPAGE, wizardBitmap );
+    wxWizardPageEx::Create( parent, ID_ERRNOINTERNETCONNECTIONPAGE );
 
     CreateControls();
     GetSizer()->Fit(this);
diff --git a/clientgui/NotDetectedPage.cpp b/clientgui/NotDetectedPage.cpp
index 60d5201..d5123fc 100644
--- a/clientgui/NotDetectedPage.cpp
+++ b/clientgui/NotDetectedPage.cpp
@@ -81,8 +81,7 @@ bool CErrNotDetectedPage::Create( CBOINCBaseWizard* parent )
 ////@end CErrNotDetectedPage member initialisation
  
 ////@begin CErrNotDetectedPage creation
-    wxBitmap wizardBitmap(wxNullBitmap);
-    wxWizardPageEx::Create( parent, ID_ERRNOTDETECTEDPAGE, wizardBitmap );
+    wxWizardPageEx::Create( parent, ID_ERRNOTDETECTEDPAGE );
 
     CreateControls();
     GetSizer()->Fit(this);
diff --git a/clientgui/NotFoundPage.cpp b/clientgui/NotFoundPage.cpp
index aace964..8619b56 100644
--- a/clientgui/NotFoundPage.cpp
+++ b/clientgui/NotFoundPage.cpp
@@ -81,8 +81,7 @@ bool CErrNotFoundPage::Create( CBOINCBaseWizard* parent )
 ////@end CErrNotFoundPage member initialisation
  
 ////@begin CErrNotFoundPage creation
-    wxBitmap wizardBitmap(wxNullBitmap);
-    wxWizardPageEx::Create( parent, ID_ERRNOTFOUNDPAGE, wizardBitmap );
+    wxWizardPageEx::Create( parent, ID_ERRNOTFOUNDPAGE );
 
     CreateControls();
     GetSizer()->Fit(this);
diff --git a/clientgui/ProjectInfoPage.cpp b/clientgui/ProjectInfoPage.cpp
index 6e7e26e..25d1e0f 100644
--- a/clientgui/ProjectInfoPage.cpp
+++ b/clientgui/ProjectInfoPage.cpp
@@ -25,8 +25,9 @@
 #include "mfile.h"
 #include "miofile.h"
 #include "parse.h"
-#include "str_util.h"
+#include "url.h"
 #include "error_numbers.h"
+
 #include "wizardex.h"
 #include "error_numbers.h"
 #include "BOINCGUIApp.h"
@@ -96,8 +97,7 @@ bool CProjectInfoPage::Create( CBOINCBaseWizard* parent )
     m_bProjectListPopulated = false;
  
 ////@begin CProjectInfoPage creation
-    wxBitmap wizardBitmap(wxNullBitmap);
-    wxWizardPageEx::Create( parent, ID_PROJECTINFOPAGE, wizardBitmap );
+    wxWizardPageEx::Create( parent, ID_PROJECTINFOPAGE );
 
     CreateControls();
 
@@ -159,6 +159,13 @@ void CProjectInfoPage::CreateControls()
 
     // Set validators
     m_pProjectUrlCtrl->SetValidator( CValidateURL( & m_strProjectURL ) );
+
+#ifdef __WXMAC__
+    //Accessibility
+    HIViewRef listView = (HIViewRef)m_pProjectListCtrl->GetHandle();
+    HIObjectRef   theObject = (HIObjectRef)HIViewGetSuperview(listView);
+    HIObjectSetAccessibilityIgnored(theObject, true);
+#endif
 ////@end CProjectInfoPage content construction
 }
 
@@ -234,6 +241,9 @@ void CProjectInfoPage::OnPageChanged( wxWizardExEvent& event ) {
 
     unsigned int                i, j, k;
     bool                        bSupportedPlatformFound = false;
+    bool                        bProjectSupportsNvidiaGPU = false;
+    bool                        bProjectSupportsATIGPU = false;
+    bool                        bProjectSupportsMulticore = false;
     ALL_PROJECTS_LIST           pl;
     CMainDocument*              pDoc = wxGetApp().GetDocument();
 
@@ -264,31 +274,71 @@ void CProjectInfoPage::OnPageChanged( wxWizardExEvent& event ) {
 
         for (i=0; i<pl.projects.size(); i++) {
             bSupportedPlatformFound = false;
+            bProjectSupportsNvidiaGPU = false;
+            bProjectSupportsATIGPU = false;
+            bProjectSupportsMulticore = false;
+
+            wxLogTrace(
+                wxT("Function Status"),
+                wxT("CProjectInfoPage::OnPageChanged - Name: '%s', URL: '%s'"),
+                wxString(pl.projects[i]->name.c_str(), wxConvUTF8).c_str(),
+                wxString(pl.projects[i]->url.c_str(), wxConvUTF8).c_str()
+            );
+
+            std::vector<std::string> &project_platforms = pl.projects[i]->platforms;
 
             // Can the core client support a platform that this project
             //   supports?
-            std::vector<std::string> &project_platforms = pl.projects[i]->platforms;
             for (j = 0;j < client_platforms.size(); j++) {
                 for (k = 0;k < project_platforms.size(); k++) {
-                    if (client_platforms[j] == project_platforms[k]) {
+                    wxString strClientPlatform = wxString(client_platforms[j].c_str(), wxConvUTF8);
+                    wxString strProjectPlatform = wxString(project_platforms[k].c_str(), wxConvUTF8);
+                    wxString strRootProjectPlatform = strProjectPlatform.SubString(0, strProjectPlatform.Find(_T("[")) - 1);
+                    
+                    if (strProjectPlatform.Find(_T("[cuda")) != wxNOT_FOUND) {
+                        if ((pDoc->state.have_cuda) && (strClientPlatform == strRootProjectPlatform)) {
+                            bProjectSupportsNvidiaGPU = true;
+                            bSupportedPlatformFound = true;
+                        }
+                    }
+
+                    if (strProjectPlatform.Find(_T("[ati")) != wxNOT_FOUND) {
+                        if ((pDoc->state.have_ati) && (strClientPlatform == strRootProjectPlatform)) {
+                            bProjectSupportsATIGPU = true;
+                            bSupportedPlatformFound = true;
+                        }
+                    }
+
+                    if (strProjectPlatform.Find(_T("[mt")) != wxNOT_FOUND) {
+                        if ((pDoc->host.p_ncpus >= 4) && (strClientPlatform == strRootProjectPlatform)) {
+                            bProjectSupportsMulticore = true;
+                            bSupportedPlatformFound = true;
+                        }
+                    }
+
+                    if (strClientPlatform == strRootProjectPlatform) {
                         bSupportedPlatformFound = true;
-                        break;
                     }
                 }
             }
 
             wxLogTrace(
                 wxT("Function Status"),
-                wxT("CProjectInfoPage::OnPageChanged - Name: '%s', URL: '%s', Supported: '%d'"),
-                wxString(pl.projects[i]->name.c_str(), wxConvUTF8).c_str(),
-                wxString(pl.projects[i]->url.c_str(), wxConvUTF8).c_str(),
+                wxT("CProjectInfoPage::OnPageChanged - Nvidia: '%d', ATI: '%d', Multicore: '%d', Platform: '%d'"),
+                bProjectSupportsNvidiaGPU,
+                bProjectSupportsATIGPU,
+                bProjectSupportsMulticore,
                 bSupportedPlatformFound
             );
 
             m_pProjectListCtrl->Append(
                 wxString(pl.projects[i]->url.c_str(), wxConvUTF8),
                 wxString(pl.projects[i]->name.c_str(), wxConvUTF8),
+                wxString(pl.projects[i]->image.c_str(), wxConvUTF8),
                 wxString(pl.projects[i]->description.c_str(), wxConvUTF8),
+                bProjectSupportsNvidiaGPU,
+                bProjectSupportsATIGPU,
+                bProjectSupportsMulticore,
                 bSupportedPlatformFound
             );
         }
@@ -297,6 +347,7 @@ void CProjectInfoPage::OnPageChanged( wxWizardExEvent& event ) {
         m_pProjectListCtrl->SetSelection(0);
         m_strProjectURL = m_pProjectListCtrl->GetItem(0)->GetURL();
         m_bProjectSupported = m_pProjectListCtrl->GetItem(0)->IsPlatformSupported();
+
         TransferDataToWindow();
 
         m_bProjectListPopulated = true;
@@ -315,7 +366,10 @@ void CProjectInfoPage::OnPageChanged( wxWizardExEvent& event ) {
  */
 
 void CProjectInfoPage::OnPageChanging( wxWizardExEvent& event ) {
- 	CMainDocument* pDoc = wxGetApp().GetDocument(); 
+    if (event.GetDirection() == false) return;
+    wxLogTrace(wxT("Function Start/End"), wxT("CProjectInfoPage::OnPageChanging - Function Begin"));
+
+    CMainDocument* pDoc = wxGetApp().GetDocument(); 
     CSkinAdvanced* pSkinAdvanced = wxGetApp().GetSkinManager()->GetAdvanced();
     wxString       strTitle;
     int            iAnswer;
@@ -372,6 +426,8 @@ void CProjectInfoPage::OnPageChanging( wxWizardExEvent& event ) {
             } 
         } 
     }
+
+    wxLogTrace(wxT("Function Start/End"), wxT("CProjectInfoPage::OnPageChanging - Function End"));
 }
 
 
diff --git a/clientgui/ProjectListCtrl.cpp b/clientgui/ProjectListCtrl.cpp
index 3b18023..f6ca8b5 100644
--- a/clientgui/ProjectListCtrl.cpp
+++ b/clientgui/ProjectListCtrl.cpp
@@ -26,10 +26,27 @@
 
 ////@begin XPM images
 #include "res/externalweblink.xpm"
+#include "res/nvidiaicon.xpm"
+#include "res/atiicon.xpm"
+#include "res/multicore.xpm"
 ////@end XPM images
 
 
-#if wxUSE_ACCESSIBILITY
+#ifdef __WXMAC__
+
+CProjectListCtrlAccessible::CProjectListCtrlAccessible(wxWindow* win) {
+    mp_win = win;
+    SetupMacAccessibilitySupport();
+}
+
+
+CProjectListCtrlAccessible::~CProjectListCtrlAccessible() {
+    RemoveMacAccessibilitySupport();
+}
+
+#endif
+
+#if wxUSE_ACCESSIBILITY || defined(__WXMAC__)
 
 // Gets the name of the specified object.
 wxAccStatus CProjectListCtrlAccessible::GetName(int childId, wxString* name)
@@ -107,6 +124,72 @@ wxAccStatus CProjectListCtrlAccessible::GetLocation(wxRect& rect, int elementId)
 }
 
 
+// Gets the number of children.
+wxAccStatus CProjectListCtrlAccessible::GetChildCount(int* childCount)
+{
+    CProjectListCtrl* pCtrl = wxDynamicCast(GetWindow(), CProjectListCtrl);
+    if (pCtrl)
+    {
+        *childCount = (int)pCtrl->GetItemCount();
+        return wxACC_OK;
+    }
+    // Let the framework handle the other cases.
+    return wxACC_NOT_IMPLEMENTED;
+}
+
+
+// Performs the default action. childId is 0 (the action for this object)
+// or > 0 (the action for a child).
+// Return wxACC_NOT_SUPPORTED if there is no default action for this
+// window (e.g. an edit control).
+wxAccStatus CProjectListCtrlAccessible::DoDefaultAction(int childId)
+{
+    CProjectListCtrl* pCtrl = wxDynamicCast(GetWindow(), CProjectListCtrl);
+    if (pCtrl && (childId != wxACC_SELF))
+    {
+        // Zero-based array index
+        int iRealChildId = childId - 1;
+
+        pCtrl->SetSelection(iRealChildId);
+
+        // Fire Event 
+        ProjectListCtrlEvent evt( 
+            wxEVT_PROJECTLIST_ITEM_CHANGE, 
+            pCtrl->GetItem(iRealChildId)->GetTitle(),  
+            pCtrl->GetItem(iRealChildId)->GetURL(), 
+            true 
+        ); 
+#ifdef __WXMAC__
+        evt.SetEventObject(pCtrl); 
+#else
+        evt.SetEventObject(this); 
+#endif
+
+        pCtrl->GetParent()->AddPendingEvent( evt ); 
+
+        return wxACC_OK;
+    }
+    // Let the framework handle the other cases.
+    return wxACC_NOT_IMPLEMENTED;
+}
+
+
+// Returns the description for this object or a child.
+wxAccStatus CProjectListCtrlAccessible::GetDescription(int childId, wxString* description)
+{
+    CProjectListCtrl* pCtrl = wxDynamicCast(GetWindow(), CProjectListCtrl);
+    if (pCtrl && (childId != wxACC_SELF))
+    {
+        *description = pCtrl->GetItem(childId - 1)->GetDescription().c_str();
+        return wxACC_OK;
+    }
+    // Let the framework handle the other cases.
+    return wxACC_NOT_IMPLEMENTED;
+}
+
+
+#ifndef __WXMAC__
+
 // Navigates from fromId to toId/toObject.
 wxAccStatus CProjectListCtrlAccessible::Navigate(
     wxNavDir navDir, int fromId, int* toId, wxAccessible** toObject
@@ -179,52 +262,6 @@ wxAccStatus CProjectListCtrlAccessible::Navigate(
 }
 
 
-// Gets the number of children.
-wxAccStatus CProjectListCtrlAccessible::GetChildCount(int* childCount)
-{
-    CProjectListCtrl* pCtrl = wxDynamicCast(GetWindow(), CProjectListCtrl);
-    if (pCtrl)
-    {
-        *childCount = (int)pCtrl->GetItemCount();
-        return wxACC_OK;
-    }
-    // Let the framework handle the other cases.
-    return wxACC_NOT_IMPLEMENTED;
-}
-
-
-// Performs the default action. childId is 0 (the action for this object)
-// or > 0 (the action for a child).
-// Return wxACC_NOT_SUPPORTED if there is no default action for this
-// window (e.g. an edit control).
-wxAccStatus CProjectListCtrlAccessible::DoDefaultAction(int childId)
-{
-    CProjectListCtrl* pCtrl = wxDynamicCast(GetWindow(), CProjectListCtrl);
-    if (pCtrl && (childId != wxACC_SELF))
-    {
-        // Zero-based array index
-        int iRealChildId = childId - 1;
-
-        pCtrl->SetSelection(iRealChildId);
-
-        // Fire Event 
-        ProjectListCtrlEvent evt( 
-            wxEVT_PROJECTLIST_ITEM_CHANGE, 
-            pCtrl->GetItem(iRealChildId)->GetTitle(),  
-            pCtrl->GetItem(iRealChildId)->GetURL(), 
-            true 
-        ); 
-        evt.SetEventObject(this); 
-
-        pCtrl->GetParent()->AddPendingEvent( evt ); 
-
-        return wxACC_OK;
-    }
-    // Let the framework handle the other cases.
-    return wxACC_NOT_IMPLEMENTED;
-}
-
-
 // Gets the default action for this object (0) or > 0 (the action for a child).
 // Return wxACC_OK even if there is no action. actionName is the action, or the empty
 // string if there is no action.
@@ -244,20 +281,6 @@ wxAccStatus CProjectListCtrlAccessible::GetDefaultAction(int childId, wxString*
 }
 
 
-// Returns the description for this object or a child.
-wxAccStatus CProjectListCtrlAccessible::GetDescription(int childId, wxString* description)
-{
-    CProjectListCtrl* pCtrl = wxDynamicCast(GetWindow(), CProjectListCtrl);
-    if (pCtrl && (childId != wxACC_SELF))
-    {
-        *description = pCtrl->GetItem(childId - 1)->GetDescription().c_str();
-        return wxACC_OK;
-    }
-    // Let the framework handle the other cases.
-    return wxACC_NOT_IMPLEMENTED;
-}
-
-
 // Returns a role constant.
 wxAccStatus CProjectListCtrlAccessible::GetRole(int childId, wxAccRole* role)
 {
@@ -328,8 +351,8 @@ wxAccStatus CProjectListCtrlAccessible::GetSelections(wxVariant* )
     // Let the framework handle the other cases.
     return wxACC_NOT_IMPLEMENTED;
 }
-
-#endif
+#endif      // ifndef __WXMAC__
+#endif      // wxUSE_ACCESSIBILITY || defined(__WXMAC__)
 
 
 /*!
@@ -381,6 +404,16 @@ CProjectListCtrl::CProjectListCtrl( wxWindow* parent )
     Create( parent );
 }
  
+ 
+ #ifdef __WXMAC__
+CProjectListCtrl::~CProjectListCtrl( )
+{
+    if (m_accessible) {
+        delete m_accessible;
+    }
+}
+#endif
+
 /*!
  * CProjectList creator
  */
@@ -397,9 +430,16 @@ bool CProjectListCtrl::Create( wxWindow* parent )
 #if wxUSE_ACCESSIBILITY
     SetAccessible(new CProjectListCtrlAccessible(this));
 #endif
+#ifdef __WXMAC__
+    m_accessible = new CProjectListCtrlAccessible(this);
+#endif
 
     wxMemoryFSHandler::AddFile(wxT("webexternallink.xpm"), wxBitmap(externalweblink_xpm), wxBITMAP_TYPE_XPM);
+    wxMemoryFSHandler::AddFile(wxT("nvidiaicon.xpm"), wxBitmap(nvidiaicon_xpm), wxBITMAP_TYPE_XPM);
+    wxMemoryFSHandler::AddFile(wxT("atiicon.xpm"), wxBitmap(atiicon_xpm), wxBITMAP_TYPE_XPM);
+    wxMemoryFSHandler::AddFile(wxT("multicore.xpm"), wxBitmap(multicore_xpm), wxBITMAP_TYPE_XPM);
 ////@end CProjectListCtrl creation
+
     return TRUE;
 }
 
@@ -448,26 +488,78 @@ void CProjectListCtrl::OnLinkClicked( wxHtmlLinkEvent& event )
 
 void CProjectListCtrl::OnHover( wxHtmlCellEvent& event )
 {
-    event.Skip();
+    long i = 0;
+    wxHtmlCell* pCell = event.GetCell();
+    wxHtmlCell* pRootCell = pCell->GetRootCell();
+    wxString strMulticoreIcon = wxT("multicore");
+    wxString strNvidiaIcon = wxT("nvidiaicon");
+    wxString strATIIcon = wxT("atiicon");
+    wxString strWebsiteIcon = wxT("website");
+    wxString strTooltip = wxEmptyString;
+
+    wxHtmlCell* pAnchor = pCell->GetParent()->GetFirstChild();
+
+    if (pAnchor->Find(wxHTML_COND_ISANCHOR, &strMulticoreIcon)) {
+        strTooltip = _("Multicore CPU Supported");
+    } else if (pAnchor->Find(wxHTML_COND_ISANCHOR, &strNvidiaIcon)) {
+        strTooltip = _("Nvidia GPU Supported");
+    } else if (pAnchor->Find(wxHTML_COND_ISANCHOR, &strATIIcon)) {
+        strTooltip = _("ATI GPU Supported");
+    } else if (pAnchor->Find(wxHTML_COND_ISANCHOR, &strWebsiteIcon)) {
+        strTooltip = _("Project Website");
+    } else {
+        // Convert current HTML cell into an array index
+        pRootCell->GetId().ToLong(&i);
+
+        strTooltip = m_Items[i]->GetDescription();
+    }
+
+    // Set Tooltip to the item currently being hovered over
+    SetToolTip(strTooltip);
 }
 
 
 wxString CProjectListCtrl::OnGetItem(size_t i) const
 {
-    wxString buf = wxEmptyString;
-
-    buf.Printf(
-        wxT("  <table cellpadding=0 cellspacing=1>")
-        wxT("    <tr>")
-        wxT("      <td width=100%%>%s</td>")
-        wxT("      <td><a href=\"%s\"><img src=\"memory:webexternallink.xpm\"></a></td>")
-        wxT("    </tr>")
-        wxT("  </table>"),
-        m_Items[i]->GetTitle().c_str(),
+    wxString strTopRow = wxEmptyString;
+    wxString strBuffer = wxEmptyString;
+
+
+    //
+    // Top Row
+    // 
+    strTopRow += wxT("<table cellpadding=0 cellspacing=1>");
+
+    strTopRow += wxT("<tr>");
+
+    strBuffer.Printf(
+        wxT("<td width=100%%>%s</td>"),
+        m_Items[i]->GetTitle().c_str()
+    );
+    strTopRow += strBuffer;
+    
+    if (m_Items[i]->IsMulticoreSupported()) {
+        strTopRow += wxT("<td><a name=\"multicore\"><img height=16 width=16 src=\"memory:multicore.xpm\"></a></td>");
+    }
+
+    if (m_Items[i]->IsNvidiaGPUSupported()) {
+        strTopRow += wxT("<td><a name=\"nvidiaicon\"><img height=16 width=16 src=\"memory:nvidiaicon.xpm\"></a></td>");
+    }
+
+    if (m_Items[i]->IsATIGPUSupported()) {
+        strTopRow += wxT("<td><a name=\"atiicon\"><img height=16 width=16 src=\"memory:atiicon.xpm\"></a></td>");
+    }
+
+    strBuffer.Printf(
+        wxT("<td><a name=\"website\"href=\"%s\"><img height=16 width=16 src=\"memory:webexternallink.xpm\"></a></td>"),
         m_Items[i]->GetURL().c_str()
     );
+    strTopRow += strBuffer;
+
+    strTopRow += wxT("</tr>");
+    strTopRow += wxT("</table>");
 
-    return buf;
+    return strTopRow;
 }
 
 
@@ -478,7 +570,11 @@ wxString CProjectListCtrl::OnGetItem(size_t i) const
 bool CProjectListCtrl::Append(
     wxString strURL,
     wxString strTitle,
+    wxString strImage,
     wxString strDescription,
+    bool bNvidiaGPUSupported,
+    bool bATIGPUSupported,
+    bool bMulticoreSupported,
     bool bSupported
 )
 {
@@ -486,7 +582,11 @@ bool CProjectListCtrl::Append(
 
     pItem->SetURL( strURL );
     pItem->SetTitle( strTitle );
+    pItem->SetImage( strImage );
     pItem->SetDescription( strDescription );
+    pItem->SetNvidiaGPUSupported( bNvidiaGPUSupported );
+    pItem->SetATIGPUSupported( bATIGPUSupported );
+    pItem->SetMulticoreSupported( bMulticoreSupported );
     pItem->SetPlatformSupported( bSupported );
 
     m_Items.push_back(pItem);
diff --git a/clientgui/ProjectListCtrl.h b/clientgui/ProjectListCtrl.h
index 4f6a9b4..f38ebdf 100644
--- a/clientgui/ProjectListCtrl.h
+++ b/clientgui/ProjectListCtrl.h
@@ -38,6 +38,9 @@ public:
     wxString GetTitle() const { return m_strTitle ; }
     void SetTitle(wxString value) { m_strTitle = value ; }
 
+    wxString GetImage() const { return m_strImage ; }
+    void SetImage(wxString value) { m_strImage = value ; }
+
     wxString GetOrganization() const { return m_strOrganization ; }
     void SetOrganization(wxString value) { m_strOrganization = value ; }
 
@@ -47,38 +50,80 @@ public:
     wxString GetCategory() const { return m_strCategory ; }
     void SetCategory(wxString value) { m_strCategory = value ; }
 
+    bool IsNvidiaGPUSupported() const { return m_bNvidiaGPUSupported ; }
+    void SetNvidiaGPUSupported(bool value) { m_bNvidiaGPUSupported = value ; }
+
+    bool IsATIGPUSupported() const { return m_bATIGPUSupported ; }
+    void SetATIGPUSupported(bool value) { m_bATIGPUSupported = value ; }
+
+    bool IsMulticoreSupported() const { return m_bMulticoreSupported ; }
+    void SetMulticoreSupported(bool value) { m_bMulticoreSupported = value ; }
+
     bool IsPlatformSupported() const { return m_bSupported ; }
     void SetPlatformSupported(bool value) { m_bSupported = value ; }
 
 private:
     wxString m_strURL;
     wxString m_strTitle;
+    wxString m_strImage;
     wxString m_strOrganization;
     wxString m_strDescription;
     wxString m_strCategory;
+    bool m_bNvidiaGPUSupported;
+    bool m_bATIGPUSupported;
+    bool m_bMulticoreSupported;
     bool m_bSupported;
 };
 
+#if wxUSE_ACCESSIBILITY || defined(__WXMAC__)
+
+#ifdef __WXMAC__
 
-#if wxUSE_ACCESSIBILITY
+#define wxACC_SELF              0
+#define wxACC_OK                noErr
+#define wxAccStatus             OSStatus
+#define wxACC_NOT_IMPLEMENTED   eventNotHandledErr
+#define wxACC_FALSE             eventNotHandledErr
+#define wxAccessible            wxObject
 
+class CProjectListCtrlAccessible
+#else
 class CProjectListCtrlAccessible: public wxWindowAccessible
+#endif
 {
 public:
+
+#ifdef __WXMAC__
+    CProjectListCtrlAccessible(wxWindow* win);
+    virtual ~CProjectListCtrlAccessible();
+#else
     CProjectListCtrlAccessible(wxWindow* win): wxWindowAccessible(win) {}
+#endif
 
     virtual wxAccStatus GetName(int childId, wxString* name);
     virtual wxAccStatus HitTest(const wxPoint& pt, int* childId, wxAccessible** childObject);
     virtual wxAccStatus GetLocation(wxRect& rect, int elementId);
-    virtual wxAccStatus Navigate(wxNavDir navDir, int fromId, int* toId, wxAccessible** toObject);
     virtual wxAccStatus GetChildCount(int* childCount);
     virtual wxAccStatus DoDefaultAction(int childId);
-    virtual wxAccStatus GetDefaultAction(int childId, wxString* actionName);
     virtual wxAccStatus GetDescription(int childId, wxString* description);
+#ifndef __WXMAC__
+    virtual wxAccStatus Navigate(wxNavDir navDir, int fromId, int* toId, wxAccessible** toObject);
+    virtual wxAccStatus GetDefaultAction(int childId, wxString* actionName);
     virtual wxAccStatus GetRole(int childId, wxAccRole* role);
     virtual wxAccStatus GetState(int childId, long* state);
     virtual wxAccStatus Select(int childId, wxAccSelectionFlags selectFlags);
     virtual wxAccStatus GetSelections(wxVariant* selections);
+#endif
+
+#ifdef __WXMAC__
+    wxWindow                *mp_win;
+    HIViewRef               m_listView;
+    EventHandlerRef         m_plistAccessibilityEventHandlerRef;
+    
+    wxWindow *GetWindow() { return mp_win; }
+    void SetupMacAccessibilitySupport();
+    void RemoveMacAccessibilitySupport();
+#endif
 };
 
 #endif
@@ -98,6 +143,9 @@ public:
     CProjectListCtrl( );
 
     CProjectListCtrl( wxWindow* parent );
+#ifdef __WXMAC__
+    ~CProjectListCtrl();
+#endif
 
     /// Creation
     bool Create( wxWindow* parent );
@@ -118,7 +166,11 @@ public:
     bool Append(
         wxString strURL,
         wxString strTitle,
+        wxString strImage,
         wxString strDescription,
+        bool bNvidiaGPUSupported,
+        bool bATIGPUSupported,
+        bool bMulticoreSupported,
         bool bSupported
     );
 
@@ -130,6 +182,10 @@ public:
 
 private:
     std::vector<CProjectListItem*> m_Items;
+
+#ifdef __WXMAC__
+    CProjectListCtrlAccessible*    m_accessible;
+#endif
 };
 
 
diff --git a/clientgui/ProjectProcessingPage.cpp b/clientgui/ProjectProcessingPage.cpp
index 6d859d9..9578d62 100644
--- a/clientgui/ProjectProcessingPage.cpp
+++ b/clientgui/ProjectProcessingPage.cpp
@@ -116,8 +116,7 @@ bool CProjectProcessingPage::Create( CBOINCBaseWizard* parent )
     m_iCurrentState = ATTACHPROJECT_INIT;
  
 ////@begin CProjectProcessingPage creation
-    wxBitmap wizardBitmap(wxNullBitmap);
-    wxWizardPageEx::Create( parent, ID_PROJECTPROCESSINGPAGE, wizardBitmap );
+    wxWizardPageEx::Create( parent, ID_PROJECTPROCESSINGPAGE );
 
     CreateControls();
     GetSizer()->Fit(this);
diff --git a/clientgui/ProjectPropertiesPage.cpp b/clientgui/ProjectPropertiesPage.cpp
index 93cb8af..0a6b0fe 100644
--- a/clientgui/ProjectPropertiesPage.cpp
+++ b/clientgui/ProjectPropertiesPage.cpp
@@ -120,8 +120,7 @@ bool CProjectPropertiesPage::Create( CBOINCBaseWizard* parent )
     m_iCurrentState = PROJPROP_INIT;
  
 ////@begin CProjectPropertiesPage creation
-    wxBitmap wizardBitmap(wxNullBitmap);
-    wxWizardPageEx::Create( parent, ID_PROJECTPROPERTIESPAGE, wizardBitmap );
+    wxWizardPageEx::Create( parent, ID_PROJECTPROPERTIESPAGE );
 
     CreateControls();
     GetSizer()->Fit(this);
diff --git a/clientgui/ProxyInfoPage.cpp b/clientgui/ProxyInfoPage.cpp
index b1b5223..b74946b 100644
--- a/clientgui/ProxyInfoPage.cpp
+++ b/clientgui/ProxyInfoPage.cpp
@@ -82,8 +82,7 @@ bool CErrProxyInfoPage::Create( CBOINCBaseWizard* parent )
 ////@end CErrProxyInfoPage member initialisation
   
 ////@begin CErrProxyInfoPage creation
-    wxBitmap wizardBitmap(wxNullBitmap);
-    wxWizardPageEx::Create( parent, ID_ERRPROXYINFOPAGE, wizardBitmap );
+    wxWizardPageEx::Create( parent, ID_ERRPROXYINFOPAGE );
 
     CreateControls();
     GetSizer()->Fit(this);
@@ -197,20 +196,7 @@ void CErrProxyInfoPage::OnPageChanged( wxWizardExEvent& event ) {
     );
 #if defined (_WCG)
     m_pDescriptionStaticCtrl->SetLabel(
-        _("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."
-        )
+        _("The World Community Grid - BOINC software failed to communicate\nover the Internet. The most likely reasons are:\n\n1) Connectivity problem.  Check your network or modem connection\nand then click Back to try again.\n\n2) Personal firewall software is blocking the World Community\nGrid - BOINC software.  Configure your personal firewall to let\nBOINC and BOINC Manager communicate on port 80 and port 443,\nhen click Back to try again.\n\n3) You are using a proxy server.\nClick Next to configure BOINC's proxy settings.")
     );
 #else
     m_pDescriptionStaticCtrl->SetLabel(
diff --git a/clientgui/ProxyPage.cpp b/clientgui/ProxyPage.cpp
index 0174291..b7d0024 100644
--- a/clientgui/ProxyPage.cpp
+++ b/clientgui/ProxyPage.cpp
@@ -102,8 +102,7 @@ bool CErrProxyPage::Create( CBOINCBaseWizard* parent )
 ////@end CErrProxyPage member initialisation
  
 ////@begin CErrProxyPage creation
-    wxBitmap wizardBitmap(wxNullBitmap);
-    wxWizardPageEx::Create( parent, ID_ERRPROXYPAGE, wizardBitmap );
+    wxWizardPageEx::Create( parent, ID_ERRPROXYPAGE );
 
     CreateControls();
     GetSizer()->Fit(this);
diff --git a/clientgui/TermsOfUsePage.cpp b/clientgui/TermsOfUsePage.cpp
index c856824..caa36c4 100644
--- a/clientgui/TermsOfUsePage.cpp
+++ b/clientgui/TermsOfUsePage.cpp
@@ -88,8 +88,7 @@ bool CTermsOfUsePage::Create( CBOINCBaseWizard* parent )
 ////@end CTermsOfUsePage member initialisation
  
 ////@begin CTermsOfUsePage creation
-    wxBitmap wizardBitmap(wxNullBitmap);
-    wxWizardPageEx::Create( parent, ID_TERMSOFUSEPAGE, wizardBitmap );
+    wxWizardPageEx::Create( parent, ID_TERMSOFUSEPAGE );
 
     CreateControls();
     GetSizer()->Fit(this);
diff --git a/clientgui/UnavailablePage.cpp b/clientgui/UnavailablePage.cpp
index b3cc8dd..17fd340 100644
--- a/clientgui/UnavailablePage.cpp
+++ b/clientgui/UnavailablePage.cpp
@@ -81,8 +81,7 @@ bool CErrUnavailablePage::Create( CBOINCBaseWizard* parent )
 ////@end CErrUnavailablePage member initialisation
  
 ////@begin CErrUnavailablePage creation
-    wxBitmap wizardBitmap(wxNullBitmap);
-    wxWizardPageEx::Create( parent, ID_ERRUNAVAILABLEPAGE, wizardBitmap );
+    wxWizardPageEx::Create( parent, ID_ERRUNAVAILABLEPAGE );
 
     CreateControls();
     GetSizer()->Fit(this);
diff --git a/clientgui/ValidateAccountKey.cpp b/clientgui/ValidateAccountKey.cpp
index bbcede0..aa8f5f9 100644
--- a/clientgui/ValidateAccountKey.cpp
+++ b/clientgui/ValidateAccountKey.cpp
@@ -137,5 +137,3 @@ bool CValidateAccountKey::CheckValidator() const {
     return TRUE;
 }
 
-
-const char *BOINC_RCSID_0c2c4c6b07 = "$Id: ValidateAccountKey.cpp 15901 2008-08-20 16:07:06Z charlief $";
diff --git a/clientgui/ValidateURL.cpp b/clientgui/ValidateURL.cpp
index 649f275..e7232e2 100644
--- a/clientgui/ValidateURL.cpp
+++ b/clientgui/ValidateURL.cpp
@@ -22,7 +22,7 @@
 #include "stdwx.h"
 #include "ValidateURL.h"
 #include "BOINCGUIApp.h"
-#include "str_util.h"
+#include "url.h"
 
 
 IMPLEMENT_DYNAMIC_CLASS(CValidateURL, wxValidator)
@@ -176,5 +176,3 @@ bool CValidateURL::CheckValidator() const {
     return TRUE;
 }
 
-
-const char *BOINC_RCSID_1f1a9f5f09 = "$Id: ValidateURL.cpp 15901 2008-08-20 16:07:06Z charlief $";
diff --git a/clientgui/ViewMessages.cpp b/clientgui/ViewMessages.cpp
index 6ecd2b0..2bbf389 100644
--- a/clientgui/ViewMessages.cpp
+++ b/clientgui/ViewMessages.cpp
@@ -118,10 +118,41 @@ CViewMessages::CViewMessages(wxNotebook* pNotebook) :
     m_pListPane->InsertColumn(COLUMN_TIME, _("Time"), wxLIST_FORMAT_LEFT, 145);
     m_pListPane->InsertColumn(COLUMN_MESSAGE, _("Message"), wxLIST_FORMAT_LEFT, 550);
 
-    m_pMessageInfoAttr = new wxListItemAttr(*wxBLACK, *wxWHITE, wxNullFont);
-    m_pMessageErrorAttr = new wxListItemAttr(*wxRED, *wxWHITE, wxNullFont);
-    m_pMessageInfoGrayAttr = new wxListItemAttr(*wxBLACK, wxColour(240, 240, 240), wxNullFont);
-    m_pMessageErrorGrayAttr = new wxListItemAttr(*wxRED, wxColour(240, 240, 240), wxNullFont);
+#if BASEVIEW_STRIPES    
+    m_pMessageInfoAttr = new wxListItemAttr(
+        m_pWhiteBackgroundAttr->GetTextColour(), 
+        m_pWhiteBackgroundAttr->GetBackgroundColour(), 
+        wxNullFont
+    );
+    m_pMessageErrorAttr = new wxListItemAttr(
+        *wxRED, 
+        m_pWhiteBackgroundAttr->GetBackgroundColour(), 
+        wxNullFont
+    );
+    m_pMessageInfoGrayAttr = new wxListItemAttr(
+        m_pGrayBackgroundAttr->GetTextColour(), 
+        m_pGrayBackgroundAttr->GetBackgroundColour(), 
+        wxNullFont
+    );
+    m_pMessageErrorGrayAttr = new wxListItemAttr(
+        *wxRED, 
+        m_pGrayBackgroundAttr->GetBackgroundColour(), 
+        wxNullFont
+    );
+#else
+    m_pMessageInfoAttr = new wxListItemAttr(
+        wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT),
+        wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW),
+        wxNullFont
+    );
+    m_pMessageErrorAttr = new wxListItemAttr(
+        *wxRED, 
+        wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW),
+        wxNullFont
+    );
+    m_pMessageInfoGrayAttr = new wxListItemAttr(*m_pMessageInfoAttr);
+    m_pMessageErrorGrayAttr = new wxListItemAttr(*m_pMessageErrorAttr);
+#endif
 
     UpdateSelection();
 }
@@ -370,9 +401,9 @@ void CViewMessages::OnListRender (wxTimerEvent& event) {
             if (was_connected != isConnected) {
                 was_connected = isConnected;
                 if (isConnected) {
-                    m_pMessageInfoAttr->SetTextColour(*wxBLACK);
+                    m_pMessageInfoAttr->SetTextColour(m_pWhiteBackgroundAttr->GetTextColour());
                     m_pMessageErrorAttr->SetTextColour(*wxRED);
-                    m_pMessageInfoGrayAttr->SetTextColour(*wxBLACK);
+                    m_pMessageInfoGrayAttr->SetTextColour(m_pGrayBackgroundAttr->GetTextColour());
                     m_pMessageErrorGrayAttr->SetTextColour(*wxRED);
                 } else {
                     wxColourDatabase colorBase;
@@ -617,4 +648,4 @@ bool CViewMessages::CloseClipboard() {
 #endif
 
 
-const char *BOINC_RCSID_0be7149475 = "$Id: ViewMessages.cpp 18928 2009-08-27 21:04:52Z charlief $";
+const char *BOINC_RCSID_0be7149475 = "$Id: ViewMessages.cpp 20952 2010-03-18 21:54:20Z charlief $";
diff --git a/clientgui/ViewProjects.cpp b/clientgui/ViewProjects.cpp
index 522918b..be81e5c 100644
--- a/clientgui/ViewProjects.cpp
+++ b/clientgui/ViewProjects.cpp
@@ -590,8 +590,9 @@ wxString CViewProjects::OnListGetItemText(long item, long column) const {
                 break;
             case COLUMN_RESOURCESHARE:
                 // CBOINCListCtrl::DrawProgressBars() will draw this using 
-                // data provided by GetProgressText() and GetProgressValue.
-                strBuffer = wxEmptyString;
+                // data provided by GetProgressText() and GetProgressValue(), 
+                // but we need it here for accessibility programs.
+                strBuffer = project->m_strResourceShare;
                 break;
             case COLUMN_STATUS:
                 strBuffer = project->m_strStatus;
@@ -1190,5 +1191,3 @@ int CViewProjects::GetProjectCacheAtIndex(CProject*& projectPtr, int index) {
     return 0;
 }
 
-
-const char *BOINC_RCSID_b4edf777fc = "$Id: ViewProjects.cpp 17955 2009-05-01 01:32:26Z romw $";
diff --git a/clientgui/ViewResources.cpp b/clientgui/ViewResources.cpp
index de9d966..db6fd42 100644
--- a/clientgui/ViewResources.cpp
+++ b/clientgui/ViewResources.cpp
@@ -326,4 +326,3 @@ wxInt32 CViewResources::FormatDiskSpace(double bytes, wxString& strBuffer) const
     return 0;
 }
 
-const char *BOINC_RCSID_5a37b46a6e = "$Id: ViewResources.cpp 17955 2009-05-01 01:32:26Z romw $";
diff --git a/clientgui/ViewStatistics.cpp b/clientgui/ViewStatistics.cpp
index 3846e1c..84fa5c0 100644
--- a/clientgui/ViewStatistics.cpp
+++ b/clientgui/ViewStatistics.cpp
@@ -1811,10 +1811,17 @@ CViewStatistics::CViewStatistics(wxNotebook* pNotebook) :
     m_pTaskPane->UpdateControls();
 
     UpdateSelection();
+
+#ifdef __WXMAC__
+    SetupMacAccessibilitySupport();
+#endif
 }
 
 CViewStatistics::~CViewStatistics() {
     EmptyTasks();
+#ifdef __WXMAC__
+    RemoveMacAccessibilitySupport();
+#endif
 }
 
 wxString& CViewStatistics::GetViewName() {
@@ -2109,5 +2116,3 @@ void CViewStatistics::UpdateSelection() {
     CBOINCBaseView::PostUpdateSelection();
 }
 
-
-const char *BOINC_RCSID_7aadb93333 = "$Id: ViewStatistics.cpp 19277 2009-10-07 18:54:42Z romw $";
diff --git a/clientgui/ViewStatistics.h b/clientgui/ViewStatistics.h
index 795bc05..b9fa854 100644
--- a/clientgui/ViewStatistics.h
+++ b/clientgui/ViewStatistics.h
@@ -228,6 +228,13 @@ protected:
 
 	CPaintStatistics*       m_PaintStatistics;
 
+#ifdef __WXMAC__
+    void                    SetupMacAccessibilitySupport();
+    void                    RemoveMacAccessibilitySupport();
+    
+    EventHandlerRef         m_pStatisticsAccessibilityEventHandlerRef;
+#endif
+
     virtual bool            OnSaveState( wxConfigBase* pConfig );
     virtual bool            OnRestoreState( wxConfigBase* pConfig );
 
diff --git a/clientgui/ViewTransfers.cpp b/clientgui/ViewTransfers.cpp
index 2bb2caa..46a7708 100644
--- a/clientgui/ViewTransfers.cpp
+++ b/clientgui/ViewTransfers.cpp
@@ -371,8 +371,9 @@ wxString CViewTransfers::OnListGetItemText(long item, long column) const {
             break;
         case COLUMN_PROGRESS:
             // CBOINCListCtrl::DrawProgressBars() will draw this using 
-            // data provided by GetProgressText() and GetProgressValue.
-            strBuffer = wxEmptyString;
+            // data provided by GetProgressText() and GetProgressValue(), 
+            // but we need it here for accessibility programs.
+            strBuffer = transfer->m_strProgress;
             break;
         case COLUMN_SIZE:
             strBuffer = transfer->m_strSize;
@@ -839,5 +840,3 @@ int CViewTransfers::GetTransferCacheAtIndex(CTransfer*& transferPtr, int index)
     return 0;
 }
 
-
-const char *BOINC_RCSID_7aadb93332 = "$Id: ViewTransfers.cpp 18790 2009-07-31 23:52:47Z davea $";
diff --git a/clientgui/ViewWork.cpp b/clientgui/ViewWork.cpp
index f46bbd9..94a766b 100644
--- a/clientgui/ViewWork.cpp
+++ b/clientgui/ViewWork.cpp
@@ -592,8 +592,9 @@ wxString CViewWork::OnListGetItemText(long item, long column) const {
                 break;
             case COLUMN_PROGRESS:
                 // CBOINCListCtrl::DrawProgressBars() will draw this using 
-                // data provided by GetProgressText() and GetProgressValue.
-                strBuffer = wxEmptyString;
+                // data provided by GetProgressText() and GetProgressValue(), 
+                // but we need it here for accessibility programs.
+                strBuffer = work->m_strProgress;
                 break;
             case COLUMN_TOCOMPLETION:
                 strBuffer = work->m_strTimeToCompletion;
@@ -686,7 +687,7 @@ void CViewWork::UpdateSelection() {
         enableAbort = true;
         
         pDoc->GetCoreClientStatus(status);
-        if (status.task_suspend_reason & ~(SUSPEND_REASON_CPU_USAGE_LIMIT)) {
+        if (status.task_suspend_reason & ~(SUSPEND_REASON_CPU_THROTTLE)) {
             enableShowGraphics = false;
         }
 
@@ -1107,7 +1108,7 @@ void CViewWork::GetDocStatus(wxInt32 item, wxString& strBuffer) const {
         strBuffer += _("GPU missing, ");
     }
 
-	int throttled = status.task_suspend_reason & SUSPEND_REASON_CPU_USAGE_LIMIT;
+	int throttled = status.task_suspend_reason & SUSPEND_REASON_CPU_THROTTLE;
     switch(result->state) {
     case RESULT_NEW:
         strBuffer += _("New"); 
@@ -1197,6 +1198,9 @@ void CViewWork::GetDocStatus(wxInt32 item, wxString& strBuffer) const {
         case ERR_ABORTED_BY_PROJECT:
             strBuffer += _("Aborted by project");
             break;
+        case ERR_UNSTARTED_LATE:
+            strBuffer += _("Aborted: not started by deadline");
+            break;
         default:
             strBuffer += _("Aborted");
         }
@@ -1287,5 +1291,3 @@ int CViewWork::GetWorkCacheAtIndex(CWork*& workPtr, int index) {
     return 0;
 }
 
-
-const char *BOINC_RCSID_34f860f736 = "$Id: ViewWork.cpp 19318 2009-10-16 19:07:56Z romw $";
diff --git a/clientgui/WelcomePage.cpp b/clientgui/WelcomePage.cpp
index 863339d..f20dfb0 100644
--- a/clientgui/WelcomePage.cpp
+++ b/clientgui/WelcomePage.cpp
@@ -91,8 +91,7 @@ bool CWelcomePage::Create( CBOINCBaseWizard* parent )
 ////@end CWelcomePage member initialisation
  
 ////@begin CWelcomePage creation
-    wxBitmap wizardBitmap(wxNullBitmap);
-    wxWizardPageEx::Create( parent, ID_WELCOMEPAGE, wizardBitmap );
+    wxWizardPageEx::Create( parent, ID_WELCOMEPAGE );
 
     CreateControls();
     GetSizer()->Fit(this);
@@ -148,6 +147,12 @@ void CWelcomePage::CreateControls()
 
     itemWizardPage2->SetSizer(itemBoxSizer3);
 
+#ifdef __WXMAC__
+    //Accessibility
+    HIViewRef buttonView = (HIViewRef)m_pAttachToProjectCtrl->GetHandle();
+    HIObjectRef   theObject = (HIObjectRef)HIViewGetSuperview(buttonView);
+    HIObjectSetAccessibilityIgnored(theObject, true);
+#endif
 ////@end CWelcomePage content construction
 }
 
@@ -240,7 +245,8 @@ void CWelcomePage::OnPageChanged( wxWizardExEvent& event ) {
 #if defined (_WCG)
     // Determine if we are the World Community Grid version of the client
     // and connected to World Community Grid
-    if ( pDoc->state.lookup_project("http://www.worldcommunitygrid.org/") ) {
+	std::string wcgUrl = "http://www.worldcommunitygrid.org/";
+    if ( pDoc->state.lookup_project(wcgUrl) ) {
         is_wcg_client = true;
     }
 #endif
diff --git a/clientgui/WizardAttachProject.cpp b/clientgui/WizardAttachProject.cpp
index 7293f9b..d43dc9a 100644
--- a/clientgui/WizardAttachProject.cpp
+++ b/clientgui/WizardAttachProject.cpp
@@ -159,10 +159,8 @@ bool CWizardAttachProject::Create( wxWindow* parent, wxWindowID id, const wxPoin
         strTitle = pSkinAdvanced->GetApplicationName();
     }
 
-    wxBitmap wizardBitmap = wxBitmap(*(pSkinWizardATP->GetWizardBitmap()));
-
 ////@begin CWizardAttachProject creation
-    CBOINCBaseWizard::Create( parent, id, strTitle, wizardBitmap, pos );
+    CBOINCBaseWizard::Create( parent, id, strTitle, pos );
 
     CreateControls();
 ////@end CWizardAttachProject creation
diff --git a/clientgui/common/wxPieCtrl.cpp b/clientgui/common/wxPieCtrl.cpp
index 571a46e..ae3f480 100644
--- a/clientgui/common/wxPieCtrl.cpp
+++ b/clientgui/common/wxPieCtrl.cpp
@@ -69,6 +69,16 @@ wxPieCtrl::wxPieCtrl(wxWindow * parent, wxWindowID id, wxPoint pos,
 	SetSize(sz);
 	m_CanvasBitmap.Create(1,1);
 	RecreateCanvas();
+
+#ifdef __WXMAC__
+    SetupMacAccessibilitySupport();
+#endif
+}
+
+wxPieCtrl::~wxPieCtrl() {
+#ifdef __WXMAC__
+    RemoveMacAccessibilitySupport();
+#endif
 }
 
 /* getter and setter */
@@ -294,7 +304,7 @@ void wxPieCtrl::DrawParts(wxRect& pieRect)
 void wxPieCtrl::DrawLegend(int left, int top)
 {
 	unsigned int i;
-	int dy(m_LegendVerBorder),tw,th,titlew,titleh;
+	int dy(m_LegendVerBorder),tw,th=0,titlew,titleh;
 
 	// First determine the size of the legend box
 	m_CanvasDC.SetFont(m_TitleFont);
diff --git a/clientgui/common/wxPieCtrl.h b/clientgui/common/wxPieCtrl.h
index 414ebd8..5af4fab 100644
--- a/clientgui/common/wxPieCtrl.h
+++ b/clientgui/common/wxPieCtrl.h
@@ -105,6 +105,8 @@ public:
 	wxPieCtrl(wxWindow * parent, wxWindowID id = wxID_ANY, wxPoint pos = wxDefaultPosition,
 		wxSize sz = wxDefaultSize, long style = 0, wxString name = wxT("wxPieCtrl"));
 
+        ~wxPieCtrl();
+        
 	wxColour GetBackColour();
 	void SetBackColour(wxColour colour);
 
@@ -148,6 +150,15 @@ public:
 	void OnSize(wxSizeEvent & event);
 	void OnMouseMove(wxMouseEvent& ev);
 	void OnEraseBackground(wxEraseEvent & /*event*/);
+
+#ifdef __WXMAC__
+private:
+    void                    SetupMacAccessibilitySupport();
+    void                    RemoveMacAccessibilitySupport();
+    
+    EventHandlerRef         m_pPieCtrlAccessibilityEventHandlerRef;
+#endif
+
 };
 
 #endif
diff --git a/clientgui/msw/taskbarex.cpp b/clientgui/msw/taskbarex.cpp
index 1fd208e..8dc971e 100644
--- a/clientgui/msw/taskbarex.cpp
+++ b/clientgui/msw/taskbarex.cpp
@@ -5,7 +5,7 @@
 // Author:      Julian Smart
 // Modified by:
 // Created:     24/3/98
-// RCS-ID:      $Id: taskbarex.cpp 15585 2008-07-09 16:44:14Z romw $
+// RCS-ID:      $Id: taskbarex.cpp 20874 2010-03-12 17:03:53Z romw $
 // Copyright:   (c)
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////
@@ -430,5 +430,3 @@ LRESULT APIENTRY wxTaskBarIconExWindowProc( HWND hWnd, unsigned msg, UINT wParam
     return wxGetApp().GetTaskBarIcon()->WindowProc((WXHWND) hWnd, msg, wParam, lParam);
 }
 
-
-const char *BOINC_RCSID_46d006c50e = "$Id: taskbarex.cpp 15585 2008-07-09 16:44:14Z romw $";
diff --git a/clientgui/res/atiicon.xpm b/clientgui/res/atiicon.xpm
new file mode 100644
index 0000000..176a5b3
--- /dev/null
+++ b/clientgui/res/atiicon.xpm
@@ -0,0 +1,275 @@
+// This file is part of BOINC.
+// http://boinc.berkeley.edu
+//
+
+/* XPM */
+static char *atiicon_xpm[] = {
+/* columns rows colors chars-per-pixel */
+"16 16 249 2",
+"n. c #A6222E",
+"%  c #C5565B",
+"O. c #CE7D7A",
+"D  c #F71A1C",
+"S. c #FFFFE7",
+"C  c #4F0100",
+"5  c #FD6C6E",
+"Q. c #AD4636",
+"]. c #7A2E17",
+"^  c #FB7273",
+"a. c #7B181C",
+"dX c #9C4038",
+"h. c #D96979",
+"1. c #DCA59F",
+"v  c #FF6066",
+"<. c #F7848C",
+"N. c #FFFFF6",
+"_. c #AE2A30",
+"#. c #FFFFF7",
+"*X c #7A2B1A",
+"y. c #89142A",
+"B. c #A2221C",
+"-. c #AB1718",
+"R. c #FFFCF4",
+"@. c #FFFFFE",
+"c. c #E1A9AC",
+"_  c #FFFFFF",
+" X c #BE4331",
+"Y. c #C23734",
+"bX c #D73445",
+"p. c #C7122F",
+"DX c #C03D37",
+"/. c #C2373B",
+"4. c #E6ADB8",
+"y  c #FF575F",
+"9. c #C31210",
+"F  c #FF1918",
+"M  c #9C373B",
+"j  c #A21916",
+"=X c #BE403A",
+"8X c #C73B4A",
+"%. c #79121C",
+":  c #AF0524",
+"I. c #FFEDE0",
+",. c #EA2228",
+"$  c #EB6D6A",
+" . c #B0474E",
+"lX c #D13A3A",
+"3. c #F6F8ED",
+";X c #D3343D",
+"r  c #E26F5C",
+"o. c #FF8085",
+"gX c #D3374D",
+"E  c #EDC8B9",
+"0  c #7F1D16",
+"CX c #D3344B",
+"s  c #BC4044",
+"/  c #EC7A78",
+")  c #F4C3BE",
+"@  c #D35A4D",
+"R  c #E0DCC2",
+"}  c #F09D9E",
+"~  c #E0341F",
+"Z. c #E1565B",
+"k. c #DB332D",
+"I  c #E5AEAC",
+"-  c #7F1718",
+"X. c #F02A2B",
+"uX c #C63F40",
+"N  c #560A08",
+"g  c #4B1805",
+"m. c #571D13",
+"|  c #E15669",
+"2  c #F75A5B",
+",X c #CB3D36",
+"C. c #D66773",
+"kX c #BD443D",
+"e. c #E9292C",
+"2X c #B33932",
+"l  c #CF281E",
+"h  c #951B1A",
+"U  c #E5D7C6",
+"`. c #61282D",
+"r. c #C05D77",
+"z  c #F52523",
+"XX c #D73C3B",
+":X c #D9363D",
+"[. c #BD3E36",
+">. c #D8555B",
+"q  c #951511",
+"FX c #AA413E",
+"v. c #F3FFE6",
+"GX c #A53D41",
+"fX c #713E2D",
+"1X c #B24C3D",
+"@X c #D2353E",
+"(  c #D57779",
+"ZX c #923A3B",
+"0X c #BB413E",
+"H. c #FFF8DC",
+">  c #DC6959",
+"SX c #AB4B3C",
+"yX c #C23C3D",
+"J  c #F9777B",
+"Q  c #F07F7C",
+"u. c #FFF8E8",
+".X c #C54034",
+"   c #DC6356",
+"#X c #B43D3B",
+"wX c #DC343D",
+":. c #DE667B",
+"x  c #EB6F5F",
+"f. c #B51B1C",
+"!. c #EA2D3E",
+"6  c #BC4B46",
+"|. c #D3393F",
+"4X c #CC3B40",
+"~. c #FF213C",
+"L  c #F1C1BC",
+"zX c #BE3F3F",
+"j. c #D9535B",
+"&  c #5A0F16",
+"*. c #BEB2BE",
+"'. c #803B33",
+"{. c #C7343D",
+",  c #FF4D56",
+"MX c #BE3C40",
+"rX c #BC423F",
+".. c #E54F54",
+"iX c #B23736",
+"%X c #712928",
+"sX c #CA3B40",
+"}. c #BC4246",
+"q. c #DA636F",
+"[  c #E9E2F0",
+"<X c #BF463B",
+"P. c #C8AEB0",
+"VX c #67472F",
+"m  c #E96F77",
+"b  c #E96C6E",
+"{  c #E9A19E",
+">X c #BF4339",
+"5X c #AC463F",
+"n  c #D86367",
+"V  c #4C0405",
+"*  c #85071E",
+"o  c #E45C4F",
+"0. c #CA2C28",
+"2. c #C9BBB6",
+"7. c #C4B7B9",
+"6X c #8D3E32",
+"nX c #AC403D",
+"cX c #994038",
+"qX c #CD393C",
+"3X c #D4373E",
+"U. c #852716",
+"7  c #670C07",
+"$. c #E8BAC0",
+"A  c #D51826",
+"g. c #D82533",
+"$X c #96302C",
+"+  c #E4534B",
+"eX c #D23A3F",
+"A. c #CB3629",
+"&. c #1F0000",
+"a  c #F67578",
+"i  c #F55F66",
+"G  c #F66F67",
+"s. c #C2BAC6",
+"xX c #B13E43",
+"vX c #BF373F",
+"c  c #FF6162",
+"&X c #AF4446",
+"F. c #EA3E57",
+"^. c #D42B35",
+"1  c #EC5E56",
+"6. c #631210",
+"K. c #B72331",
+"!  c #CC4334",
+"S  c #E61220",
+"). c #CF2738",
+"9X c #863127",
+"V. c #D22E35",
+"i. c #EBB5B6",
+";. c #AB1819",
+"B  c #540004",
+"p  c #F35C65",
+"9  c #981E29",
+"l. c #FFFAEE",
+"w. c #D26060",
+"d  c #6A0704",
+"-X c #D0343B",
+"E. c #EC5B5F",
+"d. c #FFFAF2",
+"f  c #692319",
+"t  c #FF585C",
+"8  c #4E120A",
+"M. c #CFC3CD",
+"=. c #FFFAF5",
+"7X c #78322A",
+"8. c #FFF7EC",
+"aX c #CE3A42",
+"W  c #C85254",
+"hX c #903634",
+"J. c #F5B4AB",
+"D. c #B24546",
+"]  c #B2A996",
+"W. c #FF7E6C",
+"+. c #E4ABA9",
+"'  c #C18685",
+"3  c #F15658",
+"#  c #EA5856",
+"OX c #C73333",
+"<  c #FF4F56",
+"O  c #EF5952",
+"t. c #FDC8D4",
+"Y  c #D3D7DB",
+"mX c #8D4C3B",
+"=  c #691718",
+"X  c #FF4951",
+"AX c #A43D3C",
+"jX c #B03F3F",
+"H  c #FC6E6E",
+"u  c #F26362",
+"tX c #BE383A",
+"b. c #E6C8B5",
+"BX c #9B4238",
+"oX c #D43F3D",
+"`  c #D6A6A7",
+".  c #FF4655",
+"5. c #A21128",
+"w  c #A1241C",
+"P  c #C67B7E",
+"L. c #822523",
+"x. c #CD7982",
+"k  c #C21A16",
+"pX c #BA3E3D",
+"(. c #D12F3D",
+"K  c #C86C6B",
+"NX c #D63343",
+"T  c #C1D5C5",
+"Z  c #B41E24",
+"G. c #B84144",
+"z. c #FCFBEB",
+"e  c #D82431",
+"T. c #E2646D",
+"+X c #DB313D",
+"4  c #E25E5A",
+";  c #821C1E",
+/* pixels */
+"  . X o O + @ # $ % & * = - ; : ",
+"> , < 1 2 3 4 5 6 7 8 9 0 q w e ",
+"r t y u i p a s d f g h j k l z ",
+"x c v b n m M N B V C Z A S D F ",
+"G H J K L P I U Y T R E W Q ! ~ ",
+"^ / ( ) _ ` ' ] [ _ { } |  ...X.",
+"o.O.+. at .#.$.%.&.*.=.-.;.:._ >.,.",
+"<.1._ 2.3.4.5.6.7.8.9.0.q._ w.e.",
+"r._ t.y.u.i.p.a.s.d.f.g.h._ j.k.",
+"l.z.x.c.v.b.n.m.M.N.B.V.C._ Z.A.",
+"S.D.F.G.H.J.K.L.P.I.U.Y.T.R.E.W.",
+"Q.!.~.^./.(.)._.`.'.].[.{.}.|. X",
+".XXXoXOX+X at X#X$X%X&X*X=X-X;X:X>X",
+",X<X1X2X3X4X5X6X7X8X9X0XqXwXeXrX",
+"tXyXuXiXpXaXsXdXfXgXhXjXkXlXzXxX",
+"cXvXbXnXmXMXNXBXVXCXZXAXSXDXFXGX"
+};
diff --git a/clientgui/res/externalweblink.xpm b/clientgui/res/externalweblink.xpm
index 31829a7..63c902a 100644
--- a/clientgui/res/externalweblink.xpm
+++ b/clientgui/res/externalweblink.xpm
@@ -16,26 +16,32 @@
 // along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
 
 /* XPM */
-static const char *externalweblink_xpm[] = {
+static char *externalweblink_xpm[] = {
 /* columns rows colors chars-per-pixel */
-"12 12 6 1",
-"  c #FFFFFF",
-"+ c #99CCFF",
-"X c #3399CC",
-"o c #6699CC",
-"O c #0066CC",
-". c #0066FF",
+"16 16 8 1",
+"  c None",
+"@ c #99D5FF",
+"+ c #0055CC",
+"o c #33AACC",
+". c #0055FF",
+"O c #66AACC",
+"# c #0080CC",
+"X c #0080FF",
 /* pixels */
-"            ",
-"     ...... ",
-"    Xo    . ",
-"     .X   . ",
-" OOOO.+   . ",
-" O  .+ +X . ",
-" O .+ +..o. ",
-" O +o+.O X  ",
-" O  +. O    ",
-" O     O    ",
-" OOOOOOO    ",
-"            "
+"                ",
+"                ",
+"                ",
+"       ..X...   ",
+"      oO    .   ",
+"       .o   .   ",
+"   ++++.@   .   ",
+"   +  .@ @o .   ",
+"   + .@ @..O.   ",
+"   + @O at .+ o    ",
+"   +  @. +      ",
+"   +     +      ",
+"   #++++#+      ",
+"                ",
+"                ",
+"                "
 };
diff --git a/clientgui/res/multicore.xpm b/clientgui/res/multicore.xpm
new file mode 100644
index 0000000..d77fbe0
--- /dev/null
+++ b/clientgui/res/multicore.xpm
@@ -0,0 +1,130 @@
+// This file is part of BOINC.
+// http://boinc.berkeley.edu
+// Copyright (C) 2008 University of California
+//
+// BOINC is free software; you can redistribute it and/or modify it
+// under the terms of the GNU Lesser General Public License
+// as published by the Free Software Foundation,
+// either version 3 of the License, or (at your option) any later version.
+//
+// BOINC is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+// See the GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
+
+/* XPM */
+static char *multicore_xpm[] = {
+/* columns rows colors chars-per-pixel */
+"16 16 91 1",
+"O c Black",
+"s c #CACACA",
+"p c #2D2D2D",
+"A c #3C3C3C",
+"W c #4B4B4B",
+"- c #080808",
+"b c #353535",
+"  c None",
+"^ c #444444",
+"4 c #535353",
+"5 c #717171",
+"+ c #010101",
+"R c #101010",
+"w c #1F1F1F",
+") c #2E2E2E",
+"h c #A6A6A6",
+"G c #B5B5B5",
+"* c #D3D3D3",
+"2 c #272727",
+"a c #909090",
+"% c #020202",
+"d c #3E3E3E",
+"y c #6B6B6B",
+"C c #7A7A7A",
+"q c #898989",
+"T c #A7A7A7",
+"J c #0A0A0A",
+"' c #282828",
+"6 c #373737",
+"U c #464646",
+"; c #555555",
+"~ c #737373",
+"x c #919191",
+"r c #A0A0A0",
+"Q c #AFAFAF",
+"Z c #BEBEBE",
+"3 c #030303",
+"1 c #121212",
+"z c #303030",
+"F c #FAFAFA",
+"X c #3F3F3F",
+"B c #6C6C6C",
+"9 c #A8A8A8",
+"f c #0B0B0B",
+"# c #383838",
+"u c #474747",
+"= c #040404",
+"` c #CECECE",
+"v c #131313",
+"L c #FBFBFB",
+"7 c #404040",
+"Y c #4F4F4F",
+"D c #0C0C0C",
+": c #2A2A2A",
+"M c #393939",
+"l c #484848",
+"K c #575757",
+"_ c #757575",
+"! c #B1B1B1",
+"j c #050505",
+"$ c #141414",
+"o c #232323",
+"g c #323232",
+". c #FCFCFC",
+"0 c #6E6E6E",
+"< c #AAAAAA",
+"N c #1C1C1C",
+"[ c #3A3A3A",
+", c #494949",
+"> c #060606",
+"/ c #D0D0D0",
+"S c #151515",
+"i c #333333",
+"] c #424242",
+"8 c #515151",
+"H c #7E7E7E",
+"I c #9C9C9C",
+"( c #ABABAB",
+"} c #C9C9C9",
+"@ c #E7E7E7",
+"E c #2C2C2C",
+"P c #F6F6F6",
+"c c #3B3B3B",
+"{ c #868686",
+"t c #A4A4A4",
+"& c #070707",
+"e c #E0E0E0",
+"V c #252525",
+"n c #343434",
+"k c #707070",
+"m c #8E8E8E",
+/* pixels */
+" .XoOOOO+O@     ",
+"#$OOOOOO%&O*    ",
+"OO=-OOOOOO;:    ",
+"++>OOOOO,<1O    ",
+"2O=3OO4<=562    ",
+"7O+O89O076#q wOe",
+"rO4t=yuipasdfO+O",
+"ghjkl#zxscvO&O3&",
+":zubnmsMNOO-O=j+",
+" BVCZASOO3O3=ODO",
+"F G HOO&OO&OJOOK",
+"LP  wIUVO%3OOYTR",
+"    UE8d%OOW9Jk7",
+"     8OQO,!3~^66",
+"    . /2(jBXn)_`",
+"    F  '6]c[{}  "
+};
diff --git a/clientgui/res/nvidiaicon.xpm b/clientgui/res/nvidiaicon.xpm
new file mode 100644
index 0000000..896049d
--- /dev/null
+++ b/clientgui/res/nvidiaicon.xpm
@@ -0,0 +1,129 @@
+// This file is part of BOINC.
+// http://boinc.berkeley.edu
+//
+
+/* XPM */
+static char *nvidiaicon_xpm[] = {
+/* columns rows colors chars-per-pixel */
+"16 16 103 2",
+"V  c #6DB400",
+"|  c #7EBD0F",
+"Q  c #91C632",
+"L  c #C3E08F",
+"@. c #F5FAED",
+"f  c #77B902",
+"X. c #77B903",
+"m  c #FAFBF5",
+"p  c #D4E9B0",
+"^  c #ECF6DB",
+"   c None",
+"C  c #CDE5A3",
+"5  c #F1F7E5",
+"+. c #6EB500",
+" . c #EFF7E1",
+"h  c #BDDD84",
+">  c #AAD462",
+"&. c #A3D054",
+"$. c #A3D055",
+"3  c #67B100",
+"T  c #E8F3D6",
+"4  c #CEE6A4",
+"*  c #71B600",
+"g  c #CEE6A5",
+"(  c #82BF17",
+"=  c #F2F8E6",
+"r  c #ADD567",
+"#. c #9ACC45",
+"o. c #F2F8E8",
+"`  c #A6D15B",
+"x  c #D1E7A9",
+"a  c #5EAD00",
+"d  c #BEDE87",
+"$  c #68B200",
+"/  c #FCFDFA",
+"l  c #A4D157",
+"&  c #72B700",
+"N  c #96C93B",
+";  c #83C019",
+"]  c #61AE00",
+"X  c #7CBC0B",
+"s  c #F3F9E9",
+"@  c #F3F9EA",
+"%  c #6BB300",
+"U  c #A7D25B",
+"S  c #FFFEFF",
+"i  c #75B800",
+"I  c #8DC52C",
+"K  c #69B300",
+"P  c #64AF00",
+"v  c #EAF5D8",
+"o  c #86C11E",
+"~  c #86C11F",
+"9  c #B8DB7C",
+"O. c #6EB400",
+"!  c #EFF6E2",
+"t  c #62AF00",
+"j  c #BBDC80",
+"1  c #76B900",
+"D  c #76B901",
+"[  c #A8D35F",
+":  c #F9FBF4",
+"b  c #F9FBF5",
+"#  c #65B000",
+"M  c #87C220",
+"e  c #FEFFFE",
+"J  c #6FB500",
+"F  c #93C736",
+"w  c #93C737",
+"{  c #BEDD86",
+"'  c #F0F7E3",
+"6  c #5EAC00",
+"8  c #DDEEC1",
+"%. c #A4D056",
+")  c #FAFCF5",
+"Z  c #B5D976",
+"0  c #66B100",
+"G  c #AED568",
+"W  c #AED569",
+"z  c #70B600",
+"y  c #D9EBB8",
+"-  c #94C839",
+"Y  c #5FAD00",
+".  c #F1F8E6",
+"u  c #69B200",
+"H  c #B8DA7B",
+"k  c #73B700",
+"R  c #C9E39A",
+"_  c #67B200",
+"}  c #FBFDF9",
+"q  c #E1F0C7",
+"E  c #6CB300",
+"B  c #7DBC0E",
+"7  c #8EC52C",
+",  c #6AB300",
+"O  c #87C11F",
+"<  c #74B800",
+"A  c #9FCE4B",
+".. c #B2D76F",
+"n  c #59AA00",
+"c  c #63AF00",
+"2  c #CAE49D",
+"+  c #85C11D",
+/* pixels */
+"                                ",
+"          . X o O O O O O + o   ",
+"          @ # $ % & & & & * *   ",
+"      = - ;   : > , < 1 1 < <   ",
+"    2 3 4 5 6 7   8 3 < 1 < <   ",
+"  9 0   q w e r t   y u i < <   ",
+"p a s d f g h   j k   l z < <   ",
+"x t   c v b n m M N   B V < <   ",
+"  3 C Z A S $ , D   F z G u <   ",
+"  H J   K L P I   U Y T   R E   ",
+"    & W   Q   ! ~ # ^   / ( *   ",
+"    ) _ ` ' ] J [     { , z <   ",
+"      } - |      ...X.% < < <   ",
+"          o.$ $ # 3 V J J O.+.  ",
+"          @.#.$.%.%.%.%.%.$.&.  ",
+"                                "
+};
diff --git a/clientgui/res/templates/atiicon.bmp b/clientgui/res/templates/atiicon.bmp
new file mode 100644
index 0000000..81f30f0
Binary files /dev/null and b/clientgui/res/templates/atiicon.bmp differ
diff --git a/clientgui/res/templates/externalweblink.gif b/clientgui/res/templates/externalweblink.gif
index d7ac63e..3710374 100644
Binary files a/clientgui/res/templates/externalweblink.gif and b/clientgui/res/templates/externalweblink.gif differ
diff --git a/clientgui/res/templates/multicore.bmp b/clientgui/res/templates/multicore.bmp
new file mode 100644
index 0000000..487e292
Binary files /dev/null and b/clientgui/res/templates/multicore.bmp differ
diff --git a/clientgui/res/templates/nvidiaicon.bmp b/clientgui/res/templates/nvidiaicon.bmp
new file mode 100644
index 0000000..b77a0b8
Binary files /dev/null and b/clientgui/res/templates/nvidiaicon.bmp differ
diff --git a/clientgui/sg_BoincSimpleGUI.cpp b/clientgui/sg_BoincSimpleGUI.cpp
index 739890f..d29edba 100644
--- a/clientgui/sg_BoincSimpleGUI.cpp
+++ b/clientgui/sg_BoincSimpleGUI.cpp
@@ -21,6 +21,9 @@
 #endif
 
 #include "stdwx.h"
+#ifdef __WXMAC__
+#include "MacAccessiblity.h"
+#endif
 #include "diagnostics.h"
 #include "str_util.h"
 #include "mfile.h"
@@ -99,9 +102,11 @@ CSimpleFrame::CSimpleFrame(wxString title, wxIcon* icon, wxIcon* icon32, wxPoint
         _("Close the %s window"), 
         pSkinAdvanced->GetApplicationName().c_str()
     );
+    strMenuName = _("&Close Window");
+    strMenuName += wxT("\tCtrl+W");
     menuFile->Append(
         ID_CLOSEWINDOW,
-        _("&Close Window\tCTRL+W"),
+        strMenuName,
 		strMenuDescription
     );
 
@@ -110,7 +115,7 @@ CSimpleFrame::CSimpleFrame(wxString title, wxIcon* icon, wxIcon* icon32, wxPoint
 
     menuView->Append(
         ID_CHANGEGUI,
-        _("Advanced View...\tCTRL+SHIFT+A"),
+        _("Advanced View...\tCtrl+Shift+A"),
         _("Display the advanced (accessible) graphical interface.")
     );
 
@@ -381,6 +386,10 @@ void CSimpleFrame::OnConnect(CFrameEvent& WXUNUSED(event)) {
     pDoc->ForceCacheUpdate();
     pDoc->GetCoreClientStatus(status, true);
 
+#ifdef __WXMAC__
+    wxGetApp().GetMacSystemMenu()->BuildMenu();
+#endif
+
 	// If we are connected to the localhost, run a really quick screensaver
     //   test to trigger a firewall popup.
     pDoc->GetConnectedComputerName(strComputer);
@@ -454,6 +463,13 @@ CSimplePanel::CSimplePanel(wxWindow* parent) :
 
 	InitEmptyView();
 
+#ifdef __WXMAC__
+    // Have the screen reader tell user to switch to advanced view.
+    oldSimpleGUIWorkCount = -1;
+    
+    SetupMacAccessibilitySupport();
+#endif    
+
     wxLogTrace(wxT("Function Start/End"), wxT("CSimplePanel::CSimplePanel - Overloaded Constructor Function End"));
 }
 
@@ -462,6 +478,10 @@ CSimplePanel::~CSimplePanel()
 {
     wxLogTrace(wxT("Function Start/End"), wxT("CSimplePanel::CSimplePanel - Destructor Function Begin"));
     
+#ifdef __WXMAC__
+    RemoveMacAccessibilitySupport();
+#endif    
+
     wxLogTrace(wxT("Function Start/End"), wxT("CSimplePanel::CSimplePanel - Destructor Function End"));
 }
 
@@ -508,8 +528,9 @@ void CSimplePanel::OnProjectsAttachToProject() {
 
 // called from CSimpleFrame::OnRefreshView()
 void CSimplePanel::OnFrameRender() {
-    CMainDocument*    pDoc = wxGetApp().GetDocument();
+    CMainDocument*      pDoc = wxGetApp().GetDocument();
     wxASSERT(pDoc);
+    int                 workCount = pDoc->GetSimpleGUIWorkCount();
 
     // OnFrameRender() may be called while SimpleGUI initialization is 
     // in progress due to completion of a periodic get_messages RPC, 
@@ -527,7 +548,7 @@ void CSimplePanel::OnFrameRender() {
 	    }
 
 	    // Now check to see if we show the empty state or results
-	    if ( pDoc->GetSimpleGUIWorkCount() > 0 ) {
+	    if ( workCount > 0 ) {
 		    // State changes can cause the BSG to crash if a dialogue is open.
 		    // Defer state change until after the dialogue is closed
 		    if ( (emptyViewInitialized || !notebookViewInitialized) && dlgOpen ) {
@@ -558,6 +579,17 @@ void CSimplePanel::OnFrameRender() {
 		    }
 		    UpdateEmptyView();
 	    }
+            
+#ifdef __WXMAC__
+        //Accessibility
+        // Hide all but top level view from accessibility support so that 
+        // the screen reader will tell user to switch to advanced view.
+        if (oldSimpleGUIWorkCount != workCount) {
+            oldSimpleGUIWorkCount = workCount;
+            HIViewRef simple = (HIViewRef)GetHandle();
+            AccessibilityIgnoreAllChildren(simple, 1);
+        }
+#endif
     }
 }
 
diff --git a/clientgui/sg_BoincSimpleGUI.h b/clientgui/sg_BoincSimpleGUI.h
index d2ba09c..bafdb95 100644
--- a/clientgui/sg_BoincSimpleGUI.h
+++ b/clientgui/sg_BoincSimpleGUI.h
@@ -92,6 +92,14 @@ public:
 
 protected:
     void OnEraseBackground(wxEraseEvent& event);
+#ifdef __WXMAC__
+    void SetupMacAccessibilitySupport();
+    void RemoveMacAccessibilitySupport();
+    
+    int oldSimpleGUIWorkCount;
+    EventHandlerRef m_pSGAccessibilityEventHandlerRef;
+
+#endif
 
 private:
     bool dlgOpen;
@@ -128,7 +136,7 @@ protected:
     virtual int     _GetCurrentViewPage();
 
 #ifdef __WXMAC__
-	wxMenuBar* m_pMenubar;
+	wxMenuBar*      m_pMenubar;
 #endif
     wxAcceleratorEntry  m_Shortcuts[1];
     wxAcceleratorTable* m_pAccelTable;
diff --git a/clientgui/sg_ClientStateIndicator.cpp b/clientgui/sg_ClientStateIndicator.cpp
index b1ae60e..5c355b3 100644
--- a/clientgui/sg_ClientStateIndicator.cpp
+++ b/clientgui/sg_ClientStateIndicator.cpp
@@ -261,7 +261,7 @@ bool ClientStateIndicator::Suspended() {
 	CC_STATUS status;
 	bool result = false;
 	pDoc->GetCoreClientStatus(status);
-	if ( pDoc->IsConnected() && status.task_suspend_reason > 0 && status.task_suspend_reason != SUSPEND_REASON_DISK_SIZE &&  status.task_suspend_reason != SUSPEND_REASON_CPU_USAGE_LIMIT ) {
+	if ( pDoc->IsConnected() && status.task_suspend_reason > 0 && status.task_suspend_reason != SUSPEND_REASON_DISK_SIZE &&  status.task_suspend_reason != SUSPEND_REASON_CPU_THROTTLE ) {
 		result = true;
 	}
 	return result;
diff --git a/clientgui/sg_ViewTabPage.cpp b/clientgui/sg_ViewTabPage.cpp
index 8e90e8e..e2195ea 100644
--- a/clientgui/sg_ViewTabPage.cpp
+++ b/clientgui/sg_ViewTabPage.cpp
@@ -62,7 +62,7 @@ bool isRunning(RESULT* result) {
 			CC_STATUS status;
 			pDoc->GetCoreClientStatus(status);
 			// Make sure that the core client isn't global suspended for some reason
-			if ( status.task_suspend_reason == 0 || status.task_suspend_reason == SUSPEND_REASON_CPU_USAGE_LIMIT ) {
+			if ( status.task_suspend_reason == 0 || status.task_suspend_reason == SUSPEND_REASON_CPU_THROTTLE ) {
 				outcome = true;
 			}
 		}
diff --git a/clientgui/stdwx.cpp b/clientgui/stdwx.cpp
index d930ea8..f9e4019 100644
--- a/clientgui/stdwx.cpp
+++ b/clientgui/stdwx.cpp
@@ -20,5 +20,3 @@
 // TODO: reference any additional headers you need in STDAFX.H
 // and not in this file
 
-
-const char *BOINC_RCSID_4e0e4c54ab = "$Id: stdwx.cpp 15762 2008-08-06 18:36:30Z davea $";
diff --git a/clientgui/wizardex.cpp b/clientgui/wizardex.cpp
index 5c845bd..6c69ad3 100644
--- a/clientgui/wizardex.cpp
+++ b/clientgui/wizardex.cpp
@@ -8,7 +8,7 @@
 //              3) Fixed ShowPage() bug on displaying bitmaps
 //              Robert Vazan (sizers)
 // Created:     15.08.99
-// RCS-ID:      $Id: wizardex.cpp 16029 2008-09-19 20:19:52Z romw $
+// RCS-ID:      $Id: wizardex.cpp 19627 2009-11-18 22:01:49Z romw $
 // Copyright:   (c) 1999 Vadim Zeitlin <zeitlin at dptmaths.ens-cachan.fr>
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
@@ -176,22 +176,19 @@ IMPLEMENT_ABSTRACT_CLASS(wxWizardPageEx, wxPanel)
 
 void wxWizardPageEx::Init()
 {
-    m_bitmap = wxNullBitmap;
 }
 
 wxWizardPageEx::wxWizardPageEx(
                            wxWizardEx *parent,
                            int id,
-                           const wxBitmap& bitmap,
                            const wxChar *resource)
 {
-    Create(parent, id, bitmap, resource);
+    Create(parent, id, resource);
 }
 
 bool wxWizardPageEx::Create(
                           wxWizardEx *parent,
                           int id,
-                          const wxBitmap& bitmap,
                           const wxChar *resource)
 {
     if ( !wxPanel::Create(parent, id) )
@@ -209,8 +206,6 @@ bool wxWizardPageEx::Create(
 #endif // wxUSE_RESOURCES
     }
 
-    m_bitmap = bitmap;
-
     // initially the page is hidden, it's shown only when it becomes current
     Hide();
 
@@ -264,14 +259,12 @@ void wxWizardEx::Init()
 bool wxWizardEx::Create(wxWindow *parent,
                       int id,
                       const wxString& title,
-                      const wxBitmap& bitmap,
                       const wxPoint& pos,
                       long style)
 {
     bool result = wxDialog::Create(parent,id,title,pos,wxDefaultSize,style);
 
     m_posWizard = pos;
-    m_bitmap = bitmap ;
 
     DoCreateControls();
 
@@ -291,24 +284,6 @@ void wxWizardEx::AddBitmapRow(wxBoxSizer *mainColumn)
         wxEXPAND // No border, (mostly useless) horizontal stretching
     );
 
-#if wxUSE_STATBMP
-    if ( m_bitmap.Ok() )
-    {
-        m_statbmp = new wxStaticBitmap(this, wxID_ANY, m_bitmap);
-        m_sizerBmpAndPage->Add(
-            m_statbmp,
-            0, // No horizontal stretching
-            wxALL, // Border all around, top alignment
-            5 // Border width
-        );
-        m_sizerBmpAndPage->Add(
-            5,0,
-            0, // No horizontal stretching
-            wxEXPAND // No border, (mostly useless) vertical stretching
-        );
-    }
-#endif
-
     // Added to m_sizerBmpAndPage later
     m_sizerPage = new wxWizardExSizer(this);
 }
@@ -317,7 +292,7 @@ void wxWizardEx::AddStaticLine(wxBoxSizer *mainColumn)
 {
 #if wxUSE_STATLINE
     mainColumn->Add(
-        new wxStaticLine(this, wxID_ANY),
+        new wxStaticLine(this, wxID_ANY, wxDefaultPosition, wxSize(495, -1)),
         0, // Vertically unstretchable
         wxEXPAND | wxALL, // Border all around, horizontally stretchable
         5 // Border width
@@ -526,8 +501,6 @@ bool wxWizardEx::ShowPage(wxWizardPageEx *page, bool goingForward)
 
         btnLabelWasNext = HasNextPage(m_page);
 
-        bmpPrev = m_page->GetBitmap();
-
         if ( !m_usingSizer )
             m_sizerBmpAndPage->Detach(m_page);
     }
@@ -571,30 +544,6 @@ bool wxWizardEx::ShowPage(wxWizardPageEx *page, bool goingForward)
         m_sizerBmpAndPage->SetItemMinSize(m_page, GetPageSize());
     }
 
-#if wxUSE_STATBMP
-    // update the bitmap if:it changed
-    if ( m_statbmp )
-    {
-        wxBitmap bmp = m_page->GetBitmap();
-        if ( !bmp.Ok() )
-            bmp = m_bitmap;
-
-        if ( !bmpPrev.Ok() )
-            bmpPrev = m_bitmap;
-
-#if wxCHECK_VERSION(2,8,0)
-        if ( !bmp.IsSameAs(bmpPrev) )
-            m_statbmp->SetBitmap(bmp);
-#else
-        if ( !(bmp == bmpPrev) )
-            m_statbmp->SetBitmap(bmp);
-#endif
-
-
-    }
-#endif // wxUSE_STATBMP
-
-
     // and update the buttons state
     m_btnPrev->Enable(HasPrevPage(m_page));
 
@@ -674,12 +623,6 @@ wxSize wxWizardEx::GetPageSize() const
     // make the page at least as big as specified by user
     pageSize.IncTo(m_sizePage);
 
-    if ( m_statbmp )
-    {
-        // make the page at least as tall as the bitmap
-        pageSize.IncTo(wxSize(0, m_bitmap.GetHeight()));
-    }
-
     if ( m_usingSizer )
     {
         // make it big enough to contain all pages added to the sizer
diff --git a/clientgui/wizardex.h b/clientgui/wizardex.h
index 3363f79..3dc5351 100644
--- a/clientgui/wizardex.h
+++ b/clientgui/wizardex.h
@@ -9,7 +9,7 @@
 //              Added wxWIZARD_HELP event
 //              Robert Vazan (sizers)
 // Created:     15.08.99
-// RCS-ID:      $Id: wizardex.h 16029 2008-09-19 20:19:52Z romw $
+// RCS-ID:      $Id: wizardex.h 19623 2009-11-18 21:52:00Z romw $
 // Copyright:   (c) 1999 Vadim Zeitlin <zeitlin at dptmaths.ens-cachan.fr>
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
@@ -46,14 +46,12 @@ public:
     wxWizardPageEx(
                  wxWizardEx *parent,
                  int id = wxID_ANY,
-                 const wxBitmap& bitmap = wxNullBitmap,
                  const wxChar* resource = NULL
     );
 
     virtual bool Create(
                 wxWizardEx *parent,
                 int id = wxID_ANY,
-                const wxBitmap& bitmap = wxNullBitmap,
                 const wxChar* resource = NULL
     );
 
@@ -62,12 +60,6 @@ public:
     virtual wxWizardPageEx *GetPrev() const = 0;
     virtual wxWizardPageEx *GetNext() const = 0;
 
-    // default GetBitmap() will just return m_bitmap which is ok in 99% of
-    // cases - override this method if you want to create the bitmap to be used
-    // dynamically or to do something even more fancy. It's ok to return
-    // wxNullBitmap from here - the default one will be used then.
-    virtual wxBitmap GetBitmap() const { return m_bitmap; }
-
 #if wxUSE_VALIDATOR
     /// Override the base functions to allow a validator to be assigned to this page.
     bool TransferDataToWindow()
@@ -91,8 +83,6 @@ protected:
     // common part of ctors:
     void Init();
 
-    wxBitmap m_bitmap;
-
 private:
     DECLARE_DYNAMIC_CLASS_NO_COPY(wxWizardPageEx)
 };
@@ -178,18 +168,16 @@ public:
     wxWizardEx(wxWindow *parent,
              int id = wxID_ANY,
              const wxString& title = wxEmptyString,
-             const wxBitmap& bitmap = wxNullBitmap,
              const wxPoint& pos = wxDefaultPosition,
              long style = wxDEFAULT_DIALOG_STYLE)
     {
         Init();
-        Create(parent, id, title, bitmap, pos, style);
+        Create(parent, id, title, pos, style);
     }
 
     bool Create(wxWindow *parent,
              int id = wxID_ANY,
              const wxString& title = wxEmptyString,
-             const wxBitmap& bitmap = wxNullBitmap,
              const wxPoint& pos = wxDefaultPosition,
              long style = wxDEFAULT_DIALOG_STYLE);
     void Init();
@@ -242,7 +230,6 @@ private:
 
     // wizard state
     wxWizardPageEx *m_page;       // the current page or NULL
-    wxBitmap      m_bitmap;     // the default bitmap to show
 
     // wizard controls
 protected:
diff --git a/clientlib/win/boinc_dll.rc b/clientlib/win/boinc_dll.rc
index 52e8158..0e11cab 100644
--- a/clientlib/win/boinc_dll.rc
+++ b/clientlib/win/boinc_dll.rc
@@ -86,7 +86,7 @@ BEGIN
             VALUE "FileDescription", "GridRepublic Client Platform Library"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinc_dll"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinc.dll"
             VALUE "ProductName", "BOINC Core Client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -121,7 +121,7 @@ BEGIN
             VALUE "FileDescription", "Progress Thru Processors Client Platform Library"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinc_dll"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinc.dll"
             VALUE "ProductName", "BOINC Core Client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -156,7 +156,7 @@ BEGIN
             VALUE "FileDescription", "BOINC Client Platform Library"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinc_dll"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinc.dll"
             VALUE "ProductName", "BOINC Core Client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
diff --git a/clientscr/Mac_Saver_Module.h b/clientscr/Mac_Saver_Module.h
index 4d41470..1130b7d 100644
--- a/clientscr/Mac_Saver_Module.h
+++ b/clientscr/Mac_Saver_Module.h
@@ -32,19 +32,37 @@
 extern "C" {
 #endif
 
-int initBOINCSaver(void);
-int getSSMessage(char **theMessage, int* coveredFreq);
-void windowIsCovered();
-void drawPreview(CGContextRef myContext);
-void closeBOINCSaver(void);
-void print_to_log_file(const char *format, ...);
-void strip_cr(char *buf);
-void PrintBacktrace(void);
+void            initBOINCSaver(void);
+int             startBOINCSaver(void);
+int             getSSMessage(char **theMessage, int* coveredFreq);
+void            windowIsCovered();
+void            drawPreview(CGContextRef myContext);
+void            closeBOINCSaver(void);
+void            setDefaultDisplayPeriods(void);
+bool            getShow_default_ss_first();
+double          getGFXDefaultPeriod();
+double          getGFXSciencePeriod();
+double          getGGFXChangePeriod();
+bool            validateNumericString(CFStringRef s);
+void            setShow_default_ss_first(bool value);
+void            setGFXDefaultPeriod(double value);
+void            setGFXSciencePeriod(double value);
+void            setGGFXChangePeriod(double value);
+void            print_to_log_file(const char *format, ...);
+void            strip_cr(char *buf);
+void            PrintBacktrace(void);
 
 #ifdef __cplusplus
 }	// extern "C"
 #endif
 
+struct ss_periods
+{
+    double          GFXDefaultPeriod;
+    double          GFXSciencePeriod;
+    double          GFXChangePeriod;
+    bool            Show_default_ss_first;
+};
 
 //-----------------------------------------------------------------------------
 // Name: class CScreensaver
@@ -82,10 +100,6 @@ protected:
     time_t          m_dwBlankTime;
     int             m_iGraphicsStartingMsgCounter;
     bool            m_bDefault_ss_exists;
-    double          m_fGFXDefaultPeriod;
-    double          m_fGFxSciencePeriod;
-    double          m_fGFXChangePeriod;
-    bool            m_bShow_default_ss_first;
     bool            m_bScience_gfx_running;
     bool            m_bDefault_gfx_running;
     bool            m_bConnected;
@@ -106,7 +120,7 @@ protected:
     int             launch_default_screensaver(char *dir_path, int& graphics_application);
     void            HandleRPCError(void);
     OSErr           KillScreenSaver(void);
-    void            GetDisplayPeriods(char *dir_path);
+    void            GetDefaultDisplayPeriods(struct ss_periods &periods);
     bool            HasProcessExited(pid_t pid, int &exitCode);
     pthread_t       m_hDataManagementThread;
     pid_t           m_hGraphicsApplication;
@@ -144,6 +158,11 @@ public:
     void            drawPreview(CGContextRef myContext);
     void            ShutdownSaver();
 
+    double          m_fGFXDefaultPeriod;
+    double          m_fGFXSciencePeriod;
+    double          m_fGFXChangePeriod;
+    bool            m_bShow_default_ss_first;
+
 protected:
 };
 
diff --git a/clientscr/Mac_Saver_ModuleView.h b/clientscr/Mac_Saver_ModuleView.h
index 658de3f..18daa4b 100644
--- a/clientscr/Mac_Saver_ModuleView.h
+++ b/clientscr/Mac_Saver_ModuleView.h
@@ -27,9 +27,15 @@
     IBOutlet id mConfigureSheet;		// our configuration sheet
     IBOutlet NSButton *mGoToBlankCheckbox;
     IBOutlet NSTextField *mBlankingTimeTextField;
+    IBOutlet NSTextField *mDefaultPeriodTextField;
+    IBOutlet NSTextField *mSciencePeriodTextField;
+    IBOutlet NSTextField *mChangePeriodTextField;    
     
     int mVersion;               // the version of our prefs
     NSString *mBlankingTimeString;
+    NSString *mDefaultPeriodString;
+    NSString *mSciencePeriodString;
+    NSString *mChangePeriodString;
 }
 
 - (IBAction)closeSheetSave:(id) sender;
@@ -37,9 +43,17 @@
 
 @end
 
-int initBOINCSaver(void);
-int getSSMessage(char **theMessage, int* coveredFreq);
-void windowIsCovered();
-void drawPreview(CGContextRef myContext);
-void closeBOINCSaver(void);
-extern void print_to_log_file(const char *format, ...);
+void            initBOINCSaver(void);
+int             startBOINCSaver(void);
+int             getSSMessage(char **theMessage, int* coveredFreq);
+void            windowIsCovered();
+void            drawPreview(CGContextRef myContext);
+void            closeBOINCSaver(void);
+double          getGFXDefaultPeriod();
+double          getGFXSciencePeriod();
+double          getGGFXChangePeriod();
+void            setGFXDefaultPeriod(double value);
+void            setGFXSciencePeriod(double value);
+void            setGGFXChangePeriod(double value);
+bool            validateNumericString(CFStringRef s);
+extern void     print_to_log_file(const char *format, ...);
diff --git a/clientscr/Mac_Saver_ModuleView.m b/clientscr/Mac_Saver_ModuleView.m
index d200115..d979dba 100644
--- a/clientscr/Mac_Saver_ModuleView.m
+++ b/clientscr/Mac_Saver_ModuleView.m
@@ -82,6 +82,9 @@ int signof(float x) {
 - (void)startAnimation {
     NSBundle * myBundle;
     int newFrequency;
+    int period;
+    
+    initBOINCSaver();  
 
     if (gBOINC_Logo == NULL) {
         if (self) {
@@ -102,22 +105,38 @@ int signof(float x) {
             mVersion = [defaults floatForKey:@"version"];
             if (!mVersion) {
                 // no previous settings so define our defaults
-                mVersion = 1;
                 gGoToBlank = NO;
                 gBlankingTime = 1;
                 
                 // write out the defaults
-                [ defaults setInteger:mVersion forKey:@"version" ];
                 [ defaults setInteger:gGoToBlank forKey:@"GoToBlank" ];
                 [ defaults setInteger:gBlankingTime forKey:@"BlankingTime" ];
+            }
+            
+            if (mVersion < 2) {
+                mVersion = 2;
+            
+                [ defaults setInteger:mVersion forKey:@"version" ];
+                period = getGFXDefaultPeriod() / 60;
+                [ defaults setInteger:period forKey:@"DefaultPeriod" ];
+                period = getGFXSciencePeriod() / 60;
+                [ defaults setInteger:period forKey:@"SciencePeriod" ];
+                period = getGGFXChangePeriod() / 60;
+                [ defaults setInteger:period forKey:@"ChangePeriod" ];
                 
                 // synchronize
                 [defaults synchronize];
             }
 
-            // set defaults...
+            // get defaults...
             gGoToBlank = [ defaults integerForKey:@"GoToBlank" ];
             gBlankingTime = [ defaults integerForKey:@"BlankingTime" ];
+            period = [ defaults integerForKey:@"DefaultPeriod" ];
+            setGFXDefaultPeriod((double)(period * 60));
+            period = [ defaults integerForKey:@"SciencePeriod" ];
+            setGFXSciencePeriod((double)(period * 60));
+            period = [ defaults integerForKey:@"ChangePeriod" ];
+            setGGFXChangePeriod((double)(period * 60));
 
            [ self setAutoresizesSubviews:YES ];	// make sure the subview resizes.
 
@@ -156,7 +175,7 @@ int signof(float x) {
         return;
     }
     
-    newFrequency = initBOINCSaver();        
+    newFrequency = startBOINCSaver();  
     if (newFrequency)
         [ self setAnimationTimeInterval:1.0/newFrequency ];
 }
@@ -459,20 +478,37 @@ int signof(float x) {
 // Display the configuration sheet for the user to choose their settings
 - (NSWindow*)configureSheet
 {
+    int period;
+
 	// if we haven't loaded our configure sheet, load the nib named MyScreenSaver.nib
 	if (!mConfigureSheet)
             [ NSBundle loadNibNamed:@"BOINCSaver" owner:self ];
 	// set the UI state
 	[ mGoToBlankCheckbox setState:gGoToBlank ];
+
         mBlankingTimeString = [[ NSString alloc ] initWithFormat:@"%d", gBlankingTime ];
 	[ mBlankingTimeTextField setStringValue:mBlankingTimeString ];
     
+    period = getGFXDefaultPeriod() / 60;
+    mDefaultPeriodString = [[ NSString alloc ] initWithFormat:@"%d", period ];
+	[ mDefaultPeriodTextField setStringValue:mDefaultPeriodString ];
+    
+    period = getGFXSciencePeriod() / 60;
+    mSciencePeriodString = [[ NSString alloc ] initWithFormat:@"%d", period ];
+	[ mSciencePeriodTextField setStringValue:mSciencePeriodString ];
+    
+    period = getGGFXChangePeriod() / 60;
+    mChangePeriodString = [[ NSString alloc ] initWithFormat:@"%d", period ];
+	[ mChangePeriodTextField setStringValue:mChangePeriodString ];
+    
 	return mConfigureSheet;
 }
 
 // Called when the user clicked the SAVE button
 - (IBAction) closeSheetSave:(id) sender
 {
+    int period;
+
     // get the defaults
 	ScreenSaverDefaults *defaults = [ ScreenSaverDefaults defaultsForModuleWithName:mBundleID ];
 
@@ -480,16 +516,49 @@ int signof(float x) {
 	gGoToBlank = [ mGoToBlankCheckbox state ];
 	mBlankingTimeString = [ mBlankingTimeTextField stringValue ];
         gBlankingTime = [ mBlankingTimeString intValue ];
+    if ((gBlankingTime < 0) || (gBlankingTime > 999)) goto Bad;
+
+	mDefaultPeriodString = [ mDefaultPeriodTextField stringValue ];
+    period = [ mDefaultPeriodString intValue ];
+    if (!validateNumericString((CFStringRef)mDefaultPeriodString)) goto Bad;
+    if ((period < 0) || (period > 999)) goto Bad;
+    setGFXDefaultPeriod((double)(period * 60));
+
+	mSciencePeriodString = [ mSciencePeriodTextField stringValue ];
+    period = [ mSciencePeriodString intValue ];
+    if (!validateNumericString((CFStringRef)mSciencePeriodString)) goto Bad;
+    if ((period < 0) || (period > 999)) goto Bad;
+    setGFXSciencePeriod((double)(period * 60));
+
+	mChangePeriodString = [ mChangePeriodTextField stringValue ];
+    period = [ mChangePeriodString intValue ];
+     if (!validateNumericString((CFStringRef)mChangePeriodString)) goto Bad;
+   if ((period < 0) || (period > 999)) goto Bad;
+    setGGFXChangePeriod((double)(period * 60));
 	
 	// write the defaults
 	[ defaults setInteger:gGoToBlank forKey:@"GoToBlank" ];
 	[ defaults setInteger:gBlankingTime forKey:@"BlankingTime" ];
+    period = getGFXDefaultPeriod() / 60;
+    [ defaults setInteger:period forKey:@"DefaultPeriod" ];
+    period = getGFXSciencePeriod() / 60;
+    [ defaults setInteger:period forKey:@"SciencePeriod" ];
+    period = getGGFXChangePeriod() / 60;
+    [ defaults setInteger:period forKey:@"ChangePeriod" ];
 	
 	// synchronize
     [ defaults synchronize ];
 
 	// end the sheet
     [ NSApp endSheet:mConfigureSheet ];
+    return;
+Bad:
+;   // Empty statement is needed to prevent compiler error
+    NSAlert *alert = [[[NSAlert alloc] init] autorelease];
+    [alert addButtonWithTitle:@"OK"];
+    [alert setMessageText:@"Please enter a number between 0 and 999."];
+    [alert setAlertStyle:NSCriticalAlertStyle];
+    [alert beginSheetModalForWindow:mConfigureSheet modalDelegate:self didEndSelector:nil contextInfo:nil];
 }
 
 // Called when the user clicked the CANCEL button
diff --git a/clientscr/boinc_ss.h b/clientscr/boinc_ss.h
index 75d4713..7b560d4 100644
--- a/clientscr/boinc_ss.h
+++ b/clientscr/boinc_ss.h
@@ -2,25 +2,28 @@
 // Microsoft Visual C++ generated include file.
 // Used by boinc_ss.rc
 //
-#define IDI_MAIN_ICON                        1
-#define IDS_DESCRIPTION                      1
-#define IDS_SHORTCUTNAME                     2
-#define DLG_CONFIG                           104
-#define IDB_BOINCSPLAT                       108
-#define IDC_BLANK                            1000
-#define IDC_BLANK_TIME                       1001
-#define IDS_ERR_GENERIC                      2100
-#define IDS_ERR_BOINCNOTDETECTED             2101
-#define IDS_ERR_BOINCSUSPENDED               2103
-#define IDS_ERR_BOINCNOAPPSEXECUTING         2104
+#define IDI_MAIN_ICON                   1
+#define IDS_DESCRIPTION                 1
+#define IDS_SHORTCUTNAME                2
+#define DLG_CONFIG                      104
+#define IDB_BOINC                       108
+#define IDC_SLIDER_BLANKTIME            1008
+#define IDC_SLIDER_DEFAULTTIME          1010
+#define IDC_SLIDER_RUNTIME              1011
+#define IDC_SLIDER_SWITCHTIME           1012
+#define IDS_ERR_GENERIC                 2100
+#define IDS_ERR_BOINCNOTDETECTED        2101
+#define IDS_ERR_BOINCSUSPENDED          2103
+#define IDS_ERR_BOINCNOAPPSEXECUTING    2104
 #define IDS_ERR_BOINCNOAPPSEXECUTINGNOPROJECTSDETECTED 2105
 #define IDS_ERR_BOINCNOGRAPHICSAPPSEXECUTING 2106
-#define IDS_ERR_BOINCSCREENSAVERLOADING      2107
+#define IDS_ERR_BOINCSCREENSAVERLOADING 2107
 #define IDS_ERR_BOINCAPPFOUNDGRAPHICSLOADING 2108
-#define IDS_ERR_BOINCSHUTDOWNEVENT           2109
-#define IDS_ERR_OUTOFMEMORY                  2110
-#define IDS_ERR_NOPREVIEW                    2112
-#define IDS_ERR_DAEMONALLOWSNOGRAPHICS       2113
+#define IDS_ERR_BOINCSHUTDOWNEVENT      2109
+#define IDS_ERR_OUTOFMEMORY             2110
+#define IDS_ERR_NOPREVIEW               2112
+#define IDS_ERR_DAEMONALLOWSNOGRAPHICS  2113
+#define IDC_STATIC                      -1
 
 // Next default values for new objects
 // 
@@ -29,7 +32,7 @@
 #define _APS_3D_CONTROLS                     1
 #define _APS_NEXT_RESOURCE_VALUE        109
 #define _APS_NEXT_COMMAND_VALUE         40000
-#define _APS_NEXT_CONTROL_VALUE         1007
+#define _APS_NEXT_CONTROL_VALUE         1010
 #define _APS_NEXT_SYMED_VALUE           102
 #endif
 #endif
diff --git a/clientscr/boinc_ss.rc b/clientscr/boinc_ss.rc
index b9a00e9..964630e 100644
--- a/clientscr/boinc_ss.rc
+++ b/clientscr/boinc_ss.rc
@@ -115,7 +115,7 @@ BEGIN
             VALUE "FileDescription", "GridRepublic Screensaver"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinc_ss"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinc.scr"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -150,7 +150,7 @@ BEGIN
             VALUE "FileDescription", "Progress Thru Processors Screensaver"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinc_ss"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinc.scr"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -185,7 +185,7 @@ BEGIN
             VALUE "FileDescription", "World Community Grid Screensaver"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinc_ss"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinc.scr"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -220,7 +220,7 @@ BEGIN
             VALUE "FileDescription", "BOINC Screensaver"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinc_ss"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinc.scr"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -239,20 +239,227 @@ END
 // Dialog
 //
 
-DLG_CONFIG DIALOGEX 50, 50, 186, 76
-STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | 
-    WS_SYSMENU
-CAPTION "Config dialog"
+#if defined(_GRIDREPUBLIC)
+
+DLG_CONFIG DIALOGEX 50, 50, 249, 200
+STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU
+CAPTION "GridRepublic Screensaver Configuration"
 FONT 8, "MS Sans Serif", 0, 0, 0x0
 BEGIN
-    DEFPUSHBUTTON   "OK",IDOK,7,55,50,14
-    PUSHBUTTON      "Cancel",IDCANCEL,129,55,50,14
-    CONTROL         "Go to blank screen",IDC_BLANK,"Button",BS_AUTOCHECKBOX | 
-                    WS_TABSTOP,7,7,76,10
-    LTEXT           "Minutes until blank:",IDC_STATIC,7,31,62,8
-    EDITTEXT        IDC_BLANK_TIME,77,28,40,14,ES_AUTOHSCROLL
+    DEFPUSHBUTTON   "OK",IDOK,137,181,50,14
+    PUSHBUTTON      "Cancel",IDCANCEL,194,181,50,14
+    LTEXT           "Blank screensaver after:",IDC_STATIC,7,7,237,14,SS_CENTERIMAGE
+    CONTROL         "",IDC_SLIDER_BLANKTIME,"msctls_trackbar32",TBS_AUTOTICKS | WS_TABSTOP,15,20,220,15
+    CTEXT           "1",IDC_STATIC,20,36,8,8
+    CTEXT           "2",IDC_STATIC,44,36,8,8
+    CTEXT           "5",IDC_STATIC,70,36,8,8
+    CTEXT           "10",IDC_STATIC,95,36,8,8
+    CTEXT           "15",IDC_STATIC,121,36,8,8
+    CTEXT           "30",IDC_STATIC,146,36,8,8
+    CTEXT           "45",IDC_STATIC,171,36,8,8
+    CTEXT           "1hr",IDC_STATIC,194,36,10,8
+    CTEXT           "Never",IDC_STATIC,213,36,22,8
+    LTEXT           "Run GridRepublic screensaver for:",IDC_STATIC,7,49,237,14,SS_CENTERIMAGE
+    CONTROL         "",IDC_SLIDER_DEFAULTTIME,"msctls_trackbar32",TBS_AUTOTICKS | WS_TABSTOP,15,63,220,15
+    CTEXT           "1",IDC_STATIC,20,79,8,8
+    CTEXT           "2",IDC_STATIC,44,79,8,8
+    CTEXT           "5",IDC_STATIC,70,79,8,8
+    CTEXT           "10",IDC_STATIC,95,79,8,8
+    CTEXT           "15",IDC_STATIC,121,79,8,8
+    CTEXT           "30",IDC_STATIC,146,79,8,8
+    CTEXT           "45",IDC_STATIC,171,79,8,8
+    CTEXT           "1hr",IDC_STATIC,194,79,10,8
+    CTEXT           "Never",IDC_STATIC,213,79,22,8
+    LTEXT           "Run project screensavers for:",IDC_STATIC,7,92,237,14,SS_CENTERIMAGE
+    CONTROL         "",IDC_SLIDER_RUNTIME,"msctls_trackbar32",TBS_AUTOTICKS | WS_TABSTOP,15,106,220,15
+    CTEXT           "1",IDC_STATIC,20,122,8,8
+    CTEXT           "2",IDC_STATIC,44,122,8,8
+    CTEXT           "5",IDC_STATIC,70,122,8,8
+    CTEXT           "10",IDC_STATIC,95,122,8,8
+    CTEXT           "15",IDC_STATIC,121,122,8,8
+    CTEXT           "30",IDC_STATIC,146,122,8,8
+    CTEXT           "45",IDC_STATIC,171,122,8,8
+    CTEXT           "1hr",IDC_STATIC,194,122,10,8
+    CTEXT           "Never",IDC_STATIC,213,122,22,8
+    LTEXT           "Switch between project screensavers every:",IDC_STATIC,7,135,237,14,SS_CENTERIMAGE
+    CONTROL         "",IDC_SLIDER_SWITCHTIME,"msctls_trackbar32",TBS_AUTOTICKS | WS_TABSTOP,15,148,220,15
+    CTEXT           "1",IDC_STATIC,20,164,8,8
+    CTEXT           "2",IDC_STATIC,44,164,8,8
+    CTEXT           "5",IDC_STATIC,70,164,8,8
+    CTEXT           "10",IDC_STATIC,95,164,8,8
+    CTEXT           "15",IDC_STATIC,121,164,8,8
+    CTEXT           "30",IDC_STATIC,146,164,8,8
+    CTEXT           "45",IDC_STATIC,171,164,8,8
+    CTEXT           "1hr",IDC_STATIC,194,164,10,8
+    CTEXT           "Never",IDC_STATIC,213,164,22,8
 END
 
+#elif defined(_PROGRESSTHRUPROCESSORS)
+
+DLG_CONFIG DIALOGEX 50, 50, 249, 200
+STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU
+CAPTION "Progress Thru Processors Screensaver Configuration"
+FONT 8, "MS Sans Serif", 0, 0, 0x0
+BEGIN
+    DEFPUSHBUTTON   "OK",IDOK,137,181,50,14
+    PUSHBUTTON      "Cancel",IDCANCEL,194,181,50,14
+    LTEXT           "Blank screensaver after:",IDC_STATIC,7,7,237,14,SS_CENTERIMAGE
+    CONTROL         "",IDC_SLIDER_BLANKTIME,"msctls_trackbar32",TBS_AUTOTICKS | WS_TABSTOP,15,20,220,15
+    CTEXT           "1",IDC_STATIC,20,36,8,8
+    CTEXT           "2",IDC_STATIC,44,36,8,8
+    CTEXT           "5",IDC_STATIC,70,36,8,8
+    CTEXT           "10",IDC_STATIC,95,36,8,8
+    CTEXT           "15",IDC_STATIC,121,36,8,8
+    CTEXT           "30",IDC_STATIC,146,36,8,8
+    CTEXT           "45",IDC_STATIC,171,36,8,8
+    CTEXT           "1hr",IDC_STATIC,194,36,10,8
+    CTEXT           "Never",IDC_STATIC,213,36,22,8
+    LTEXT           "Run Progress Thru Processors screensaver for:",IDC_STATIC,7,49,237,14,SS_CENTERIMAGE
+    CONTROL         "",IDC_SLIDER_DEFAULTTIME,"msctls_trackbar32",TBS_AUTOTICKS | WS_TABSTOP,15,63,220,15
+    CTEXT           "1",IDC_STATIC,20,79,8,8
+    CTEXT           "2",IDC_STATIC,44,79,8,8
+    CTEXT           "5",IDC_STATIC,70,79,8,8
+    CTEXT           "10",IDC_STATIC,95,79,8,8
+    CTEXT           "15",IDC_STATIC,121,79,8,8
+    CTEXT           "30",IDC_STATIC,146,79,8,8
+    CTEXT           "45",IDC_STATIC,171,79,8,8
+    CTEXT           "1hr",IDC_STATIC,194,79,10,8
+    CTEXT           "Never",IDC_STATIC,213,79,22,8
+    LTEXT           "Run project screensavers for:",IDC_STATIC,7,92,237,14,SS_CENTERIMAGE
+    CONTROL         "",IDC_SLIDER_RUNTIME,"msctls_trackbar32",TBS_AUTOTICKS | WS_TABSTOP,15,106,220,15
+    CTEXT           "1",IDC_STATIC,20,122,8,8
+    CTEXT           "2",IDC_STATIC,44,122,8,8
+    CTEXT           "5",IDC_STATIC,70,122,8,8
+    CTEXT           "10",IDC_STATIC,95,122,8,8
+    CTEXT           "15",IDC_STATIC,121,122,8,8
+    CTEXT           "30",IDC_STATIC,146,122,8,8
+    CTEXT           "45",IDC_STATIC,171,122,8,8
+    CTEXT           "1hr",IDC_STATIC,194,122,10,8
+    CTEXT           "Never",IDC_STATIC,213,122,22,8
+    LTEXT           "Switch between project screensavers every:",IDC_STATIC,7,135,237,14,SS_CENTERIMAGE
+    CONTROL         "",IDC_SLIDER_SWITCHTIME,"msctls_trackbar32",TBS_AUTOTICKS | WS_TABSTOP,15,148,220,15
+    CTEXT           "1",IDC_STATIC,20,164,8,8
+    CTEXT           "2",IDC_STATIC,44,164,8,8
+    CTEXT           "5",IDC_STATIC,70,164,8,8
+    CTEXT           "10",IDC_STATIC,95,164,8,8
+    CTEXT           "15",IDC_STATIC,121,164,8,8
+    CTEXT           "30",IDC_STATIC,146,164,8,8
+    CTEXT           "45",IDC_STATIC,171,164,8,8
+    CTEXT           "1hr",IDC_STATIC,194,164,10,8
+    CTEXT           "Never",IDC_STATIC,213,164,22,8
+END
+
+#elif defined(_WCG)
+
+DLG_CONFIG DIALOGEX 50, 50, 249, 200
+STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU
+CAPTION "World Community Grid Screensaver Configuration"
+FONT 8, "MS Sans Serif", 0, 0, 0x0
+BEGIN
+    DEFPUSHBUTTON   "OK",IDOK,137,181,50,14
+    PUSHBUTTON      "Cancel",IDCANCEL,194,181,50,14
+    LTEXT           "Blank screensaver after:",IDC_STATIC,7,7,237,14,SS_CENTERIMAGE
+    CONTROL         "",IDC_SLIDER_BLANKTIME,"msctls_trackbar32",TBS_AUTOTICKS | WS_TABSTOP,15,20,220,15
+    CTEXT           "1",IDC_STATIC,20,36,8,8
+    CTEXT           "2",IDC_STATIC,44,36,8,8
+    CTEXT           "5",IDC_STATIC,70,36,8,8
+    CTEXT           "10",IDC_STATIC,95,36,8,8
+    CTEXT           "15",IDC_STATIC,121,36,8,8
+    CTEXT           "30",IDC_STATIC,146,36,8,8
+    CTEXT           "45",IDC_STATIC,171,36,8,8
+    CTEXT           "1hr",IDC_STATIC,194,36,10,8
+    CTEXT           "Never",IDC_STATIC,213,36,22,8
+    LTEXT           "Run World Community Grid screensaver for:",IDC_STATIC,7,49,237,14,SS_CENTERIMAGE
+    CONTROL         "",IDC_SLIDER_DEFAULTTIME,"msctls_trackbar32",TBS_AUTOTICKS | WS_TABSTOP,15,63,220,15
+    CTEXT           "1",IDC_STATIC,20,79,8,8
+    CTEXT           "2",IDC_STATIC,44,79,8,8
+    CTEXT           "5",IDC_STATIC,70,79,8,8
+    CTEXT           "10",IDC_STATIC,95,79,8,8
+    CTEXT           "15",IDC_STATIC,121,79,8,8
+    CTEXT           "30",IDC_STATIC,146,79,8,8
+    CTEXT           "45",IDC_STATIC,171,79,8,8
+    CTEXT           "1hr",IDC_STATIC,194,79,10,8
+    CTEXT           "Never",IDC_STATIC,213,79,22,8
+    LTEXT           "Run project screensavers for:",IDC_STATIC,7,92,237,14,SS_CENTERIMAGE
+    CONTROL         "",IDC_SLIDER_RUNTIME,"msctls_trackbar32",TBS_AUTOTICKS | WS_TABSTOP,15,106,220,15
+    CTEXT           "1",IDC_STATIC,20,122,8,8
+    CTEXT           "2",IDC_STATIC,44,122,8,8
+    CTEXT           "5",IDC_STATIC,70,122,8,8
+    CTEXT           "10",IDC_STATIC,95,122,8,8
+    CTEXT           "15",IDC_STATIC,121,122,8,8
+    CTEXT           "30",IDC_STATIC,146,122,8,8
+    CTEXT           "45",IDC_STATIC,171,122,8,8
+    CTEXT           "1hr",IDC_STATIC,194,122,10,8
+    CTEXT           "Never",IDC_STATIC,213,122,22,8
+    LTEXT           "Switch between project screensavers every:",IDC_STATIC,7,135,237,14,SS_CENTERIMAGE
+    CONTROL         "",IDC_SLIDER_SWITCHTIME,"msctls_trackbar32",TBS_AUTOTICKS | WS_TABSTOP,15,148,220,15
+    CTEXT           "1",IDC_STATIC,20,164,8,8
+    CTEXT           "2",IDC_STATIC,44,164,8,8
+    CTEXT           "5",IDC_STATIC,70,164,8,8
+    CTEXT           "10",IDC_STATIC,95,164,8,8
+    CTEXT           "15",IDC_STATIC,121,164,8,8
+    CTEXT           "30",IDC_STATIC,146,164,8,8
+    CTEXT           "45",IDC_STATIC,171,164,8,8
+    CTEXT           "1hr",IDC_STATIC,194,164,10,8
+    CTEXT           "Never",IDC_STATIC,213,164,22,8
+END
+
+#else
+
+DLG_CONFIG DIALOGEX 50, 50, 249, 200
+STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU
+CAPTION "BOINC Screensaver Configuration"
+FONT 8, "MS Sans Serif", 0, 0, 0x0
+BEGIN
+    DEFPUSHBUTTON   "OK",IDOK,137,181,50,14
+    PUSHBUTTON      "Cancel",IDCANCEL,194,181,50,14
+    LTEXT           "Blank screensaver after:",IDC_STATIC,7,7,237,14,SS_CENTERIMAGE
+    CONTROL         "",IDC_SLIDER_BLANKTIME,"msctls_trackbar32",TBS_AUTOTICKS | WS_TABSTOP,15,20,220,15
+    CTEXT           "1",IDC_STATIC,20,36,8,8
+    CTEXT           "2",IDC_STATIC,44,36,8,8
+    CTEXT           "5",IDC_STATIC,70,36,8,8
+    CTEXT           "10",IDC_STATIC,95,36,8,8
+    CTEXT           "15",IDC_STATIC,121,36,8,8
+    CTEXT           "30",IDC_STATIC,146,36,8,8
+    CTEXT           "45",IDC_STATIC,171,36,8,8
+    CTEXT           "1hr",IDC_STATIC,194,36,10,8
+    CTEXT           "Never",IDC_STATIC,213,36,22,8
+    LTEXT           "Run BOINC screensaver for:",IDC_STATIC,7,49,237,14,SS_CENTERIMAGE
+    CONTROL         "",IDC_SLIDER_DEFAULTTIME,"msctls_trackbar32",TBS_AUTOTICKS | WS_TABSTOP,15,63,220,15
+    CTEXT           "1",IDC_STATIC,20,79,8,8
+    CTEXT           "2",IDC_STATIC,44,79,8,8
+    CTEXT           "5",IDC_STATIC,70,79,8,8
+    CTEXT           "10",IDC_STATIC,95,79,8,8
+    CTEXT           "15",IDC_STATIC,121,79,8,8
+    CTEXT           "30",IDC_STATIC,146,79,8,8
+    CTEXT           "45",IDC_STATIC,171,79,8,8
+    CTEXT           "1hr",IDC_STATIC,194,79,10,8
+    CTEXT           "Never",IDC_STATIC,213,79,22,8
+    LTEXT           "Run project screensavers for:",IDC_STATIC,7,92,237,14,SS_CENTERIMAGE
+    CONTROL         "",IDC_SLIDER_RUNTIME,"msctls_trackbar32",TBS_AUTOTICKS | WS_TABSTOP,15,106,220,15
+    CTEXT           "1",IDC_STATIC,20,122,8,8
+    CTEXT           "2",IDC_STATIC,44,122,8,8
+    CTEXT           "5",IDC_STATIC,70,122,8,8
+    CTEXT           "10",IDC_STATIC,95,122,8,8
+    CTEXT           "15",IDC_STATIC,121,122,8,8
+    CTEXT           "30",IDC_STATIC,146,122,8,8
+    CTEXT           "45",IDC_STATIC,171,122,8,8
+    CTEXT           "1hr",IDC_STATIC,194,122,10,8
+    CTEXT           "Never",IDC_STATIC,213,122,22,8
+    LTEXT           "Switch between project screensavers every:",IDC_STATIC,7,135,237,14,SS_CENTERIMAGE
+    CONTROL         "",IDC_SLIDER_SWITCHTIME,"msctls_trackbar32",TBS_AUTOTICKS | WS_TABSTOP,15,148,220,15
+    CTEXT           "1",IDC_STATIC,20,164,8,8
+    CTEXT           "2",IDC_STATIC,44,164,8,8
+    CTEXT           "5",IDC_STATIC,70,164,8,8
+    CTEXT           "10",IDC_STATIC,95,164,8,8
+    CTEXT           "15",IDC_STATIC,121,164,8,8
+    CTEXT           "30",IDC_STATIC,146,164,8,8
+    CTEXT           "45",IDC_STATIC,171,164,8,8
+    CTEXT           "1hr",IDC_STATIC,194,164,10,8
+    CTEXT           "Never",IDC_STATIC,213,164,22,8
+END
+
+#endif
 
 /////////////////////////////////////////////////////////////////////////////
 //
@@ -260,13 +467,13 @@ END
 //
 
 #if defined(_GRIDREPUBLIC)
-IDB_BOINCSPLAT          BITMAP                  "res\\gridrepublic.bmp"
+IDB_BOINC               BITMAP                  "res\\gridrepublic.bmp"
 #elif defined(_PROGRESSTHRUPROCESSORS)
-IDB_BOINCSPLAT          BITMAP                  "res\\progress.bmp"
+IDB_BOINC               BITMAP                  "res\\progress.bmp"
 #elif defined(_WCG)
-IDB_BOINCSPLAT          BITMAP                  "res\\wcg.bmp"
+IDB_BOINC               BITMAP                  "res\\wcg.bmp"
 #else
-IDB_BOINCSPLAT          BITMAP                  "res\\boinc.bmp"
+IDB_BOINC               BITMAP                  "res\\boinc.bmp"
 #endif
 
 /////////////////////////////////////////////////////////////////////////////
diff --git a/clientscr/boinc_ss_opengl.h b/clientscr/boinc_ss_opengl.h
index 98a583e..0da0c34 100644
--- a/clientscr/boinc_ss_opengl.h
+++ b/clientscr/boinc_ss_opengl.h
@@ -3,24 +3,6 @@
 // Used by boinc_ss.rc
 //
 #define IDI_MAIN_ICON                        1
-#define IDS_DESCRIPTION                      1
-#define IDS_SHORTCUTNAME                     2
-#define DLG_CONFIG                           104
-#define IDB_BOINCSPLAT                       108
-#define IDC_BLANK                            1000
-#define IDC_BLANK_TIME                       1001
-#define IDS_ERR_GENERIC                      2100
-#define IDS_ERR_BOINCNOTDETECTED             2101
-#define IDS_ERR_BOINCSUSPENDED               2103
-#define IDS_ERR_BOINCNOAPPSEXECUTING         2104
-#define IDS_ERR_BOINCNOAPPSEXECUTINGNOPROJECTSDETECTED 2105
-#define IDS_ERR_BOINCNOGRAPHICSAPPSEXECUTING 2106
-#define IDS_ERR_BOINCSCREENSAVERLOADING      2107
-#define IDS_ERR_BOINCAPPFOUNDGRAPHICSLOADING 2108
-#define IDS_ERR_BOINCSHUTDOWNEVENT           2109
-#define IDS_ERR_OUTOFMEMORY                  2110
-#define IDS_ERR_NOPREVIEW                    2112
-#define IDS_ERR_DAEMONALLOWSNOGRAPHICS       2113
 
 // Next default values for new objects
 // 
diff --git a/clientscr/boinc_ss_opengl.rc b/clientscr/boinc_ss_opengl.rc
index 8fdcc86..c33e22c 100644
--- a/clientscr/boinc_ss_opengl.rc
+++ b/clientscr/boinc_ss_opengl.rc
@@ -1,6 +1,6 @@
 // Microsoft Visual C++ generated resource script.
 //
-#include "boinc_ss.h"
+#include "boinc_ss_opengl.h"
 
 #define APSTUDIO_READONLY_SYMBOLS
 /////////////////////////////////////////////////////////////////////////////
@@ -65,7 +65,7 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
 
 1 TEXTINCLUDE 
 BEGIN
-    "boinc_ss.h\0"
+    "boinc_ss_opengl.h\0"
 END
 
 2 TEXTINCLUDE 
@@ -119,7 +119,7 @@ BEGIN
             VALUE "FileDescription", "BOINC Screensaver"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinc_ss"
-            VALUE "LegalCopyright", "© 2003-2008 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinc.scr"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -154,7 +154,7 @@ BEGIN
             VALUE "FileDescription", "BOINC Screensaver"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinc_ss"
-            VALUE "LegalCopyright", "© 2003-2008 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinc.scr"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -189,7 +189,7 @@ BEGIN
             VALUE "FileDescription", "BOINC Screensaver"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinc_ss"
-            VALUE "LegalCopyright", "© 2003-2008 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinc.scr"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -203,130 +203,6 @@ END
 
 #endif
 
-/////////////////////////////////////////////////////////////////////////////
-//
-// Dialog
-//
-
-DLG_CONFIG DIALOGEX 50, 50, 186, 76
-STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | 
-    WS_SYSMENU
-CAPTION "Config dialog"
-FONT 8, "MS Sans Serif", 0, 0, 0x0
-BEGIN
-    DEFPUSHBUTTON   "OK",IDOK,7,55,50,14
-    PUSHBUTTON      "Cancel",IDCANCEL,129,55,50,14
-    CONTROL         "Go to blank screen",IDC_BLANK,"Button",BS_AUTOCHECKBOX | 
-                    WS_TABSTOP,7,7,76,10
-    LTEXT           "Minutes until blank:",IDC_STATIC,7,31,62,8
-    EDITTEXT        IDC_BLANK_TIME,77,28,40,14,ES_AUTOHSCROLL
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Bitmap
-//
-
-#if defined(_GRIDREPUBLIC)
-
-IDB_BOINCSPLAT          BITMAP                  "res\\gridrepublic.bmp"
-
-#elif defined(_WCG)
-
-IDB_BOINCSPLAT          BITMAP                  "res\\wcg.bmp"
-
-#else
-
-IDB_BOINCSPLAT          BITMAP                  "res\\boinc.bmp"
-
-#endif
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// String Table
-//
-
-#if defined(_GRIDREPUBLIC)
-
-STRINGTABLE 
-BEGIN
-    IDS_ERR_GENERIC         "There was an unspecified problem\nwith the GridRepublic screensaver."
-    IDS_ERR_BOINCNOTDETECTED 
-                            "GridRepublic is not running.\n\nPlease launch GridRepublic to display graphics."
-    IDS_ERR_BOINCSUSPENDED  "GridRepublic is currently suspended."
-    IDS_ERR_BOINCNOAPPSEXECUTING
-                            "GridRepublic is currently idle."
-    IDS_ERR_BOINCNOAPPSEXECUTINGNOPROJECTSDETECTED
-                            "GridRepublic is not attached to any projects.\nYou can attach to projects using\nthe GridRepublic website."
-    IDS_ERR_BOINCNOGRAPHICSAPPSEXECUTING
-                            "GridRepublic system status:\n\n"
-    IDS_ERR_BOINCSCREENSAVERLOADING
-                            "GridRepublic screensaver loading"
-    IDS_ERR_BOINCAPPFOUNDGRAPHICSLOADING
-                            "Application found, graphics loading...\n\nPlease wait..."
-    IDS_ERR_BOINCSHUTDOWNEVENT
-                            "Gridrepublic screensaver shutting down."
-    IDS_ERR_DAEMONALLOWSNOGRAPHICS
-                            "Gridrepublic screensaver cannot display graphics \nfrom older applications when configured to \nrun as a Windows service."
-END
-
-#elif defined(_WCG)
-
-STRINGTABLE 
-BEGIN
-    IDS_ERR_GENERIC         "There was an unspecified problem\nwith the World Community Grid screensaver."
-    IDS_ERR_BOINCNOTDETECTED 
-                            "World Community Grid is not running.\n\nPlease launch World Community Grid\nto display graphics."
-    IDS_ERR_BOINCSUSPENDED  "World Community Grid is currently suspended."
-    IDS_ERR_BOINCNOAPPSEXECUTING
-                            "World Community Grid is currently idle."
-    IDS_ERR_BOINCNOAPPSEXECUTINGNOPROJECTSDETECTED
-                            "World Community Grid is not attached\nto any projects.\nYou can attach to projects using\nthe Attach to project wizard\nin the tools menu."
-    IDS_ERR_BOINCNOGRAPHICSAPPSEXECUTING
-                            "World Community Grid system status:\n\n"
-    IDS_ERR_BOINCSCREENSAVERLOADING
-                            "World Community Grid screensaver loading"
-    IDS_ERR_BOINCAPPFOUNDGRAPHICSLOADING
-                            "Application found, graphics loading...\n\nPlease wait..."
-    IDS_ERR_BOINCSHUTDOWNEVENT
-                            "World Community Grid\nscreensaver shutting down."
-    IDS_ERR_DAEMONALLOWSNOGRAPHICS
-                            "World Community Grid screensaver cannot display graphics \nfrom older applications when configured to \nrun as a Windows service."
-END
-
-#else
-
-STRINGTABLE 
-BEGIN
-    IDS_ERR_GENERIC         "There was an unspecified problem\nwith the BOINC screensaver."
-    IDS_ERR_BOINCNOTDETECTED 
-                            "BOINC is not running.\n\nPlease launch BOINC to display graphics."
-    IDS_ERR_BOINCSUSPENDED  "BOINC is currently suspended."
-    IDS_ERR_BOINCNOAPPSEXECUTING
-                            "BOINC is currently idle."
-    IDS_ERR_BOINCNOAPPSEXECUTINGNOPROJECTSDETECTED
-                            "BOINC is not attached to any projects.\nYou can attach to projects using\nthe BOINC Manager."
-    IDS_ERR_BOINCNOGRAPHICSAPPSEXECUTING
-                            "BOINC system status:\n\n"
-    IDS_ERR_BOINCSCREENSAVERLOADING
-                            "BOINC screensaver loading"
-    IDS_ERR_BOINCAPPFOUNDGRAPHICSLOADING
-                            "Application found, graphics loading...\n\nPlease wait..."
-    IDS_ERR_BOINCSHUTDOWNEVENT
-                            "BOINC screensaver shutting down."
-    IDS_ERR_DAEMONALLOWSNOGRAPHICS
-                            "BOINC screensaver cannot display graphics \nfrom older applications when configured to \nrun as a Windows service."
-END
-
-#endif
-
-STRINGTABLE 
-BEGIN
-    IDS_ERR_OUTOFMEMORY     "Not enough memory."
-    IDS_ERR_NOPREVIEW       "No preview available"
-END
-
 #endif    // English (U.S.) resources
 /////////////////////////////////////////////////////////////////////////////
 
diff --git a/clientscr/mac_saver_module.cpp b/clientscr/mac_saver_module.cpp
index ab8c3d2..61ee9f4 100644
--- a/clientscr/mac_saver_module.cpp
+++ b/clientscr/mac_saver_module.cpp
@@ -91,7 +91,7 @@ const char *  DefaultGFXAppCrashedMsg = "Default screensaver module had an unrec
 // If there are multiple displays, this may get called 
 // multiple times (once for each display), so we need to guard 
 // against any problems that may cause.
-int initBOINCSaver() {
+void initBOINCSaver() {
 #ifdef _DEBUG
     char buf1[256], buf2[256];
     strcpy(buf1, getenv("HOME"));
@@ -107,11 +107,18 @@ int initBOINCSaver() {
 
     if (gspScreensaver == NULL) {
         gspScreensaver = new CScreensaver();
+    }
+}
+
+
+int startBOINCSaver() {
+    if (gspScreensaver) {
         return gspScreensaver->Create();
     }
     return TEXTLOGOFREQUENCY;
 }
 
+
 int getSSMessage(char **theMessage, int* coveredFreq) {
     if (gspScreensaver) {
         return gspScreensaver->getSSMessage(theMessage, coveredFreq);
@@ -148,7 +155,69 @@ void closeBOINCSaver() {
     }
 }
 
+
+double getGFXDefaultPeriod() {
+    if (gspScreensaver) {
+        return gspScreensaver->m_fGFXDefaultPeriod;
+    }
+    return 0;
+}
+
+
+double getGFXSciencePeriod() {
+    if (gspScreensaver) {
+        return gspScreensaver->m_fGFXSciencePeriod;
+    }
+    return 0;
+}
+
+
+double getGGFXChangePeriod() {
+    if (gspScreensaver) {
+        return gspScreensaver->m_fGFXChangePeriod;
+    }
+    return 0;
+}
+
+
+void setGFXDefaultPeriod(double value) {
+    if (gspScreensaver) {
+        gspScreensaver->m_fGFXDefaultPeriod = value;
+    }
+}
+
+
+void setGFXSciencePeriod(double value) {
+    if (gspScreensaver) {
+        gspScreensaver->m_fGFXSciencePeriod = value;
+    }
+}
+
+
+void setGGFXChangePeriod(double value) {
+    if (gspScreensaver) {
+        gspScreensaver->m_fGFXChangePeriod = value;
+    }
+}
+
+
+bool validateNumericString(CFStringRef s) {
+    CFIndex i;
+    CFRange range, result;
+    CFIndex len = CFStringGetLength(s);
+    CFCharacterSetRef theSet = CFCharacterSetGetPredefined(kCFCharacterSetDecimalDigit);
+    
+    for (i=0; i<len; i++) {
+        range = CFRangeMake(i, 1);
+        if (!CFStringFindCharacterFromSet(s, theSet, range, kCFCompareAnchored, &result))
+            return false;
+    }
+    return true;
+}
+
+
 CScreensaver::CScreensaver() {
+    struct ss_periods periods;
     OSStatus err;
     
     m_dwBlankScreen = 0;
@@ -175,6 +244,15 @@ CScreensaver::CScreensaver() {
     if (err != noErr) {
         gSystemVersion = 0;
     }
+
+    // Get project-defined default values for GFXDefaultPeriod, GFXSciencePeriod, GFXChangePeriod
+    GetDefaultDisplayPeriods(periods);
+    m_bShow_default_ss_first = periods.Show_default_ss_first;
+
+
+    m_fGFXDefaultPeriod = periods.GFXDefaultPeriod;
+    m_fGFXSciencePeriod = periods.GFXSciencePeriod;
+    m_fGFXChangePeriod = periods.GFXChangePeriod;
 }
 
 
@@ -208,14 +286,6 @@ int CScreensaver::Create() {
     // multiple times (once for each display), so we need to guard 
     // against launching multiple instances of the core client
     if (saverState == SaverState_Idle) {
-        // Calculate the estimated blank time by adding the starting 
-        //  time and and the user-specified time which is in minutes
-        m_dwBlankScreen = gGoToBlank;
-        if (gGoToBlank)
-            m_dwBlankTime = time(0) + (gBlankingTime * 60);
-        else
-            m_dwBlankTime = 0;
-
         CFStringGetCString(gPathToBundleResources, m_gfx_Switcher_Path, sizeof(m_gfx_Switcher_Path), kCFStringEncodingMacRoman);
         strlcat(m_gfx_Switcher_Path, "/gfx_switcher", sizeof(m_gfx_Switcher_Path));
 
@@ -543,6 +613,14 @@ void CScreensaver::HandleRPCError() {
 bool CScreensaver::CreateDataManagementThread() {
     int retval;
     
+    // Calculate the estimated blank time by adding the starting 
+    //  time and and the user-specified time which is in minutes
+    m_dwBlankScreen = gGoToBlank;
+    if (gGoToBlank && (gBlankingTime > 0))
+        m_dwBlankTime = time(0) + (gBlankingTime * 60);
+    else
+        m_dwBlankTime = 0;
+    
     if (m_hDataManagementThread == NULL) {
         retval = pthread_create(&m_hDataManagementThread, NULL, DataManagementProcStub, 0);
         if (retval) {
@@ -785,4 +863,4 @@ void PrintBacktrace(void) {
 // Dummy routine to satisfy linker
 }
 
-const char *BOINC_RCSID_7ce0778d35="$Id: mac_saver_module.cpp 18891 2009-08-21 10:04:42Z charlief $";
+const char *BOINC_RCSID_7ce0778d35="$Id: mac_saver_module.cpp 19891 2009-12-14 13:45:08Z charlief $";
diff --git a/clientscr/progress/win/x64/boincscr.exe b/clientscr/progress/win/x64/boincscr.exe
new file mode 100644
index 0000000..b2357e2
Binary files /dev/null and b/clientscr/progress/win/x64/boincscr.exe differ
diff --git a/clientscr/progress/win/x86/boincscr.exe b/clientscr/progress/win/x86/boincscr.exe
new file mode 100644
index 0000000..3bd9de6
Binary files /dev/null and b/clientscr/progress/win/x86/boincscr.exe differ
diff --git a/clientscr/res/BOINCSaver.nib/designable.nib b/clientscr/res/BOINCSaver.nib/designable.nib
new file mode 100644
index 0000000..be46ef7
--- /dev/null
+++ b/clientscr/res/BOINCSaver.nib/designable.nib
@@ -0,0 +1,1315 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10">
+	<data>
+		<int key="IBDocument.SystemTarget">1060</int>
+		<string key="IBDocument.SystemVersion">10C540</string>
+		<string key="IBDocument.InterfaceBuilderVersion">740</string>
+		<string key="IBDocument.AppKitVersion">1038.25</string>
+		<string key="IBDocument.HIToolboxVersion">458.00</string>
+		<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
+			<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
+			<string key="NS.object.0">740</string>
+		</object>
+		<object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
+			<bool key="EncodedWithXMLCoder">YES</bool>
+			<integer value="8"/>
+		</object>
+		<object class="NSArray" key="IBDocument.PluginDependencies">
+			<bool key="EncodedWithXMLCoder">YES</bool>
+			<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+		</object>
+		<object class="NSMutableDictionary" key="IBDocument.Metadata">
+			<bool key="EncodedWithXMLCoder">YES</bool>
+			<object class="NSArray" key="dict.sortedKeys" id="0">
+				<bool key="EncodedWithXMLCoder">YES</bool>
+			</object>
+			<object class="NSMutableArray" key="dict.values">
+				<bool key="EncodedWithXMLCoder">YES</bool>
+			</object>
+		</object>
+		<object class="NSMutableArray" key="IBDocument.RootObjects" id="372676668">
+			<bool key="EncodedWithXMLCoder">YES</bool>
+			<object class="NSCustomObject" id="670568770">
+				<string key="NSClassName">BOINC_Saver_ModuleView</string>
+			</object>
+			<object class="NSCustomObject" id="947836728">
+				<string key="NSClassName">FirstResponder</string>
+			</object>
+			<object class="NSCustomObject" id="872796012">
+				<string key="NSClassName">NSApplication</string>
+			</object>
+			<object class="NSWindowTemplate" id="1030563092">
+				<int key="NSWindowStyleMask">1</int>
+				<int key="NSWindowBacking">2</int>
+				<string key="NSWindowRect">{{370, 478}, {442, 246}}</string>
+				<int key="NSWTFlags">1886912512</int>
+				<string key="NSWindowTitle">Configure BOINCSaver</string>
+				<string key="NSWindowClass">NSPanel</string>
+				<object class="NSMutableString" key="NSViewClass">
+					<characters key="NS.bytes">View</characters>
+				</object>
+				<string key="NSWindowContentMaxSize">{1.79769e+308, 1.79769e+308}</string>
+				<string key="NSWindowContentMinSize">{213, 107}</string>
+				<object class="NSView" key="NSWindowView" id="624770116">
+					<reference key="NSNextResponder"/>
+					<int key="NSvFlags">256</int>
+					<object class="NSMutableArray" key="NSSubviews">
+						<bool key="EncodedWithXMLCoder">YES</bool>
+						<object class="NSButton" id="325440156">
+							<reference key="NSNextResponder" ref="624770116"/>
+							<int key="NSvFlags">256</int>
+							<string key="NSFrame">{{255, 12}, {78, 32}}</string>
+							<reference key="NSSuperview" ref="624770116"/>
+							<int key="NSViewLayerContentsRedrawPolicy">2</int>
+							<bool key="NSEnabled">YES</bool>
+							<object class="NSButtonCell" key="NSCell" id="685036247">
+								<int key="NSCellFlags">67239424</int>
+								<int key="NSCellFlags2">134217728</int>
+								<string key="NSContents">Cancel</string>
+								<object class="NSFont" key="NSSupport" id="458658335">
+									<string key="NSName">LucidaGrande</string>
+									<double key="NSSize">13</double>
+									<int key="NSfFlags">1044</int>
+								</object>
+								<reference key="NSControlView" ref="325440156"/>
+								<int key="NSButtonFlags">-2038284033</int>
+								<int key="NSButtonFlags2">1</int>
+								<reference key="NSAlternateImage" ref="458658335"/>
+								<string key="NSAlternateContents"/>
+								<object class="NSMutableString" key="NSKeyEquivalent">
+									<characters key="NS.bytes"/>
+								</object>
+								<int key="NSPeriodicDelay">200</int>
+								<int key="NSPeriodicInterval">25</int>
+							</object>
+						</object>
+						<object class="NSButton" id="615763160">
+							<reference key="NSNextResponder" ref="624770116"/>
+							<int key="NSvFlags">256</int>
+							<string key="NSFrame">{{350, 12}, {78, 32}}</string>
+							<reference key="NSSuperview" ref="624770116"/>
+							<int key="NSViewLayerContentsRedrawPolicy">2</int>
+							<bool key="NSEnabled">YES</bool>
+							<object class="NSButtonCell" key="NSCell" id="592747210">
+								<int key="NSCellFlags">67239424</int>
+								<int key="NSCellFlags2">134217728</int>
+								<string key="NSContents">Save</string>
+								<reference key="NSSupport" ref="458658335"/>
+								<reference key="NSControlView" ref="615763160"/>
+								<int key="NSButtonFlags">-2038284033</int>
+								<int key="NSButtonFlags2">1</int>
+								<reference key="NSAlternateImage" ref="458658335"/>
+								<string key="NSAlternateContents"/>
+								<object class="NSMutableString" key="NSKeyEquivalent">
+									<characters key="NS.bytes"/>
+								</object>
+								<int key="NSPeriodicDelay">200</int>
+								<int key="NSPeriodicInterval">25</int>
+							</object>
+						</object>
+						<object class="NSButton" id="297710802">
+							<reference key="NSNextResponder" ref="624770116"/>
+							<int key="NSvFlags">256</int>
+							<string key="NSFrame">{{203, 202}, {144, 18}}</string>
+							<reference key="NSSuperview" ref="624770116"/>
+							<int key="NSViewLayerContentsRedrawPolicy">2</int>
+							<bool key="NSEnabled">YES</bool>
+							<object class="NSButtonCell" key="NSCell" id="547356856">
+								<int key="NSCellFlags">67239424</int>
+								<int key="NSCellFlags2">0</int>
+								<string key="NSContents">Go to blank screen</string>
+								<reference key="NSSupport" ref="458658335"/>
+								<reference key="NSControlView" ref="297710802"/>
+								<int key="NSButtonFlags">1211912703</int>
+								<int key="NSButtonFlags2">2</int>
+								<object class="NSButtonImageSource" key="NSAlternateImage">
+									<string key="NSImageName">NSSwitch</string>
+								</object>
+								<string key="NSAlternateContents"/>
+								<string key="NSKeyEquivalent"/>
+								<int key="NSPeriodicDelay">200</int>
+								<int key="NSPeriodicInterval">25</int>
+							</object>
+						</object>
+						<object class="NSTextField" id="978300991">
+							<reference key="NSNextResponder" ref="624770116"/>
+							<int key="NSvFlags">256</int>
+							<string key="NSFrame">{{325, 159}, {33, 22}}</string>
+							<reference key="NSSuperview" ref="624770116"/>
+							<int key="NSViewLayerContentsRedrawPolicy">2</int>
+							<bool key="NSEnabled">YES</bool>
+							<object class="NSTextFieldCell" key="NSCell" id="835006794">
+								<int key="NSCellFlags">-1804468671</int>
+								<int key="NSCellFlags2">-2143288320</int>
+								<string key="NSContents">15</string>
+								<reference key="NSSupport" ref="458658335"/>
+								<reference key="NSControlView" ref="978300991"/>
+								<bool key="NSDrawsBackground">YES</bool>
+								<object class="NSColor" key="NSBackgroundColor" id="817069626">
+									<int key="NSColorSpace">6</int>
+									<string key="NSCatalogName">System</string>
+									<string key="NSColorName">textBackgroundColor</string>
+									<object class="NSColor" key="NSColor">
+										<int key="NSColorSpace">3</int>
+										<bytes key="NSWhite">MQA</bytes>
+									</object>
+								</object>
+								<object class="NSColor" key="NSTextColor" id="983142116">
+									<int key="NSColorSpace">6</int>
+									<string key="NSCatalogName">System</string>
+									<string key="NSColorName">textColor</string>
+									<object class="NSColor" key="NSColor" id="94156449">
+										<int key="NSColorSpace">3</int>
+										<bytes key="NSWhite">MAA</bytes>
+									</object>
+								</object>
+							</object>
+						</object>
+						<object class="NSTextField" id="293672032">
+							<reference key="NSNextResponder" ref="624770116"/>
+							<int key="NSvFlags">256</int>
+							<string key="NSFrame">{{325, 134}, {33, 22}}</string>
+							<reference key="NSSuperview" ref="624770116"/>
+							<int key="NSViewLayerContentsRedrawPolicy">2</int>
+							<bool key="NSEnabled">YES</bool>
+							<object class="NSTextFieldCell" key="NSCell" id="124480473">
+								<int key="NSCellFlags">-1804468671</int>
+								<int key="NSCellFlags2">4195328</int>
+								<real value="15" key="NSContents"/>
+								<reference key="NSSupport" ref="458658335"/>
+								<reference key="NSControlView" ref="293672032"/>
+								<bool key="NSDrawsBackground">YES</bool>
+								<reference key="NSBackgroundColor" ref="817069626"/>
+								<reference key="NSTextColor" ref="983142116"/>
+							</object>
+						</object>
+						<object class="NSTextField" id="212510266">
+							<reference key="NSNextResponder" ref="624770116"/>
+							<int key="NSvFlags">256</int>
+							<string key="NSFrame">{{325, 109}, {33, 22}}</string>
+							<reference key="NSSuperview" ref="624770116"/>
+							<int key="NSViewLayerContentsRedrawPolicy">2</int>
+							<bool key="NSEnabled">YES</bool>
+							<object class="NSTextFieldCell" key="NSCell" id="1053206695">
+								<int key="NSCellFlags">-1804468671</int>
+								<int key="NSCellFlags2">-2143288320</int>
+								<string key="NSContents">15</string>
+								<reference key="NSSupport" ref="458658335"/>
+								<reference key="NSControlView" ref="212510266"/>
+								<bool key="NSDrawsBackground">YES</bool>
+								<reference key="NSBackgroundColor" ref="817069626"/>
+								<reference key="NSTextColor" ref="983142116"/>
+							</object>
+						</object>
+						<object class="NSTextField" id="872605925">
+							<reference key="NSNextResponder" ref="624770116"/>
+							<int key="NSvFlags">256</int>
+							<string key="NSFrame">{{325, 81}, {33, 22}}</string>
+							<reference key="NSSuperview" ref="624770116"/>
+							<int key="NSViewLayerContentsRedrawPolicy">2</int>
+							<bool key="NSEnabled">YES</bool>
+							<object class="NSTextFieldCell" key="NSCell" id="913831617">
+								<int key="NSCellFlags">-1804468671</int>
+								<int key="NSCellFlags2">-2143288320</int>
+								<string key="NSContents">15</string>
+								<reference key="NSSupport" ref="458658335"/>
+								<reference key="NSControlView" ref="872605925"/>
+								<bool key="NSDrawsBackground">YES</bool>
+								<reference key="NSBackgroundColor" ref="817069626"/>
+								<reference key="NSTextColor" ref="983142116"/>
+							</object>
+						</object>
+						<object class="NSTextField" id="968802138">
+							<reference key="NSNextResponder" ref="624770116"/>
+							<int key="NSvFlags">256</int>
+							<string key="NSFrame">{{171, 161}, {154, 17}}</string>
+							<reference key="NSSuperview" ref="624770116"/>
+							<int key="NSViewLayerContentsRedrawPolicy">2</int>
+							<bool key="NSEnabled">YES</bool>
+							<object class="NSTextFieldCell" key="NSCell" id="143773503">
+								<int key="NSCellFlags">604110336</int>
+								<int key="NSCellFlags2">4194304</int>
+								<string key="NSContents">Blank screensaver after</string>
+								<reference key="NSSupport" ref="458658335"/>
+								<reference key="NSControlView" ref="968802138"/>
+								<object class="NSColor" key="NSBackgroundColor" id="493391060">
+									<int key="NSColorSpace">6</int>
+									<string key="NSCatalogName">System</string>
+									<string key="NSColorName">controlColor</string>
+									<object class="NSColor" key="NSColor">
+										<int key="NSColorSpace">3</int>
+										<bytes key="NSWhite">MC42NjY2NjY2NjY3AA</bytes>
+									</object>
+								</object>
+								<object class="NSColor" key="NSTextColor" id="379293580">
+									<int key="NSColorSpace">6</int>
+									<string key="NSCatalogName">System</string>
+									<string key="NSColorName">controlTextColor</string>
+									<reference key="NSColor" ref="94156449"/>
+								</object>
+							</object>
+						</object>
+						<object class="NSTextField" id="184491242">
+							<reference key="NSNextResponder" ref="624770116"/>
+							<int key="NSvFlags">256</int>
+							<string key="NSFrame">{{132, 119}, {193, 34}}</string>
+							<reference key="NSSuperview" ref="624770116"/>
+							<int key="NSViewLayerContentsRedrawPolicy">2</int>
+							<bool key="NSEnabled">YES</bool>
+							<object class="NSTextFieldCell" key="NSCell" id="219923304">
+								<int key="NSCellFlags">604110336</int>
+								<int key="NSCellFlags2">4194304</int>
+								<string key="NSContents">Run overview screensaver for</string>
+								<reference key="NSSupport" ref="458658335"/>
+								<reference key="NSControlView" ref="184491242"/>
+								<reference key="NSBackgroundColor" ref="493391060"/>
+								<reference key="NSTextColor" ref="379293580"/>
+							</object>
+						</object>
+						<object class="NSTextField" id="495795541">
+							<reference key="NSNextResponder" ref="624770116"/>
+							<int key="NSvFlags">256</int>
+							<string key="NSFrame">{{363, 136}, {61, 17}}</string>
+							<reference key="NSSuperview" ref="624770116"/>
+							<int key="NSViewLayerContentsRedrawPolicy">2</int>
+							<bool key="NSEnabled">YES</bool>
+							<object class="NSTextFieldCell" key="NSCell" id="33878766">
+								<int key="NSCellFlags">604110336</int>
+								<int key="NSCellFlags2">4194304</int>
+								<string key="NSContents">minutes</string>
+								<reference key="NSSupport" ref="458658335"/>
+								<reference key="NSControlView" ref="495795541"/>
+								<reference key="NSBackgroundColor" ref="493391060"/>
+								<reference key="NSTextColor" ref="379293580"/>
+							</object>
+						</object>
+						<object class="NSTextField" id="900788261">
+							<reference key="NSNextResponder" ref="624770116"/>
+							<int key="NSvFlags">256</int>
+							<string key="NSFrame">{{363, 161}, {61, 17}}</string>
+							<reference key="NSSuperview" ref="624770116"/>
+							<int key="NSViewLayerContentsRedrawPolicy">2</int>
+							<bool key="NSEnabled">YES</bool>
+							<object class="NSTextFieldCell" key="NSCell" id="1002679904">
+								<int key="NSCellFlags">604110336</int>
+								<int key="NSCellFlags2">4194304</int>
+								<string key="NSContents">minutes</string>
+								<reference key="NSSupport" ref="458658335"/>
+								<reference key="NSControlView" ref="900788261"/>
+								<reference key="NSBackgroundColor" ref="493391060"/>
+								<reference key="NSTextColor" ref="379293580"/>
+							</object>
+						</object>
+						<object class="NSTextField" id="94944884">
+							<reference key="NSNextResponder" ref="624770116"/>
+							<int key="NSvFlags">256</int>
+							<string key="NSFrame">{{363, 111}, {61, 17}}</string>
+							<reference key="NSSuperview" ref="624770116"/>
+							<int key="NSViewLayerContentsRedrawPolicy">2</int>
+							<bool key="NSEnabled">YES</bool>
+							<object class="NSTextFieldCell" key="NSCell" id="191973138">
+								<int key="NSCellFlags">604110336</int>
+								<int key="NSCellFlags2">4194304</int>
+								<string key="NSContents">minutes</string>
+								<reference key="NSSupport" ref="458658335"/>
+								<reference key="NSControlView" ref="94944884"/>
+								<reference key="NSBackgroundColor" ref="493391060"/>
+								<reference key="NSTextColor" ref="379293580"/>
+							</object>
+						</object>
+						<object class="NSTextField" id="796415151">
+							<reference key="NSNextResponder" ref="624770116"/>
+							<int key="NSvFlags">256</int>
+							<string key="NSFrame">{{363, 86}, {61, 17}}</string>
+							<reference key="NSSuperview" ref="624770116"/>
+							<int key="NSViewLayerContentsRedrawPolicy">2</int>
+							<bool key="NSEnabled">YES</bool>
+							<object class="NSTextFieldCell" key="NSCell" id="712693719">
+								<int key="NSCellFlags">604110336</int>
+								<int key="NSCellFlags2">4194304</int>
+								<string key="NSContents">minutes</string>
+								<reference key="NSSupport" ref="458658335"/>
+								<reference key="NSControlView" ref="796415151"/>
+								<reference key="NSBackgroundColor" ref="493391060"/>
+								<reference key="NSTextColor" ref="379293580"/>
+							</object>
+						</object>
+						<object class="NSTextField" id="570244696">
+							<reference key="NSNextResponder" ref="624770116"/>
+							<int key="NSvFlags">256</int>
+							<string key="NSFrame">{{137, 109}, {188, 19}}</string>
+							<reference key="NSSuperview" ref="624770116"/>
+							<int key="NSViewLayerContentsRedrawPolicy">2</int>
+							<bool key="NSEnabled">YES</bool>
+							<object class="NSTextFieldCell" key="NSCell" id="759535663">
+								<int key="NSCellFlags">604110336</int>
+								<int key="NSCellFlags2">4194304</int>
+								<string key="NSContents">Run project screensavers for</string>
+								<reference key="NSSupport" ref="458658335"/>
+								<reference key="NSControlView" ref="570244696"/>
+								<reference key="NSBackgroundColor" ref="493391060"/>
+								<reference key="NSTextColor" ref="379293580"/>
+							</object>
+						</object>
+						<object class="NSTextField" id="1005559079">
+							<reference key="NSNextResponder" ref="624770116"/>
+							<int key="NSvFlags">256</int>
+							<string key="NSFrame">{{49, 81}, {277, 22}}</string>
+							<reference key="NSSuperview" ref="624770116"/>
+							<int key="NSViewLayerContentsRedrawPolicy">2</int>
+							<bool key="NSEnabled">YES</bool>
+							<object class="NSTextFieldCell" key="NSCell" id="96762991">
+								<int key="NSCellFlags">604110336</int>
+								<int key="NSCellFlags2">4194304</int>
+								<string key="NSContents">Switch between project screensavers every</string>
+								<reference key="NSSupport" ref="458658335"/>
+								<reference key="NSControlView" ref="1005559079"/>
+								<reference key="NSBackgroundColor" ref="493391060"/>
+								<reference key="NSTextColor" ref="379293580"/>
+							</object>
+						</object>
+						<object class="NSTextField" id="358636395">
+							<reference key="NSNextResponder" ref="624770116"/>
+							<int key="NSvFlags">256</int>
+							<string key="NSFrame">{{295, 61}, {126, 17}}</string>
+							<reference key="NSSuperview" ref="624770116"/>
+							<int key="NSViewLayerContentsRedrawPolicy">2</int>
+							<bool key="NSEnabled">YES</bool>
+							<object class="NSTextFieldCell" key="NSCell" id="763787811">
+								<int key="NSCellFlags">604110336</int>
+								<int key="NSCellFlags2">4194304</int>
+								<string key="NSContents">Note: zero = never</string>
+								<reference key="NSSupport" ref="458658335"/>
+								<reference key="NSControlView" ref="358636395"/>
+								<reference key="NSBackgroundColor" ref="493391060"/>
+								<reference key="NSTextColor" ref="379293580"/>
+							</object>
+						</object>
+					</object>
+					<string key="NSFrameSize">{442, 246}</string>
+					<reference key="NSSuperview"/>
+					<int key="NSViewLayerContentsRedrawPolicy">2</int>
+				</object>
+				<string key="NSScreenRect">{{0, 0}, {1024, 746}}</string>
+				<string key="NSMinSize">{213, 129}</string>
+				<string key="NSMaxSize">{1.79769e+308, 1.79769e+308}</string>
+			</object>
+		</object>
+		<object class="IBObjectContainer" key="IBDocument.Objects">
+			<object class="NSMutableArray" key="connectionRecords">
+				<bool key="EncodedWithXMLCoder">YES</bool>
+				<object class="IBConnectionRecord">
+					<object class="IBActionConnection" key="connection">
+						<string key="label">closeSheetCancel:</string>
+						<reference key="source" ref="670568770"/>
+						<reference key="destination" ref="325440156"/>
+					</object>
+					<int key="connectionID">14</int>
+				</object>
+				<object class="IBConnectionRecord">
+					<object class="IBActionConnection" key="connection">
+						<string key="label">closeSheetSave:</string>
+						<reference key="source" ref="670568770"/>
+						<reference key="destination" ref="615763160"/>
+					</object>
+					<int key="connectionID">15</int>
+				</object>
+				<object class="IBConnectionRecord">
+					<object class="IBOutletConnection" key="connection">
+						<string key="label">mBlankingTimeTextField</string>
+						<reference key="source" ref="670568770"/>
+						<reference key="destination" ref="978300991"/>
+					</object>
+					<int key="connectionID">16</int>
+				</object>
+				<object class="IBConnectionRecord">
+					<object class="IBOutletConnection" key="connection">
+						<string key="label">mConfigureSheet</string>
+						<reference key="source" ref="670568770"/>
+						<reference key="destination" ref="1030563092"/>
+					</object>
+					<int key="connectionID">17</int>
+				</object>
+				<object class="IBConnectionRecord">
+					<object class="IBOutletConnection" key="connection">
+						<string key="label">mGoToBlankCheckbox</string>
+						<reference key="source" ref="670568770"/>
+						<reference key="destination" ref="297710802"/>
+					</object>
+					<int key="connectionID">18</int>
+				</object>
+				<object class="IBConnectionRecord">
+					<object class="IBOutletConnection" key="connection">
+						<string key="label">mDefaultPeriodTextField</string>
+						<reference key="source" ref="670568770"/>
+						<reference key="destination" ref="293672032"/>
+					</object>
+					<int key="connectionID">47</int>
+				</object>
+				<object class="IBConnectionRecord">
+					<object class="IBOutletConnection" key="connection">
+						<string key="label">mSciencePeriodTextField</string>
+						<reference key="source" ref="670568770"/>
+						<reference key="destination" ref="212510266"/>
+					</object>
+					<int key="connectionID">48</int>
+				</object>
+				<object class="IBConnectionRecord">
+					<object class="IBOutletConnection" key="connection">
+						<string key="label">mChangePeriodTextField</string>
+						<reference key="source" ref="670568770"/>
+						<reference key="destination" ref="872605925"/>
+					</object>
+					<int key="connectionID">49</int>
+				</object>
+			</object>
+			<object class="IBMutableOrderedSet" key="objectRecords">
+				<object class="NSArray" key="orderedObjects">
+					<bool key="EncodedWithXMLCoder">YES</bool>
+					<object class="IBObjectRecord">
+						<int key="objectID">0</int>
+						<reference key="object" ref="0"/>
+						<reference key="children" ref="372676668"/>
+						<nil key="parent"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">-2</int>
+						<reference key="object" ref="670568770"/>
+						<reference key="parent" ref="0"/>
+						<string key="objectName">File's Owner</string>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">-1</int>
+						<reference key="object" ref="947836728"/>
+						<reference key="parent" ref="0"/>
+						<string key="objectName">First Responder</string>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">7</int>
+						<reference key="object" ref="1030563092"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<reference ref="624770116"/>
+						</object>
+						<reference key="parent" ref="0"/>
+						<string key="objectName">Panel</string>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">8</int>
+						<reference key="object" ref="624770116"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<reference ref="297710802"/>
+							<reference ref="978300991"/>
+							<reference ref="968802138"/>
+							<reference ref="495795541"/>
+							<reference ref="900788261"/>
+							<reference ref="94944884"/>
+							<reference ref="1005559079"/>
+							<reference ref="325440156"/>
+							<reference ref="615763160"/>
+							<reference ref="212510266"/>
+							<reference ref="872605925"/>
+							<reference ref="796415151"/>
+							<reference ref="570244696"/>
+							<reference ref="293672032"/>
+							<reference ref="358636395"/>
+							<reference ref="184491242"/>
+						</object>
+						<reference key="parent" ref="1030563092"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">9</int>
+						<reference key="object" ref="325440156"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<reference ref="685036247"/>
+						</object>
+						<reference key="parent" ref="624770116"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">10</int>
+						<reference key="object" ref="615763160"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<reference ref="592747210"/>
+						</object>
+						<reference key="parent" ref="624770116"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">11</int>
+						<reference key="object" ref="297710802"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<reference ref="547356856"/>
+						</object>
+						<reference key="parent" ref="624770116"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">12</int>
+						<reference key="object" ref="978300991"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<reference ref="835006794"/>
+						</object>
+						<reference key="parent" ref="624770116"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">13</int>
+						<reference key="object" ref="968802138"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<reference ref="143773503"/>
+						</object>
+						<reference key="parent" ref="624770116"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">20</int>
+						<reference key="object" ref="685036247"/>
+						<reference key="parent" ref="325440156"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">21</int>
+						<reference key="object" ref="592747210"/>
+						<reference key="parent" ref="615763160"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">22</int>
+						<reference key="object" ref="547356856"/>
+						<reference key="parent" ref="297710802"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">23</int>
+						<reference key="object" ref="835006794"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+						</object>
+						<reference key="parent" ref="978300991"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">24</int>
+						<reference key="object" ref="143773503"/>
+						<reference key="parent" ref="968802138"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">-3</int>
+						<reference key="object" ref="872796012"/>
+						<reference key="parent" ref="0"/>
+						<string key="objectName">Application</string>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">27</int>
+						<reference key="object" ref="184491242"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<reference ref="219923304"/>
+						</object>
+						<reference key="parent" ref="624770116"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">28</int>
+						<reference key="object" ref="219923304"/>
+						<reference key="parent" ref="184491242"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">29</int>
+						<reference key="object" ref="570244696"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<reference ref="759535663"/>
+						</object>
+						<reference key="parent" ref="624770116"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">30</int>
+						<reference key="object" ref="759535663"/>
+						<reference key="parent" ref="570244696"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">31</int>
+						<reference key="object" ref="1005559079"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<reference ref="96762991"/>
+						</object>
+						<reference key="parent" ref="624770116"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">32</int>
+						<reference key="object" ref="96762991"/>
+						<reference key="parent" ref="1005559079"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">33</int>
+						<reference key="object" ref="293672032"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<reference ref="124480473"/>
+						</object>
+						<reference key="parent" ref="624770116"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">34</int>
+						<reference key="object" ref="124480473"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+						</object>
+						<reference key="parent" ref="293672032"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">35</int>
+						<reference key="object" ref="212510266"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<reference ref="1053206695"/>
+						</object>
+						<reference key="parent" ref="624770116"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">36</int>
+						<reference key="object" ref="1053206695"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+						</object>
+						<reference key="parent" ref="212510266"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">37</int>
+						<reference key="object" ref="872605925"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<reference ref="913831617"/>
+						</object>
+						<reference key="parent" ref="624770116"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">38</int>
+						<reference key="object" ref="913831617"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+						</object>
+						<reference key="parent" ref="872605925"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">39</int>
+						<reference key="object" ref="495795541"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<reference ref="33878766"/>
+						</object>
+						<reference key="parent" ref="624770116"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">40</int>
+						<reference key="object" ref="33878766"/>
+						<reference key="parent" ref="495795541"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">41</int>
+						<reference key="object" ref="94944884"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<reference ref="191973138"/>
+						</object>
+						<reference key="parent" ref="624770116"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">42</int>
+						<reference key="object" ref="191973138"/>
+						<reference key="parent" ref="94944884"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">43</int>
+						<reference key="object" ref="796415151"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<reference ref="712693719"/>
+						</object>
+						<reference key="parent" ref="624770116"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">44</int>
+						<reference key="object" ref="712693719"/>
+						<reference key="parent" ref="796415151"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">45</int>
+						<reference key="object" ref="900788261"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<reference ref="1002679904"/>
+						</object>
+						<reference key="parent" ref="624770116"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">46</int>
+						<reference key="object" ref="1002679904"/>
+						<reference key="parent" ref="900788261"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">54</int>
+						<reference key="object" ref="358636395"/>
+						<object class="NSMutableArray" key="children">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<reference ref="763787811"/>
+						</object>
+						<reference key="parent" ref="624770116"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">55</int>
+						<reference key="object" ref="763787811"/>
+						<reference key="parent" ref="358636395"/>
+					</object>
+				</object>
+			</object>
+			<object class="NSMutableDictionary" key="flattenedProperties">
+				<bool key="EncodedWithXMLCoder">YES</bool>
+				<object class="NSArray" key="dict.sortedKeys">
+					<bool key="EncodedWithXMLCoder">YES</bool>
+					<string>-3.IBPluginDependency</string>
+					<string>10.IBPluginDependency</string>
+					<string>10.ImportedFromIB2</string>
+					<string>11.IBPluginDependency</string>
+					<string>11.ImportedFromIB2</string>
+					<string>12.IBPluginDependency</string>
+					<string>12.ImportedFromIB2</string>
+					<string>13.IBPluginDependency</string>
+					<string>13.ImportedFromIB2</string>
+					<string>20.IBPluginDependency</string>
+					<string>21.IBPluginDependency</string>
+					<string>22.IBPluginDependency</string>
+					<string>23.IBPluginDependency</string>
+					<string>24.IBPluginDependency</string>
+					<string>27.IBPluginDependency</string>
+					<string>27.ImportedFromIB2</string>
+					<string>28.IBPluginDependency</string>
+					<string>29.IBPluginDependency</string>
+					<string>29.ImportedFromIB2</string>
+					<string>30.IBPluginDependency</string>
+					<string>31.IBPluginDependency</string>
+					<string>31.ImportedFromIB2</string>
+					<string>32.IBPluginDependency</string>
+					<string>33.IBPluginDependency</string>
+					<string>33.ImportedFromIB2</string>
+					<string>34.IBPluginDependency</string>
+					<string>35.IBPluginDependency</string>
+					<string>35.ImportedFromIB2</string>
+					<string>36.IBPluginDependency</string>
+					<string>37.IBPluginDependency</string>
+					<string>37.ImportedFromIB2</string>
+					<string>38.IBPluginDependency</string>
+					<string>39.IBPluginDependency</string>
+					<string>39.ImportedFromIB2</string>
+					<string>40.IBPluginDependency</string>
+					<string>41.IBPluginDependency</string>
+					<string>41.ImportedFromIB2</string>
+					<string>42.IBPluginDependency</string>
+					<string>43.IBPluginDependency</string>
+					<string>43.ImportedFromIB2</string>
+					<string>44.IBPluginDependency</string>
+					<string>45.IBPluginDependency</string>
+					<string>45.ImportedFromIB2</string>
+					<string>46.IBPluginDependency</string>
+					<string>54.IBPluginDependency</string>
+					<string>54.ImportedFromIB2</string>
+					<string>55.IBPluginDependency</string>
+					<string>7.IBEditorWindowLastContentRect</string>
+					<string>7.IBPluginDependency</string>
+					<string>7.IBWindowTemplateEditedContentRect</string>
+					<string>7.ImportedFromIB2</string>
+					<string>7.windowTemplate.hasMinSize</string>
+					<string>7.windowTemplate.minSize</string>
+					<string>8.IBPluginDependency</string>
+					<string>8.ImportedFromIB2</string>
+					<string>9.IBPluginDependency</string>
+					<string>9.ImportedFromIB2</string>
+				</object>
+				<object class="NSMutableArray" key="dict.values">
+					<bool key="EncodedWithXMLCoder">YES</bool>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<boolean value="YES"/>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<boolean value="YES"/>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<boolean value="YES"/>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<boolean value="YES"/>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<boolean value="YES"/>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<boolean value="YES"/>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<boolean value="YES"/>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<boolean value="YES"/>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<boolean value="YES"/>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<boolean value="YES"/>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<boolean value="YES"/>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<boolean value="YES"/>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<boolean value="YES"/>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<boolean value="YES"/>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<boolean value="YES"/>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<string>{{226, 725}, {442, 246}}</string>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<string>{{226, 725}, {442, 246}}</string>
+					<boolean value="YES"/>
+					<boolean value="YES"/>
+					<string>{213, 107}</string>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<boolean value="YES"/>
+					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
+					<boolean value="YES"/>
+				</object>
+			</object>
+			<object class="NSMutableDictionary" key="unlocalizedProperties">
+				<bool key="EncodedWithXMLCoder">YES</bool>
+				<reference key="dict.sortedKeys" ref="0"/>
+				<object class="NSMutableArray" key="dict.values">
+					<bool key="EncodedWithXMLCoder">YES</bool>
+				</object>
+			</object>
+			<nil key="activeLocalization"/>
+			<object class="NSMutableDictionary" key="localizations">
+				<bool key="EncodedWithXMLCoder">YES</bool>
+				<reference key="dict.sortedKeys" ref="0"/>
+				<object class="NSMutableArray" key="dict.values">
+					<bool key="EncodedWithXMLCoder">YES</bool>
+				</object>
+			</object>
+			<nil key="sourceID"/>
+			<int key="maxID">55</int>
+		</object>
+		<object class="IBClassDescriber" key="IBDocument.Classes">
+			<object class="NSMutableArray" key="referencedPartialClassDescriptions">
+				<bool key="EncodedWithXMLCoder">YES</bool>
+				<object class="IBPartialClassDescription">
+					<string key="className">BOINC_Saver_ModuleView</string>
+					<string key="superclassName">ScreenSaverView</string>
+					<object class="NSMutableDictionary" key="actions">
+						<bool key="EncodedWithXMLCoder">YES</bool>
+						<object class="NSArray" key="dict.sortedKeys">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<string>closeSheetCancel:</string>
+							<string>closeSheetSave:</string>
+						</object>
+						<object class="NSMutableArray" key="dict.values">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<string>id</string>
+							<string>id</string>
+						</object>
+					</object>
+					<object class="NSMutableDictionary" key="outlets">
+						<bool key="EncodedWithXMLCoder">YES</bool>
+						<object class="NSArray" key="dict.sortedKeys">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<string>mBlankingTimeTextField</string>
+							<string>mChangePeriodTextField</string>
+							<string>mConfigureSheet</string>
+							<string>mDefaultPeriodTextField</string>
+							<string>mGoToBlankCheckbox</string>
+							<string>mSciencePeriodTextField</string>
+						</object>
+						<object class="NSMutableArray" key="dict.values">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<string>NSTextField</string>
+							<string>NSTextField</string>
+							<string>id</string>
+							<string>NSTextField</string>
+							<string>NSButton</string>
+							<string>NSTextField</string>
+						</object>
+					</object>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBProjectSource</string>
+						<string key="minorKey">../clientscr/Mac_Saver_ModuleView.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">BOINC_Saver_ModuleView</string>
+					<string key="superclassName">ScreenSaverView</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBUserSource</string>
+						<string key="minorKey"/>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">FirstResponder</string>
+					<string key="superclassName">NSObject</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBUserSource</string>
+						<string key="minorKey"/>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSButton</string>
+					<string key="superclassName">NSControl</string>
+					<object class="NSMutableDictionary" key="actions">
+						<bool key="EncodedWithXMLCoder">YES</bool>
+						<object class="NSArray" key="dict.sortedKeys">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<string>closeSheetCancel:</string>
+							<string>closeSheetSave:</string>
+						</object>
+						<object class="NSMutableArray" key="dict.values">
+							<bool key="EncodedWithXMLCoder">YES</bool>
+							<string>id</string>
+							<string>id</string>
+						</object>
+					</object>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBUserSource</string>
+						<string key="minorKey"/>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">ScreenSaverView</string>
+					<string key="superclassName">NSView</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBUserSource</string>
+						<string key="minorKey"/>
+					</object>
+				</object>
+			</object>
+			<object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
+				<bool key="EncodedWithXMLCoder">YES</bool>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSActionCell</string>
+					<string key="superclassName">NSCell</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSActionCell.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSApplication</string>
+					<string key="superclassName">NSResponder</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier" id="286128587">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSApplication.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSApplication</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier" id="897183962">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSApplicationScripting.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSApplication</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier" id="422329139">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSColorPanel.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSApplication</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSHelpManager.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSApplication</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSPageLayout.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSApplication</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSUserInterfaceItemSearching.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSButton</string>
+					<string key="superclassName">NSControl</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSButton.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSButtonCell</string>
+					<string key="superclassName">NSActionCell</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSButtonCell.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSCell</string>
+					<string key="superclassName">NSObject</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSCell.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSControl</string>
+					<string key="superclassName">NSView</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier" id="665421167">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSControl.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSMenu</string>
+					<string key="superclassName">NSObject</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier" id="319235680">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSMenu.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSObject</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSAccessibility.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSObject</string>
+					<reference key="sourceIdentifier" ref="286128587"/>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSObject</string>
+					<reference key="sourceIdentifier" ref="897183962"/>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSObject</string>
+					<reference key="sourceIdentifier" ref="422329139"/>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSObject</string>
+					<reference key="sourceIdentifier" ref="665421167"/>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSObject</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSDictionaryController.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSObject</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSDragging.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSObject</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSFontManager.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSObject</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSFontPanel.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSObject</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSKeyValueBinding.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSObject</string>
+					<reference key="sourceIdentifier" ref="319235680"/>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSObject</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSNibLoading.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSObject</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSOutlineView.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSObject</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSPasteboard.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSObject</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSSavePanel.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSObject</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSTableView.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSObject</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSToolbarItem.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSObject</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier" id="249373578">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSView.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSPanel</string>
+					<string key="superclassName">NSWindow</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSPanel.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSResponder</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSInterfaceStyle.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSResponder</string>
+					<string key="superclassName">NSObject</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSResponder.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSTextField</string>
+					<string key="superclassName">NSControl</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSTextField.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSTextFieldCell</string>
+					<string key="superclassName">NSActionCell</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSTextFieldCell.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSView</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSClipView.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSView</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSMenuItem.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSView</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSRulerView.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSView</string>
+					<string key="superclassName">NSResponder</string>
+					<reference key="sourceIdentifier" ref="249373578"/>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSWindow</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSDrawer.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSWindow</string>
+					<string key="superclassName">NSResponder</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSWindow.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">NSWindow</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">AppKit.framework/Headers/NSWindowScripting.h</string>
+					</object>
+				</object>
+				<object class="IBPartialClassDescription">
+					<string key="className">ScreenSaverView</string>
+					<string key="superclassName">NSView</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBFrameworkSource</string>
+						<string key="minorKey">ScreenSaver.framework/Headers/ScreenSaverView.h</string>
+					</object>
+				</object>
+			</object>
+		</object>
+		<int key="IBDocument.localizationMode">0</int>
+		<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies">
+			<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
+			<integer value="1060" key="NS.object.0"/>
+		</object>
+		<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
+			<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
+			<integer value="1040" key="NS.object.0"/>
+		</object>
+		<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
+			<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
+			<integer value="3000" key="NS.object.0"/>
+		</object>
+		<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
+		<string key="IBDocument.LastKnownRelativeProjectPath">../../mac_build/boinc.xcodeproj</string>
+		<int key="IBDocument.defaultPropertyAccessControl">3</int>
+	</data>
+</archive>
diff --git a/clientscr/res/BOINCSaver.nib/keyedobjects.nib b/clientscr/res/BOINCSaver.nib/keyedobjects.nib
index 80228f3..c8c7459 100755
Binary files a/clientscr/res/BOINCSaver.nib/keyedobjects.nib and b/clientscr/res/BOINCSaver.nib/keyedobjects.nib differ
diff --git a/clientscr/screensaver.cpp b/clientscr/screensaver.cpp
index cd177fe..8bddea6 100644
--- a/clientscr/screensaver.cpp
+++ b/clientscr/screensaver.cpp
@@ -15,9 +15,12 @@
 // You should have received a copy of the GNU Lesser General Public License
 // along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
 
+// Screensaver coordinator.
+// Alternates between a "default screensaver"
+// and application graphics for running jobs.
+// Periods are configurable via config file "ss_config.xml".
+// See http://boinc.berkeley.edu/trac/wiki/ScreensaverEnhancements
 
-// System Includes
-//
 #ifdef _WIN32
 #include "boinc_win.h"
 #endif
@@ -471,7 +474,6 @@ void *CScreensaver::DataManagementProc()
     int             exit_status                 = 0;
     
     char*           default_ss_dir_path         = NULL;
-    char*           default_data_dir_path       = NULL;
     char            full_path[1024];
 
     BOINCTRACE(_T("CScreensaver::DataManagementProc - Display screen saver loading message\n"));
@@ -488,15 +490,10 @@ void *CScreensaver::DataManagementProc()
     m_bScience_gfx_running = false;
     m_bDefault_gfx_running = false;
     m_bShow_default_ss_first = false;
-    m_fGFXDefaultPeriod = GFX_DEFAULT_PERIOD;
-    m_fGFxSciencePeriod = GFX_SCIENCE_PERIOD;
-    m_fGFXChangePeriod = GFX_CHANGE_PERIOD;
 
 #ifdef __APPLE__
-    default_data_dir_path = "/Library/Application Support/BOINC Data";
-    default_ss_dir_path = default_data_dir_path;
+    default_ss_dir_path = "/Library/Application Support/BOINC Data";
 #else
-    default_data_dir_path = (char*)m_strBOINCDataDirectory.c_str();
     default_ss_dir_path = (char*)m_strBOINCInstallDirectory.c_str();
 #endif
 
@@ -504,8 +501,6 @@ void *CScreensaver::DataManagementProc()
     strlcat(full_path, PATH_SEPARATOR, sizeof(full_path));
     strlcat(full_path, THE_DEFAULT_SS_EXECUTABLE, sizeof(full_path));
     
-    GetDisplayPeriods(default_data_dir_path);
-    
     if (boinc_file_exists(full_path)) {
         m_bDefault_ss_exists = true;
     } else {
@@ -555,7 +550,7 @@ void *CScreensaver::DataManagementProc()
         // ***
 
         // Blank screen saver?
-        if ((m_dwBlankScreen) && (time(0) > m_dwBlankTime)) {
+        if ((m_dwBlankScreen) && (time(0) > m_dwBlankTime) && (m_dwBlankTime > 0)) {
             BOINCTRACE(_T("CScreensaver::DataManagementProc - Time to blank\n"));
             SetError(FALSE, SCRAPPERR_SCREENSAVERBLANKED);    // Blanked - hide moving BOINC logo
             m_QuitDataManagementProc = true;
@@ -595,8 +590,8 @@ void *CScreensaver::DataManagementProc()
         }
         
         // Time to switch to default graphics phase?
-        if (m_bDefault_ss_exists && (ss_phase == SCIENCE_SS_PHASE)) {
-            if (science_phase_start_time && ((dtime() - science_phase_start_time) > m_fGFxSciencePeriod)) {
+        if (m_bDefault_ss_exists && (ss_phase == SCIENCE_SS_PHASE) && (m_fGFXDefaultPeriod > 0)) {
+            if (science_phase_start_time && ((dtime() - science_phase_start_time) > m_fGFXSciencePeriod)) {
                 if (!m_bDefault_gfx_running) {
                     switch_to_default_gfx = true;
                 }
@@ -612,7 +607,7 @@ void *CScreensaver::DataManagementProc()
         }
         
         // Time to switch to science graphics phase?
-        if ((ss_phase == DEFAULT_SS_PHASE) && m_bConnected) {
+        if ((ss_phase == DEFAULT_SS_PHASE) && m_bConnected && (m_fGFXSciencePeriod > 0)) {
             if (default_phase_start_time && 
                     ((dtime() - default_phase_start_time + default_saver_duration_in_science_phase) 
                     > m_fGFXDefaultPeriod)) {
@@ -630,7 +625,7 @@ void *CScreensaver::DataManagementProc()
         }
 
         // Core client suspended?
-        if (suspend_reason && !(suspend_reason & SUSPEND_REASON_CPU_USAGE_LIMIT)) {
+        if (suspend_reason && !(suspend_reason & SUSPEND_REASON_CPU_THROTTLE)) {
             SetError(TRUE, m_hrError);          // No GFX App is running: show moving BOINC logo
             if (m_bDefault_ss_exists && !m_bDefault_gfx_running) {
                 switch_to_default_gfx = true;
@@ -686,7 +681,7 @@ void *CScreensaver::DataManagementProc()
                 // Is the current graphics app's associated task still running?
                 
                 if ((m_hGraphicsApplication) || (graphics_app_result_ptr)) {
-                    iResultCount = results.results.size();
+                    iResultCount = (int)results.results.size();
                     graphics_app_result_ptr = NULL;
 
                     // Find the current task in the new results vector (if it still exists)
@@ -718,7 +713,7 @@ void *CScreensaver::DataManagementProc()
                         }
                     }
 
-                     if (last_change_time && ((dtime() - last_change_time) > m_fGFXChangePeriod)) {
+                     if (last_change_time && (m_fGFXChangePeriod > 0) && ((dtime() - last_change_time) > m_fGFXChangePeriod) ) {
                         if (count_active_graphic_apps(results, previous_result_ptr) > 0) {
                             if (previous_result_ptr) {
                                 BOINCTRACE(_T("CScreensaver::DataManagementProc - time to change: %s / %s\n"), 
@@ -868,12 +863,25 @@ bool CScreensaver::HasProcessExited(pid_t pid, int &exitCode) {
 #endif
 
 
-void CScreensaver::GetDisplayPeriods(char *dir_path) {
-    char buf[1024];
-    FILE* f;
-    MIOFILE mf;
+void CScreensaver::GetDefaultDisplayPeriods(struct ss_periods &periods)
+{
+    char*           default_data_dir_path = NULL;
+    char            buf[1024];
+    FILE*           f;
+    MIOFILE         mf;
+
+    periods.GFXDefaultPeriod = GFX_DEFAULT_PERIOD;
+    periods.GFXSciencePeriod = GFX_SCIENCE_PERIOD;
+    periods.GFXChangePeriod = GFX_CHANGE_PERIOD;
+    periods.Show_default_ss_first = false;
+
+#ifdef __APPLE__
+    default_data_dir_path = "/Library/Application Support/BOINC Data";
+#else
+    default_data_dir_path = (char*)m_strBOINCDataDirectory.c_str();
+#endif
 
-    strlcpy(buf, dir_path, sizeof(buf));
+    strlcpy(buf, default_data_dir_path, sizeof(buf));
     strlcat(buf, PATH_SEPARATOR, sizeof(buf));
     strlcat(buf, THE_SS_CONFIG_FILE, sizeof(buf));
 
@@ -884,14 +892,14 @@ void CScreensaver::GetDisplayPeriods(char *dir_path) {
     XML_PARSER xp(&mf);
 
     while (mf.fgets(buf, sizeof(buf))) {
-        if (parse_bool(buf, "default_ss_first", m_bShow_default_ss_first)) continue;
-        if (parse_double(buf, "<default_gfx_duration>", m_fGFXDefaultPeriod)) continue;
-        if (parse_double(buf, "<science_gfx_duration>", m_fGFxSciencePeriod)) continue;
-        if (parse_double(buf, "<science_gfx_change_interval>", m_fGFXChangePeriod)) continue;
+        if (parse_bool(buf, "default_ss_first", periods.Show_default_ss_first)) continue;
+        if (parse_double(buf, "<default_gfx_duration>", periods.GFXDefaultPeriod)) continue;
+        if (parse_double(buf, "<science_gfx_duration>", periods.GFXSciencePeriod)) continue;
+        if (parse_double(buf, "<science_gfx_change_interval>", periods.GFXChangePeriod)) continue;
         
     }
     fclose(f);
     
-    BOINCTRACE(_T("CScreensaver::GetDisplayPeriods: m_bShow_default_ss_first=%d, m_fGFXDefaultPeriod=%f, m_fGFxSciencePeriod=%f, m_fGFXChangePeriod=%f\n"),
-                    (int)m_bShow_default_ss_first, m_fGFXDefaultPeriod, m_fGFxSciencePeriod, m_fGFXChangePeriod);
+    BOINCTRACE(_T("CScreensaver::GetDefaultDisplayPeriods: m_bShow_default_ss_first=%d, m_fGFXDefaultPeriod=%f, m_fGFXSciencePeriod=%f, m_fGFXChangePeriod=%f\n"),
+                    (int)periods.Show_default_ss_first, periods.GFXDefaultPeriod, periods.GFXSciencePeriod, periods.GFXChangePeriod);
 }
diff --git a/clientscr/screensaver.h b/clientscr/screensaver.h
index 6c6f755..1e27b9c 100644
--- a/clientscr/screensaver.h
+++ b/clientscr/screensaver.h
@@ -20,6 +20,7 @@
 #define __SCREENSAVER_H__
 
 // Default values, overriden by screensaver config file ss_config.xml
+#define GFX_BLANK_PERIOD 0     /* 0 minutes */
 #define GFX_DEFAULT_PERIOD 120 /* if default OpenGL screensaver exists, display it for 2 minutes */
 #define GFX_SCIENCE_PERIOD 600 /* Display various science graphics apps for 10 minutes */
 #define GFX_CHANGE_PERIOD 300  /* if > 1 CPUs, change screensaver every 5 minutes */
@@ -51,6 +52,7 @@ enum SS_PHASE {
 // The following are still used by the Mac:
 #define SCRAPPERR_BOINCSCREENSAVERLOADING                   0x82000008
 #define SCRAPPERR_SCREENSAVERBLANKED                        0x82000012
+
 // The following are new codes used by the Mac:
 #define SCRAPPERR_CANTLAUNCHDEFAULTGFXAPP                   0x82000014
 #define SCRAPPERR_DEFAULTGFXAPPCANTCONNECT                  0x82000015
diff --git a/clientscr/screensaver_win.cpp b/clientscr/screensaver_win.cpp
index bea85f5..236f256 100644
--- a/clientscr/screensaver_win.cpp
+++ b/clientscr/screensaver_win.cpp
@@ -21,14 +21,6 @@
 //
 
 #include "boinc_win.h"
-
-#include <windowsx.h>
-#include <mmsystem.h>
-#include <regstr.h>
-#include <strsafe.h>
-#include <mmsystem.h>
-#define COMPILE_MULTIMON_STUBS
-
 #include "boinc_ss.h"
 #include "diagnostics.h"
 #include "common_defs.h"
@@ -37,12 +29,11 @@
 #include "screensaver.h"
 #include "screensaver_win.h"
 
-#ifdef _DEBUG
+#ifndef UNUSED
 #define UNUSED(x)
-#else
-#define UNUSED(x) x
 #endif
 
+
 static CScreensaver*            gspScreensaver = NULL;
 
 const UINT                      WM_SETTIMER = RegisterWindowMessage(TEXT("BOINCSetTimer"));
@@ -50,6 +41,17 @@ const UINT                      WM_INTERRUPTSAVER = RegisterWindowMessage(TEXT("
 const UINT                      WM_BOINCSFW = RegisterWindowMessage(TEXT("BOINCSetForegroundWindow"));
 
 
+#define REG_ENABLE_BLANK        _T("Blank")
+#define REG_BLANK_TIME          _T("Blank Time")
+#define REG_DEFAULT_TIME        _T("Default Time")
+#define REG_RUN_TIME            _T("Run Time")
+#define REG_SWITCH_TIME         _T("Switch Time")
+
+
+#define MAXSLIDERTIC            8     // Zero indexed arrays
+const DWORD                     dwTableSliderPositionToTime[] = {1, 2, 5, 10, 15, 30, 45, 60, 0};
+
+
 INT WINAPI WinMain(
     HINSTANCE hInstance, HINSTANCE UNUSED(hPrevInstance), LPSTR UNUSED(lpCmdLine), int UNUSED(nCmdShow)
 ) {
@@ -57,8 +59,6 @@ INT WINAPI WinMain(
     CScreensaver BOINCSS;
     int          retval;
     WSADATA      wsdata;
-    DWORD        dwVal;
-    DWORD        dwSize = sizeof(dwVal); 
 
 
 #ifdef _DEBUG
@@ -83,6 +83,12 @@ INT WINAPI WinMain(
     // Initialize the CRT random number generator.
     srand((unsigned int)time(0));
 
+    // Initialize Windows Common Controls
+    INITCOMMONCONTROLSEX InitCtrls;
+    InitCtrls.dwSize = sizeof(InitCtrls);
+    InitCtrls.dwICC = ICC_WIN95_CLASSES;
+    InitCommonControlsEx(&InitCtrls);
+
     // Initialize the Windows sockets interface.
     retval = WSAStartup(MAKEWORD(1, 1), &wsdata);
     if (retval) {
@@ -156,7 +162,7 @@ CScreensaver::CScreensaver() {
 HRESULT CScreensaver::Create(HINSTANCE hInstance) {
     HRESULT hr;
     BOOL    bReturnValue;
-
+    struct ss_periods periods;
     m_hInstance = hInstance;
 
     // Parse the command line and do the appropriate thing
@@ -174,39 +180,72 @@ HRESULT CScreensaver::Create(HINSTANCE hInstance) {
     // Enumerate Monitors
     EnumMonitors();
 
+    // Get project-defined default values for GFXDefaultPeriod, GFXSciencePeriod, GFXChangePeriod
+    GetDefaultDisplayPeriods(periods);
+    m_bShow_default_ss_first = periods.Show_default_ss_first;
 
     // Retrieve the locations of the install directory and data directory
 	bReturnValue = UtilGetRegDirectoryStr(_T("DATADIR"), m_strBOINCDataDirectory);
-    BOINCTRACE("CScreensaver::Create - BOINC Data Directory '%s'\n", m_strBOINCDataDirectory.c_str());
 	bReturnValue = UtilGetRegDirectoryStr(_T("INSTALLDIR"), m_strBOINCInstallDirectory);
-    BOINCTRACE("CScreensaver::Create - BOINC Install Directory '%s'\n", m_strBOINCInstallDirectory.c_str());
 
 
-    // Retrieve the blank screen flag so we can determine if we are
-    // suppose to actually blank the screen at some point.
-	bReturnValue = UtilGetRegKey(REG_BLANK_NAME, m_dwBlankScreen);
-    BOINCTRACE("CScreensaver::Create - Get Reg Key REG_BLANK_NAME return value '%d'\n", bReturnValue);
-	if (!bReturnValue) m_dwBlankScreen = 0;
+    // Get the last set of saved values, if not set
+    // use the configuration file, if not set, use defaults.
+    // Normalize on Seconds...
+    if (!UtilGetRegKey(REG_ENABLE_BLANK, m_dwBlankScreen)) {
+        m_dwBlankScreen = 0;
+    }
+    if (!UtilGetRegKey(REG_BLANK_TIME, m_dwBlankTime)) {
+        m_dwBlankTime = GFX_BLANK_PERIOD;
+    } else {
+        // Registry stores minutes
+        m_dwBlankTime *= 60;
+    }
+    if (!UtilGetRegKey(REG_DEFAULT_TIME, m_dwDefaultTime)) {
+        m_dwDefaultTime = (DWORD)periods.GFXDefaultPeriod;
+    } else {
+        // Registry stores minutes
+        m_dwDefaultTime *= 60;
+    }
+    if (!UtilGetRegKey(REG_RUN_TIME, m_dwRunTime)) {
+        m_dwRunTime = (DWORD)periods.GFXSciencePeriod;
+    } else {
+        // Registry stores minutes
+        m_dwRunTime *= 60;
+    }
+    if (!UtilGetRegKey(REG_SWITCH_TIME, m_dwSwitchTime)) {
+        m_dwSwitchTime = (DWORD)periods.GFXChangePeriod;
+    } else {
+        // Registry stores minutes
+        m_dwSwitchTime *= 60;
+    }
+
+    // Set the legacy value if needed
+    if (!m_dwBlankScreen) {
+        m_dwBlankTime = 0;
+    }
 
-    // Retrieve the blank screen timeout
-	// make sure you check return value of registry queries
-	// in case the item in question doesn't happen to exist.
-	bReturnValue = UtilGetRegKey(REG_BLANK_TIME, m_dwBlankTime);
-    BOINCTRACE("CScreensaver::Create - Get Reg Key REG_BLANK_TIME return value '%d'\n", bReturnValue);
-	if (!bReturnValue) m_dwBlankTime = 5;
+    // Convert values as stored into floating point values to be used
+    //   at runtime
+    m_fGFXDefaultPeriod = (double)m_dwDefaultTime;
+    m_fGFXSciencePeriod = (double)m_dwRunTime;
+    m_fGFXChangePeriod = (double)m_dwSwitchTime;
 
     // Save the value back to the registry in case this is the first
     // execution and so we need the default value later.
-	bReturnValue = UtilSetRegKey(REG_BLANK_NAME, m_dwBlankScreen);
-    BOINCTRACE("CScreensaver::Create - Set Reg Key REG_BLANK_NAME return value '%d'\n", bReturnValue);
-
-	bReturnValue = UtilSetRegKey(REG_BLANK_TIME, m_dwBlankTime);
-    BOINCTRACE("CScreensaver::Create - Set Reg Key REG_BLANK_TIME return value '%d'\n", bReturnValue);
+    // Store in minutes
+    UtilSetRegKey(REG_ENABLE_BLANK, m_dwBlankScreen);
+    UtilSetRegKey(REG_BLANK_TIME, m_dwBlankTime ? m_dwBlankTime / 60 : 0);
+    UtilSetRegKey(REG_DEFAULT_TIME, m_dwDefaultTime ? m_dwDefaultTime / 60 : 0);
+    UtilSetRegKey(REG_RUN_TIME, m_dwRunTime ? m_dwRunTime / 60 : 0);
+    UtilSetRegKey(REG_SWITCH_TIME, m_dwSwitchTime ? m_dwSwitchTime / 60 : 0);
 
 
     // Calculate the estimated blank time by adding the current time
-    //   and and the user specified time which is in minutes
-    m_dwBlankTime = (DWORD)time(0) + (m_dwBlankTime * 60);
+    //   and and the user specified time.
+    if (m_dwBlankTime > 0) {
+        m_dwBlankTime = (DWORD)time(0) + m_dwBlankTime;
+    }
 
     // Create the infrastructure mutexes so we can properly aquire them to report
     //   errors
@@ -474,8 +513,16 @@ VOID CScreensaver::EnumMonitors(VOID) {
 
             pMonitorInfoNew = &m_Monitors[m_dwNumMonitors];
             ZeroMemory(pMonitorInfoNew, sizeof(INTERNALMONITORINFO));
-            StringCchCopy(pMonitorInfoNew->strDeviceName, 128, dispdev.DeviceString);
-            StringCchCopy(pMonitorInfoNew->strMonitorName, 128, dispdev2.DeviceString);
+            strncpy(
+                pMonitorInfoNew->strDeviceName,
+                dispdev.DeviceString,
+                sizeof(pMonitorInfoNew->strDeviceName) * sizeof(TCHAR)
+            );
+            strncpy(
+                pMonitorInfoNew->strMonitorName,
+                dispdev2.DeviceString,
+                sizeof(pMonitorInfoNew->strMonitorName) * sizeof(TCHAR)
+            );
             
             if (dispdev.StateFlags & DISPLAY_DEVICE_ATTACHED_TO_DESKTOP) {
                 EnumDisplaySettings(dispdev.DeviceName, ENUM_CURRENT_SETTINGS, &devmode);
@@ -653,7 +700,7 @@ BOOL CScreensaver::GetError(
             hrError = m_hrError;
 
             if (NULL != pszError) {
-                StringCbCopyN(pszError, iErrorSize, m_szError, sizeof(m_szError) * sizeof(TCHAR));
+                strncpy(pszError, m_szError, iErrorSize);
             }
 
             bRetVal = TRUE;
@@ -736,19 +783,13 @@ BOOL CScreensaver::GetTextForError(
 ) {
     const DWORD dwErrorMap[][2] = {
     //  HRESULT, stringID
-        E_FAIL, IDS_ERR_GENERIC,
-        E_OUTOFMEMORY, IDS_ERR_OUTOFMEMORY,
+        (const DWORD)E_FAIL, IDS_ERR_GENERIC,
+        (const DWORD)E_OUTOFMEMORY, IDS_ERR_OUTOFMEMORY,
 		SCRAPPERR_NOPREVIEW, IDS_ERR_NOPREVIEW,
 		SCRAPPERR_BOINCSCREENSAVERLOADING, IDS_ERR_BOINCSCREENSAVERLOADING,
 		SCRAPPERR_BOINCSHUTDOWNEVENT, IDS_ERR_BOINCSHUTDOWNEVENT,
 		SCRAPPERR_BOINCAPPFOUNDGRAPHICSLOADING, IDS_ERR_BOINCAPPFOUNDGRAPHICSLOADING,
-
         SCRAPPERR_BOINCNOTDETECTED, IDS_ERR_BOINCNOTDETECTED,
-		SCRAPPERR_BOINCSUSPENDED, IDS_ERR_BOINCSUSPENDED,
-		SCRAPPERR_BOINCNOAPPSEXECUTING, IDS_ERR_BOINCNOAPPSEXECUTING,
-        SCRAPPERR_BOINCNOPROJECTSDETECTED, IDS_ERR_BOINCNOAPPSEXECUTINGNOPROJECTSDETECTED,
-		SCRAPPERR_BOINCNOGRAPHICSAPPSEXECUTING, IDS_ERR_BOINCNOGRAPHICSAPPSEXECUTING,
-        SCRAPPERR_DAEMONALLOWSNOGRAPHICS, IDS_ERR_DAEMONALLOWSNOGRAPHICS
     };
     const DWORD dwErrorMapSize = sizeof(dwErrorMap) / sizeof(DWORD[2]);
 
@@ -1248,8 +1289,8 @@ LRESULT CScreensaver::SaverProc(
             if (m_SaverMode != sm_test) {
                 static INT xPrev = -1;
                 static INT yPrev = -1;
-                INT xCur = GET_X_LPARAM(lParam);
-                INT yCur = GET_Y_LPARAM(lParam);
+                INT xCur = LOWORD(lParam);
+                INT yCur = HIWORD(lParam);
                 if (xCur != xPrev || yCur != yPrev) {
                     xPrev = xCur;
                     yPrev = yCur;
@@ -1332,43 +1373,135 @@ LRESULT CScreensaver::SaverProc(
 
 
 
-INT_PTR CScreensaver::ConfigureDialogProc(HWND hwnd,UINT msg,WPARAM wParam,LPARAM UNUSED(lParam)) {
-	DWORD screen_blank=0, blank_time=0;
-	char buf[256];
-	int retval;
+DWORD CScreensaver::ConvertSliderPositionToTime( DWORD dwPosition ) {
+    return dwTableSliderPositionToTime[dwPosition];
+}
+
+
+
 
-	switch (msg) {
-		case WM_INITDIALOG:
-			// make sure you check return value of registry queries
-			// in case the item in question doesn't happen to exist.
-			retval = UtilGetRegKey(REG_BLANK_NAME, screen_blank);
-			if (retval < 0) {
-                screen_blank=0;
+DWORD CScreensaver::ConvertTimeToSliderPosition( DWORD dwMinutes ) {
+    DWORD dwPosition = 0;
+    if (0 >= dwMinutes) {
+        dwPosition = MAXSLIDERTIC;     // Never
+    } else {
+        for (unsigned int i = 0; i <= MAXSLIDERTIC - 1; i++) {
+            if (dwTableSliderPositionToTime[i] <= dwMinutes) {
+                dwPosition = i;
             }
-			CheckDlgButton(hwnd, IDC_BLANK, screen_blank);
+        }
+    }
+    return dwPosition;
+}
 
-			retval = UtilGetRegKey(REG_BLANK_TIME, blank_time);
-			if (retval < 0) { blank_time=0; }
-			_ltot(blank_time, buf, 10);
-			SetDlgItemText(hwnd, IDC_BLANK_TIME, buf);
 
-			return TRUE;
-		case WM_COMMAND:
-			int id=LOWORD(wParam);
-			if (id==IDOK) {
 
-				screen_blank = (IsDlgButtonChecked(hwnd, IDC_BLANK) == BST_CHECKED);
-				UtilSetRegKey(REG_BLANK_NAME, screen_blank);
 
-				GetDlgItemText(hwnd, IDC_BLANK_TIME, buf, 256);
-				blank_time = atoi(buf);
-				UtilSetRegKey(REG_BLANK_TIME, blank_time);
+VOID CScreensaver::InitializeDefaultSlider( HWND hwndDlg, UINT uControl ) {
+    HWND hwndSlider = GetDlgItem(hwndDlg, uControl);
+    if (hwndSlider) {
+        SendMessage(hwndSlider, TBM_SETRANGE, TRUE, MAKELONG(0, MAXSLIDERTIC));
+        SendMessage(hwndSlider, TBM_SETLINESIZE, 0, 1);
+        SendMessage(hwndSlider, TBM_SETPAGESIZE, 0, 1);
+    }
+}
 
-			}
-			if (id == IDOK || id == IDCANCEL) {
-				EndDialog(hwnd, id);
+
+
+
+DWORD CScreensaver::GetSliderPosition( HWND hwndDlg, UINT uControl ) {
+    HWND hwndSlider = GetDlgItem(hwndDlg, uControl);
+    if (hwndSlider) {
+        return SendMessage(hwndSlider, TBM_GETPOS, 0, 0);
+    }
+    return 0;
+}
+
+
+
+
+VOID CScreensaver::SetSliderPosition( HWND hwndDlg, UINT uControl, DWORD dwPosition ) {
+    HWND hwndSlider = GetDlgItem(hwndDlg, uControl);
+    if (hwndSlider) {
+        SendMessage(hwndSlider, TBM_SETPOS, TRUE, dwPosition);
+    }
+}
+
+
+
+
+INT_PTR CScreensaver::ConfigureDialogProc(
+    HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM UNUSED(lParam)
+){
+    DWORD dwEnableBlankTime = 0;
+    DWORD dwBlankTime = 0;
+    DWORD dwDefaultTime = 0;
+    DWORD dwRunTime = 0;
+    DWORD dwSwitchTime = 0;
+
+	switch (uMsg) {
+    case WM_INITDIALOG:
+        // Initialize slider controls
+        InitializeDefaultSlider(hWnd, IDC_SLIDER_BLANKTIME);
+        InitializeDefaultSlider(hWnd, IDC_SLIDER_DEFAULTTIME);
+        InitializeDefaultSlider(hWnd, IDC_SLIDER_RUNTIME);
+        InitializeDefaultSlider(hWnd, IDC_SLIDER_SWITCHTIME);
+
+        // Get the last set of saved values, if nothing is set
+        // use defaults.
+        if (!UtilGetRegKey(REG_ENABLE_BLANK, dwEnableBlankTime)) {
+            dwEnableBlankTime = 0;
+        }
+        if (!UtilGetRegKey(REG_BLANK_TIME, dwBlankTime)) {
+            dwBlankTime = GFX_BLANK_PERIOD ? GFX_BLANK_PERIOD / 60 : 0;
+        }
+        if (!UtilGetRegKey(REG_DEFAULT_TIME, dwDefaultTime)) {
+            dwDefaultTime = GFX_DEFAULT_PERIOD ? GFX_DEFAULT_PERIOD / 60 : 0;
+        }
+        if (!UtilGetRegKey(REG_RUN_TIME, dwRunTime)) {
+            dwRunTime = GFX_SCIENCE_PERIOD ? GFX_SCIENCE_PERIOD / 60 : 0;
+        }
+        if (!UtilGetRegKey(REG_SWITCH_TIME, dwSwitchTime)) {
+            dwSwitchTime = GFX_CHANGE_PERIOD ? GFX_CHANGE_PERIOD / 60 : 0;
+        }
+
+        // Set the legacy value if needed
+        if (!dwEnableBlankTime) {
+            dwBlankTime = 0;
+        }
+
+        // Update Slider Controls with previously saved values
+        SetSliderPosition(hWnd, IDC_SLIDER_BLANKTIME, ConvertTimeToSliderPosition(dwBlankTime));
+        SetSliderPosition(hWnd, IDC_SLIDER_DEFAULTTIME, ConvertTimeToSliderPosition(dwDefaultTime));
+        SetSliderPosition(hWnd, IDC_SLIDER_RUNTIME, ConvertTimeToSliderPosition(dwRunTime));
+        SetSliderPosition(hWnd, IDC_SLIDER_SWITCHTIME, ConvertTimeToSliderPosition(dwSwitchTime));
+
+        return TRUE;
+    case WM_COMMAND:
+        switch(LOWORD(wParam))
+        {
+        case IDOK:
+            dwBlankTime = ConvertSliderPositionToTime(GetSliderPosition(hWnd, IDC_SLIDER_BLANKTIME));
+            dwDefaultTime = ConvertSliderPositionToTime(GetSliderPosition(hWnd, IDC_SLIDER_DEFAULTTIME));
+            dwRunTime = ConvertSliderPositionToTime(GetSliderPosition(hWnd, IDC_SLIDER_RUNTIME));
+            dwSwitchTime = ConvertSliderPositionToTime(GetSliderPosition(hWnd, IDC_SLIDER_SWITCHTIME));
+
+            // Set the legacy value if needed
+            if (dwBlankTime) {
+                dwEnableBlankTime = 1;
             }
-			break;
+
+            UtilSetRegKey(REG_ENABLE_BLANK, dwEnableBlankTime);
+            UtilSetRegKey(REG_BLANK_TIME, dwBlankTime);
+            UtilSetRegKey(REG_DEFAULT_TIME, dwDefaultTime);
+            UtilSetRegKey(REG_RUN_TIME, dwRunTime);
+            UtilSetRegKey(REG_SWITCH_TIME, dwSwitchTime);
+
+            // Fall Through
+        case IDCANCEL:
+            EndDialog(hWnd, wParam);
+            return TRUE;
+        }
 	}
 	return FALSE;
 }
@@ -1581,7 +1714,7 @@ VOID CScreensaver::DoPaint(HWND hwnd, HDC hdc, LPPAINTSTRUCT lpps) {
 
 	static HBRUSH	hbrushBlack = (HBRUSH)GetStockObject(BLACK_BRUSH);
 	static HBRUSH	hbrushRed = (HBRUSH)CreateSolidBrush(RGB(255,0,0));
-	static HBITMAP  hbmp = LoadBitmap(m_hInstance, MAKEINTRESOURCE(IDB_BOINCSPLAT));
+	static HBITMAP  hbmp = LoadBitmap(m_hInstance, MAKEINTRESOURCE(IDB_BOINC));
 
 
 	// Start off with a black screen and then draw on top of it.
@@ -1610,7 +1743,7 @@ VOID CScreensaver::DoPaint(HWND hwnd, HDC hdc, LPPAINTSTRUCT lpps) {
     // it. the bitmap is centered in the rectangle by adding 2
 	// to the left and top coordinates of the bitmap rectangle,
 	// and subtracting 4 from the right and bottom coordinates.
-    BITMAP     bm;
+    BITMAP bm;
     GetObject(hbmp, sizeof(BITMAP), (LPSTR)&bm);
 
 	long left = rc.left + (pMonitorInfo->widthError - 4 - bm.bmWidth)/2;
@@ -1622,13 +1755,25 @@ VOID CScreensaver::DoPaint(HWND hwnd, HDC hdc, LPPAINTSTRUCT lpps) {
 	SetTextColor(hdc, RGB(255,255,255));   // Red
    
 	// Set font
-	HFONT hf;
-    hf = CreateFont(0, 0, 0, 0, FW_DONTCARE, FALSE, FALSE, 0, ANSI_CHARSET, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, DEFAULT_PITCH | FF_SWISS, "Arial Narrow");
+	HFONT hFont;
+    hFont = CreateFont(
+        0,
+        0,
+        0,
+        0,
+        FW_DONTCARE,
+        FALSE,
+        FALSE,
+        0,
+        ANSI_CHARSET,
+        OUT_DEFAULT_PRECIS,
+        CLIP_DEFAULT_PRECIS,
+        DEFAULT_QUALITY,
+        DEFAULT_PITCH | FF_SWISS,
+        "Arial Narrow"
+    );
 	
-    if(hf)
-    {
-        SelectObject(hdc, hf);
-    }
+    if(hFont) SelectObject(hdc, hFont);
 
     // Try using the "Arial Narrow" font, if that fails use whatever
     // the system default font is.  Something is better than nothing.
@@ -1638,10 +1783,7 @@ VOID CScreensaver::DoPaint(HWND hwnd, HDC hdc, LPPAINTSTRUCT lpps) {
 	rc2.top += bm.bmHeight+20;
     DrawText(hdc, szError, -1, &rc2, DT_CENTER);
 
-    if(hf)
-    {
-        DeleteObject(hf);
-    }
+    if(hFont) DeleteObject(hFont);
 }
 
 
@@ -1770,7 +1912,3 @@ VOID CScreensaver::ChangePassword() {
     }
 }
 
-
-
-
-const char *BOINC_RCSID_116268c72f = "$Id: screensaver_win.cpp 18719 2009-07-25 03:53:25Z romw $";
diff --git a/clientscr/screensaver_win.h b/clientscr/screensaver_win.h
index 68a4c72..2087caa 100644
--- a/clientscr/screensaver_win.h
+++ b/clientscr/screensaver_win.h
@@ -8,8 +8,6 @@
 #define _SCREENSAVER_WIN_H
 
 
-#include <multimon.h>
-
 //-----------------------------------------------------------------------------
 // Constants
 //-----------------------------------------------------------------------------
@@ -75,6 +73,15 @@ struct DISPLAY_DEVICE_FULL
 };
 
 
+struct ss_periods
+{
+    double          GFXDefaultPeriod;
+    double          GFXSciencePeriod;
+    double          GFXChangePeriod;
+    bool            Show_default_ss_first;
+};
+
+
 //-----------------------------------------------------------------------------
 // Name: class CScreensaver
 // Desc: Screensaver class
@@ -114,8 +121,13 @@ protected:
     BOOL			m_bErrorMode;        // Whether to display an error
     HRESULT			m_hrError;           // Error code to display
     TCHAR			m_szError[400];      // Error message text
+
+    // Variables for configuration management
     DWORD           m_dwBlankScreen;
     DWORD           m_dwBlankTime;
+    DWORD           m_dwDefaultTime;
+    DWORD           m_dwRunTime;
+    DWORD           m_dwSwitchTime;
     std::string     m_strBOINCInstallDirectory;
     std::string     m_strBOINCDataDirectory;
 
@@ -161,7 +173,7 @@ protected:
 	int             launch_screensaver(RESULT* rp, HANDLE& graphics_application);
 	int             launch_default_screensaver(char *dir_path, HANDLE& graphics_application);
     void            HandleRPCError(void);
-    void            GetDisplayPeriods(char *dir_path);
+    void            GetDefaultDisplayPeriods(struct ss_periods &periods);
     BOOL            HasProcessExited(HANDLE pid_handle, int &exitCode);
     
     // Determine if two RESULT pointers refer to the same task
@@ -189,7 +201,7 @@ protected:
     time_t          m_tThreadCreateTime;
 
     double          m_fGFXDefaultPeriod;
-    double          m_fGFxSciencePeriod;
+    double          m_fGFXSciencePeriod;
     double          m_fGFXChangePeriod;
     bool            m_bShow_default_ss_first;
 
@@ -216,6 +228,12 @@ protected:
 	void			DrawTransparentBitmap(HDC hdc, HBITMAP hBitmap, LONG xStart, LONG yStart, COLORREF cTransparentColor);
 
 	LRESULT         SaverProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
+
+    DWORD           ConvertSliderPositionToTime( DWORD dwPosition );
+    DWORD           ConvertTimeToSliderPosition( DWORD dwMinutes );
+    VOID            InitializeDefaultSlider( HWND hwndDlg, UINT uControl );
+    DWORD           GetSliderPosition( HWND hwndDlg, UINT uControl );
+    VOID            SetSliderPosition( HWND hwndDlg, UINT uControl, DWORD dwPosition );
 	INT_PTR         ConfigureDialogProc( HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam );
 
     static LRESULT CALLBACK SaverProcStub( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
diff --git a/clientscr/ss_app.cpp b/clientscr/ss_app.cpp
index a3c1997..92b338c 100644
--- a/clientscr/ss_app.cpp
+++ b/clientscr/ss_app.cpp
@@ -49,6 +49,17 @@
 using std::string;
 using std::vector;
 
+// text sizes - larger is smaller (???)
+#define TASK_INTRO_SIZE     1000.
+#define TASK_NONE_SIZE      500.
+#define TASK_NONE_REASON_SIZE    800.
+#define TASK_PROJ_SIZE      1000.
+#define TASK_INFO_SIZE      1200.
+#define PROJ_INTRO_SIZE     800.
+#define PROJ_NAME_SIZE      500.
+#define PROJ_INFO_SIZE      800.
+#define ALERT_SIZE          800.
+
 float white[4] = {1., 1., 1., 1.};
 TEXTURE_DESC logo;
 int width, height;      // window dimensions
@@ -150,7 +161,7 @@ static void draw_logo(float* pos, float alpha) {
 void show_result(RESULT* r, float x, float& y, float alpha) {
     PROGRESS_2D progress;
     char buf[256];
-    txf_render_string(.1, x, y, 0, 1000., white, 0, (char*)r->project->project_name.c_str());
+    txf_render_string(.1, x, y, 0, TASK_PROJ_SIZE, white, 0, (char*)r->project->project_name.c_str());
     y -= .02;
     float prog_pos[] = {x, y, 0};
     float prog_c[] = {.5, .4, .1, alpha/2};
@@ -158,16 +169,16 @@ void show_result(RESULT* r, float x, float& y, float alpha) {
     progress.init(prog_pos, .4, -.01, -0.008, prog_c, prog_ci);
     progress.draw(r->fraction_done);
     sprintf(buf, "%.2f%% ", r->fraction_done*100);
-    txf_render_string(.1, x+.41, y, 0, 1200., white, 0, buf);
+    txf_render_string(.1, x+.41, y, 0, TASK_INFO_SIZE, white, 0, buf);
     y -= .03;
     x += .05;
     sprintf(buf, "Elapsed: %.0f sec  Remaining: %.0f sec", r->elapsed_time, r->estimated_cpu_time_remaining);
-    txf_render_string(.1, x, y, 0, 1200., white, 0, buf);
+    txf_render_string(.1, x, y, 0, TASK_INFO_SIZE, white, 0, buf);
     y -= .03;
     sprintf(buf, "App: %s  Task: %s", (char*)r->app->user_friendly_name.c_str(),
         r->wup->name.c_str()
     );
-    txf_render_string(.1, x, y, 0, 1200., white, 0, buf);
+    txf_render_string(.1, x, y, 0, TASK_INFO_SIZE, white, 0, buf);
     y -= .03;
 }
 
@@ -191,66 +202,70 @@ void show_coords() {
 void show_project(unsigned int index, float alpha) {
     float x=.2, y=.6;
     char buf[1024];
-    txf_render_string(.1, x, y, 0, 1200., white, 0, "This computer is participating in");
+    txf_render_string(.1, x, y, 0, PROJ_INTRO_SIZE, white, 0, "This computer is participating in");
     y -= .07;
     PROJECT *p = cc_state.projects[index];
-    txf_render_string(.1, x, y, 0, 500., white, 0, (char*)p->project_name.c_str());
+    txf_render_string(.1, x, y, 0, PROJ_NAME_SIZE, white, 0, (char*)p->project_name.c_str());
     y -= .07;
-    txf_render_string(.1, x, y, 0, 800., white, 0, (char*)p->master_url.c_str());
+    txf_render_string(.1, x, y, 0, PROJ_INFO_SIZE, white, 0, (char*)p->master_url.c_str());
     y -= .05;
     sprintf(buf, "User: %s", p->user_name.c_str());
-    txf_render_string(.1, x, y, 0, 800., white, 0, buf);
+    txf_render_string(.1, x, y, 0, PROJ_INFO_SIZE, white, 0, buf);
     y -= .05;
     if (p->team_name.size()) {
         sprintf(buf, "Team: %s",  p->team_name.c_str());
-        txf_render_string(.1, x, y, 0, 800., white, 0, buf);
+        txf_render_string(.1, x, y, 0, PROJ_INFO_SIZE, white, 0, buf);
         y -= .05;
     }
     sprintf(buf, "Total credit: %.0f   Average credit: %.0f", p->user_total_credit, p->user_expavg_credit);
-    txf_render_string(.1, x, y, 0, 800., white, 0, buf);
+    txf_render_string(.1, x, y, 0, PROJ_INFO_SIZE, white, 0, buf);
     y -= .05;
     if (p->suspended_via_gui) {
-        txf_render_string(.1, x, y, 0, 800., white, 0, "Suspended");
+        txf_render_string(.1, x, y, 0, PROJ_INFO_SIZE, white, 0, "Suspended");
     }
 }
 
 void show_disconnected() {
     float x=.3, y=.3;
-    txf_render_string(.1, x, y, 0, 800., white, 0, "BOINC is not running.");
+    txf_render_string(.1, x, y, 0, ALERT_SIZE, white, 0, "BOINC is not running.");
 }
 
 void show_no_projects() {
     float x=.2, y=.3;
-    txf_render_string(.1, x, y, 0, 800., white, 0, "BOINC is not attached to any projects.");
+    txf_render_string(.1, x, y, 0, ALERT_SIZE, white, 0, "BOINC is not attached to any projects.");
     y = .25;
-    txf_render_string(.1, x, y, 0, 800., white, 0, "Attach to projects using the BOINC Manager.");
+    txf_render_string(.1, x, y, 0, ALERT_SIZE, white, 0, "Attach to projects using the BOINC Manager.");
 }
 
+#define MAX_JOBS_DISPLAY   4
+
+// index is where to start looking in job array
+//
 void show_jobs(unsigned int index, double alpha) {
     float x=.1, y=.7;
     unsigned int nfound = 0;
     unsigned int i;
-    cc_status.task_suspend_reason &= ~SUSPEND_REASON_CPU_USAGE_LIMIT;
+    cc_status.task_suspend_reason &= ~SUSPEND_REASON_CPU_THROTTLE;
     
     if (!cc_status.task_suspend_reason) {
         for (i=0; i<cc_state.results.size(); i++) {
-            RESULT* r = cc_state.results[i];
+            int j = (i + index) % cc_state.results.size();
+            RESULT* r = cc_state.results[j];
             if (!r->active_task) continue;
             if (r->scheduler_state != CPU_SCHED_SCHEDULED) continue;
-            if (nfound == index) {
-                txf_render_string(.1, x, y, 0, 1200., white, 0, "Running tasks:");
-                y -= .05;
-            }
-            if (nfound >= index && nfound < index+4) {
-                show_result(r, x, y, alpha);
+            if (!nfound) {
+                txf_render_string(.1, x, y, 0, TASK_INTRO_SIZE, white, 0, "Running tasks:");
                 y -= .05;
             }
+            show_result(r, x, y, alpha);
+            y -= .05;
             nfound++;
+            if (nfound == MAX_JOBS_DISPLAY) break;
         }
     }
     if (!nfound) {
         y = .5;
-        txf_render_string(.1, x, y, 0, 500., white, 0, "No running tasks");
+        txf_render_string(.1, x, y, 0, TASK_NONE_SIZE, white, 0, "No running tasks");
         char *p = 0;
         switch (cc_status.task_suspend_reason) {
         case SUSPEND_REASON_BATTERIES:
@@ -271,10 +286,12 @@ void show_jobs(unsigned int index, double alpha) {
             p = "Computing suspended while BOINC is starting up"; break;
         case SUSPEND_REASON_EXCLUSIVE_APP_RUNNING:
             p = "Computing suspended while exclusive application running"; break;
+        case SUSPEND_REASON_CPU_USAGE:
+            p = "Computing suspended because processor usage is high"; break;
         }
         if (p) {
             y -= .1;
-            txf_render_string(.1, x, y, 0, 800., white, 0, p);
+            txf_render_string(.1, x, y, 0, TASK_NONE_REASON_SIZE, white, 0, p);
         }
     }
 }
@@ -376,10 +393,8 @@ void app_graphics_render(int xs, int ys, double t) {
                 showing_project = false;
                 project_index++;
             } else {
-                job_index += 4;
-                if (job_index >= cc_state.results.size()) {
-                    job_index = 0;
-                }
+                job_index += MAX_JOBS_DISPLAY;
+                job_index %= cc_state.results.size();
                 showing_project = true;
             }
         }
@@ -416,7 +431,11 @@ void boinc_app_key_release(int, int){}
 void app_graphics_init() {
     glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
     txf_load_fonts(".");
+#ifdef _WCG
+    logo.load_image_file("wcg.bmp");
+#else
     logo.load_image_file("boinc_logo_black.jpg");
+#endif
     init_lights();
 }
 
diff --git a/clienttray/boinc_tray.rc b/clienttray/boinc_tray.rc
index 627aba3..0d82130 100644
--- a/clienttray/boinc_tray.rc
+++ b/clienttray/boinc_tray.rc
@@ -51,7 +51,7 @@ BEGIN
             VALUE "FileDescription", "GridRepublic System Tray for Windows"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinctray"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinctray.exe"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -86,7 +86,7 @@ BEGIN
             VALUE "FileDescription", "Progress Thru Processors System Tray for Windows"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinctray"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinctray.exe"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -121,7 +121,7 @@ BEGIN
             VALUE "FileDescription", "World Community Grid System Tray for Windows"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinctray"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinctray.exe"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
@@ -156,7 +156,7 @@ BEGIN
             VALUE "FileDescription", "BOINC System Tray for Windows"
             VALUE "FileVersion", BOINC_VERSION_STRING "\0"
             VALUE "InternalName", "boinctray"
-            VALUE "LegalCopyright", "© 2003-2009 University of California"
+            VALUE "LegalCopyright", "© 2003-2010 University of California"
             VALUE "OriginalFilename", "boinctray.exe"
             VALUE "ProductName", "BOINC client"
             VALUE "ProductVersion", BOINC_VERSION_STRING "\0"
diff --git a/config.guess b/config.guess
new file mode 100755
index 0000000..951383e
--- /dev/null
+++ b/config.guess
@@ -0,0 +1,1516 @@
+#! /bin/sh
+# Attempt to guess a canonical system name.
+#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+#   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
+#   Inc.
+
+timestamp='2007-05-17'
+
+# This file is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
+# 02110-1301, USA.
+#
+# As a special exception to the GNU General Public License, if you
+# distribute this file as part of a program that contains a
+# configuration script generated by Autoconf, you may include it under
+# the same distribution terms that you use for the rest of that program.
+
+
+# Originally written by Per Bothner <per at bothner.com>.
+# Please send patches to <config-patches at gnu.org>.  Submit a context
+# diff and a properly formatted ChangeLog entry.
+#
+# This script attempts to guess a canonical system name similar to
+# config.sub.  If it succeeds, it prints the system name on stdout, and
+# exits with 0.  Otherwise, it exits with 1.
+#
+# The plan is that this can be called by configure scripts if you
+# don't specify an explicit build system type.
+
+me=`echo "$0" | sed -e 's,.*/,,'`
+
+usage="\
+Usage: $0 [OPTION]
+
+Output the configuration name of the system \`$me' is run on.
+
+Operation modes:
+  -h, --help         print this help, then exit
+  -t, --time-stamp   print date of last modification, then exit
+  -v, --version      print version number, then exit
+
+Report bugs and patches to <config-patches at gnu.org>."
+
+version="\
+GNU config.guess ($timestamp)
+
+Originally written by Per Bothner.
+Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
+Free Software Foundation, Inc.
+
+This is free software; see the source for copying conditions.  There is NO
+warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
+
+help="
+Try \`$me --help' for more information."
+
+# Parse command line
+while test $# -gt 0 ; do
+  case $1 in
+    --time-stamp | --time* | -t )
+       echo "$timestamp" ; exit ;;
+    --version | -v )
+       echo "$version" ; exit ;;
+    --help | --h* | -h )
+       echo "$usage"; exit ;;
+    -- )     # Stop option processing
+       shift; break ;;
+    - )	# Use stdin as input.
+       break ;;
+    -* )
+       echo "$me: invalid option $1$help" >&2
+       exit 1 ;;
+    * )
+       break ;;
+  esac
+done
+
+if test $# != 0; then
+  echo "$me: too many arguments$help" >&2
+  exit 1
+fi
+
+trap 'exit 1' 1 2 15
+
+# CC_FOR_BUILD -- compiler used by this script. Note that the use of a
+# compiler to aid in system detection is discouraged as it requires
+# temporary files to be created and, as you can see below, it is a
+# headache to deal with in a portable fashion.
+
+# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still
+# use `HOST_CC' if defined, but it is deprecated.
+
+# Portable tmp directory creation inspired by the Autoconf team.
+
+set_cc_for_build='
+trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
+trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
+: ${TMPDIR=/tmp} ;
+ { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
+ { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
+ { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } ||
+ { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
+dummy=$tmp/dummy ;
+tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ;
+case $CC_FOR_BUILD,$HOST_CC,$CC in
+ ,,)    echo "int x;" > $dummy.c ;
+	for c in cc gcc c89 c99 ; do
+	  if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then
+	     CC_FOR_BUILD="$c"; break ;
+	  fi ;
+	done ;
+	if test x"$CC_FOR_BUILD" = x ; then
+	  CC_FOR_BUILD=no_compiler_found ;
+	fi
+	;;
+ ,,*)   CC_FOR_BUILD=$CC ;;
+ ,*,*)  CC_FOR_BUILD=$HOST_CC ;;
+esac ; set_cc_for_build= ;'
+
+# This is needed to find uname on a Pyramid OSx when run in the BSD universe.
+# (ghazi at noc.rutgers.edu 1994-08-24)
+if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
+	PATH=$PATH:/.attbin ; export PATH
+fi
+
+UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
+UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
+UNAME_SYSTEM=`(uname -s) 2>/dev/null`  || UNAME_SYSTEM=unknown
+UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
+
+# Note: order is significant - the case branches are not exclusive.
+
+case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
+    *:NetBSD:*:*)
+	# NetBSD (nbsd) targets should (where applicable) match one or
+	# more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*,
+	# *-*-netbsdecoff* and *-*-netbsd*.  For targets that recently
+	# switched to ELF, *-*-netbsd* would select the old
+	# object file format.  This provides both forward
+	# compatibility and a consistent mechanism for selecting the
+	# object file format.
+	#
+	# Note: NetBSD doesn't particularly care about the vendor
+	# portion of the name.  We always set it to "unknown".
+	sysctl="sysctl -n hw.machine_arch"
+	UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \
+	    /usr/sbin/$sysctl 2>/dev/null || echo unknown)`
+	case "${UNAME_MACHINE_ARCH}" in
+	    armeb) machine=armeb-unknown ;;
+	    arm*) machine=arm-unknown ;;
+	    sh3el) machine=shl-unknown ;;
+	    sh3eb) machine=sh-unknown ;;
+	    sh5el) machine=sh5le-unknown ;;
+	    *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
+	esac
+	# The Operating System including object format, if it has switched
+	# to ELF recently, or will in the future.
+	case "${UNAME_MACHINE_ARCH}" in
+	    arm*|i386|m68k|ns32k|sh3*|sparc|vax)
+		eval $set_cc_for_build
+		if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
+			| grep __ELF__ >/dev/null
+		then
+		    # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout).
+		    # Return netbsd for either.  FIX?
+		    os=netbsd
+		else
+		    os=netbsdelf
+		fi
+		;;
+	    *)
+	        os=netbsd
+		;;
+	esac
+	# The OS release
+	# Debian GNU/NetBSD machines have a different userland, and
+	# thus, need a distinct triplet. However, they do not need
+	# kernel version information, so it can be replaced with a
+	# suitable tag, in the style of linux-gnu.
+	case "${UNAME_VERSION}" in
+	    Debian*)
+		release='-gnu'
+		;;
+	    *)
+		release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
+		;;
+	esac
+	# Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
+	# contains redundant information, the shorter form:
+	# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
+	echo "${machine}-${os}${release}"
+	exit ;;
+    *:OpenBSD:*:*)
+	UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
+	echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
+	exit ;;
+    *:ekkoBSD:*:*)
+	echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
+	exit ;;
+    *:SolidBSD:*:*)
+	echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}
+	exit ;;
+    macppc:MirBSD:*:*)
+	echo powerpc-unknown-mirbsd${UNAME_RELEASE}
+	exit ;;
+    *:MirBSD:*:*)
+	echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
+	exit ;;
+    alpha:OSF1:*:*)
+	case $UNAME_RELEASE in
+	*4.0)
+		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
+		;;
+	*5.*)
+	        UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
+		;;
+	esac
+	# According to Compaq, /usr/sbin/psrinfo has been available on
+	# OSF/1 and Tru64 systems produced since 1995.  I hope that
+	# covers most systems running today.  This code pipes the CPU
+	# types through head -n 1, so we only detect the type of CPU 0.
+	ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \(.*\) processor.*$/\1/p' | head -n 1`
+	case "$ALPHA_CPU_TYPE" in
+	    "EV4 (21064)")
+		UNAME_MACHINE="alpha" ;;
+	    "EV4.5 (21064)")
+		UNAME_MACHINE="alpha" ;;
+	    "LCA4 (21066/21068)")
+		UNAME_MACHINE="alpha" ;;
+	    "EV5 (21164)")
+		UNAME_MACHINE="alphaev5" ;;
+	    "EV5.6 (21164A)")
+		UNAME_MACHINE="alphaev56" ;;
+	    "EV5.6 (21164PC)")
+		UNAME_MACHINE="alphapca56" ;;
+	    "EV5.7 (21164PC)")
+		UNAME_MACHINE="alphapca57" ;;
+	    "EV6 (21264)")
+		UNAME_MACHINE="alphaev6" ;;
+	    "EV6.7 (21264A)")
+		UNAME_MACHINE="alphaev67" ;;
+	    "EV6.8CB (21264C)")
+		UNAME_MACHINE="alphaev68" ;;
+	    "EV6.8AL (21264B)")
+		UNAME_MACHINE="alphaev68" ;;
+	    "EV6.8CX (21264D)")
+		UNAME_MACHINE="alphaev68" ;;
+	    "EV6.9A (21264/EV69A)")
+		UNAME_MACHINE="alphaev69" ;;
+	    "EV7 (21364)")
+		UNAME_MACHINE="alphaev7" ;;
+	    "EV7.9 (21364A)")
+		UNAME_MACHINE="alphaev79" ;;
+	esac
+	# A Pn.n version is a patched version.
+	# A Vn.n version is a released version.
+	# A Tn.n version is a released field test version.
+	# A Xn.n version is an unreleased experimental baselevel.
+	# 1.2 uses "1.2" for uname -r.
+	echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
+	exit ;;
+    Alpha\ *:Windows_NT*:*)
+	# How do we know it's Interix rather than the generic POSIX subsystem?
+	# Should we change UNAME_MACHINE based on the output of uname instead
+	# of the specific Alpha model?
+	echo alpha-pc-interix
+	exit ;;
+    21064:Windows_NT:50:3)
+	echo alpha-dec-winnt3.5
+	exit ;;
+    Amiga*:UNIX_System_V:4.0:*)
+	echo m68k-unknown-sysv4
+	exit ;;
+    *:[Aa]miga[Oo][Ss]:*:*)
+	echo ${UNAME_MACHINE}-unknown-amigaos
+	exit ;;
+    *:[Mm]orph[Oo][Ss]:*:*)
+	echo ${UNAME_MACHINE}-unknown-morphos
+	exit ;;
+    *:OS/390:*:*)
+	echo i370-ibm-openedition
+	exit ;;
+    *:z/VM:*:*)
+	echo s390-ibm-zvmoe
+	exit ;;
+    *:OS400:*:*)
+        echo powerpc-ibm-os400
+	exit ;;
+    arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
+	echo arm-acorn-riscix${UNAME_RELEASE}
+	exit ;;
+    arm:riscos:*:*|arm:RISCOS:*:*)
+	echo arm-unknown-riscos
+	exit ;;
+    SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)
+	echo hppa1.1-hitachi-hiuxmpp
+	exit ;;
+    Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*)
+	# akee at wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.
+	if test "`(/bin/universe) 2>/dev/null`" = att ; then
+		echo pyramid-pyramid-sysv3
+	else
+		echo pyramid-pyramid-bsd
+	fi
+	exit ;;
+    NILE*:*:*:dcosx)
+	echo pyramid-pyramid-svr4
+	exit ;;
+    DRS?6000:unix:4.0:6*)
+	echo sparc-icl-nx6
+	exit ;;
+    DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*)
+	case `/usr/bin/uname -p` in
+	    sparc) echo sparc-icl-nx7; exit ;;
+	esac ;;
+    sun4H:SunOS:5.*:*)
+	echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
+	exit ;;
+    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
+	echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
+	exit ;;
+    i86pc:SunOS:5.*:* | ix86xen:SunOS:5.*:*)
+	echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
+	exit ;;
+    sun4*:SunOS:6*:*)
+	# According to config.sub, this is the proper way to canonicalize
+	# SunOS6.  Hard to guess exactly what SunOS6 will be like, but
+	# it's likely to be more like Solaris than SunOS4.
+	echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
+	exit ;;
+    sun4*:SunOS:*:*)
+	case "`/usr/bin/arch -k`" in
+	    Series*|S4*)
+		UNAME_RELEASE=`uname -v`
+		;;
+	esac
+	# Japanese Language versions have a version number like `4.1.3-JL'.
+	echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
+	exit ;;
+    sun3*:SunOS:*:*)
+	echo m68k-sun-sunos${UNAME_RELEASE}
+	exit ;;
+    sun*:*:4.2BSD:*)
+	UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
+	test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
+	case "`/bin/arch`" in
+	    sun3)
+		echo m68k-sun-sunos${UNAME_RELEASE}
+		;;
+	    sun4)
+		echo sparc-sun-sunos${UNAME_RELEASE}
+		;;
+	esac
+	exit ;;
+    aushp:SunOS:*:*)
+	echo sparc-auspex-sunos${UNAME_RELEASE}
+	exit ;;
+    # The situation for MiNT is a little confusing.  The machine name
+    # can be virtually everything (everything which is not
+    # "atarist" or "atariste" at least should have a processor
+    # > m68000).  The system name ranges from "MiNT" over "FreeMiNT"
+    # to the lowercase version "mint" (or "freemint").  Finally
+    # the system name "TOS" denotes a system which is actually not
+    # MiNT.  But MiNT is downward compatible to TOS, so this should
+    # be no problem.
+    atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
+        echo m68k-atari-mint${UNAME_RELEASE}
+	exit ;;
+    atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
+	echo m68k-atari-mint${UNAME_RELEASE}
+        exit ;;
+    *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
+        echo m68k-atari-mint${UNAME_RELEASE}
+	exit ;;
+    milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
+        echo m68k-milan-mint${UNAME_RELEASE}
+        exit ;;
+    hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
+        echo m68k-hades-mint${UNAME_RELEASE}
+        exit ;;
+    *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
+        echo m68k-unknown-mint${UNAME_RELEASE}
+        exit ;;
+    m68k:machten:*:*)
+	echo m68k-apple-machten${UNAME_RELEASE}
+	exit ;;
+    powerpc:machten:*:*)
+	echo powerpc-apple-machten${UNAME_RELEASE}
+	exit ;;
+    RISC*:Mach:*:*)
+	echo mips-dec-mach_bsd4.3
+	exit ;;
+    RISC*:ULTRIX:*:*)
+	echo mips-dec-ultrix${UNAME_RELEASE}
+	exit ;;
+    VAX*:ULTRIX*:*:*)
+	echo vax-dec-ultrix${UNAME_RELEASE}
+	exit ;;
+    2020:CLIX:*:* | 2430:CLIX:*:*)
+	echo clipper-intergraph-clix${UNAME_RELEASE}
+	exit ;;
+    mips:*:*:UMIPS | mips:*:*:RISCos)
+	eval $set_cc_for_build
+	sed 's/^	//' << EOF >$dummy.c
+#ifdef __cplusplus
+#include <stdio.h>  /* for printf() prototype */
+	int main (int argc, char *argv[]) {
+#else
+	int main (argc, argv) int argc; char *argv[]; {
+#endif
+	#if defined (host_mips) && defined (MIPSEB)
+	#if defined (SYSTYPE_SYSV)
+	  printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0);
+	#endif
+	#if defined (SYSTYPE_SVR4)
+	  printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0);
+	#endif
+	#if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
+	  printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0);
+	#endif
+	#endif
+	  exit (-1);
+	}
+EOF
+	$CC_FOR_BUILD -o $dummy $dummy.c &&
+	  dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` &&
+	  SYSTEM_NAME=`$dummy $dummyarg` &&
+	    { echo "$SYSTEM_NAME"; exit; }
+	echo mips-mips-riscos${UNAME_RELEASE}
+	exit ;;
+    Motorola:PowerMAX_OS:*:*)
+	echo powerpc-motorola-powermax
+	exit ;;
+    Motorola:*:4.3:PL8-*)
+	echo powerpc-harris-powermax
+	exit ;;
+    Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*)
+	echo powerpc-harris-powermax
+	exit ;;
+    Night_Hawk:Power_UNIX:*:*)
+	echo powerpc-harris-powerunix
+	exit ;;
+    m88k:CX/UX:7*:*)
+	echo m88k-harris-cxux7
+	exit ;;
+    m88k:*:4*:R4*)
+	echo m88k-motorola-sysv4
+	exit ;;
+    m88k:*:3*:R3*)
+	echo m88k-motorola-sysv3
+	exit ;;
+    AViiON:dgux:*:*)
+        # DG/UX returns AViiON for all architectures
+        UNAME_PROCESSOR=`/usr/bin/uname -p`
+	if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ]
+	then
+	    if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \
+	       [ ${TARGET_BINARY_INTERFACE}x = x ]
+	    then
+		echo m88k-dg-dgux${UNAME_RELEASE}
+	    else
+		echo m88k-dg-dguxbcs${UNAME_RELEASE}
+	    fi
+	else
+	    echo i586-dg-dgux${UNAME_RELEASE}
+	fi
+ 	exit ;;
+    M88*:DolphinOS:*:*)	# DolphinOS (SVR3)
+	echo m88k-dolphin-sysv3
+	exit ;;
+    M88*:*:R3*:*)
+	# Delta 88k system running SVR3
+	echo m88k-motorola-sysv3
+	exit ;;
+    XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
+	echo m88k-tektronix-sysv3
+	exit ;;
+    Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
+	echo m68k-tektronix-bsd
+	exit ;;
+    *:IRIX*:*:*)
+	echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
+	exit ;;
+    ????????:AIX?:[12].1:2)   # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
+	echo romp-ibm-aix     # uname -m gives an 8 hex-code CPU id
+	exit ;;               # Note that: echo "'`uname -s`'" gives 'AIX '
+    i*86:AIX:*:*)
+	echo i386-ibm-aix
+	exit ;;
+    ia64:AIX:*:*)
+	if [ -x /usr/bin/oslevel ] ; then
+		IBM_REV=`/usr/bin/oslevel`
+	else
+		IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
+	fi
+	echo ${UNAME_MACHINE}-ibm-aix${IBM_REV}
+	exit ;;
+    *:AIX:2:3)
+	if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
+		eval $set_cc_for_build
+		sed 's/^		//' << EOF >$dummy.c
+		#include <sys/systemcfg.h>
+
+		main()
+			{
+			if (!__power_pc())
+				exit(1);
+			puts("powerpc-ibm-aix3.2.5");
+			exit(0);
+			}
+EOF
+		if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy`
+		then
+			echo "$SYSTEM_NAME"
+		else
+			echo rs6000-ibm-aix3.2.5
+		fi
+	elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
+		echo rs6000-ibm-aix3.2.4
+	else
+		echo rs6000-ibm-aix3.2
+	fi
+	exit ;;
+    *:AIX:*:[45])
+	IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
+	if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
+		IBM_ARCH=rs6000
+	else
+		IBM_ARCH=powerpc
+	fi
+	if [ -x /usr/bin/oslevel ] ; then
+		IBM_REV=`/usr/bin/oslevel`
+	else
+		IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
+	fi
+	echo ${IBM_ARCH}-ibm-aix${IBM_REV}
+	exit ;;
+    *:AIX:*:*)
+	echo rs6000-ibm-aix
+	exit ;;
+    ibmrt:4.4BSD:*|romp-ibm:BSD:*)
+	echo romp-ibm-bsd4.4
+	exit ;;
+    ibmrt:*BSD:*|romp-ibm:BSD:*)            # covers RT/PC BSD and
+	echo romp-ibm-bsd${UNAME_RELEASE}   # 4.3 with uname added to
+	exit ;;                             # report: romp-ibm BSD 4.3
+    *:BOSX:*:*)
+	echo rs6000-bull-bosx
+	exit ;;
+    DPX/2?00:B.O.S.:*:*)
+	echo m68k-bull-sysv3
+	exit ;;
+    9000/[34]??:4.3bsd:1.*:*)
+	echo m68k-hp-bsd
+	exit ;;
+    hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
+	echo m68k-hp-bsd4.4
+	exit ;;
+    9000/[34678]??:HP-UX:*:*)
+	HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
+	case "${UNAME_MACHINE}" in
+	    9000/31? )            HP_ARCH=m68000 ;;
+	    9000/[34]?? )         HP_ARCH=m68k ;;
+	    9000/[678][0-9][0-9])
+		if [ -x /usr/bin/getconf ]; then
+		    sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
+                    sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
+                    case "${sc_cpu_version}" in
+                      523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0
+                      528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1
+                      532)                      # CPU_PA_RISC2_0
+                        case "${sc_kernel_bits}" in
+                          32) HP_ARCH="hppa2.0n" ;;
+                          64) HP_ARCH="hppa2.0w" ;;
+			  '') HP_ARCH="hppa2.0" ;;   # HP-UX 10.20
+                        esac ;;
+                    esac
+		fi
+		if [ "${HP_ARCH}" = "" ]; then
+		    eval $set_cc_for_build
+		    sed 's/^              //' << EOF >$dummy.c
+
+              #define _HPUX_SOURCE
+              #include <stdlib.h>
+              #include <unistd.h>
+
+              int main ()
+              {
+              #if defined(_SC_KERNEL_BITS)
+                  long bits = sysconf(_SC_KERNEL_BITS);
+              #endif
+                  long cpu  = sysconf (_SC_CPU_VERSION);
+
+                  switch (cpu)
+              	{
+              	case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
+              	case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
+              	case CPU_PA_RISC2_0:
+              #if defined(_SC_KERNEL_BITS)
+              	    switch (bits)
+              		{
+              		case 64: puts ("hppa2.0w"); break;
+              		case 32: puts ("hppa2.0n"); break;
+              		default: puts ("hppa2.0"); break;
+              		} break;
+              #else  /* !defined(_SC_KERNEL_BITS) */
+              	    puts ("hppa2.0"); break;
+              #endif
+              	default: puts ("hppa1.0"); break;
+              	}
+                  exit (0);
+              }
+EOF
+		    (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
+		    test -z "$HP_ARCH" && HP_ARCH=hppa
+		fi ;;
+	esac
+	if [ ${HP_ARCH} = "hppa2.0w" ]
+	then
+	    eval $set_cc_for_build
+
+	    # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating
+	    # 32-bit code.  hppa64-hp-hpux* has the same kernel and a compiler
+	    # generating 64-bit code.  GNU and HP use different nomenclature:
+	    #
+	    # $ CC_FOR_BUILD=cc ./config.guess
+	    # => hppa2.0w-hp-hpux11.23
+	    # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess
+	    # => hppa64-hp-hpux11.23
+
+	    if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) |
+		grep __LP64__ >/dev/null
+	    then
+		HP_ARCH="hppa2.0w"
+	    else
+		HP_ARCH="hppa64"
+	    fi
+	fi
+	echo ${HP_ARCH}-hp-hpux${HPUX_REV}
+	exit ;;
+    ia64:HP-UX:*:*)
+	HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
+	echo ia64-hp-hpux${HPUX_REV}
+	exit ;;
+    3050*:HI-UX:*:*)
+	eval $set_cc_for_build
+	sed 's/^	//' << EOF >$dummy.c
+	#include <unistd.h>
+	int
+	main ()
+	{
+	  long cpu = sysconf (_SC_CPU_VERSION);
+	  /* The order matters, because CPU_IS_HP_MC68K erroneously returns
+	     true for CPU_PA_RISC1_0.  CPU_IS_PA_RISC returns correct
+	     results, however.  */
+	  if (CPU_IS_PA_RISC (cpu))
+	    {
+	      switch (cpu)
+		{
+		  case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
+		  case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
+		  case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
+		  default: puts ("hppa-hitachi-hiuxwe2"); break;
+		}
+	    }
+	  else if (CPU_IS_HP_MC68K (cpu))
+	    puts ("m68k-hitachi-hiuxwe2");
+	  else puts ("unknown-hitachi-hiuxwe2");
+	  exit (0);
+	}
+EOF
+	$CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&
+		{ echo "$SYSTEM_NAME"; exit; }
+	echo unknown-hitachi-hiuxwe2
+	exit ;;
+    9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
+	echo hppa1.1-hp-bsd
+	exit ;;
+    9000/8??:4.3bsd:*:*)
+	echo hppa1.0-hp-bsd
+	exit ;;
+    *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)
+	echo hppa1.0-hp-mpeix
+	exit ;;
+    hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
+	echo hppa1.1-hp-osf
+	exit ;;
+    hp8??:OSF1:*:*)
+	echo hppa1.0-hp-osf
+	exit ;;
+    i*86:OSF1:*:*)
+	if [ -x /usr/sbin/sysversion ] ; then
+	    echo ${UNAME_MACHINE}-unknown-osf1mk
+	else
+	    echo ${UNAME_MACHINE}-unknown-osf1
+	fi
+	exit ;;
+    parisc*:Lites*:*:*)
+	echo hppa1.1-hp-lites
+	exit ;;
+    C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
+	echo c1-convex-bsd
+        exit ;;
+    C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
+	if getsysinfo -f scalar_acc
+	then echo c32-convex-bsd
+	else echo c2-convex-bsd
+	fi
+        exit ;;
+    C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
+	echo c34-convex-bsd
+        exit ;;
+    C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
+	echo c38-convex-bsd
+        exit ;;
+    C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
+	echo c4-convex-bsd
+        exit ;;
+    CRAY*Y-MP:*:*:*)
+	echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
+	exit ;;
+    CRAY*[A-Z]90:*:*:*)
+	echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \
+	| sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
+	      -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \
+	      -e 's/\.[^.]*$/.X/'
+	exit ;;
+    CRAY*TS:*:*:*)
+	echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
+	exit ;;
+    CRAY*T3E:*:*:*)
+	echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
+	exit ;;
+    CRAY*SV1:*:*:*)
+	echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
+	exit ;;
+    *:UNICOS/mp:*:*)
+	echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
+	exit ;;
+    F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
+	FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
+        FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
+        FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
+        echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
+        exit ;;
+    5000:UNIX_System_V:4.*:*)
+        FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
+        FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'`
+        echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
+	exit ;;
+    i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
+	echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
+	exit ;;
+    sparc*:BSD/OS:*:*)
+	echo sparc-unknown-bsdi${UNAME_RELEASE}
+	exit ;;
+    *:BSD/OS:*:*)
+	echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
+	exit ;;
+    *:FreeBSD:*:*)
+	case ${UNAME_MACHINE} in
+	    pc98)
+		echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
+	    amd64)
+		echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
+	    *)
+		echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
+	esac
+	exit ;;
+    i*:CYGWIN*:*)
+	echo ${UNAME_MACHINE}-pc-cygwin
+	exit ;;
+    *:MINGW*:*)
+	echo ${UNAME_MACHINE}-pc-mingw32
+	exit ;;
+    i*:windows32*:*)
+    	# uname -m includes "-pc" on this system.
+    	echo ${UNAME_MACHINE}-mingw32
+	exit ;;
+    i*:PW*:*)
+	echo ${UNAME_MACHINE}-pc-pw32
+	exit ;;
+    *:Interix*:[3456]*)
+    	case ${UNAME_MACHINE} in
+	    x86) 
+		echo i586-pc-interix${UNAME_RELEASE}
+		exit ;;
+	    EM64T | authenticamd)
+		echo x86_64-unknown-interix${UNAME_RELEASE}
+		exit ;;
+	esac ;;
+    [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
+	echo i${UNAME_MACHINE}-pc-mks
+	exit ;;
+    i*:Windows_NT*:* | Pentium*:Windows_NT*:*)
+	# How do we know it's Interix rather than the generic POSIX subsystem?
+	# It also conflicts with pre-2.0 versions of AT&T UWIN. Should we
+	# UNAME_MACHINE based on the output of uname instead of i386?
+	echo i586-pc-interix
+	exit ;;
+    i*:UWIN*:*)
+	echo ${UNAME_MACHINE}-pc-uwin
+	exit ;;
+    amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
+	echo x86_64-unknown-cygwin
+	exit ;;
+    p*:CYGWIN*:*)
+	echo powerpcle-unknown-cygwin
+	exit ;;
+    prep*:SunOS:5.*:*)
+	echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
+	exit ;;
+    *:GNU:*:*)
+	# the GNU system
+	echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
+	exit ;;
+    *:GNU/*:*:*)
+	# other systems with GNU libc and userland
+	echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu
+	exit ;;
+    i*86:Minix:*:*)
+	echo ${UNAME_MACHINE}-pc-minix
+	exit ;;
+    arm*:Linux:*:*)
+	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	exit ;;
+    avr32*:Linux:*:*)
+	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	exit ;;
+    cris:Linux:*:*)
+	echo cris-axis-linux-gnu
+	exit ;;
+    crisv32:Linux:*:*)
+	echo crisv32-axis-linux-gnu
+	exit ;;
+    frv:Linux:*:*)
+    	echo frv-unknown-linux-gnu
+	exit ;;
+    ia64:Linux:*:*)
+	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	exit ;;
+    m32r*:Linux:*:*)
+	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	exit ;;
+    m68*:Linux:*:*)
+	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	exit ;;
+    mips:Linux:*:*)
+	eval $set_cc_for_build
+	sed 's/^	//' << EOF >$dummy.c
+	#undef CPU
+	#undef mips
+	#undef mipsel
+	#if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
+	CPU=mipsel
+	#else
+	#if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
+	CPU=mips
+	#else
+	CPU=
+	#endif
+	#endif
+EOF
+	eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
+	    /^CPU/{
+		s: ::g
+		p
+	    }'`"
+	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
+	;;
+    mips64:Linux:*:*)
+	eval $set_cc_for_build
+	sed 's/^	//' << EOF >$dummy.c
+	#undef CPU
+	#undef mips64
+	#undef mips64el
+	#if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
+	CPU=mips64el
+	#else
+	#if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
+	CPU=mips64
+	#else
+	CPU=
+	#endif
+	#endif
+EOF
+	eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
+	    /^CPU/{
+		s: ::g
+		p
+	    }'`"
+	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
+	;;
+    or32:Linux:*:*)
+	echo or32-unknown-linux-gnu
+	exit ;;
+    ppc:Linux:*:*)
+	echo powerpc-unknown-linux-gnu
+	exit ;;
+    ppc64:Linux:*:*)
+	echo powerpc64-unknown-linux-gnu
+	exit ;;
+    alpha:Linux:*:*)
+	case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
+	  EV5)   UNAME_MACHINE=alphaev5 ;;
+	  EV56)  UNAME_MACHINE=alphaev56 ;;
+	  PCA56) UNAME_MACHINE=alphapca56 ;;
+	  PCA57) UNAME_MACHINE=alphapca56 ;;
+	  EV6)   UNAME_MACHINE=alphaev6 ;;
+	  EV67)  UNAME_MACHINE=alphaev67 ;;
+	  EV68*) UNAME_MACHINE=alphaev68 ;;
+        esac
+	objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null
+	if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
+	echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
+	exit ;;
+    parisc:Linux:*:* | hppa:Linux:*:*)
+	# Look for CPU level
+	case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
+	  PA7*) echo hppa1.1-unknown-linux-gnu ;;
+	  PA8*) echo hppa2.0-unknown-linux-gnu ;;
+	  *)    echo hppa-unknown-linux-gnu ;;
+	esac
+	exit ;;
+    parisc64:Linux:*:* | hppa64:Linux:*:*)
+	echo hppa64-unknown-linux-gnu
+	exit ;;
+    s390:Linux:*:* | s390x:Linux:*:*)
+	echo ${UNAME_MACHINE}-ibm-linux
+	exit ;;
+    sh64*:Linux:*:*)
+    	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	exit ;;
+    sh*:Linux:*:*)
+	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	exit ;;
+    sparc:Linux:*:* | sparc64:Linux:*:*)
+	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	exit ;;
+    vax:Linux:*:*)
+	echo ${UNAME_MACHINE}-dec-linux-gnu
+	exit ;;
+    x86_64:Linux:*:*)
+	echo x86_64-unknown-linux-gnu
+	exit ;;
+    xtensa:Linux:*:*)
+    	echo xtensa-unknown-linux-gnu
+	exit ;;
+    i*86:Linux:*:*)
+	# The BFD linker knows what the default object file format is, so
+	# first see if it will tell us. cd to the root directory to prevent
+	# problems with other programs or directories called `ld' in the path.
+	# Set LC_ALL=C to ensure ld outputs messages in English.
+	ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \
+			 | sed -ne '/supported targets:/!d
+				    s/[ 	][ 	]*/ /g
+				    s/.*supported targets: *//
+				    s/ .*//
+				    p'`
+        case "$ld_supported_targets" in
+	  elf32-i386)
+		TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu"
+		;;
+	  a.out-i386-linux)
+		echo "${UNAME_MACHINE}-pc-linux-gnuaout"
+		exit ;;
+	  coff-i386)
+		echo "${UNAME_MACHINE}-pc-linux-gnucoff"
+		exit ;;
+	  "")
+		# Either a pre-BFD a.out linker (linux-gnuoldld) or
+		# one that does not give us useful --help.
+		echo "${UNAME_MACHINE}-pc-linux-gnuoldld"
+		exit ;;
+	esac
+	# Determine whether the default compiler is a.out or elf
+	eval $set_cc_for_build
+	sed 's/^	//' << EOF >$dummy.c
+	#include <features.h>
+	#ifdef __ELF__
+	# ifdef __GLIBC__
+	#  if __GLIBC__ >= 2
+	LIBC=gnu
+	#  else
+	LIBC=gnulibc1
+	#  endif
+	# else
+	LIBC=gnulibc1
+	# endif
+	#else
+	#if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC)
+	LIBC=gnu
+	#else
+	LIBC=gnuaout
+	#endif
+	#endif
+	#ifdef __dietlibc__
+	LIBC=dietlibc
+	#endif
+EOF
+	eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
+	    /^LIBC/{
+		s: ::g
+		p
+	    }'`"
+	test x"${LIBC}" != x && {
+		echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
+		exit
+	}
+	test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; }
+	;;
+    i*86:DYNIX/ptx:4*:*)
+	# ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
+	# earlier versions are messed up and put the nodename in both
+	# sysname and nodename.
+	echo i386-sequent-sysv4
+	exit ;;
+    i*86:UNIX_SV:4.2MP:2.*)
+        # Unixware is an offshoot of SVR4, but it has its own version
+        # number series starting with 2...
+        # I am not positive that other SVR4 systems won't match this,
+	# I just have to hope.  -- rms.
+        # Use sysv4.2uw... so that sysv4* matches it.
+	echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
+	exit ;;
+    i*86:OS/2:*:*)
+	# If we were able to find `uname', then EMX Unix compatibility
+	# is probably installed.
+	echo ${UNAME_MACHINE}-pc-os2-emx
+	exit ;;
+    i*86:XTS-300:*:STOP)
+	echo ${UNAME_MACHINE}-unknown-stop
+	exit ;;
+    i*86:atheos:*:*)
+	echo ${UNAME_MACHINE}-unknown-atheos
+	exit ;;
+    i*86:syllable:*:*)
+	echo ${UNAME_MACHINE}-pc-syllable
+	exit ;;
+    i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*)
+	echo i386-unknown-lynxos${UNAME_RELEASE}
+	exit ;;
+    i*86:*DOS:*:*)
+	echo ${UNAME_MACHINE}-pc-msdosdjgpp
+	exit ;;
+    i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
+	UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
+	if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
+		echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL}
+	else
+		echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}
+	fi
+	exit ;;
+    i*86:*:5:[678]*)
+    	# UnixWare 7.x, OpenUNIX and OpenServer 6.
+	case `/bin/uname -X | grep "^Machine"` in
+	    *486*)	     UNAME_MACHINE=i486 ;;
+	    *Pentium)	     UNAME_MACHINE=i586 ;;
+	    *Pent*|*Celeron) UNAME_MACHINE=i686 ;;
+	esac
+	echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}
+	exit ;;
+    i*86:*:3.2:*)
+	if test -f /usr/options/cb.name; then
+		UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
+		echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
+	elif /bin/uname -X 2>/dev/null >/dev/null ; then
+		UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')`
+		(/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486
+		(/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \
+			&& UNAME_MACHINE=i586
+		(/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \
+			&& UNAME_MACHINE=i686
+		(/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \
+			&& UNAME_MACHINE=i686
+		echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
+	else
+		echo ${UNAME_MACHINE}-pc-sysv32
+	fi
+	exit ;;
+    pc:*:*:*)
+	# Left here for compatibility:
+        # uname -m prints for DJGPP always 'pc', but it prints nothing about
+        # the processor, so we play safe by assuming i386.
+	echo i386-pc-msdosdjgpp
+        exit ;;
+    Intel:Mach:3*:*)
+	echo i386-pc-mach3
+	exit ;;
+    paragon:*:*:*)
+	echo i860-intel-osf1
+	exit ;;
+    i860:*:4.*:*) # i860-SVR4
+	if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
+	  echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
+	else # Add other i860-SVR4 vendors below as they are discovered.
+	  echo i860-unknown-sysv${UNAME_RELEASE}  # Unknown i860-SVR4
+	fi
+	exit ;;
+    mini*:CTIX:SYS*5:*)
+	# "miniframe"
+	echo m68010-convergent-sysv
+	exit ;;
+    mc68k:UNIX:SYSTEM5:3.51m)
+	echo m68k-convergent-sysv
+	exit ;;
+    M680?0:D-NIX:5.3:*)
+	echo m68k-diab-dnix
+	exit ;;
+    M68*:*:R3V[5678]*:*)
+	test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;;
+    3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0)
+	OS_REL=''
+	test -r /etc/.relid \
+	&& OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
+	/bin/uname -p 2>/dev/null | grep 86 >/dev/null \
+	  && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
+	/bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
+	  && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
+    3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
+        /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
+          && { echo i486-ncr-sysv4; exit; } ;;
+    m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
+	echo m68k-unknown-lynxos${UNAME_RELEASE}
+	exit ;;
+    mc68030:UNIX_System_V:4.*:*)
+	echo m68k-atari-sysv4
+	exit ;;
+    TSUNAMI:LynxOS:2.*:*)
+	echo sparc-unknown-lynxos${UNAME_RELEASE}
+	exit ;;
+    rs6000:LynxOS:2.*:*)
+	echo rs6000-unknown-lynxos${UNAME_RELEASE}
+	exit ;;
+    PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*)
+	echo powerpc-unknown-lynxos${UNAME_RELEASE}
+	exit ;;
+    SM[BE]S:UNIX_SV:*:*)
+	echo mips-dde-sysv${UNAME_RELEASE}
+	exit ;;
+    RM*:ReliantUNIX-*:*:*)
+	echo mips-sni-sysv4
+	exit ;;
+    RM*:SINIX-*:*:*)
+	echo mips-sni-sysv4
+	exit ;;
+    *:SINIX-*:*:*)
+	if uname -p 2>/dev/null >/dev/null ; then
+		UNAME_MACHINE=`(uname -p) 2>/dev/null`
+		echo ${UNAME_MACHINE}-sni-sysv4
+	else
+		echo ns32k-sni-sysv
+	fi
+	exit ;;
+    PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
+                      # says <Richard.M.Bartel at ccMail.Census.GOV>
+        echo i586-unisys-sysv4
+        exit ;;
+    *:UNIX_System_V:4*:FTX*)
+	# From Gerald Hewes <hewes at openmarket.com>.
+	# How about differentiating between stratus architectures? -djm
+	echo hppa1.1-stratus-sysv4
+	exit ;;
+    *:*:*:FTX*)
+	# From seanf at swdc.stratus.com.
+	echo i860-stratus-sysv4
+	exit ;;
+    i*86:VOS:*:*)
+	# From Paul.Green at stratus.com.
+	echo ${UNAME_MACHINE}-stratus-vos
+	exit ;;
+    *:VOS:*:*)
+	# From Paul.Green at stratus.com.
+	echo hppa1.1-stratus-vos
+	exit ;;
+    mc68*:A/UX:*:*)
+	echo m68k-apple-aux${UNAME_RELEASE}
+	exit ;;
+    news*:NEWS-OS:6*:*)
+	echo mips-sony-newsos6
+	exit ;;
+    R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
+	if [ -d /usr/nec ]; then
+	        echo mips-nec-sysv${UNAME_RELEASE}
+	else
+	        echo mips-unknown-sysv${UNAME_RELEASE}
+	fi
+        exit ;;
+    BeBox:BeOS:*:*)	# BeOS running on hardware made by Be, PPC only.
+	echo powerpc-be-beos
+	exit ;;
+    BeMac:BeOS:*:*)	# BeOS running on Mac or Mac clone, PPC only.
+	echo powerpc-apple-beos
+	exit ;;
+    BePC:BeOS:*:*)	# BeOS running on Intel PC compatible.
+	echo i586-pc-beos
+	exit ;;
+    SX-4:SUPER-UX:*:*)
+	echo sx4-nec-superux${UNAME_RELEASE}
+	exit ;;
+    SX-5:SUPER-UX:*:*)
+	echo sx5-nec-superux${UNAME_RELEASE}
+	exit ;;
+    SX-6:SUPER-UX:*:*)
+	echo sx6-nec-superux${UNAME_RELEASE}
+	exit ;;
+    SX-7:SUPER-UX:*:*)
+	echo sx7-nec-superux${UNAME_RELEASE}
+	exit ;;
+    SX-8:SUPER-UX:*:*)
+	echo sx8-nec-superux${UNAME_RELEASE}
+	exit ;;
+    SX-8R:SUPER-UX:*:*)
+	echo sx8r-nec-superux${UNAME_RELEASE}
+	exit ;;
+    Power*:Rhapsody:*:*)
+	echo powerpc-apple-rhapsody${UNAME_RELEASE}
+	exit ;;
+    *:Rhapsody:*:*)
+	echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
+	exit ;;
+    *:Darwin:*:*)
+	UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
+	case $UNAME_PROCESSOR in
+	    unknown) UNAME_PROCESSOR=powerpc ;;
+	esac
+	echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
+	exit ;;
+    *:procnto*:*:* | *:QNX:[0123456789]*:*)
+	UNAME_PROCESSOR=`uname -p`
+	if test "$UNAME_PROCESSOR" = "x86"; then
+		UNAME_PROCESSOR=i386
+		UNAME_MACHINE=pc
+	fi
+	echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE}
+	exit ;;
+    *:QNX:*:4*)
+	echo i386-pc-qnx
+	exit ;;
+    NSE-?:NONSTOP_KERNEL:*:*)
+	echo nse-tandem-nsk${UNAME_RELEASE}
+	exit ;;
+    NSR-?:NONSTOP_KERNEL:*:*)
+	echo nsr-tandem-nsk${UNAME_RELEASE}
+	exit ;;
+    *:NonStop-UX:*:*)
+	echo mips-compaq-nonstopux
+	exit ;;
+    BS2000:POSIX*:*:*)
+	echo bs2000-siemens-sysv
+	exit ;;
+    DS/*:UNIX_System_V:*:*)
+	echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}
+	exit ;;
+    *:Plan9:*:*)
+	# "uname -m" is not consistent, so use $cputype instead. 386
+	# is converted to i386 for consistency with other x86
+	# operating systems.
+	if test "$cputype" = "386"; then
+	    UNAME_MACHINE=i386
+	else
+	    UNAME_MACHINE="$cputype"
+	fi
+	echo ${UNAME_MACHINE}-unknown-plan9
+	exit ;;
+    *:TOPS-10:*:*)
+	echo pdp10-unknown-tops10
+	exit ;;
+    *:TENEX:*:*)
+	echo pdp10-unknown-tenex
+	exit ;;
+    KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*)
+	echo pdp10-dec-tops20
+	exit ;;
+    XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*)
+	echo pdp10-xkl-tops20
+	exit ;;
+    *:TOPS-20:*:*)
+	echo pdp10-unknown-tops20
+	exit ;;
+    *:ITS:*:*)
+	echo pdp10-unknown-its
+	exit ;;
+    SEI:*:*:SEIUX)
+        echo mips-sei-seiux${UNAME_RELEASE}
+	exit ;;
+    *:DragonFly:*:*)
+	echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
+	exit ;;
+    *:*VMS:*:*)
+    	UNAME_MACHINE=`(uname -p) 2>/dev/null`
+	case "${UNAME_MACHINE}" in
+	    A*) echo alpha-dec-vms ; exit ;;
+	    I*) echo ia64-dec-vms ; exit ;;
+	    V*) echo vax-dec-vms ; exit ;;
+	esac ;;
+    *:XENIX:*:SysV)
+	echo i386-pc-xenix
+	exit ;;
+    i*86:skyos:*:*)
+	echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//'
+	exit ;;
+    i*86:rdos:*:*)
+	echo ${UNAME_MACHINE}-pc-rdos
+	exit ;;
+esac
+
+#echo '(No uname command or uname output not recognized.)' 1>&2
+#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2
+
+eval $set_cc_for_build
+cat >$dummy.c <<EOF
+#ifdef _SEQUENT_
+# include <sys/types.h>
+# include <sys/utsname.h>
+#endif
+main ()
+{
+#if defined (sony)
+#if defined (MIPSEB)
+  /* BFD wants "bsd" instead of "newsos".  Perhaps BFD should be changed,
+     I don't know....  */
+  printf ("mips-sony-bsd\n"); exit (0);
+#else
+#include <sys/param.h>
+  printf ("m68k-sony-newsos%s\n",
+#ifdef NEWSOS4
+          "4"
+#else
+	  ""
+#endif
+         ); exit (0);
+#endif
+#endif
+
+#if defined (__arm) && defined (__acorn) && defined (__unix)
+  printf ("arm-acorn-riscix\n"); exit (0);
+#endif
+
+#if defined (hp300) && !defined (hpux)
+  printf ("m68k-hp-bsd\n"); exit (0);
+#endif
+
+#if defined (NeXT)
+#if !defined (__ARCHITECTURE__)
+#define __ARCHITECTURE__ "m68k"
+#endif
+  int version;
+  version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
+  if (version < 4)
+    printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version);
+  else
+    printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version);
+  exit (0);
+#endif
+
+#if defined (MULTIMAX) || defined (n16)
+#if defined (UMAXV)
+  printf ("ns32k-encore-sysv\n"); exit (0);
+#else
+#if defined (CMU)
+  printf ("ns32k-encore-mach\n"); exit (0);
+#else
+  printf ("ns32k-encore-bsd\n"); exit (0);
+#endif
+#endif
+#endif
+
+#if defined (__386BSD__)
+  printf ("i386-pc-bsd\n"); exit (0);
+#endif
+
+#if defined (sequent)
+#if defined (i386)
+  printf ("i386-sequent-dynix\n"); exit (0);
+#endif
+#if defined (ns32000)
+  printf ("ns32k-sequent-dynix\n"); exit (0);
+#endif
+#endif
+
+#if defined (_SEQUENT_)
+    struct utsname un;
+
+    uname(&un);
+
+    if (strncmp(un.version, "V2", 2) == 0) {
+	printf ("i386-sequent-ptx2\n"); exit (0);
+    }
+    if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
+	printf ("i386-sequent-ptx1\n"); exit (0);
+    }
+    printf ("i386-sequent-ptx\n"); exit (0);
+
+#endif
+
+#if defined (vax)
+# if !defined (ultrix)
+#  include <sys/param.h>
+#  if defined (BSD)
+#   if BSD == 43
+      printf ("vax-dec-bsd4.3\n"); exit (0);
+#   else
+#    if BSD == 199006
+      printf ("vax-dec-bsd4.3reno\n"); exit (0);
+#    else
+      printf ("vax-dec-bsd\n"); exit (0);
+#    endif
+#   endif
+#  else
+    printf ("vax-dec-bsd\n"); exit (0);
+#  endif
+# else
+    printf ("vax-dec-ultrix\n"); exit (0);
+# endif
+#endif
+
+#if defined (alliant) && defined (i860)
+  printf ("i860-alliant-bsd\n"); exit (0);
+#endif
+
+  exit (1);
+}
+EOF
+
+$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` &&
+	{ echo "$SYSTEM_NAME"; exit; }
+
+# Apollos put the system type in the environment.
+
+test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; }
+
+# Convex versions that predate uname can use getsysinfo(1)
+
+if [ -x /usr/convex/getsysinfo ]
+then
+    case `getsysinfo -f cpu_type` in
+    c1*)
+	echo c1-convex-bsd
+	exit ;;
+    c2*)
+	if getsysinfo -f scalar_acc
+	then echo c32-convex-bsd
+	else echo c2-convex-bsd
+	fi
+	exit ;;
+    c34*)
+	echo c34-convex-bsd
+	exit ;;
+    c38*)
+	echo c38-convex-bsd
+	exit ;;
+    c4*)
+	echo c4-convex-bsd
+	exit ;;
+    esac
+fi
+
+cat >&2 <<EOF
+$0: unable to guess system type
+
+This script, last modified $timestamp, has failed to recognize
+the operating system you are using. It is advised that you
+download the most up to date version of the config scripts from
+
+  http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess
+and
+  http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub
+
+If the version you run ($0) is already up to date, please
+send the following data and any information you think might be
+pertinent to <config-patches at gnu.org> in order to provide the needed
+information to handle your system.
+
+config.guess timestamp = $timestamp
+
+uname -m = `(uname -m) 2>/dev/null || echo unknown`
+uname -r = `(uname -r) 2>/dev/null || echo unknown`
+uname -s = `(uname -s) 2>/dev/null || echo unknown`
+uname -v = `(uname -v) 2>/dev/null || echo unknown`
+
+/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null`
+/bin/uname -X     = `(/bin/uname -X) 2>/dev/null`
+
+hostinfo               = `(hostinfo) 2>/dev/null`
+/bin/universe          = `(/bin/universe) 2>/dev/null`
+/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null`
+/bin/arch              = `(/bin/arch) 2>/dev/null`
+/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null`
+/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null`
+
+UNAME_MACHINE = ${UNAME_MACHINE}
+UNAME_RELEASE = ${UNAME_RELEASE}
+UNAME_SYSTEM  = ${UNAME_SYSTEM}
+UNAME_VERSION = ${UNAME_VERSION}
+EOF
+
+exit 1
+
+# Local variables:
+# eval: (add-hook 'write-file-hooks 'time-stamp)
+# time-stamp-start: "timestamp='"
+# time-stamp-format: "%:y-%02m-%02d"
+# time-stamp-end: "'"
+# End:
diff --git a/config.sub b/config.sub
new file mode 100755
index 0000000..c060f44
--- /dev/null
+++ b/config.sub
@@ -0,0 +1,1626 @@
+#! /bin/sh
+# Configuration validation subroutine script.
+#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+#   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
+#   Inc.
+
+timestamp='2007-04-29'
+
+# This file is (in principle) common to ALL GNU software.
+# The presence of a machine in this file suggests that SOME GNU software
+# can handle that machine.  It does not imply ALL GNU software can.
+#
+# This file is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
+# 02110-1301, USA.
+#
+# As a special exception to the GNU General Public License, if you
+# distribute this file as part of a program that contains a
+# configuration script generated by Autoconf, you may include it under
+# the same distribution terms that you use for the rest of that program.
+
+
+# Please send patches to <config-patches at gnu.org>.  Submit a context
+# diff and a properly formatted ChangeLog entry.
+#
+# Configuration subroutine to validate and canonicalize a configuration type.
+# Supply the specified configuration type as an argument.
+# If it is invalid, we print an error message on stderr and exit with code 1.
+# Otherwise, we print the canonical config type on stdout and succeed.
+
+# This file is supposed to be the same for all GNU packages
+# and recognize all the CPU types, system types and aliases
+# that are meaningful with *any* GNU software.
+# Each package is responsible for reporting which valid configurations
+# it does not support.  The user should be able to distinguish
+# a failure to support a valid configuration from a meaningless
+# configuration.
+
+# The goal of this file is to map all the various variations of a given
+# machine specification into a single specification in the form:
+#	CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
+# or in some cases, the newer four-part form:
+#	CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
+# It is wrong to echo any other type of specification.
+
+me=`echo "$0" | sed -e 's,.*/,,'`
+
+usage="\
+Usage: $0 [OPTION] CPU-MFR-OPSYS
+       $0 [OPTION] ALIAS
+
+Canonicalize a configuration name.
+
+Operation modes:
+  -h, --help         print this help, then exit
+  -t, --time-stamp   print date of last modification, then exit
+  -v, --version      print version number, then exit
+
+Report bugs and patches to <config-patches at gnu.org>."
+
+version="\
+GNU config.sub ($timestamp)
+
+Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
+Free Software Foundation, Inc.
+
+This is free software; see the source for copying conditions.  There is NO
+warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
+
+help="
+Try \`$me --help' for more information."
+
+# Parse command line
+while test $# -gt 0 ; do
+  case $1 in
+    --time-stamp | --time* | -t )
+       echo "$timestamp" ; exit ;;
+    --version | -v )
+       echo "$version" ; exit ;;
+    --help | --h* | -h )
+       echo "$usage"; exit ;;
+    -- )     # Stop option processing
+       shift; break ;;
+    - )	# Use stdin as input.
+       break ;;
+    -* )
+       echo "$me: invalid option $1$help"
+       exit 1 ;;
+
+    *local*)
+       # First pass through any local machine types.
+       echo $1
+       exit ;;
+
+    * )
+       break ;;
+  esac
+done
+
+case $# in
+ 0) echo "$me: missing argument$help" >&2
+    exit 1;;
+ 1) ;;
+ *) echo "$me: too many arguments$help" >&2
+    exit 1;;
+esac
+
+# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
+# Here we must recognize all the valid KERNEL-OS combinations.
+maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
+case $maybe_os in
+  nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \
+  uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \
+  storm-chaos* | os2-emx* | rtmk-nova*)
+    os=-$maybe_os
+    basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
+    ;;
+  *)
+    basic_machine=`echo $1 | sed 's/-[^-]*$//'`
+    if [ $basic_machine != $1 ]
+    then os=`echo $1 | sed 's/.*-/-/'`
+    else os=; fi
+    ;;
+esac
+
+### Let's recognize common machines as not being operating systems so
+### that things like config.sub decstation-3100 work.  We also
+### recognize some manufacturers as not being operating systems, so we
+### can provide default operating systems below.
+case $os in
+	-sun*os*)
+		# Prevent following clause from handling this invalid input.
+		;;
+	-dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
+	-att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
+	-unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
+	-convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
+	-c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
+	-harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
+	-apple | -axis | -knuth | -cray)
+		os=
+		basic_machine=$1
+		;;
+	-sim | -cisco | -oki | -wec | -winbond)
+		os=
+		basic_machine=$1
+		;;
+	-scout)
+		;;
+	-wrs)
+		os=-vxworks
+		basic_machine=$1
+		;;
+	-chorusos*)
+		os=-chorusos
+		basic_machine=$1
+		;;
+ 	-chorusrdb)
+ 		os=-chorusrdb
+		basic_machine=$1
+ 		;;
+	-hiux*)
+		os=-hiuxwe2
+		;;
+	-sco6)
+		os=-sco5v6
+		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+		;;
+	-sco5)
+		os=-sco3.2v5
+		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+		;;
+	-sco4)
+		os=-sco3.2v4
+		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+		;;
+	-sco3.2.[4-9]*)
+		os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
+		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+		;;
+	-sco3.2v[4-9]*)
+		# Don't forget version if it is 3.2v4 or newer.
+		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+		;;
+	-sco5v6*)
+		# Don't forget version if it is 3.2v4 or newer.
+		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+		;;
+	-sco*)
+		os=-sco3.2v2
+		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+		;;
+	-udk*)
+		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+		;;
+	-isc)
+		os=-isc2.2
+		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+		;;
+	-clix*)
+		basic_machine=clipper-intergraph
+		;;
+	-isc*)
+		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+		;;
+	-lynx*)
+		os=-lynxos
+		;;
+	-ptx*)
+		basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
+		;;
+	-windowsnt*)
+		os=`echo $os | sed -e 's/windowsnt/winnt/'`
+		;;
+	-psos*)
+		os=-psos
+		;;
+	-mint | -mint[0-9]*)
+		basic_machine=m68k-atari
+		os=-mint
+		;;
+esac
+
+# Decode aliases for certain CPU-COMPANY combinations.
+case $basic_machine in
+	# Recognize the basic CPU types without company name.
+	# Some are omitted here because they have special meanings below.
+	1750a | 580 \
+	| a29k \
+	| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
+	| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
+	| am33_2.0 \
+	| arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \
+	| bfin \
+	| c4x | clipper \
+	| d10v | d30v | dlx | dsp16xx \
+	| fido | fr30 | frv \
+	| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
+	| i370 | i860 | i960 | ia64 \
+	| ip2k | iq2000 \
+	| m32c | m32r | m32rle | m68000 | m68k | m88k \
+	| maxq | mb | microblaze | mcore | mep \
+	| mips | mipsbe | mipseb | mipsel | mipsle \
+	| mips16 \
+	| mips64 | mips64el \
+	| mips64vr | mips64vrel \
+	| mips64orion | mips64orionel \
+	| mips64vr4100 | mips64vr4100el \
+	| mips64vr4300 | mips64vr4300el \
+	| mips64vr5000 | mips64vr5000el \
+	| mips64vr5900 | mips64vr5900el \
+	| mipsisa32 | mipsisa32el \
+	| mipsisa32r2 | mipsisa32r2el \
+	| mipsisa64 | mipsisa64el \
+	| mipsisa64r2 | mipsisa64r2el \
+	| mipsisa64sb1 | mipsisa64sb1el \
+	| mipsisa64sr71k | mipsisa64sr71kel \
+	| mipstx39 | mipstx39el \
+	| mn10200 | mn10300 \
+	| mt \
+	| msp430 \
+	| nios | nios2 \
+	| ns16k | ns32k \
+	| or32 \
+	| pdp10 | pdp11 | pj | pjl \
+	| powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
+	| pyramid \
+	| score \
+	| sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
+	| sh64 | sh64le \
+	| sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
+	| sparcv8 | sparcv9 | sparcv9b | sparcv9v \
+	| spu | strongarm \
+	| tahoe | thumb | tic4x | tic80 | tron \
+	| v850 | v850e \
+	| we32k \
+	| x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \
+	| z8k)
+		basic_machine=$basic_machine-unknown
+		;;
+	m6811 | m68hc11 | m6812 | m68hc12)
+		# Motorola 68HC11/12.
+		basic_machine=$basic_machine-unknown
+		os=-none
+		;;
+	m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
+		;;
+	ms1)
+		basic_machine=mt-unknown
+		;;
+
+	# We use `pc' rather than `unknown'
+	# because (1) that's what they normally are, and
+	# (2) the word "unknown" tends to confuse beginning users.
+	i*86 | x86_64)
+	  basic_machine=$basic_machine-pc
+	  ;;
+	# Object if more than one company name word.
+	*-*-*)
+		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
+		exit 1
+		;;
+	# Recognize the basic CPU types with company name.
+	580-* \
+	| a29k-* \
+	| alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
+	| alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
+	| alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
+	| arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
+	| avr-* | avr32-* \
+	| bfin-* | bs2000-* \
+	| c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \
+	| clipper-* | craynv-* | cydra-* \
+	| d10v-* | d30v-* | dlx-* \
+	| elxsi-* \
+	| f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
+	| h8300-* | h8500-* \
+	| hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
+	| i*86-* | i860-* | i960-* | ia64-* \
+	| ip2k-* | iq2000-* \
+	| m32c-* | m32r-* | m32rle-* \
+	| m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
+	| m88110-* | m88k-* | maxq-* | mcore-* \
+	| mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
+	| mips16-* \
+	| mips64-* | mips64el-* \
+	| mips64vr-* | mips64vrel-* \
+	| mips64orion-* | mips64orionel-* \
+	| mips64vr4100-* | mips64vr4100el-* \
+	| mips64vr4300-* | mips64vr4300el-* \
+	| mips64vr5000-* | mips64vr5000el-* \
+	| mips64vr5900-* | mips64vr5900el-* \
+	| mipsisa32-* | mipsisa32el-* \
+	| mipsisa32r2-* | mipsisa32r2el-* \
+	| mipsisa64-* | mipsisa64el-* \
+	| mipsisa64r2-* | mipsisa64r2el-* \
+	| mipsisa64sb1-* | mipsisa64sb1el-* \
+	| mipsisa64sr71k-* | mipsisa64sr71kel-* \
+	| mipstx39-* | mipstx39el-* \
+	| mmix-* \
+	| mt-* \
+	| msp430-* \
+	| nios-* | nios2-* \
+	| none-* | np1-* | ns16k-* | ns32k-* \
+	| orion-* \
+	| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
+	| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
+	| pyramid-* \
+	| romp-* | rs6000-* \
+	| sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
+	| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
+	| sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
+	| sparclite-* \
+	| sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \
+	| tahoe-* | thumb-* \
+	| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
+	| tron-* \
+	| v850-* | v850e-* | vax-* \
+	| we32k-* \
+	| x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \
+	| xstormy16-* | xtensa-* \
+	| ymp-* \
+	| z8k-*)
+		;;
+	# Recognize the various machine names and aliases which stand
+	# for a CPU type and a company and sometimes even an OS.
+	386bsd)
+		basic_machine=i386-unknown
+		os=-bsd
+		;;
+	3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
+		basic_machine=m68000-att
+		;;
+	3b*)
+		basic_machine=we32k-att
+		;;
+	a29khif)
+		basic_machine=a29k-amd
+		os=-udi
+		;;
+    	abacus)
+		basic_machine=abacus-unknown
+		;;
+	adobe68k)
+		basic_machine=m68010-adobe
+		os=-scout
+		;;
+	alliant | fx80)
+		basic_machine=fx80-alliant
+		;;
+	altos | altos3068)
+		basic_machine=m68k-altos
+		;;
+	am29k)
+		basic_machine=a29k-none
+		os=-bsd
+		;;
+	amd64)
+		basic_machine=x86_64-pc
+		;;
+	amd64-*)
+		basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
+		;;
+	amdahl)
+		basic_machine=580-amdahl
+		os=-sysv
+		;;
+	amiga | amiga-*)
+		basic_machine=m68k-unknown
+		;;
+	amigaos | amigados)
+		basic_machine=m68k-unknown
+		os=-amigaos
+		;;
+	amigaunix | amix)
+		basic_machine=m68k-unknown
+		os=-sysv4
+		;;
+	apollo68)
+		basic_machine=m68k-apollo
+		os=-sysv
+		;;
+	apollo68bsd)
+		basic_machine=m68k-apollo
+		os=-bsd
+		;;
+	aux)
+		basic_machine=m68k-apple
+		os=-aux
+		;;
+	balance)
+		basic_machine=ns32k-sequent
+		os=-dynix
+		;;
+	c90)
+		basic_machine=c90-cray
+		os=-unicos
+		;;
+	convex-c1)
+		basic_machine=c1-convex
+		os=-bsd
+		;;
+	convex-c2)
+		basic_machine=c2-convex
+		os=-bsd
+		;;
+	convex-c32)
+		basic_machine=c32-convex
+		os=-bsd
+		;;
+	convex-c34)
+		basic_machine=c34-convex
+		os=-bsd
+		;;
+	convex-c38)
+		basic_machine=c38-convex
+		os=-bsd
+		;;
+	cray | j90)
+		basic_machine=j90-cray
+		os=-unicos
+		;;
+	craynv)
+		basic_machine=craynv-cray
+		os=-unicosmp
+		;;
+	cr16c)
+		basic_machine=cr16c-unknown
+		os=-elf
+		;;
+	crds | unos)
+		basic_machine=m68k-crds
+		;;
+	crisv32 | crisv32-* | etraxfs*)
+		basic_machine=crisv32-axis
+		;;
+	cris | cris-* | etrax*)
+		basic_machine=cris-axis
+		;;
+	crx)
+		basic_machine=crx-unknown
+		os=-elf
+		;;
+	da30 | da30-*)
+		basic_machine=m68k-da30
+		;;
+	decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
+		basic_machine=mips-dec
+		;;
+	decsystem10* | dec10*)
+		basic_machine=pdp10-dec
+		os=-tops10
+		;;
+	decsystem20* | dec20*)
+		basic_machine=pdp10-dec
+		os=-tops20
+		;;
+	delta | 3300 | motorola-3300 | motorola-delta \
+	      | 3300-motorola | delta-motorola)
+		basic_machine=m68k-motorola
+		;;
+	delta88)
+		basic_machine=m88k-motorola
+		os=-sysv3
+		;;
+	djgpp)
+		basic_machine=i586-pc
+		os=-msdosdjgpp
+		;;
+	dpx20 | dpx20-*)
+		basic_machine=rs6000-bull
+		os=-bosx
+		;;
+	dpx2* | dpx2*-bull)
+		basic_machine=m68k-bull
+		os=-sysv3
+		;;
+	ebmon29k)
+		basic_machine=a29k-amd
+		os=-ebmon
+		;;
+	elxsi)
+		basic_machine=elxsi-elxsi
+		os=-bsd
+		;;
+	encore | umax | mmax)
+		basic_machine=ns32k-encore
+		;;
+	es1800 | OSE68k | ose68k | ose | OSE)
+		basic_machine=m68k-ericsson
+		os=-ose
+		;;
+	fx2800)
+		basic_machine=i860-alliant
+		;;
+	genix)
+		basic_machine=ns32k-ns
+		;;
+	gmicro)
+		basic_machine=tron-gmicro
+		os=-sysv
+		;;
+	go32)
+		basic_machine=i386-pc
+		os=-go32
+		;;
+	h3050r* | hiux*)
+		basic_machine=hppa1.1-hitachi
+		os=-hiuxwe2
+		;;
+	h8300hms)
+		basic_machine=h8300-hitachi
+		os=-hms
+		;;
+	h8300xray)
+		basic_machine=h8300-hitachi
+		os=-xray
+		;;
+	h8500hms)
+		basic_machine=h8500-hitachi
+		os=-hms
+		;;
+	harris)
+		basic_machine=m88k-harris
+		os=-sysv3
+		;;
+	hp300-*)
+		basic_machine=m68k-hp
+		;;
+	hp300bsd)
+		basic_machine=m68k-hp
+		os=-bsd
+		;;
+	hp300hpux)
+		basic_machine=m68k-hp
+		os=-hpux
+		;;
+	hp3k9[0-9][0-9] | hp9[0-9][0-9])
+		basic_machine=hppa1.0-hp
+		;;
+	hp9k2[0-9][0-9] | hp9k31[0-9])
+		basic_machine=m68000-hp
+		;;
+	hp9k3[2-9][0-9])
+		basic_machine=m68k-hp
+		;;
+	hp9k6[0-9][0-9] | hp6[0-9][0-9])
+		basic_machine=hppa1.0-hp
+		;;
+	hp9k7[0-79][0-9] | hp7[0-79][0-9])
+		basic_machine=hppa1.1-hp
+		;;
+	hp9k78[0-9] | hp78[0-9])
+		# FIXME: really hppa2.0-hp
+		basic_machine=hppa1.1-hp
+		;;
+	hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
+		# FIXME: really hppa2.0-hp
+		basic_machine=hppa1.1-hp
+		;;
+	hp9k8[0-9][13679] | hp8[0-9][13679])
+		basic_machine=hppa1.1-hp
+		;;
+	hp9k8[0-9][0-9] | hp8[0-9][0-9])
+		basic_machine=hppa1.0-hp
+		;;
+	hppa-next)
+		os=-nextstep3
+		;;
+	hppaosf)
+		basic_machine=hppa1.1-hp
+		os=-osf
+		;;
+	hppro)
+		basic_machine=hppa1.1-hp
+		os=-proelf
+		;;
+	i370-ibm* | ibm*)
+		basic_machine=i370-ibm
+		;;
+# I'm not sure what "Sysv32" means.  Should this be sysv3.2?
+	i*86v32)
+		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
+		os=-sysv32
+		;;
+	i*86v4*)
+		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
+		os=-sysv4
+		;;
+	i*86v)
+		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
+		os=-sysv
+		;;
+	i*86sol2)
+		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
+		os=-solaris2
+		;;
+	i386mach)
+		basic_machine=i386-mach
+		os=-mach
+		;;
+	i386-vsta | vsta)
+		basic_machine=i386-unknown
+		os=-vsta
+		;;
+	iris | iris4d)
+		basic_machine=mips-sgi
+		case $os in
+		    -irix*)
+			;;
+		    *)
+			os=-irix4
+			;;
+		esac
+		;;
+	isi68 | isi)
+		basic_machine=m68k-isi
+		os=-sysv
+		;;
+	m88k-omron*)
+		basic_machine=m88k-omron
+		;;
+	magnum | m3230)
+		basic_machine=mips-mips
+		os=-sysv
+		;;
+	merlin)
+		basic_machine=ns32k-utek
+		os=-sysv
+		;;
+	mingw32)
+		basic_machine=i386-pc
+		os=-mingw32
+		;;
+	mingw32ce)
+		basic_machine=arm-unknown
+		os=-mingw32ce
+		;;
+	miniframe)
+		basic_machine=m68000-convergent
+		;;
+	*mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)
+		basic_machine=m68k-atari
+		os=-mint
+		;;
+	mips3*-*)
+		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
+		;;
+	mips3*)
+		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
+		;;
+	monitor)
+		basic_machine=m68k-rom68k
+		os=-coff
+		;;
+	morphos)
+		basic_machine=powerpc-unknown
+		os=-morphos
+		;;
+	msdos)
+		basic_machine=i386-pc
+		os=-msdos
+		;;
+	ms1-*)
+		basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
+		;;
+	mvs)
+		basic_machine=i370-ibm
+		os=-mvs
+		;;
+	ncr3000)
+		basic_machine=i486-ncr
+		os=-sysv4
+		;;
+	netbsd386)
+		basic_machine=i386-unknown
+		os=-netbsd
+		;;
+	netwinder)
+		basic_machine=armv4l-rebel
+		os=-linux
+		;;
+	news | news700 | news800 | news900)
+		basic_machine=m68k-sony
+		os=-newsos
+		;;
+	news1000)
+		basic_machine=m68030-sony
+		os=-newsos
+		;;
+	news-3600 | risc-news)
+		basic_machine=mips-sony
+		os=-newsos
+		;;
+	necv70)
+		basic_machine=v70-nec
+		os=-sysv
+		;;
+	next | m*-next )
+		basic_machine=m68k-next
+		case $os in
+		    -nextstep* )
+			;;
+		    -ns2*)
+		      os=-nextstep2
+			;;
+		    *)
+		      os=-nextstep3
+			;;
+		esac
+		;;
+	nh3000)
+		basic_machine=m68k-harris
+		os=-cxux
+		;;
+	nh[45]000)
+		basic_machine=m88k-harris
+		os=-cxux
+		;;
+	nindy960)
+		basic_machine=i960-intel
+		os=-nindy
+		;;
+	mon960)
+		basic_machine=i960-intel
+		os=-mon960
+		;;
+	nonstopux)
+		basic_machine=mips-compaq
+		os=-nonstopux
+		;;
+	np1)
+		basic_machine=np1-gould
+		;;
+	nsr-tandem)
+		basic_machine=nsr-tandem
+		;;
+	op50n-* | op60c-*)
+		basic_machine=hppa1.1-oki
+		os=-proelf
+		;;
+	openrisc | openrisc-*)
+		basic_machine=or32-unknown
+		;;
+	os400)
+		basic_machine=powerpc-ibm
+		os=-os400
+		;;
+	OSE68000 | ose68000)
+		basic_machine=m68000-ericsson
+		os=-ose
+		;;
+	os68k)
+		basic_machine=m68k-none
+		os=-os68k
+		;;
+	pa-hitachi)
+		basic_machine=hppa1.1-hitachi
+		os=-hiuxwe2
+		;;
+	paragon)
+		basic_machine=i860-intel
+		os=-osf
+		;;
+	pbd)
+		basic_machine=sparc-tti
+		;;
+	pbb)
+		basic_machine=m68k-tti
+		;;
+	pc532 | pc532-*)
+		basic_machine=ns32k-pc532
+		;;
+	pc98)
+		basic_machine=i386-pc
+		;;
+	pc98-*)
+		basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
+		;;
+	pentium | p5 | k5 | k6 | nexgen | viac3)
+		basic_machine=i586-pc
+		;;
+	pentiumpro | p6 | 6x86 | athlon | athlon_*)
+		basic_machine=i686-pc
+		;;
+	pentiumii | pentium2 | pentiumiii | pentium3)
+		basic_machine=i686-pc
+		;;
+	pentium4)
+		basic_machine=i786-pc
+		;;
+	pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
+		basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
+		;;
+	pentiumpro-* | p6-* | 6x86-* | athlon-*)
+		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
+		;;
+	pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
+		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
+		;;
+	pentium4-*)
+		basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
+		;;
+	pn)
+		basic_machine=pn-gould
+		;;
+	power)	basic_machine=power-ibm
+		;;
+	ppc)	basic_machine=powerpc-unknown
+		;;
+	ppc-*)	basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
+		;;
+	ppcle | powerpclittle | ppc-le | powerpc-little)
+		basic_machine=powerpcle-unknown
+		;;
+	ppcle-* | powerpclittle-*)
+		basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
+		;;
+	ppc64)	basic_machine=powerpc64-unknown
+		;;
+	ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
+		;;
+	ppc64le | powerpc64little | ppc64-le | powerpc64-little)
+		basic_machine=powerpc64le-unknown
+		;;
+	ppc64le-* | powerpc64little-*)
+		basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
+		;;
+	ps2)
+		basic_machine=i386-ibm
+		;;
+	pw32)
+		basic_machine=i586-unknown
+		os=-pw32
+		;;
+	rdos)
+		basic_machine=i386-pc
+		os=-rdos
+		;;
+	rom68k)
+		basic_machine=m68k-rom68k
+		os=-coff
+		;;
+	rm[46]00)
+		basic_machine=mips-siemens
+		;;
+	rtpc | rtpc-*)
+		basic_machine=romp-ibm
+		;;
+	s390 | s390-*)
+		basic_machine=s390-ibm
+		;;
+	s390x | s390x-*)
+		basic_machine=s390x-ibm
+		;;
+	sa29200)
+		basic_machine=a29k-amd
+		os=-udi
+		;;
+	sb1)
+		basic_machine=mipsisa64sb1-unknown
+		;;
+	sb1el)
+		basic_machine=mipsisa64sb1el-unknown
+		;;
+	sde)
+		basic_machine=mipsisa32-sde
+		os=-elf
+		;;
+	sei)
+		basic_machine=mips-sei
+		os=-seiux
+		;;
+	sequent)
+		basic_machine=i386-sequent
+		;;
+	sh)
+		basic_machine=sh-hitachi
+		os=-hms
+		;;
+	sh5el)
+		basic_machine=sh5le-unknown
+		;;
+	sh64)
+		basic_machine=sh64-unknown
+		;;
+	sparclite-wrs | simso-wrs)
+		basic_machine=sparclite-wrs
+		os=-vxworks
+		;;
+	sps7)
+		basic_machine=m68k-bull
+		os=-sysv2
+		;;
+	spur)
+		basic_machine=spur-unknown
+		;;
+	st2000)
+		basic_machine=m68k-tandem
+		;;
+	stratus)
+		basic_machine=i860-stratus
+		os=-sysv4
+		;;
+	sun2)
+		basic_machine=m68000-sun
+		;;
+	sun2os3)
+		basic_machine=m68000-sun
+		os=-sunos3
+		;;
+	sun2os4)
+		basic_machine=m68000-sun
+		os=-sunos4
+		;;
+	sun3os3)
+		basic_machine=m68k-sun
+		os=-sunos3
+		;;
+	sun3os4)
+		basic_machine=m68k-sun
+		os=-sunos4
+		;;
+	sun4os3)
+		basic_machine=sparc-sun
+		os=-sunos3
+		;;
+	sun4os4)
+		basic_machine=sparc-sun
+		os=-sunos4
+		;;
+	sun4sol2)
+		basic_machine=sparc-sun
+		os=-solaris2
+		;;
+	sun3 | sun3-*)
+		basic_machine=m68k-sun
+		;;
+	sun4)
+		basic_machine=sparc-sun
+		;;
+	sun386 | sun386i | roadrunner)
+		basic_machine=i386-sun
+		;;
+	sv1)
+		basic_machine=sv1-cray
+		os=-unicos
+		;;
+	symmetry)
+		basic_machine=i386-sequent
+		os=-dynix
+		;;
+	t3e)
+		basic_machine=alphaev5-cray
+		os=-unicos
+		;;
+	t90)
+		basic_machine=t90-cray
+		os=-unicos
+		;;
+	tic54x | c54x*)
+		basic_machine=tic54x-unknown
+		os=-coff
+		;;
+	tic55x | c55x*)
+		basic_machine=tic55x-unknown
+		os=-coff
+		;;
+	tic6x | c6x*)
+		basic_machine=tic6x-unknown
+		os=-coff
+		;;
+	tx39)
+		basic_machine=mipstx39-unknown
+		;;
+	tx39el)
+		basic_machine=mipstx39el-unknown
+		;;
+	toad1)
+		basic_machine=pdp10-xkl
+		os=-tops20
+		;;
+	tower | tower-32)
+		basic_machine=m68k-ncr
+		;;
+	tpf)
+		basic_machine=s390x-ibm
+		os=-tpf
+		;;
+	udi29k)
+		basic_machine=a29k-amd
+		os=-udi
+		;;
+	ultra3)
+		basic_machine=a29k-nyu
+		os=-sym1
+		;;
+	v810 | necv810)
+		basic_machine=v810-nec
+		os=-none
+		;;
+	vaxv)
+		basic_machine=vax-dec
+		os=-sysv
+		;;
+	vms)
+		basic_machine=vax-dec
+		os=-vms
+		;;
+	vpp*|vx|vx-*)
+		basic_machine=f301-fujitsu
+		;;
+	vxworks960)
+		basic_machine=i960-wrs
+		os=-vxworks
+		;;
+	vxworks68)
+		basic_machine=m68k-wrs
+		os=-vxworks
+		;;
+	vxworks29k)
+		basic_machine=a29k-wrs
+		os=-vxworks
+		;;
+	w65*)
+		basic_machine=w65-wdc
+		os=-none
+		;;
+	w89k-*)
+		basic_machine=hppa1.1-winbond
+		os=-proelf
+		;;
+	xbox)
+		basic_machine=i686-pc
+		os=-mingw32
+		;;
+	xps | xps100)
+		basic_machine=xps100-honeywell
+		;;
+	ymp)
+		basic_machine=ymp-cray
+		os=-unicos
+		;;
+	z8k-*-coff)
+		basic_machine=z8k-unknown
+		os=-sim
+		;;
+	none)
+		basic_machine=none-none
+		os=-none
+		;;
+
+# Here we handle the default manufacturer of certain CPU types.  It is in
+# some cases the only manufacturer, in others, it is the most popular.
+	w89k)
+		basic_machine=hppa1.1-winbond
+		;;
+	op50n)
+		basic_machine=hppa1.1-oki
+		;;
+	op60c)
+		basic_machine=hppa1.1-oki
+		;;
+	romp)
+		basic_machine=romp-ibm
+		;;
+	mmix)
+		basic_machine=mmix-knuth
+		;;
+	rs6000)
+		basic_machine=rs6000-ibm
+		;;
+	vax)
+		basic_machine=vax-dec
+		;;
+	pdp10)
+		# there are many clones, so DEC is not a safe bet
+		basic_machine=pdp10-unknown
+		;;
+	pdp11)
+		basic_machine=pdp11-dec
+		;;
+	we32k)
+		basic_machine=we32k-att
+		;;
+	sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele)
+		basic_machine=sh-unknown
+		;;
+	sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)
+		basic_machine=sparc-sun
+		;;
+	cydra)
+		basic_machine=cydra-cydrome
+		;;
+	orion)
+		basic_machine=orion-highlevel
+		;;
+	orion105)
+		basic_machine=clipper-highlevel
+		;;
+	mac | mpw | mac-mpw)
+		basic_machine=m68k-apple
+		;;
+	pmac | pmac-mpw)
+		basic_machine=powerpc-apple
+		;;
+	*-unknown)
+		# Make sure to match an already-canonicalized machine name.
+		;;
+	*)
+		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
+		exit 1
+		;;
+esac
+
+# Here we canonicalize certain aliases for manufacturers.
+case $basic_machine in
+	*-digital*)
+		basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
+		;;
+	*-commodore*)
+		basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
+		;;
+	*)
+		;;
+esac
+
+# Decode manufacturer-specific aliases for certain operating systems.
+
+if [ x"$os" != x"" ]
+then
+case $os in
+        # First match some system type aliases
+        # that might get confused with valid system types.
+	# -solaris* is a basic system type, with this one exception.
+	-solaris1 | -solaris1.*)
+		os=`echo $os | sed -e 's|solaris1|sunos4|'`
+		;;
+	-solaris)
+		os=-solaris2
+		;;
+	-svr4*)
+		os=-sysv4
+		;;
+	-unixware*)
+		os=-sysv4.2uw
+		;;
+	-gnu/linux*)
+		os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
+		;;
+	# First accept the basic system types.
+	# The portable systems comes first.
+	# Each alternative MUST END IN A *, to match a version number.
+	# -sysv* is not here because it comes later, after sysvr4.
+	-gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
+	      | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\
+	      | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
+	      | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
+	      | -aos* \
+	      | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
+	      | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
+	      | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
+	      | -openbsd* | -solidbsd* \
+	      | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
+	      | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
+	      | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
+	      | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
+	      | -chorusos* | -chorusrdb* \
+	      | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
+	      | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \
+	      | -uxpv* | -beos* | -mpeix* | -udk* \
+	      | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
+	      | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
+	      | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
+	      | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
+	      | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
+	      | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
+	      | -skyos* | -haiku* | -rdos* | -toppers* | -drops*)
+	# Remember, each alternative MUST END IN *, to match a version number.
+		;;
+	-qnx*)
+		case $basic_machine in
+		    x86-* | i*86-*)
+			;;
+		    *)
+			os=-nto$os
+			;;
+		esac
+		;;
+	-nto-qnx*)
+		;;
+	-nto*)
+		os=`echo $os | sed -e 's|nto|nto-qnx|'`
+		;;
+	-sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
+	      | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \
+	      | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
+		;;
+	-mac*)
+		os=`echo $os | sed -e 's|mac|macos|'`
+		;;
+	-linux-dietlibc)
+		os=-linux-dietlibc
+		;;
+	-linux*)
+		os=`echo $os | sed -e 's|linux|linux-gnu|'`
+		;;
+	-sunos5*)
+		os=`echo $os | sed -e 's|sunos5|solaris2|'`
+		;;
+	-sunos6*)
+		os=`echo $os | sed -e 's|sunos6|solaris3|'`
+		;;
+	-opened*)
+		os=-openedition
+		;;
+        -os400*)
+		os=-os400
+		;;
+	-wince*)
+		os=-wince
+		;;
+	-osfrose*)
+		os=-osfrose
+		;;
+	-osf*)
+		os=-osf
+		;;
+	-utek*)
+		os=-bsd
+		;;
+	-dynix*)
+		os=-bsd
+		;;
+	-acis*)
+		os=-aos
+		;;
+	-atheos*)
+		os=-atheos
+		;;
+	-syllable*)
+		os=-syllable
+		;;
+	-386bsd)
+		os=-bsd
+		;;
+	-ctix* | -uts*)
+		os=-sysv
+		;;
+	-nova*)
+		os=-rtmk-nova
+		;;
+	-ns2 )
+		os=-nextstep2
+		;;
+	-nsk*)
+		os=-nsk
+		;;
+	# Preserve the version number of sinix5.
+	-sinix5.*)
+		os=`echo $os | sed -e 's|sinix|sysv|'`
+		;;
+	-sinix*)
+		os=-sysv4
+		;;
+        -tpf*)
+		os=-tpf
+		;;
+	-triton*)
+		os=-sysv3
+		;;
+	-oss*)
+		os=-sysv3
+		;;
+	-svr4)
+		os=-sysv4
+		;;
+	-svr3)
+		os=-sysv3
+		;;
+	-sysvr4)
+		os=-sysv4
+		;;
+	# This must come after -sysvr4.
+	-sysv*)
+		;;
+	-ose*)
+		os=-ose
+		;;
+	-es1800*)
+		os=-ose
+		;;
+	-xenix)
+		os=-xenix
+		;;
+	-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
+		os=-mint
+		;;
+	-aros*)
+		os=-aros
+		;;
+	-kaos*)
+		os=-kaos
+		;;
+	-zvmoe)
+		os=-zvmoe
+		;;
+	-none)
+		;;
+	*)
+		# Get rid of the `-' at the beginning of $os.
+		os=`echo $os | sed 's/[^-]*-//'`
+		echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
+		exit 1
+		;;
+esac
+else
+
+# Here we handle the default operating systems that come with various machines.
+# The value should be what the vendor currently ships out the door with their
+# machine or put another way, the most popular os provided with the machine.
+
+# Note that if you're going to try to match "-MANUFACTURER" here (say,
+# "-sun"), then you have to tell the case statement up towards the top
+# that MANUFACTURER isn't an operating system.  Otherwise, code above
+# will signal an error saying that MANUFACTURER isn't an operating
+# system, and we'll never get to this point.
+
+case $basic_machine in
+        score-*)
+		os=-elf
+		;;
+        spu-*)
+		os=-elf
+		;;
+	*-acorn)
+		os=-riscix1.2
+		;;
+	arm*-rebel)
+		os=-linux
+		;;
+	arm*-semi)
+		os=-aout
+		;;
+        c4x-* | tic4x-*)
+        	os=-coff
+		;;
+	# This must come before the *-dec entry.
+	pdp10-*)
+		os=-tops20
+		;;
+	pdp11-*)
+		os=-none
+		;;
+	*-dec | vax-*)
+		os=-ultrix4.2
+		;;
+	m68*-apollo)
+		os=-domain
+		;;
+	i386-sun)
+		os=-sunos4.0.2
+		;;
+	m68000-sun)
+		os=-sunos3
+		# This also exists in the configure program, but was not the
+		# default.
+		# os=-sunos4
+		;;
+	m68*-cisco)
+		os=-aout
+		;;
+        mep-*)
+		os=-elf
+		;;
+	mips*-cisco)
+		os=-elf
+		;;
+	mips*-*)
+		os=-elf
+		;;
+	or32-*)
+		os=-coff
+		;;
+	*-tti)	# must be before sparc entry or we get the wrong os.
+		os=-sysv3
+		;;
+	sparc-* | *-sun)
+		os=-sunos4.1.1
+		;;
+	*-be)
+		os=-beos
+		;;
+	*-haiku)
+		os=-haiku
+		;;
+	*-ibm)
+		os=-aix
+		;;
+    	*-knuth)
+		os=-mmixware
+		;;
+	*-wec)
+		os=-proelf
+		;;
+	*-winbond)
+		os=-proelf
+		;;
+	*-oki)
+		os=-proelf
+		;;
+	*-hp)
+		os=-hpux
+		;;
+	*-hitachi)
+		os=-hiux
+		;;
+	i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
+		os=-sysv
+		;;
+	*-cbm)
+		os=-amigaos
+		;;
+	*-dg)
+		os=-dgux
+		;;
+	*-dolphin)
+		os=-sysv3
+		;;
+	m68k-ccur)
+		os=-rtu
+		;;
+	m88k-omron*)
+		os=-luna
+		;;
+	*-next )
+		os=-nextstep
+		;;
+	*-sequent)
+		os=-ptx
+		;;
+	*-crds)
+		os=-unos
+		;;
+	*-ns)
+		os=-genix
+		;;
+	i370-*)
+		os=-mvs
+		;;
+	*-next)
+		os=-nextstep3
+		;;
+	*-gould)
+		os=-sysv
+		;;
+	*-highlevel)
+		os=-bsd
+		;;
+	*-encore)
+		os=-bsd
+		;;
+	*-sgi)
+		os=-irix
+		;;
+	*-siemens)
+		os=-sysv4
+		;;
+	*-masscomp)
+		os=-rtu
+		;;
+	f30[01]-fujitsu | f700-fujitsu)
+		os=-uxpv
+		;;
+	*-rom68k)
+		os=-coff
+		;;
+	*-*bug)
+		os=-coff
+		;;
+	*-apple)
+		os=-macos
+		;;
+	*-atari*)
+		os=-mint
+		;;
+	*)
+		os=-none
+		;;
+esac
+fi
+
+# Here we handle the case where we know the os, and the CPU type, but not the
+# manufacturer.  We pick the logical manufacturer.
+vendor=unknown
+case $basic_machine in
+	*-unknown)
+		case $os in
+			-riscix*)
+				vendor=acorn
+				;;
+			-sunos*)
+				vendor=sun
+				;;
+			-aix*)
+				vendor=ibm
+				;;
+			-beos*)
+				vendor=be
+				;;
+			-hpux*)
+				vendor=hp
+				;;
+			-mpeix*)
+				vendor=hp
+				;;
+			-hiux*)
+				vendor=hitachi
+				;;
+			-unos*)
+				vendor=crds
+				;;
+			-dgux*)
+				vendor=dg
+				;;
+			-luna*)
+				vendor=omron
+				;;
+			-genix*)
+				vendor=ns
+				;;
+			-mvs* | -opened*)
+				vendor=ibm
+				;;
+			-os400*)
+				vendor=ibm
+				;;
+			-ptx*)
+				vendor=sequent
+				;;
+			-tpf*)
+				vendor=ibm
+				;;
+			-vxsim* | -vxworks* | -windiss*)
+				vendor=wrs
+				;;
+			-aux*)
+				vendor=apple
+				;;
+			-hms*)
+				vendor=hitachi
+				;;
+			-mpw* | -macos*)
+				vendor=apple
+				;;
+			-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
+				vendor=atari
+				;;
+			-vos*)
+				vendor=stratus
+				;;
+		esac
+		basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
+		;;
+esac
+
+echo $basic_machine$os
+exit
+
+# Local variables:
+# eval: (add-hook 'write-file-hooks 'time-stamp)
+# time-stamp-start: "timestamp='"
+# time-stamp-format: "%:y-%02m-%02d"
+# time-stamp-end: "'"
+# End:
diff --git a/configure.ac b/configure.ac
index a0aefac..76c6018 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,12 +1,12 @@
 dnl -*- autoconf -*-
 
-dnl $Id: configure.ac 19382 2009-10-26 22:37:16Z romw $
+dnl $Id: configure.ac 21060 2010-04-02 20:35:20Z romw $
 
 dnl not sure exactly what the minimum version is (but 2.13 wont work)
 AC_PREREQ(2.57)
 
 dnl Set the BOINC version here.  You can also use the set-version script.
-AC_INIT(BOINC, 6.10.17)
+AC_INIT(BOINC, 6.10.44)
 LIBBOINC_VERSION=`echo ${PACKAGE_VERSION} | sed 's/\./:/g'`
 AC_SUBST([LIBBOINC_VERSION])
 
@@ -18,8 +18,8 @@ AM_INIT_AUTOMAKE(dist-zip)
 
 AC_CONFIG_SRCDIR(lib/shmem.cpp)
 
-AC_REVISION([$Revision: 19382 $]) 
-REV=`echo '$Revision: 19382 $' | awk "{print $2}"`
+AC_REVISION([$Revision: 21060 $]) 
+REV=`echo '$Revision: 21060 $' | awk "{print $2}"`
 RDATE=`date '+%Y.%m.%d'`
 if test -d .svn ; then
   REV=`svn info | grep Revision | awk '{print $2}'`
diff --git a/doc/download.php b/doc/download.php
index 036bc14..e9d3552 100644
--- a/doc/download.php
+++ b/doc/download.php
@@ -86,7 +86,9 @@ function show_pictures() {
 function show_download($pname) {
     echo "
         <table cellpadding=10><tr><td valign=top>
-        ".tra("BOINC is a program that lets you donate your idle computer time to science projects like SETI at home, Climateprediction.net, Rosetta at home, World Community Grid, and many others. <p> After installing BOINC on your computer, you can connect it to as many of these projects as you like.").
+        ".tra("BOINC is a program that lets you donate your idle computer time to science projects like SETI at home, Climateprediction.net, Rosetta at home, World Community Grid, and many others. <p> After installing BOINC on your computer, you can connect it to as many of these projects as you like.")
+        ."<p>"
+        .tra("You may run this software on a computer only if you own the computer or have the permission of its owner.").
         "<p>"
     ;
     if ($_GET['foo']) $pname = null;
diff --git a/doc/sandbox.php b/doc/sandbox.php
index 43d174c..b01b400 100644
--- a/doc/sandbox.php
+++ b/doc/sandbox.php
@@ -3,15 +3,15 @@ require_once("docutil.php");
 page_head("Sandbox design");
 
 echo "
-This document describes a proposed modification to the Unix
-(including Linux and Mac OS X) versions of BOINC.
-The goal of this change is to 'sandbox' BOINC applications,
+This document describes the permissions structure for 
+BOINC on the Macintosh.  It has been updated for BOINC versions 6.8.20 and 6.10.30 and later.
+The purpose of this scheme is to 'sandbox' BOINC applications,
 i.e. to limit the amount of damage that a malicious
 or malfunctioning application can cause.
 <p>
 In our design, BOINC applications run under a specially-created account
 having a minimal set of privileges.
-Previously, the applications typically ran as the user who installed BOINC,
+In early versions of BOINC, the applications typically ran as the user who installed BOINC,
 and had the full privileges of that account.
 ";
 
@@ -31,15 +31,16 @@ $mp2500 = prot('boinc_master', 'boinc_project', '0500+setgid');
 $rm4050 = prot('root', 'boinc_master', '0050+setuid');
 $rm4555 = prot('root', 'boinc_master', '0555+setuid');
 $mm0550 = prot('boinc_master', 'boinc_master', '0550');
-$mm0440 = prot('boinc_master', 'boinc_master', '0440');
+$mm0555 = prot('boinc_master', 'boinc_master', '0555');
+$mm0444 = prot('boinc_master', 'boinc_master', '0444');
 $mm0660 = prot('boinc_master', 'boinc_master', '0660');
 $mm0664 = prot('boinc_master', 'boinc_master', '0664');
 $mm0771 = prot('boinc_master', 'boinc_master', '0771');
-$mm0775 = prot('boinc_master', 'boinc_master', '0775');
+$mp0770 = prot('boinc_master', 'boinc_project', '0770');
 $mp0775 = prot('boinc_master', 'boinc_project', '0775');
 $mp06610771 = prot('boinc_master', 'boinc_project', '0661 or 0771');
 $mp06640775 = prot('boinc_master', 'boinc_project', '0664 or 0775');
-$mm2555 = prot('boinc_master', 'boinc_master', '0555+setgid');
+$mm2555 = prot('boinc_master', 'boinc_master', '0555');
 $mm6555 = prot('boinc_master', 'boinc_master', '0555+setuid+setgid');
 $ua0555 = prot('(installing user)', 'admin', '0555');
 
@@ -103,13 +104,13 @@ for the BOINC file and directory tree:
 
 echo
     show_dir(0, 'BOINC data', $mm0771, array(
-        show_dir(1, 'projects', $mm0775, array(
+        show_dir(1, 'projects', $mp0770, array(
             show_dir(2, 'setiathome.berkeley.edu', $mp0775, array(
                 show_file('files created by BOINC Client', $mp06610771),
                 show_file('files created by project apps', $pp06610771)
             ))
         )),
-        show_dir(1, 'slots', $mm0775, array(
+        show_dir(1, 'slots', $mp0770, array(
             show_dir(2, '0', $mp0775, array(
                 show_file('files created by BOINC Client', $mp06610771),
                 show_file('files created by project apps', $pp06610771)
@@ -119,10 +120,10 @@ echo
             show_file('switcher (executable)', $rm4050),
             show_file('setprojectgrp (executable)', $mp2500)
         )),
-        show_dir(1, 'locale', $mm0550, array(
-            show_dir(2, 'de', $mm0550, array(
-                show_file('BOINC Manager.mo', $mm0440),
-                show_file('wxstd.mo', $mm0440)
+        show_dir(1, 'locale', $mm0555, array(
+            show_dir(2, 'de', $mm0555, array(
+                show_file('BOINC Manager.mo', $mm0444),
+                show_file('wxstd.mo', $mm0444)
             ))
         )),
         show_file('account_*.xml', $mm0660),
@@ -181,12 +182,15 @@ group <b>boinc_master</b>; all other access is forbidden.
 its real and effective user ID and group ID to <b>boinc_project</b>, disabling 
 its superuser privileges.
 </ul>
-<li>BOINC Manager runs setgid to group <b>boinc_master</b>.
-It can access all files in group <b>boinc_master</b>.  
-It runs as the user who launched it,
-which is necessary for a number of GUI features to work correctly.  
-Although this means that BOINC Manager cannot modify files
-created by project applications, there is no need for it to do so.  
+<li>As of BOINC Version 6.10.5, BOINC Manager no longer runs setgid to group 
+<b>boinc_master</b>, because Mac OS 10.6 does not allow it.  So it can be run 
+only by users who are members of group <b>boinc_master</b>. By default, the 
+BOINC installer automatically adds all users who are members of group 
+<b>admin</b> to group <b>boinc_master</b>, and optionally adds non-admin 
+users to group <b>boinc_master</b>.  The Manager runs as the user who 
+launched it, which is necessary for a number of GUI features to work correctly.  
+Although this means that BOINC Manager cannot modify files created by project 
+applications, there is no need for it to do so.  
 <li>Starting with BOINC version 6.0, project science applications use a 
 separate companion application to display graphics.  These graphics 
 applications are launched by the BOINC Manager when the user clicks on 
@@ -206,7 +210,7 @@ group ID to <b>boinc_project</b>.
 <li>Starting with BOINC version 6.7, a default screenaver graphics application 
 is provided with BOINC.  The screensaver (now more properly called the 
 <b>screensaver coordinator</b>) runs the default graphics alternating with science 
-graphics applications according to a schedule set by the data file ss-config.xml.  
+graphics applications according to a schedule set by the data file ss_config.xml.  
 The default graphics are run also when no science graphics are available, such as 
 when BOINC is suspended.  The default graphics executable is run as user and group 
 <b>boinc_project</b>.  
@@ -229,33 +233,34 @@ application with the process ID; since it is running as user and group
 <b>boinc_project</b>, it can affect only processes belonging to that user.  
 This is used to exit all screensaver graphics applications.</ul>
 </ul>
-<li>BOINC Client sets its umask to 006 to hide account keys from unauthorized 
-users.  This means that third-party add-ons cannot read BOINC data files; they 
-must use GUI RPCs to access BOINC Data.  
+<li>To hide account keys from unauthorized users, BOINC Client sets its umask 
+to 006 and (as of versions 6.8.20 and 6.10.30) makes all *.xml files at the top level 
+directory not world-readable (except ss_config.xml, which must be read by the 
+screensaver coordinator).  This means that third-party add-ons cannot read BOINC 
+data files; they must use GUI RPCs to access BOINC Data.  
 <li>BOINC sets the umask for project applications to 002; the default permissions 
 for all files and directories they create prevent modification outside the 
-<b>boinc_project</b> user and group.  Files written by projects are world-readable so 
-that the BOINC Client can read them.
-<li>Non-admin users cannot directly modify BOINC or project files.
-They can modify these files only by running the BOINC Manager and Client.  
+<b>boinc_project</b> user and group.  
+<li>Files written by projects are world-readable so that the BOINC Client can read 
+them.  But, starting with BOINC versions 6.8.20 and 6.10.30, the slots directory and the projects 
+directory are executable (traversable) only by user boinc_master and group 
+boinc_projects, to prevent unauthorized users from reading account keys from the 
+init_data.xml files. 
+<li>Unauthorized users cannot modify BOINC or project files.
 <li>Users with admin access are members of groups <b>boinc_master</b>
 and <b>boinc_project</b> so that they do have 
 direct access to all BOINC and project files
 to simplify maintenance and administration.
 <li>The RPC password file <i>gui_rpc_auth.cfg</i>
 is accessible only by user and group <b>boinc_master</b>.
-In other words, only BOINC Manager, BOINC Client and authorized administrative 
-users can read or modify it, limiting access to most BOINC RPC functions.  
-<li>BOINC Manager restricts certain functions to authorized users:
-Attach to Project, Detach from Project, Reset Project, Abort Task,
-Abort Transfer, Update Account Manager.  
-If an unauthorized user requests these functions,
-the Manager requires password authentication.
+In other words, only BOINC Manager, BOINC Client and authorized 
+users can read or modify it, restricting access to those BOINC RPC functions 
+which modify BOINC's operation.  
 <li>On Macintosh computers, the actual directory structures
 of the BOINC Manager application bundle and the screensaver bundle are 
 more complex than implied by the box <i>BOINC executables</i> in the 
 BOINC tree diagram shown above.
-<li>Some Macintosh system administrators may wish to limit which users
+<li>Some Macintosh system administrators may wish to further limit which users
 can perform BOINC Manager functions (Activity Menu, etc.).
 This can be done by moving BOINC Manager out of the
 <b>/Applications</b> directory into a directory with restricted access.
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 6ccb566..89ffa40 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -1,5 +1,5 @@
 ## -*- mode: makefile; tab-width: 4 -*-
-## $Id: Makefile.am 19252 2009-10-05 20:18:22Z romw $
+## $Id: Makefile.am 19604 2009-11-18 21:01:20Z romw $
 
 include $(top_srcdir)/Makefile.incl
 
@@ -29,6 +29,7 @@ libfcgi_sources = \
     shmem.cpp \
     str_util.cpp \
     synch.cpp \
+	url.cpp \
     util.cpp
 
 generic_sources = \
@@ -58,6 +59,7 @@ generic_sources = \
     str_util.cpp \
     synch.cpp \
     unix_util.cpp \
+	url.cpp \
     util.cpp
 
 if OS_DARWIN
@@ -114,6 +116,7 @@ pkginclude_HEADERS = \
     stackwalker_imports.h \
     stackwalker_win.h \
     str_util.h \
+	url.h \
     util.h \
     win_util.h \
     $(mac_headers)
diff --git a/lib/app_ipc.cpp b/lib/app_ipc.cpp
index 9d589e1..7ce307f 100644
--- a/lib/app_ipc.cpp
+++ b/lib/app_ipc.cpp
@@ -25,12 +25,14 @@
 #include <string>
 #endif
 
-#include "parse.h"
 #include "error_numbers.h"
-#include "str_util.h"
-#include "str_replace.h"
 #include "filesys.h"
 #include "miofile.h"
+#include "parse.h"
+#include "str_replace.h"
+#include "str_util.h"
+#include "url.h"
+
 #include "app_ipc.h"
 
 using std::string;
@@ -206,13 +208,51 @@ int write_init_data_file(FILE* f, APP_INIT_DATA& ai) {
     );
     MIOFILE mf;
     mf.init_file(f);
-    ai.host_info.write(mf, false);
+    ai.host_info.write(mf, false, true);
     ai.proxy_info.write(mf);
     ai.global_prefs.write(mf);
     fprintf(f, "</app_init_data>\n");
     return 0;
 }
 
+void APP_INIT_DATA::clear() {
+    major_version = 0;
+    minor_version = 0;
+    release = 0;
+    app_version = 0;
+    strcpy(app_name, "");
+    strcpy(symstore, "");
+    strcpy(acct_mgr_url, "");
+    project_preferences = NULL;
+    hostid = 0;
+    strcpy(user_name, "");
+    strcpy(team_name, "");
+    strcpy(project_dir, "");
+    strcpy(boinc_dir, "");
+    strcpy(wu_name, "");
+    strcpy(authenticator, "");
+    slot = 0;
+    user_total_credit = 0;
+    user_expavg_credit = 0;
+    host_total_credit = 0;
+    host_expavg_credit = 0;
+    resource_share_fraction = 0;
+    host_info.clear_host_info();
+    proxy_info.clear();
+    global_prefs.defaults();
+    starting_elapsed_time = 0;
+    rsc_fpops_est = 0;
+    rsc_fpops_bound = 0;
+    rsc_memory_bound = 0;
+    rsc_disk_bound = 0;
+    computation_deadline = 0;
+    fraction_done_start = 0;
+    fraction_done_end = 0;
+    checkpoint_period = 0;
+    memset(&shmem_seg_name, 0, sizeof(shmem_seg_name));
+    wu_cpu_time = 0;
+}
+
 int parse_init_data_file(FILE* f, APP_INIT_DATA& ai) {
     char tag[1024];
     int retval;
@@ -231,7 +271,7 @@ int parse_init_data_file(FILE* f, APP_INIT_DATA& ai) {
         free(ai.project_preferences);
         ai.project_preferences = 0;
     }
-    memset(&ai, 0, sizeof(ai));
+    ai.clear();
     ai.fraction_done_start = 0;
     ai.fraction_done_end = 1;
 
@@ -415,4 +455,3 @@ void url_to_project_dir(char* url, char* dir) {
     sprintf(dir, "%s/%s", PROJECT_DIR, buf);
 }
 
-const char *BOINC_RCSID_3add42d20e = "$Id: app_ipc.cpp 19196 2009-09-28 15:59:11Z romw $";
diff --git a/lib/app_ipc.h b/lib/app_ipc.h
index 7fd32be..7f50371 100644
--- a/lib/app_ipc.h
+++ b/lib/app_ipc.h
@@ -195,6 +195,7 @@ struct APP_INIT_DATA {
     APP_INIT_DATA(const APP_INIT_DATA&);  // copy constructor
     APP_INIT_DATA &operator=(const APP_INIT_DATA&);
     void copy(const APP_INIT_DATA&);      // actually do the copy here
+    void clear();
     ~APP_INIT_DATA();
 };
 
@@ -215,6 +216,7 @@ int parse_graphics_file(FILE* f, GRAPHICS_INFO* gi);
 //
 #define INIT_DATA_FILE    "init_data.xml"
 #define BOINC_FINISH_CALLED_FILE "boinc_finish_called"
+#define TEMPORARY_EXIT_FILE "boinc_temporary_exit"
 #define TRICKLE_UP_FILENAME "trickle_up.xml"
 #define STDERR_FILE           "stderr.txt"
 #define STDOUT_FILE           "stdout.txt"
diff --git a/lib/base64.cpp b/lib/base64.cpp
index ae7d6ba..549cde0 100644
--- a/lib/base64.cpp
+++ b/lib/base64.cpp
@@ -205,4 +205,3 @@ string r_base64_decode (const char* from, size_t length)
     }
 }
 
-const char *BOINC_RCSID_2b47467419 = "$Id: base64.cpp 16069 2008-09-26 18:20:24Z davea $";
diff --git a/lib/boinc_win.h b/lib/boinc_win.h
index eff8787..d94ca96 100644
--- a/lib/boinc_win.h
+++ b/lib/boinc_win.h
@@ -22,9 +22,31 @@
 #ifndef _BOINC_WIN_
 #define _BOINC_WIN_
 
+#ifndef __CYGWIN32__
+
+// Windows C Runtime Library
+
+#ifndef HAVE_STD_MAX
+#define HAVE_STD_MAX 1
+#endif 
+
+#ifndef HAVE_STD_MIN
+#define HAVE_STD_MIN 1
+#endif 
+
+#ifndef HAVE_STD_TRANSFORM
+#define HAVE_STD_TRANSFORM 1
+#endif 
+
+#ifndef HAVE_ALLOCA
+#define HAVE_ALLOCA 1
+#endif 
+
+#else
+
 // Under CYGWIN we need to include config.h first.
-#ifdef __CYGWIN32__
 #include "config.h"
+
 #endif
 
 // Windows System Libraries
@@ -36,12 +58,18 @@
 // platforms we are going to disable the deprecation warnings if we are compiling
 // on Visual Studio 2005
 #if _MSC_VER >= 1400
+
 #ifndef _CRT_SECURE_NO_DEPRECATE
 #define _CRT_SECURE_NO_DEPRECATE
 #endif
+
+#ifndef _CRT_SECURE_NO_WARNINGS
+#define _CRT_SECURE_NO_WARNINGS
+#endif
+
 #endif
 
-// Target Windows 2000 or better with Internet Explorer 5.0 or better
+// Target Windows 2000 or better with Internet Explorer 5.01 or better
 #ifndef WINVER
 #define WINVER 0x0500
 #endif
@@ -180,6 +208,7 @@ typedef LPCSTR PCTSTR, LPCTSTR, PCUTSTR, LPCUTSTR;
 #include <list>
 #include <map>
 #include <set>
+#include <stdexcept>
 #endif
 
 // Define a generic string type that can be a Unicode string on
diff --git a/lib/common_defs.h b/lib/common_defs.h
index f336fad..ee45881 100644
--- a/lib/common_defs.h
+++ b/lib/common_defs.h
@@ -107,10 +107,11 @@ enum SUSPEND_REASON {
     SUSPEND_REASON_TIME_OF_DAY = 8,
     SUSPEND_REASON_BENCHMARKS = 16,
     SUSPEND_REASON_DISK_SIZE = 32,
-    SUSPEND_REASON_CPU_USAGE_LIMIT = 64,
+    SUSPEND_REASON_CPU_THROTTLE = 64,
     SUSPEND_REASON_NO_RECENT_INPUT = 128,
     SUSPEND_REASON_INITIAL_DELAY = 256,
-    SUSPEND_REASON_EXCLUSIVE_APP_RUNNING = 512
+    SUSPEND_REASON_EXCLUSIVE_APP_RUNNING = 512,
+    SUSPEND_REASON_CPU_USAGE = 1024
 };
 
 // States of a result on a client.
@@ -182,20 +183,14 @@ struct VERSION_INFO {
     bool greater_than(VERSION_INFO&);
 };
 
-#ifdef _WIN32
-#define RUN_MUTEX           "BoincSingleInstance"
-#define REG_BLANK_NAME      "Blank"
-#define REG_BLANK_TIME      "Blank Time"
-#define REG_STARTUP_NAME    "BOINC"
-#define CLIENT_AUTH_FILENAME    "client_auth.xml"
-#else
-#define LOCK_FILE_NAME      "lockfile"
-#endif
-
-#define GRAPHICS_APP_FILENAME "graphics_app"
-#define ASSIGNED_WU_STR "asgn"
+#define RUN_MUTEX                   "BoincSingleInstance"
+#define CLIENT_AUTH_FILENAME        "client_auth.xml"
+#define LOCK_FILE_NAME              "lockfile"
+#define GRAPHICS_APP_FILENAME       "graphics_app"
+#define ASSIGNED_WU_STR             "asgn"
 #define GUI_RPC_PASSWD_FILE         "gui_rpc_auth.cfg"
 #define SS_CONFIG_FILE              "ss_config.xml"
+
 #ifdef _WIN32
 #define DEFAULT_SS_EXECUTABLE       "boincscr.exe"
 #else
diff --git a/lib/coproc.cpp b/lib/coproc.cpp
index c06bc08..6bc0231 100644
--- a/lib/coproc.cpp
+++ b/lib/coproc.cpp
@@ -1,6 +1,6 @@
 // This file is part of BOINC.
 // http://boinc.berkeley.edu
-// Copyright (C) 2008 University of California
+// Copyright (C) 2007 University of California
 //
 // BOINC is free software; you can redistribute it and/or modify it
 // under the terms of the GNU Lesser General Public License
@@ -15,9 +15,10 @@
 // You should have received a copy of the GNU Lesser General Public License
 // along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
 
-#if defined(_WIN32) && !defined(__STDWX_H__) && !defined(_BOINC_WIN_) && !defined(_AFX_STDAFX_H_)
-#include "boinc_win.h"
-#endif
+#if defined(_WIN32) && !defined(__STDWX_H__) && !defined(_BOINC_WIN_) && !defined(_AFX_STDAFX_H_)
+#include "boinc_win.h"
+#endif
+
 #ifndef _USING_FCGI_
 #include "boinc_fcgi.h"
 #else
@@ -26,17 +27,6 @@
 
 #include <cstring>
 #include <cstdlib>
-#ifdef _WIN32
-#ifndef SIM
-#include <nvapi.h>
-#endif
-#else
-#ifdef __APPLE__
-// Suppress obsolete warning when building for OS 10.3.9
-#define DLOPEN_NO_WARN
-#endif
-#include <dlfcn.h>
-#endif
 
 #include "error_numbers.h"
 #include "filesys.h"
@@ -48,9 +38,6 @@
 
 #include "coproc.h"
 
-using std::string;
-using std::vector;
-
 #ifndef _USING_FCGI_
 using std::perror;
 #endif
@@ -67,10 +54,6 @@ void COPROC::write_xml(MIOFILE& f) {
 }
 #endif
 
-bool COPROC::is_usable(){
-    return true;
-}
-
 int COPROC_REQ::parse(MIOFILE& fin) {
     char buf[1024];
     strcpy(type, "");
@@ -133,19 +116,10 @@ void COPROCS::summary_string(char* buf, int len) {
     strcpy(buf, bigbuf);
 }
 
-void COPROCS::get(bool use_all, vector<string>&descs, vector<string>&warnings) {
-    COPROC_CUDA::get(*this, use_all, descs, warnings);
-#ifndef __APPLE__       // ATI does not yet support CAL on Macs
-    COPROC_ATI::get(*this, descs, warnings);
-#endif
-}
-
-// used only to parse scheduler request messages
-//
-int COPROCS::parse(FILE* fin) {
+int COPROCS::parse(MIOFILE& fin) {
     char buf[1024];
 
-    while (fgets(buf, sizeof(buf), fin)) {
+    while (fin.fgets(buf, sizeof(buf))) {
         if (match_tag(buf, "</coprocs>")) {
             return 0;
         }
@@ -167,6 +141,17 @@ int COPROCS::parse(FILE* fin) {
     return ERR_XML_PARSE;
 }
 
+void COPROCS::write_xml(MIOFILE& mf) {
+#ifndef _USING_FCGI_
+    mf.printf("    <coprocs>\n");
+    for (unsigned i=0; i<coprocs.size(); i++) {
+        COPROC* c = coprocs[i];
+        c->write_xml(mf);
+    }
+    mf.printf("    </coprocs>\n");
+#endif
+}
+
 COPROC* COPROCS::lookup(const char* type) {
     for (unsigned int i=0; i<coprocs.size(); i++) {
         COPROC* cp = coprocs[i];
@@ -177,308 +162,7 @@ COPROC* COPROCS::lookup(const char* type) {
 
 #ifdef _WIN32
 
-
-#endif
-
-// return 1/-1/0 if device 1 is more/less/same capable than device 2.
-// If "loose", ignore FLOPS and tolerate small memory diff
-//
-int cuda_compare(COPROC_CUDA& c1, COPROC_CUDA& c2, bool loose) {
-    if (c1.prop.major > c2.prop.major) return 1;
-    if (c1.prop.major < c2.prop.major) return -1;
-    if (c1.prop.minor > c2.prop.minor) return 1;
-    if (c1.prop.minor < c2.prop.minor) return -1;
-    if (c1.cuda_version > c2.cuda_version) return 1;
-    if (c1.cuda_version < c2.cuda_version) return -1;
-    if (loose) {
-        if (c1.prop.totalGlobalMem > 1.4*c2.prop.totalGlobalMem) return 1;
-        if (c1.prop.totalGlobalMem < .7* c2.prop.totalGlobalMem) return -1;
-        return 0;
-    }
-    if (c1.prop.totalGlobalMem > c2.prop.totalGlobalMem) return 1;
-    if (c1.prop.totalGlobalMem < c2.prop.totalGlobalMem) return -1;
-    double s1 = c1.peak_flops();
-    double s2 = c2.peak_flops();
-    if (s1 > s2) return 1;
-    if (s1 < s2) return -1;
-    return 0;
-}
-
-#ifdef _WIN32
-typedef int (__stdcall *CUDA_GDC)(int *count);
-typedef int (__stdcall *CUDA_GDV)(int* version);
-typedef int (__stdcall *CUDA_GDI)(int);
-typedef int (__stdcall *CUDA_GDG)(int*, int);
-typedef int (__stdcall *CUDA_GDA)(int*, int, int);
-typedef int (__stdcall *CUDA_GDN)(char*, int, int);
-typedef int (__stdcall *CUDA_GDM)(unsigned int*, int);
-typedef int (__stdcall *CUDA_GDCC)(int*, int*, int);
-typedef int (__stdcall *CUDA_CC)(unsigned int*, unsigned int, unsigned int);
-typedef int (__stdcall *CUDA_CD)(unsigned int);
-typedef int (__stdcall *CUDA_MA)(unsigned int*, unsigned int);
-typedef int (__stdcall *CUDA_MF)(unsigned int);
-
-CUDA_GDC __cuDeviceGetCount = NULL;
-CUDA_GDV __cuDriverGetVersion = NULL;
-CUDA_GDI __cuInit = NULL;
-CUDA_GDG __cuDeviceGet = NULL;
-CUDA_GDA __cuDeviceGetAttribute = NULL;
-CUDA_GDN __cuDeviceGetName = NULL;
-CUDA_GDM __cuDeviceTotalMem = NULL;
-CUDA_GDCC __cuDeviceComputeCapability = NULL;
-CUDA_CC __cuCtxCreate = NULL;
-CUDA_CD __cuCtxDestroy = NULL;
-CUDA_MA __cuMemAlloc = NULL;
-CUDA_MF __cuMemFree = NULL;
-#else
-void* cudalib;
-int (*__cuInit)(int);
-int (*__cuDeviceGetCount)(int*);
-int (*__cuDriverGetVersion)(int*);
-int (*__cuDeviceGet)(int*, int);
-int (*__cuDeviceGetAttribute)(int*, int, int);
-int (*__cuDeviceGetName)(char*, int, int);
-int (*__cuDeviceTotalMem)(unsigned int*, int);
-int (*__cuDeviceComputeCapability)(int*, int*, int);
-int (*__cuCtxCreate)(unsigned int*, unsigned int, unsigned int);
-int (*__cuCtxDestroy)(unsigned int);
-int (*__cuMemAlloc)(unsigned int*, unsigned int);
-int (*__cuMemFree)(unsigned int);
-#endif
-
-// NVIDIA interfaces are documented here:
-// http://developer.download.nvidia.com/compute/cuda/2_3/toolkit/docs/online/index.html
-
-void COPROC_CUDA::get(
-    COPROCS& coprocs,
-    bool use_all,    // if false, use only those equivalent to most capable
-    vector<string>& descs,
-    vector<string>& warnings
-) {
-    int count, retval;
-    char buf[256];
-
-#ifdef _WIN32
-    HMODULE cudalib = LoadLibrary("nvcuda.dll");
-    if (!cudalib) {
-        warnings.push_back("No NVIDIA library found");
-        return;
-    }
-    __cuDeviceGetCount = (CUDA_GDC)GetProcAddress( cudalib, "cuDeviceGetCount" );
-    __cuDriverGetVersion = (CUDA_GDV)GetProcAddress( cudalib, "cuDriverGetVersion" );
-    __cuInit = (CUDA_GDI)GetProcAddress( cudalib, "cuInit" );
-    __cuDeviceGet = (CUDA_GDG)GetProcAddress( cudalib, "cuDeviceGet" );
-    __cuDeviceGetAttribute = (CUDA_GDA)GetProcAddress( cudalib, "cuDeviceGetAttribute" );
-    __cuDeviceGetName = (CUDA_GDN)GetProcAddress( cudalib, "cuDeviceGetName" );
-    __cuDeviceTotalMem = (CUDA_GDM)GetProcAddress( cudalib, "cuDeviceTotalMem" );
-    __cuDeviceComputeCapability = (CUDA_GDCC)GetProcAddress( cudalib, "cuDeviceComputeCapability" );
-    __cuCtxCreate = (CUDA_CC)GetProcAddress( cudalib, "cuCtxCreate" );
-    __cuCtxDestroy = (CUDA_CD)GetProcAddress( cudalib, "cuCtxDestroy" );
-    __cuMemAlloc = (CUDA_MA)GetProcAddress( cudalib, "cuMemAlloc" );
-    __cuMemFree = (CUDA_MF)GetProcAddress( cudalib, "cuMemFree" );
-
-#ifndef SIM
-    NvAPI_Status nvapiStatus;
-    NvDisplayHandle hDisplay;
-    NV_DISPLAY_DRIVER_VERSION Version;
-    memset(&Version, 0, sizeof(Version));
-    Version.version = NV_DISPLAY_DRIVER_VERSION_VER;
-
-    NvAPI_Initialize();
-    for (int i=0; ; i++) {
-        nvapiStatus = NvAPI_EnumNvidiaDisplayHandle(i, &hDisplay);
-        if (nvapiStatus != NVAPI_OK) break;
-        nvapiStatus = NvAPI_GetDisplayDriverVersion(hDisplay, &Version);
-        if (nvapiStatus == NVAPI_OK) break;
-    }
 #endif
-#else
-
-#ifdef __APPLE__
-    cudalib = dlopen("/usr/local/cuda/lib/libcuda.dylib", RTLD_NOW);
-#else
-    cudalib = dlopen("libcuda.so", RTLD_NOW);
-#endif
-    if (!cudalib) {
-        warnings.push_back("No NVIDIA library found");
-        return;
-    }
-    __cuDeviceGetCount = (int(*)(int*)) dlsym(cudalib, "cuDeviceGetCount");
-    __cuDriverGetVersion = (int(*)(int*)) dlsym( cudalib, "cuDriverGetVersion" );
-    __cuInit = (int(*)(int)) dlsym( cudalib, "cuInit" );
-    __cuDeviceGet = (int(*)(int*, int)) dlsym( cudalib, "cuDeviceGet" );
-    __cuDeviceGetAttribute = (int(*)(int*, int, int)) dlsym( cudalib, "cuDeviceGetAttribute" );
-    __cuDeviceGetName = (int(*)(char*, int, int)) dlsym( cudalib, "cuDeviceGetName" );
-    __cuDeviceTotalMem = (int(*)(unsigned int*, int)) dlsym( cudalib, "cuDeviceTotalMem" );
-    __cuDeviceComputeCapability = (int(*)(int*, int*, int)) dlsym( cudalib, "cuDeviceComputeCapability" );
-    __cuCtxCreate = (int(*)(unsigned int*, unsigned int, unsigned int)) dlsym( cudalib, "cuCtxCreate" );
-    __cuCtxDestroy = (int(*)(unsigned int)) dlsym( cudalib, "cuCtxDestroy" );
-    __cuMemAlloc = (int(*)(unsigned int*, unsigned int)) dlsym( cudalib, "cuMemAlloc" );
-    __cuMemFree = (int(*)(unsigned int)) dlsym( cudalib, "cuMemFree" );
-#endif
-
-    if (!__cuDriverGetVersion) {
-        warnings.push_back("cuDriverGetVersion() missing from NVIDIA library");
-        return;
-    }
-    if (!__cuInit) {
-        warnings.push_back("cuInit() missing from NVIDIA library");
-        return;
-    }
-    if (!__cuDeviceGetCount) {
-        warnings.push_back("cuDeviceGetCount() missing from NVIDIA library");
-        return;
-    }
-    if (!__cuDeviceGet) {
-        warnings.push_back("cuDeviceGet() missing from NVIDIA library");
-        return;
-    }
-    if (!__cuDeviceGetAttribute) {
-        warnings.push_back("cuDeviceGetAttribute() missing from NVIDIA library");
-        return;
-    }
-    if (!__cuDeviceTotalMem) {
-        warnings.push_back("cuDeviceTotalMem() missing from NVIDIA library");
-        return;
-    }
-    if (!__cuDeviceComputeCapability) {
-        warnings.push_back("cuDeviceComputeCapability() missing from NVIDIA library");
-        return;
-    }
-    if (!__cuCtxCreate) {
-        warnings.push_back("cuCtxCreate() missing from NVIDIA library");
-        return;
-    }
-    if (!__cuCtxDestroy) {
-        warnings.push_back("cuCtxDestroy() missing from NVIDIA library");
-        return;
-    }
-    if (!__cuMemAlloc) {
-        warnings.push_back("cuMemAlloc() missing from NVIDIA library");
-        return;
-    }
-    if (!__cuMemFree) {
-        warnings.push_back("cuMemFree() missing from NVIDIA library");
-        return;
-    }
-
-    retval = (*__cuInit)(0);
-    if (retval) {
-        sprintf(buf, "NVIDIA drivers present but no GPUs found");
-        warnings.push_back(buf);
-        return;
-    }
-
-    int cuda_version;
-    retval = (*__cuDriverGetVersion)(&cuda_version);
-    if (retval) {
-        sprintf(buf, "cuDriverGetVersion() returned %d", retval);
-        warnings.push_back(buf);
-        return;
-    }
-
-    vector<COPROC_CUDA> gpus;
-    retval = (*__cuDeviceGetCount)(&count);
-    if (retval) {
-        sprintf(buf, "cuDeviceGetCount() returned %d", retval);
-        warnings.push_back(buf);
-        return;
-    }
-
-    int j;
-    unsigned int i;
-    COPROC_CUDA cc;
-    string s;
-    for (j=0; j<count; j++) {
-        memset(&cc.prop, 0, sizeof(cc.prop));
-        int device;
-        retval = (*__cuDeviceGet)(&device, j);
-        if (retval) {
-            sprintf(buf, "cuDeviceGet(%d) returned %d", j, retval);
-            warnings.push_back(buf);
-            return;
-        }
-        (*__cuDeviceGetName)(cc.prop.name, 256, device);
-        if (retval) {
-            sprintf(buf, "cuDeviceGetName(%d) returned %d", j, retval);
-            warnings.push_back(buf);
-            return;
-        }
-        (*__cuDeviceComputeCapability)(&cc.prop.major, &cc.prop.minor, device);
-        (*__cuDeviceTotalMem)(&cc.prop.totalGlobalMem, device);
-        (*__cuDeviceGetAttribute)(&cc.prop.sharedMemPerBlock, CU_DEVICE_ATTRIBUTE_SHARED_MEMORY_PER_BLOCK, device);
-        (*__cuDeviceGetAttribute)(&cc.prop.regsPerBlock, CU_DEVICE_ATTRIBUTE_REGISTERS_PER_BLOCK, device);
-        (*__cuDeviceGetAttribute)(&cc.prop.warpSize, CU_DEVICE_ATTRIBUTE_WARP_SIZE, device);
-        (*__cuDeviceGetAttribute)(&cc.prop.memPitch, CU_DEVICE_ATTRIBUTE_MAX_PITCH, device);
-        retval = (*__cuDeviceGetAttribute)(&cc.prop.maxThreadsPerBlock, CU_DEVICE_ATTRIBUTE_MAX_THREADS_PER_BLOCK, device);
-        retval = (*__cuDeviceGetAttribute)(&cc.prop.maxThreadsDim[0], CU_DEVICE_ATTRIBUTE_MAX_BLOCK_DIM_X, device);
-        (*__cuDeviceGetAttribute)(&cc.prop.maxThreadsDim[1], CU_DEVICE_ATTRIBUTE_MAX_BLOCK_DIM_Y, device);
-        (*__cuDeviceGetAttribute)(&cc.prop.maxThreadsDim[2], CU_DEVICE_ATTRIBUTE_MAX_BLOCK_DIM_Z, device);
-        (*__cuDeviceGetAttribute)(&cc.prop.maxGridSize[0], CU_DEVICE_ATTRIBUTE_MAX_GRID_DIM_X, device);
-        (*__cuDeviceGetAttribute)(&cc.prop.maxGridSize[1], CU_DEVICE_ATTRIBUTE_MAX_GRID_DIM_Y, device);
-        (*__cuDeviceGetAttribute)(&cc.prop.maxGridSize[2], CU_DEVICE_ATTRIBUTE_MAX_GRID_DIM_Z, device);
-        (*__cuDeviceGetAttribute)(&cc.prop.clockRate, CU_DEVICE_ATTRIBUTE_CLOCK_RATE, device);
-        (*__cuDeviceGetAttribute)(&cc.prop.totalConstMem, CU_DEVICE_ATTRIBUTE_TOTAL_CONSTANT_MEMORY, device);
-        (*__cuDeviceGetAttribute)(&cc.prop.textureAlignment, CU_DEVICE_ATTRIBUTE_TEXTURE_ALIGNMENT, device);
-        (*__cuDeviceGetAttribute)(&cc.prop.deviceOverlap, CU_DEVICE_ATTRIBUTE_GPU_OVERLAP, device);
-        retval = (*__cuDeviceGetAttribute)(&cc.prop.multiProcessorCount, CU_DEVICE_ATTRIBUTE_MULTIPROCESSOR_COUNT, device);
-        //retval = (*__cuDeviceGetProperties)(&cc.prop, device);
-        if (cc.prop.major <= 0) continue;  // major == 0 means emulation
-        if (cc.prop.major > 100) continue;  // e.g. 9999 is an error
-#if defined(_WIN32) && !defined(SIM)
-        cc.display_driver_version = Version.drvVersion;
-#else
-        cc.display_driver_version = 0;
-#endif
-        cc.cuda_version = cuda_version;
-        cc.device_num = j;
-        gpus.push_back(cc);
-    }
-
-    if (!gpus.size()) {
-        warnings.push_back("No CUDA-capable NVIDIA GPUs found");
-        return;
-    }
-
-    // identify the most capable instance
-    //
-    COPROC_CUDA best;
-    for (i=0; i<gpus.size(); i++) {
-        if (i==0) {
-            best = gpus[i];
-        } else if (cuda_compare(gpus[i], best, false) > 0) {
-            best = gpus[i];
-        }
-    }
-
-    // see which other instances are equivalent,
-    // and set the "count" and "device_nums" fields
-    //
-    best.count = 0;
-    for (i=0; i<gpus.size(); i++) {
-        char buf2[256];
-        gpus[i].description(buf);
-        if (use_all || !cuda_compare(gpus[i], best, true)) {
-            best.device_nums[best.count] = gpus[i].device_num;
-            best.count++;
-            sprintf(buf2, "NVIDIA GPU %d: %s", gpus[i].device_num, buf);
-        } else {
-            sprintf(buf2, "NVIDIA GPU %d (not used): %s", gpus[i].device_num, buf);
-        }
-        descs.push_back(string(buf2));
-    }
-
-    COPROC_CUDA* ccp = new COPROC_CUDA;
-    *ccp = best;
-    coprocs.coprocs.push_back(ccp);
-}
-
-bool COPROC_CUDA::is_usable() {
-#ifdef _WIN32
-    if (is_remote_desktop()) return false;
-#endif
-    return true;
-}
 
 void COPROC_CUDA::description(char* buf) {
     char vers[256];
@@ -493,39 +177,6 @@ void COPROC_CUDA::description(char* buf) {
     );
 }
 
-// fake a NVIDIA GPU (for debugging)
-//
-void fake_cuda(COPROCS& coprocs, int count) {
-   COPROC_CUDA* cc = new COPROC_CUDA;
-   strcpy(cc->type, "CUDA");
-   cc->count = count;
-   for (int i=0; i<count; i++) {
-       cc->device_nums[i] = i;
-   }
-   cc->display_driver_version = 18000;
-   cc->cuda_version = 2020;
-   strcpy(cc->prop.name, "Fake NVIDIA GPU");
-   cc->prop.totalGlobalMem = 256*1024*1024;
-   cc->prop.sharedMemPerBlock = 100;
-   cc->prop.regsPerBlock = 8;
-   cc->prop.warpSize = 10;
-   cc->prop.memPitch = 10;
-   cc->prop.maxThreadsPerBlock = 20;
-   cc->prop.maxThreadsDim[0] = 2;
-   cc->prop.maxThreadsDim[1] = 2;
-   cc->prop.maxThreadsDim[2] = 2;
-   cc->prop.maxGridSize[0] = 10;
-   cc->prop.maxGridSize[1] = 10;
-   cc->prop.maxGridSize[2] = 10;
-   cc->prop.totalConstMem = 10;
-   cc->prop.major = 1;
-   cc->prop.minor = 2;
-   cc->prop.clockRate = 1250000;
-   cc->prop.textureAlignment = 1000;
-   cc->prop.multiProcessorCount = 14;
-   coprocs.coprocs.push_back(cc);
-}
-
 #ifndef _USING_FCGI_
 void COPROC_CUDA::write_xml(MIOFILE& f) {
     f.printf(
@@ -609,11 +260,11 @@ void COPROC_CUDA::clear() {
     prop.multiProcessorCount = 0;
 }
 
-int COPROC_CUDA::parse(FILE* fin) {
+int COPROC_CUDA::parse(MIOFILE& fin) {
     char buf[1024], buf2[256];
 
     clear();
-    while (fgets(buf, sizeof(buf), fin)) {
+    while (fin.fgets(buf, sizeof(buf))) {
         if (strstr(buf, "</coproc_cuda>")) {
             return 0;
         }
@@ -671,276 +322,7 @@ int COPROC_CUDA::parse(FILE* fin) {
     return ERR_XML_PARSE;
 }
 
-// check whether each GPU is running a graphics app (assume yes)
-// return true if there's been a change since last time
-//
-bool COPROC_CUDA::check_running_graphics_app() {
-    int retval, j;
-    bool change = false;
-    for (j=0; j<count; j++) {
-        bool new_val = true;
-        int device, kernel_timeout;
-        retval = (*__cuDeviceGet)(&device, j);
-        if (!retval) {
-            retval = (*__cuDeviceGetAttribute)(&kernel_timeout, CU_DEVICE_ATTRIBUTE_KERNEL_EXEC_TIMEOUT, device);
-            if (!retval && !kernel_timeout) {
-                new_val = false;
-            }
-        }
-        if (new_val != running_graphics_app[j]) {
-            change = true;
-        }
-        running_graphics_app[j] = new_val;
-    }
-    return change;
-}
-
 ////////////////// ATI STARTS HERE /////////////////
-// Docs:
-// http://developer.amd.com/gpu_assets/Stream_Computing_User_Guide.pdf
-// ?? why don't they have HTML docs??
-
-#ifdef _WIN32
-typedef int (__stdcall *ATI_ATTRIBS) (CALdeviceattribs *attribs, CALuint ordinal);
-typedef int (__stdcall *ATI_CLOSE)(void);
-typedef int (__stdcall *ATI_GDC)(CALuint *numDevices);
-typedef int (__stdcall *ATI_GDI)(void);
-typedef int (__stdcall *ATI_INFO) (CALdeviceinfo *info, CALuint ordinal);
-typedef int (__stdcall *ATI_VER) (CALuint *cal_major, CALuint *cal_minor, CALuint *cal_imp);
-
-ATI_ATTRIBS __calDeviceGetAttribs = NULL;
-ATI_CLOSE   __calShutdown = NULL;
-ATI_GDC     __calDeviceGetCount = NULL;
-ATI_GDI     __calInit = NULL;
-ATI_INFO    __calDeviceGetInfo = NULL;
-ATI_VER     __calGetVersion = NULL;
-#else
-int (*__calInit)();
-int (*__calGetVersion)(CALuint*, CALuint*, CALuint*);
-int (*__calDeviceGetCount)(CALuint*);
-int (*__calDeviceGetAttribs)(CALdeviceattribs*, CALuint);
-int (*__calShutdown)();
-int (*__calDeviceGetInfo)(CALdeviceinfo*, CALuint);
-#endif
-
-void COPROC_ATI::get(COPROCS& coprocs,
-    vector<string>& descs, vector<string>& warnings
-) {
-    CALuint numDevices, cal_major, cal_minor, cal_imp;
-    CALdevice device;
-    CALdeviceinfo info;
-    CALdeviceattribs attribs;
-    char buf[256];
-    bool amdrt_detected = false;
-    bool atirt_detected = false;
-    int retval;
-
-    attribs.struct_size = sizeof(CALdeviceattribs);
-    device = 0;
-    numDevices =0;
-
-#ifdef _WIN32
-
-#if defined _M_X64
-    const char* atilib_name = "aticalrt64.dll";
-    const char* amdlib_name = "amdcalrt64.dll";
-#else
-    const char* atilib_name = "aticalrt.dll";
-    const char* amdlib_name = "amdcalrt.dll";
-#endif
-
-    HINSTANCE callib = LoadLibrary(atilib_name);
-    if (callib) {
-        atirt_detected = true;
-    } else {
-        callib = LoadLibrary(amdlib_name);
-        if (callib) {
-            amdrt_detected = true;
-        }
-    }
-
-    if (!callib) {
-        warnings.push_back("No ATI library found.");
-        return;
-    }
-
-    __calInit = (ATI_GDI)GetProcAddress(callib, "calInit" );
-    __calGetVersion = (ATI_VER)GetProcAddress(callib, "calGetVersion" );
-    __calDeviceGetCount = (ATI_GDC)GetProcAddress(callib, "calDeviceGetCount" );
-    __calDeviceGetAttribs =(ATI_ATTRIBS)GetProcAddress(callib, "calDeviceGetAttribs" );
-    __calShutdown = (ATI_CLOSE)GetProcAddress(callib, "calShutdown" );
-    __calDeviceGetInfo = (ATI_INFO)GetProcAddress(callib, "calDeviceGetInfo" );
-
-#else
-
-    void* callib;
-
-    callib = dlopen("libaticalrt.so", RTLD_NOW);
-    if (!callib) {
-        warnings.push_back("No ATI library found");
-        return;
-    }
-
-    atirt_detected = true;
-
-    __calInit = (int(*)()) dlsym(callib, "calInit");
-    __calGetVersion = (int(*)(CALuint*, CALuint*, CALuint*)) dlsym(callib, "calGetVersion");
-    __calDeviceGetCount = (int(*)(CALuint*)) dlsym(callib, "calDeviceGetCount");
-    __calDeviceGetAttribs = (int(*)(CALdeviceattribs*, CALuint)) dlsym(callib, "calDeviceGetAttribs");
-    __calShutdown = (int(*)()) dlsym(callib, "calShutdown");
-    __calDeviceGetInfo = (int(*)(CALdeviceinfo*, CALuint)) dlsym(callib, "calDeviceGetInfo");
-
-#endif
-
-    if (!__calInit) {
-        warnings.push_back("calInit() missing from CAL library");
-        return;
-    }
-    if (!__calGetVersion) {
-        warnings.push_back("calGetVersion() missing from CAL library");
-        return;
-    }
-    if (!__calDeviceGetCount) {
-        warnings.push_back("calDeviceGetCount() missing from CAL library");
-        return;
-    }
-    if (!__calDeviceGetAttribs) {
-        warnings.push_back("calDeviceGetAttribs() missing from CAL library");
-        return;
-    }
-    if (!__calDeviceGetInfo) {
-        warnings.push_back("calDeviceGetInfo() missing from CAL library");
-        return;
-    }
-
-    retval = (*__calInit)();
-    if (retval != CAL_RESULT_OK) {
-        sprintf(buf, "calInit() returned %d", retval);
-        warnings.push_back(buf);
-        return;
-    }
-    retval = (*__calDeviceGetCount)(&numDevices);
-    if (retval != CAL_RESULT_OK) {
-        sprintf(buf, "calDeviceGetCount() returned %d", retval);
-        warnings.push_back(buf);
-        return;
-    }
-    retval = (*__calGetVersion)(&cal_major, &cal_minor, &cal_imp);
-    if (retval != CAL_RESULT_OK) {
-        sprintf(buf, "calGetVersion() returned %d", retval);
-        warnings.push_back(buf);
-        return;
-    }
-
-    if (!numDevices) {
-        warnings.push_back("No usable CAL devices found");
-        return;
-    }
-
-    COPROC_ATI cc, cc2;
-    string s, gpu_name;
-    vector<COPROC_ATI> gpus;
-    for (CALuint i=0; i<numDevices; i++) {
-        retval = (*__calDeviceGetInfo)(&info, i);
-        if (retval != CAL_RESULT_OK) {
-            sprintf(buf, "calDeviceGetInfo() returned %d", retval);
-            warnings.push_back(buf);
-            return;
-        }
-        retval = (*__calDeviceGetAttribs)(&attribs, i);
-        if (retval != CAL_RESULT_OK) {
-            sprintf(buf, "calDeviceGetAttribs() returned %d", retval);
-            warnings.push_back(buf);
-            return;
-        }
-        switch ((int)attribs.target) {
-        case CAL_TARGET_600:
-            gpu_name="ATI Radeon HD 2900 (RV600)";
-            break;
-        case CAL_TARGET_610:
-            gpu_name="ATI Radeon HD 2300/2400/3200 (RV610)";
-            attribs.numberOfSIMD=1;        // set correct values (reported wrong by driver)
-            attribs.wavefrontSize=32;
-            break;
-        case CAL_TARGET_630:
-            gpu_name="ATI Radeon HD 2600 (RV630)";
-            // set correct values (reported wrong by driver)
-            attribs.numberOfSIMD=3;
-            attribs.wavefrontSize=32;
-            break;
-        case CAL_TARGET_670:
-            gpu_name="ATI Radeon HD 3800 (RV670)";
-            break;
-        case CAL_TARGET_710:
-            gpu_name="ATI Radeon HD 4350/4550 (R710)";
-            break;
-        case CAL_TARGET_730:
-            gpu_name="ATI Radeon HD 4600 series (R730)";
-            break;
-        case CAL_TARGET_7XX:
-            gpu_name="ATI Radeon (RV700 class)";
-            break;
-        case CAL_TARGET_770:
-            gpu_name="ATI Radeon HD 4700/4800 (RV740/RV770)";
-            break;
-        case 8:
-            gpu_name="ATI Radeon HD5800 series (Cypress)";
-            break;
-        case 9:
-            gpu_name="ATI Radeon HD5700 series (Juniper)";
-            break;
-        case 10:
-            gpu_name="ATI Radeon HD5x00 series (Redwood)";
-            break;
-        case 11:
-            gpu_name="ATI Radeon HD5x00 series (Cedar)";
-            break;
-        default:
-            gpu_name="ATI unknown";
-            break;
-        }
-        cc.attribs = attribs;
-        cc.info = info;
-        strcpy(cc.name, gpu_name.c_str());
-        sprintf(cc.version, "%d.%d.%d", cal_major, cal_minor, cal_imp);
-        cc.amdrt_detected = amdrt_detected;
-        cc.atirt_detected = atirt_detected;
-        cc.device_num = i;
-        gpus.push_back(cc);
-    }
-
-    // TODO: count only GPUs with as much memory as fastest one,
-    // same as for NVIDIA
-
-    COPROC_ATI best;
-    for (unsigned int i=0; i<gpus.size(); i++) {
-        char buf[256], buf2[256];
-        if (i == 0) {
-            best = gpus[i];
-        } else if (gpus[i].peak_flops() > best.peak_flops()) {
-            best = gpus[i];
-        }
-        gpus[i].description(buf);
-        sprintf(buf2, "ATI GPU %d: %s", gpus[i].device_num, buf);
-        descs.push_back(buf2);
-    }
-    for (unsigned int i=0; i<gpus.size(); i++) {
-        best.device_nums[i] = i;
-    }
-
-    COPROC_ATI* ccp = new COPROC_ATI;
-    *ccp = best;
-    strcpy(ccp->type, "ATI");
-    ccp->count = numDevices;
-    coprocs.coprocs.push_back(ccp);
-}
-
-bool COPROC_ATI::is_usable() {
-#ifdef _WIN32
-    if (is_remote_desktop()) return false;
-#endif
-    return true;
-}
 
 #ifndef _USING_FCGI_
 void COPROC_ATI::write_xml(MIOFILE& f) {
@@ -1017,13 +399,13 @@ void COPROC_ATI::clear() {
     memset(&info, 0, sizeof(info));
 }
 
-int COPROC_ATI::parse(FILE* fin) {
+int COPROC_ATI::parse(MIOFILE& fin) {
     char buf[1024];
     int n;
 
     clear();
 
-    while (fgets(buf, sizeof(buf), fin)) {
+    while (fin.fgets(buf, sizeof(buf))) {
         if (strstr(buf, "</coproc_ati>")) return 0;
         if (parse_int(buf, "<count>", count)) continue;
         if (parse_str(buf, "<name>", name, sizeof(name))) continue;
@@ -1100,16 +482,3 @@ void COPROC_ATI::description(char* buf) {
     );
 }
 
-void fake_ati(COPROCS& coprocs, int count) {
-    COPROC_ATI* cc = new COPROC_ATI;
-    strcpy(cc->type, "ATI");
-    strcpy(cc->version, "1.4.3");
-    cc->count = count;
-    cc->attribs.numberOfSIMD = 32;
-    cc->attribs.wavefrontSize = 32;
-    cc->attribs.engineClock = 500;
-    for (int i=0; i<count; i++) {
-        cc->device_nums[i] = i;
-    }
-    coprocs.coprocs.push_back(cc);
-}
diff --git a/lib/coproc.h b/lib/coproc.h
index fadceb9..c08da99 100644
--- a/lib/coproc.h
+++ b/lib/coproc.h
@@ -95,13 +95,6 @@ struct COPROC {
     int count;          // how many are present
     double used;           // how many are in use (used by client)
 
-    // Sometimes coprocs become temporarily unusable
-    // (e.g. while using Remote Desktop on Windows).
-    // The client periodically checks this and puts jobs into limbo.
-    //
-    virtual bool is_usable();   // check if we're usable
-    bool usable;                // current state
-
     // the following are used in both client and server for work-fetch info
     //
     double req_secs;
@@ -137,7 +130,6 @@ struct COPROC {
         req_secs = 0;
         req_instances = 0;
         estimated_delay = 0;
-        usable = true;
         for (int i=0; i<MAX_COPROC_INSTANCES; i++) {
             device_nums[i] = 0;
             running_graphics_app[i] = true;
@@ -165,20 +157,14 @@ struct COPROCS {
             delete coprocs[i];
         }
     }
-#if 0
-#ifndef _USING_FCGI_
-    void write_xml(MIOFILE& out) {
-        for (unsigned int i=0; i<coprocs.size(); i++) {
-            coprocs[i]->write_xml(out);
-        }
-    }
-#endif
-#endif
+    void write_xml(MIOFILE& out);
     void get(
         bool use_all, std::vector<std::string> &descs,
-        std::vector<std::string> &warnings
+        std::vector<std::string> &warnings,
+        std::vector<int>& ignore_cuda_dev,
+        std::vector<int>& ignore_ati_dev
     );
-    int parse(FILE*);
+    int parse(MIOFILE&);
     void summary_string(char*, int);
     COPROC* lookup(const char*);
     bool fully_used() {
@@ -249,12 +235,12 @@ struct COPROC_CUDA : public COPROC {
     virtual ~COPROC_CUDA(){}
     static void get(
         COPROCS&, bool use_all,
-        std::vector<std::string>&, std::vector<std::string>&
+        std::vector<std::string>&, std::vector<std::string>&,
+        std::vector<int>& ignore_devs
     );
 	void description(char*);
     void clear();
-    int parse(FILE*);
-    virtual bool is_usable();
+    int parse(MIOFILE&);
 
     // Estimate of peak FLOPS.
     // FLOPS for a given app may be much less;
@@ -268,6 +254,7 @@ struct COPROC_CUDA : public COPROC {
         double x = (1000.*prop.clockRate) * prop.multiProcessorCount * 8. * 2.;
         return x?x:5e10;
     }
+    int available_ram(int dev, double&);
 
     bool check_running_graphics_app();
 };
@@ -311,17 +298,18 @@ struct COPROC_ATI : public COPROC {
     COPROC_ATI(): COPROC("ATI"){}
     virtual ~COPROC_ATI(){}
     static void get(COPROCS&,
-        std::vector<std::string>&, std::vector<std::string>&
+        std::vector<std::string>&, std::vector<std::string>&,
+        std::vector<int>& ignore_devs
     );
     void description(char*);
     void clear();
-    int parse(FILE*);
-    virtual bool is_usable();
+    int parse(MIOFILE&);
     inline double peak_flops() {
 		double x = attribs.numberOfSIMD * attribs.wavefrontSize * 2.5 * attribs.engineClock * 1.e6;
         // clock is in MHz
         return x?x:5e10;
     }
+    int available_ram(int dev, double&);
 };
 
 #endif
diff --git a/lib/crypt.cpp b/lib/crypt.cpp
index 99e1cc3..48a6519 100644
--- a/lib/crypt.cpp
+++ b/lib/crypt.cpp
@@ -589,7 +589,7 @@ char *check_validity(
     FILE* of = boinc_fopen(origFile, "r");
     if (!of) return NULL;
     MD5_Init(&md5CTX);
-    while (0 != (rbytes = fread(rbuf, 1, sizeof(rbuf), of))) {
+    while (0 != (rbytes = (int)fread(rbuf, 1, sizeof(rbuf), of))) {
 	    MD5_Update(&md5CTX, rbuf, rbytes);
     }
     MD5_Final(md5_md, &md5CTX);
@@ -637,7 +637,7 @@ int cert_verify_file(
     FILE* of = boinc_fopen(origFile, "r");
     if (!of) return false;
     MD5_Init(&md5CTX);
-    while (0 != (rbytes = fread(rbuf, 1, sizeof(rbuf), of))) {
+    while (0 != (rbytes = (int)fread(rbuf, 1, sizeof(rbuf), of))) {
 	    MD5_Update(&md5CTX, rbuf, rbytes);
     }
     MD5_Final(md5_md, &md5CTX);
@@ -694,4 +694,3 @@ int cert_verify_file(
     return verified;
 }
 
-const char *BOINC_RCSID_4f0c2e42ea = "$Id: crypt.cpp 18309 2009-06-04 23:03:47Z davea $";
diff --git a/lib/diagnostics.cpp b/lib/diagnostics.cpp
index f11f61f..30d935c 100644
--- a/lib/diagnostics.cpp
+++ b/lib/diagnostics.cpp
@@ -734,4 +734,3 @@ void diagnostics_set_max_file_sizes(int stdout_size, int stderr_size) {
     if (stderr_size) max_stderr_file_size = stderr_size;
 }
 
-const char *BOINC_RCSID_4967ad204c = "$Id: diagnostics.cpp 18213 2009-05-27 23:36:55Z davea $";
diff --git a/lib/diagnostics.h b/lib/diagnostics.h
index ab36e26..46f65d6 100644
--- a/lib/diagnostics.h
+++ b/lib/diagnostics.h
@@ -78,7 +78,7 @@ extern int diagnostics_init(
 );
 extern int diagnostics_finish();
 extern int diagnostics_is_initialized();
-extern int diagnostics_is_flag_set( int flags );
+extern int diagnostics_is_flag_set(int flags);
 
 // Properties
 extern char* diagnostics_get_boinc_dir();
@@ -100,6 +100,7 @@ extern int diagnostics_init_thread_list();
 extern int diagnostics_finish_thread_list();
 extern int diagnostics_update_thread_list();
 extern int diagnostics_set_thread_exempt_suspend();
+extern int diagnostics_is_thread_exempt_suspend(long thread_id);
 
 // Message Monitoring
 extern int diagnostics_init_message_monitor();
diff --git a/lib/diagnostics_win.cpp b/lib/diagnostics_win.cpp
index ba3824c..8b5a46a 100644
--- a/lib/diagnostics_win.cpp
+++ b/lib/diagnostics_win.cpp
@@ -578,8 +578,8 @@ int diagnostics_update_thread_list() {
 }
 
 
-// Set the current threads name to make it easy to know what the
-//   thread is supposed to be doing.
+// Set the cached exception record for the current thread, let the exception monitor
+// thread dump the human readable exception information.
 int diagnostics_set_thread_exception_record(PEXCEPTION_POINTERS pExPtrs) {
     HANDLE hThread;
     PBOINC_THREADLISTENTRY pThreadEntry = NULL;
@@ -616,8 +616,7 @@ int diagnostics_set_thread_exception_record(PEXCEPTION_POINTERS pExPtrs) {
 }
 
 
-// Set the current threads name to make it easy to know what the
-//   thread is supposed to be doing.
+// Set the current thread to suspend exempt status.  Prevents deadlocks.
 int diagnostics_set_thread_exempt_suspend() {
     HANDLE hThread;
     PBOINC_THREADLISTENTRY pThreadEntry = NULL;
@@ -654,8 +653,31 @@ int diagnostics_set_thread_exempt_suspend() {
 }
 
 
+// Checks to see if the specified thread id is flagged for suspend exempt status.
+// returns 0 on true, 1 on false.  Couldn't use a bool data type since the function
+// prototype needs to be compatible with C.
+int diagnostics_is_thread_exempt_suspend(long thread_id) {
+    int retval = 1;
+    PBOINC_THREADLISTENTRY pThreadEntry = NULL;
+
+    // Wait for the ThreadListSync mutex before writing updates
+    WaitForSingleObject(hThreadListSync, INFINITE);
+
+    pThreadEntry = diagnostics_find_thread_entry(thread_id);
+    if (pThreadEntry) {
+        if (pThreadEntry->crash_suspend_exempt) {
+            retval = 0;
+        }
+    }
+
+    // Release the Mutex
+    ReleaseMutex(hThreadListSync);
+
+    return retval;
+}
+
+
 // Set the current thread's crash message.
-//
 int diagnostics_set_thread_crash_message(char* message) {
     HANDLE hThread;
     PBOINC_THREADLISTENTRY pThreadEntry = NULL;
@@ -2083,5 +2105,3 @@ void boinc_catch_signal_invalid_parameter(
 	DebugBreak();
 }
 
-
-const char *BOINC_RCSID_5967ad204d = "$Id: diagnostics_win.cpp 19260 2009-10-05 20:41:24Z romw $";
diff --git a/lib/filesys.cpp b/lib/filesys.cpp
index 8752ce5..ef3f987 100644
--- a/lib/filesys.cpp
+++ b/lib/filesys.cpp
@@ -666,10 +666,10 @@ int FILE_LOCK::lock(const char* filename) {
     }
 
     struct flock fl;
-    fl.l_type=F_WRLCK;
-    fl.l_whence=SEEK_SET;
-    fl.l_start=0;
-    fl.l_len=0;
+    fl.l_type = F_WRLCK;
+    fl.l_whence = SEEK_SET;
+    fl.l_start = 0;
+    fl.l_len = 0;
     if (fcntl(fd, F_SETLK, &fl) == -1) {
         return ERR_FCNTL;
     }
@@ -797,4 +797,3 @@ int get_file_dir(char* filename, char* dir) {
 
 #endif
 
-const char *BOINC_RCSID_636c8d709b = "$Id: filesys.cpp 18437 2009-06-16 20:54:44Z davea $";
diff --git a/lib/filesys.h b/lib/filesys.h
index ca12100..4fd96a6 100644
--- a/lib/filesys.h
+++ b/lib/filesys.h
@@ -47,7 +47,6 @@ extern "C" {
   extern int boinc_chown(const char*, gid_t);
 #endif
   extern int boinc_rmdir(const char*);
-  extern int remove_project_owned_file_or_dir(const char* path);
   extern void boinc_getcwd(char*);
   extern void relative_to_absolute(const char* relname, char* path);
   extern int boinc_make_dirs(char*, char*);
diff --git a/lib/gui_rpc_client.cpp b/lib/gui_rpc_client.cpp
index c5e4be4..5076c24 100644
--- a/lib/gui_rpc_client.cpp
+++ b/lib/gui_rpc_client.cpp
@@ -216,6 +216,7 @@ int RPC_CLIENT::authorize(const char* passwd) {
     }
 
     free(rpc.mbuf);
+    rpc.mbuf = 0;
 
     if (!found) {
         //fprintf(stderr, "Nonce not found\n");
@@ -331,4 +332,3 @@ int read_gui_rpc_password(char* buf) {
     return 0;
 }
 
-const char *BOINC_RCSID_6802bead97 = "$Id: gui_rpc_client.cpp 18833 2009-08-13 05:08:07Z davea $";
diff --git a/lib/gui_rpc_client.h b/lib/gui_rpc_client.h
index 067feff..a58d7fa 100644
--- a/lib/gui_rpc_client.h
+++ b/lib/gui_rpc_client.h
@@ -122,14 +122,16 @@ public:
     double download_backoff;
     double upload_backoff;
 
-    double short_term_debt;
+    double cpu_short_term_debt;
     double cpu_long_term_debt;
     double cpu_backoff_time;
     double cpu_backoff_interval;
     double cuda_debt;
+    double cuda_short_term_debt;
     double cuda_backoff_time;
     double cuda_backoff_interval;
     double ati_debt;
+    double ati_short_term_debt;
     double ati_backoff_time;
     double ati_backoff_interval;
     double duration_correction_factor;
@@ -158,6 +160,7 @@ public:
 
     int parse(MIOFILE&);
     void print();
+    void print_disk_usage();
     void clear();
     void get_name(std::string&);
 
@@ -242,6 +245,7 @@ public:
     int active_task_state;
     int app_version_num;
     int slot;
+    int pid;
     double checkpoint_cpu_time;
     double current_cpu_time;
     double fraction_done;
@@ -549,12 +553,16 @@ struct CC_STATUS {
     bool ams_password_error;
     bool manager_must_quit;
     int task_suspend_reason;    // bitmap, see common_defs.h
-    int network_suspend_reason;
     int task_mode;              // always/auto/never; see common_defs.h
-    int network_mode;
     int task_mode_perm;			// same, but permanent version
-    int network_mode_perm;
 	double task_mode_delay;		// time until perm becomes actual
+    int gpu_suspend_reason;
+    int gpu_mode;
+    int gpu_mode_perm;
+	double gpu_mode_delay;
+    int network_suspend_reason;
+    int network_mode;
+    int network_mode_perm;
 	double network_mode_delay;
     bool disallow_attach;
     bool simple_gui_only;
@@ -618,6 +626,7 @@ public:
         // if duration is zero, change is permanent.
         // otherwise, after duration expires,
         // restore last permanent mode
+    int set_gpu_mode(int mode, double duration);
     int set_network_mode(int mode, double duration);
     int get_screensaver_tasks(int& suspend_reason, RESULTS&);
     int run_benchmarks();
diff --git a/lib/gui_rpc_client_ops.cpp b/lib/gui_rpc_client_ops.cpp
index 90c3f38..f9f829d 100644
--- a/lib/gui_rpc_client_ops.cpp
+++ b/lib/gui_rpc_client_ops.cpp
@@ -238,14 +238,16 @@ int PROJECT::parse(MIOFILE& in) {
         if (parse_double(buf, "<min_rpc_time>", min_rpc_time)) continue;
         if (parse_double(buf, "<download_backoff>", download_backoff)) continue;
         if (parse_double(buf, "<upload_backoff>", upload_backoff)) continue;
-        if (parse_double(buf, "<short_term_debt>", short_term_debt)) continue;
+        if (parse_double(buf, "<short_term_debt>", cpu_short_term_debt)) continue;
         if (parse_double(buf, "<long_term_debt>", cpu_long_term_debt)) continue;
         if (parse_double(buf, "<cpu_backoff_time>", cpu_backoff_time)) continue;
         if (parse_double(buf, "<cpu_backoff_interval>", cpu_backoff_interval)) continue;
         if (parse_double(buf, "<cuda_debt>", cuda_debt)) continue;
+        if (parse_double(buf, "<cuda_short_term_debt>", cuda_short_term_debt)) continue;
         if (parse_double(buf, "<cuda_backoff_time>", cuda_backoff_time)) continue;
         if (parse_double(buf, "<cuda_backoff_interval>", cuda_backoff_interval)) continue;
         if (parse_double(buf, "<ati_debt>", ati_debt)) continue;
+        if (parse_double(buf, "<ati_short_term_debt>", ati_short_term_debt)) continue;
         if (parse_double(buf, "<ati_backoff_time>", ati_backoff_time)) continue;
         if (parse_double(buf, "<ati_backoff_interval>", ati_backoff_interval)) continue;
         if (parse_double(buf, "<duration_correction_factor>", duration_correction_factor)) continue;
@@ -293,7 +295,7 @@ void PROJECT::clear() {
     min_rpc_time = 0;
     download_backoff = 0;
     upload_backoff = 0;
-    short_term_debt = 0;
+    cpu_short_term_debt = 0;
     cpu_long_term_debt = 0;
     cpu_backoff_time = 0;
     cpu_backoff_interval = 0;
@@ -459,6 +461,7 @@ int RESULT::parse(MIOFILE& in) {
         }
         if (parse_int(buf, "<app_version_num>", app_version_num)) continue;
         if (parse_int(buf, "<slot>", slot)) continue;
+        if (parse_int(buf, "<pid>", pid)) continue;
         if (parse_double(buf, "<checkpoint_cpu_time>", checkpoint_cpu_time)) continue;
         if (parse_double(buf, "<current_cpu_time>", current_cpu_time)) continue;
         if (parse_double(buf, "<elapsed_time>", elapsed_time)) continue;
@@ -503,6 +506,7 @@ void RESULT::clear() {
     active_task_state = 0;
     app_version_num = 0;
     slot = -1;
+    pid = 0;
     checkpoint_cpu_time = 0;
     current_cpu_time = 0;
     fraction_done = 0;
@@ -1056,12 +1060,15 @@ int CC_STATUS::parse(MIOFILE& in) {
         if (parse_bool(buf, "ams_password_error", ams_password_error)) continue;
         if (parse_bool(buf, "manager_must_quit", manager_must_quit)) continue;
         if (parse_int(buf, "<task_suspend_reason>", task_suspend_reason)) continue;
-        if (parse_int(buf, "<network_suspend_reason>", network_suspend_reason)) continue;
         if (parse_int(buf, "<task_mode>", task_mode)) continue;
-        if (parse_int(buf, "<network_mode>", network_mode)) continue;
         if (parse_int(buf, "<task_mode_perm>", task_mode_perm)) continue;
-        if (parse_int(buf, "<network_mode_perm>", network_mode_perm)) continue;
 		if (parse_double(buf, "<task_mode_delay>", task_mode_delay)) continue;
+        if (parse_int(buf, "<gpu_mode>", gpu_mode)) continue;
+        if (parse_int(buf, "<gpu_mode_perm>", gpu_mode_perm)) continue;
+		if (parse_double(buf, "<gpu_mode_delay>", gpu_mode_delay)) continue;
+        if (parse_int(buf, "<network_suspend_reason>", network_suspend_reason)) continue;
+        if (parse_int(buf, "<network_mode>", network_mode)) continue;
+        if (parse_int(buf, "<network_mode_perm>", network_mode_perm)) continue;
 		if (parse_double(buf, "<network_mode_delay>", network_mode_delay)) continue;
         if (parse_bool(buf, "disallow_attach", disallow_attach)) continue;
         if (parse_bool(buf, "simple_gui_only", simple_gui_only)) continue;
@@ -1632,6 +1639,24 @@ int RPC_CLIENT::set_run_mode(int mode, double duration) {
     return retval;
 }
 
+int RPC_CLIENT::set_gpu_mode(int mode, double duration) {
+    int retval;
+    SET_LOCALE sl;
+    char buf[256];
+    RPC rpc(this);
+
+    sprintf(buf, 
+        "<set_gpu_mode>\n"
+        "%s\n"
+        "  <duration>%f</duration>\n"
+        "</set_gpu_mode>\n",
+        mode_name(mode), duration
+    );
+
+    retval = rpc.do_rpc(buf);
+    return retval;
+}
+
 int RPC_CLIENT::set_network_mode(int mode, double duration) {
     int retval;
     SET_LOCALE sl;
@@ -2247,7 +2272,7 @@ int RPC_CLIENT::set_debts(vector<PROJECT> projects) {
             "        <long_term_debt>%f</long_term_debt>\n"
             "    </project>\n",
             p.master_url.c_str(),
-            p.short_term_debt,
+            p.cpu_short_term_debt,
             p.cpu_long_term_debt
         );
         s += string(buf);
@@ -2258,4 +2283,3 @@ int RPC_CLIENT::set_debts(vector<PROJECT> projects) {
 }
 
 
-const char *BOINC_RCSID_90e8b8d168="$Id: gui_rpc_client_ops.cpp 19318 2009-10-16 19:07:56Z romw $";
diff --git a/lib/gui_rpc_client_print.cpp b/lib/gui_rpc_client_print.cpp
index e301d73..dc34fdf 100644
--- a/lib/gui_rpc_client_print.cpp
+++ b/lib/gui_rpc_client_print.cpp
@@ -58,6 +58,11 @@ void GUI_URL::print() {
     );
 }
 
+void PROJECT::print_disk_usage() {
+    printf("   master URL: %s\n", master_url.c_str());
+    printf("   disk usage: %.2fMB\n", disk_usage/MEGA);
+}
+
 void PROJECT::print() {
     unsigned int i;
 
@@ -242,7 +247,7 @@ void DISK_USAGE::print() {
     printf("free: %f\n", d_free);
     for (i=0; i<projects.size(); i++) {
         printf("%d) -----------\n", i+1);
-        projects[i]->print();
+        projects[i]->print_disk_usage();
     }
 }
 
@@ -292,4 +297,3 @@ void ACCOUNT_OUT::print() {
     }
 }
 
-const char *BOINC_RCSID_2bed1889d8="$Id: gui_rpc_client_print.cpp 16069 2008-09-26 18:20:24Z davea $";
diff --git a/lib/hostinfo.cpp b/lib/hostinfo.cpp
index 16e4a48..4a1d0ca 100644
--- a/lib/hostinfo.cpp
+++ b/lib/hostinfo.cpp
@@ -67,20 +67,11 @@ void HOST_INFO::clear_host_info() {
     strcpy(os_version, "");
 }
 
-int HOST_INFO::parse(MIOFILE& in) {
+int HOST_INFO::parse(MIOFILE& in, bool benchmarks_only) {
     char buf[1024];
 
-    memset(this, 0, sizeof(HOST_INFO));
     while (in.fgets(buf, sizeof(buf))) {
         if (match_tag(buf, "</host_info>")) return 0;
-        else if (parse_int(buf, "<timezone>", timezone)) continue;
-        else if (parse_str(buf, "<domain_name>", domain_name, sizeof(domain_name))) continue;
-        else if (parse_str(buf, "<ip_addr>", ip_addr, sizeof(ip_addr))) continue;
-        else if (parse_str(buf, "<host_cpid>", host_cpid, sizeof(host_cpid))) continue;
-        else if (parse_int(buf, "<p_ncpus>", p_ncpus)) continue;
-        else if (parse_str(buf, "<p_vendor>", p_vendor, sizeof(p_vendor))) continue;
-        else if (parse_str(buf, "<p_model>", p_model, sizeof(p_model))) continue;
-        else if (parse_str(buf, "<p_features>", p_features, sizeof(p_features))) continue;
         else if (parse_double(buf, "<p_fpops>", p_fpops)) {
             // fix foolishness that could result in negative value here
             //
@@ -96,6 +87,17 @@ int HOST_INFO::parse(MIOFILE& in) {
             continue;
         }
         else if (parse_double(buf, "<p_calculated>", p_calculated)) continue;
+
+        if (benchmarks_only) continue;
+
+        if (parse_int(buf, "<timezone>", timezone)) continue;
+        else if (parse_str(buf, "<domain_name>", domain_name, sizeof(domain_name))) continue;
+        else if (parse_str(buf, "<ip_addr>", ip_addr, sizeof(ip_addr))) continue;
+        else if (parse_str(buf, "<host_cpid>", host_cpid, sizeof(host_cpid))) continue;
+        else if (parse_int(buf, "<p_ncpus>", p_ncpus)) continue;
+        else if (parse_str(buf, "<p_vendor>", p_vendor, sizeof(p_vendor))) continue;
+        else if (parse_str(buf, "<p_model>", p_model, sizeof(p_model))) continue;
+        else if (parse_str(buf, "<p_features>", p_features, sizeof(p_features))) continue;
         else if (parse_double(buf, "<m_nbytes>", m_nbytes)) continue;
         else if (parse_double(buf, "<m_cache>", m_cache)) continue;
         else if (parse_double(buf, "<m_swap>", m_swap)) continue;
@@ -103,6 +105,9 @@ int HOST_INFO::parse(MIOFILE& in) {
         else if (parse_double(buf, "<d_free>", d_free)) continue;
         else if (parse_str(buf, "<os_name>", os_name, sizeof(os_name))) continue;
         else if (parse_str(buf, "<os_version>", os_version, sizeof(os_version))) continue;
+        else if (match_tag(buf, "<coprocs>")) {
+            coprocs.parse(in);
+        }
     }
     return ERR_XML_PARSE;
 }
@@ -110,7 +115,9 @@ int HOST_INFO::parse(MIOFILE& in) {
 // Write the host information, to the client state XML file
 // or in a scheduler request message
 //
-int HOST_INFO::write(MIOFILE& out, bool suppress_net_info) {
+int HOST_INFO::write(
+    MIOFILE& out, bool suppress_net_info, bool include_coprocs
+) {
     out.printf(
         "<host_info>\n"
         "    <timezone>%d</timezone>\n",
@@ -140,8 +147,7 @@ int HOST_INFO::write(MIOFILE& out, bool suppress_net_info) {
         "    <d_total>%f</d_total>\n"
         "    <d_free>%f</d_free>\n"
         "    <os_name>%s</os_name>\n"
-        "    <os_version>%s</os_version>\n"
-        "</host_info>\n",
+        "    <os_version>%s</os_version>\n",
         host_cpid,
         p_ncpus,
         p_vendor,
@@ -159,6 +165,12 @@ int HOST_INFO::write(MIOFILE& out, bool suppress_net_info) {
         os_name,
         os_version
     );
+    if (include_coprocs) {
+        coprocs.write_xml(out);
+    }
+    out.printf(
+        "</host_info>\n"
+    );
     return 0;
 }
 
@@ -201,4 +213,3 @@ int HOST_INFO::write_cpu_benchmarks(FILE* out) {
     return 0;
 }
 
-const char *BOINC_RCSID_edf7e5c147 = "$Id: hostinfo.cpp 16432 2008-11-05 20:11:45Z davea $";
diff --git a/lib/hostinfo.h b/lib/hostinfo.h
index f7a2974..810d6f8 100644
--- a/lib/hostinfo.h
+++ b/lib/hostinfo.h
@@ -29,6 +29,7 @@
 // NET_STATS (average network bandwidths)
 
 #include "miofile.h"
+#include "coproc.h"
 
 class HOST_INFO {
 public:
@@ -57,9 +58,11 @@ public:
     char os_name[256];
     char os_version[256];
 
+    COPROCS coprocs;
+
     HOST_INFO();
-    int parse(MIOFILE&);
-    int write(MIOFILE&, bool suppress_net_info);
+    int parse(MIOFILE&, bool benchmarks_only = false);
+    int write(MIOFILE&, bool suppress_net_info, bool include_coprocs);
     int parse_cpu_benchmarks(FILE*);
     int write_cpu_benchmarks(FILE*);
     void print();
diff --git a/lib/md5.c b/lib/md5.c
index 28c2807..69a3c15 100644
--- a/lib/md5.c
+++ b/lib/md5.c
@@ -21,7 +21,7 @@
   ghost at aladdin.com
 
  */
-/*$Id: md5.c 4979 2005-01-02 18:29:53Z ballen $ */
+/*$Id: md5.c 20874 2010-03-12 17:03:53Z romw $ */
 /*
   Independent implementation of MD5 (RFC 1321).
 
@@ -396,4 +396,3 @@ md5_finish(md5_state_t *pms, md5_byte_t digest[16])
 	digest[i] = (md5_byte_t)(pms->abcd[i >> 2] >> ((i & 3) << 3));
 }
 
-const char *BOINC_RCSID_40448d5426 = "$Id: md5.c 4979 2005-01-02 18:29:53Z ballen $";
diff --git a/lib/md5_file.cpp b/lib/md5_file.cpp
index b2196a8..a897307 100644
--- a/lib/md5_file.cpp
+++ b/lib/md5_file.cpp
@@ -126,4 +126,3 @@ int make_random_string(char* out) {
     return 0;
 }
 
-const char *BOINC_RCSID_5a0dc438fe = "$Id: md5_file.cpp 17388 2009-02-26 00:23:23Z korpela $";
diff --git a/lib/mem_usage.cpp b/lib/mem_usage.cpp
index bd0553b..b47adea 100644
--- a/lib/mem_usage.cpp
+++ b/lib/mem_usage.cpp
@@ -141,4 +141,3 @@ int mem_usage(double& vm_usage, double& resident_set) {
 #endif
 }
 
-const char *BOINC_RCSID_dc202bfd53 = "$Id: mem_usage.cpp 17388 2009-02-26 00:23:23Z korpela $";
diff --git a/lib/mfile.cpp b/lib/mfile.cpp
index 11ebb51..e459ec2 100644
--- a/lib/mfile.cpp
+++ b/lib/mfile.cpp
@@ -40,7 +40,7 @@
 
 
 MFILE::MFILE() {
-    buf = 0;
+    buf = (char*)malloc(64*1024);
     len = 0;
 }
 
@@ -54,6 +54,17 @@ int MFILE::open(const char* path, const char* mode) {
     return 0;
 }
 
+// seems like Win's realloc is stupid,  Make it smart.
+//
+static inline char* realloc_aux(char* p, int len) {
+#ifdef _WIN32
+    if (_msize(p) >= len) return p;
+    return (char*) realloc(p, len*2);
+#else
+    return (char*) realloc(p, len);
+#endif
+}
+
 #define BUFSIZE 100000
 
 int MFILE::vprintf(const char* format, va_list ap) {
@@ -68,7 +79,7 @@ int MFILE::vprintf(const char* format, va_list ap) {
         return -1;
     }
     n = (int)strlen(buf2);
-    buf = (char*)realloc(buf, len+n+1);
+    buf = (char*)realloc_aux(buf, len+n+1);
     if (!buf) {
         fprintf(stderr, "ERROR: realloc() failed in MFILE::vprintf()\n");
         exit(1);
@@ -90,7 +101,7 @@ int MFILE::printf(const char* format, ...) {
 }
 
 size_t MFILE::write(const void *ptr, size_t size, size_t nitems) {
-    buf = (char *)realloc( buf, len+(size*nitems)+1 );
+    buf = (char *)realloc_aux( buf, len+(size*nitems)+1 );
     if (!buf) {
         fprintf(stderr, "ERROR: realloc() failed in MFILE::write()\n");
         exit(1);
@@ -102,7 +113,7 @@ size_t MFILE::write(const void *ptr, size_t size, size_t nitems) {
 }
 
 int MFILE::_putchar(char c) {
-    buf = (char*)realloc(buf, len+1+1);
+    buf = (char*)realloc_aux(buf, len+1+1);
     if (!buf) {
         fprintf(stderr, "ERROR: realloc() failed in MFILE::_putchar()\n");
         exit(1);
@@ -115,7 +126,7 @@ int MFILE::_putchar(char c) {
 
 int MFILE::puts(const char* p) {
     int n = (int)strlen(p);
-    buf = (char*)realloc(buf, len+n+1);
+    buf = (char*)realloc_aux(buf, len+n+1);
     if (!buf) {
         fprintf(stderr, "ERROR: realloc() failed in MFILE::puts()\n");
         exit(1);
@@ -159,4 +170,3 @@ void MFILE::get_buf(char*& b, int& l) {
     len = 0;
 }
 
-const char *BOINC_RCSID_8de9facdd7 = "$Id: mfile.cpp 18594 2009-07-10 22:59:45Z davea $";
diff --git a/lib/miofile.cpp b/lib/miofile.cpp
index 687c72f..4e114a4 100644
--- a/lib/miofile.cpp
+++ b/lib/miofile.cpp
@@ -159,4 +159,3 @@ int copy_element_contents(MIOFILE& in, const char* end_tag, string& str) {
     return ERR_XML_PARSE;
 }
 
-const char *BOINC_RCSID_37339d4dc0 = "$Id: miofile.cpp 18409 2009-06-13 21:03:45Z romw $";
diff --git a/lib/msg_log.cpp b/lib/msg_log.cpp
index 38181b4..805bd1c 100644
--- a/lib/msg_log.cpp
+++ b/lib/msg_log.cpp
@@ -210,4 +210,3 @@ void SCOPE_MSG_LOG::printf_file(
     va_end(va);
 }
 
-const char *BOINC_RCSID_2e9a7d8610 = "$Id: msg_log.cpp 16921 2009-01-15 20:23:20Z davea $";
diff --git a/lib/network.cpp b/lib/network.cpp
index 0d2e6a8..70747d4 100644
--- a/lib/network.cpp
+++ b/lib/network.cpp
@@ -210,4 +210,3 @@ void reset_dns() {
 #endif
 }
 
-const char *BOINC_RCSID_557bf0741f="$Id: network.cpp 18439 2009-06-16 21:58:38Z davea $";
diff --git a/lib/parse.cpp b/lib/parse.cpp
index c71da16..c3398b4 100644
--- a/lib/parse.cpp
+++ b/lib/parse.cpp
@@ -884,4 +884,4 @@ int main() {
 </blah>
 
 #endif
-const char *BOINC_RCSID_3f3de9eb18 = "$Id: parse.cpp 19245 2009-10-05 20:05:44Z romw $";
+
diff --git a/lib/prefs.cpp b/lib/prefs.cpp
index 418898d..74c2f4c 100644
--- a/lib/prefs.cpp
+++ b/lib/prefs.cpp
@@ -52,6 +52,7 @@ void GLOBAL_PREFS_MASK::set_all() {
     run_gpu_if_user_active = true;
     idle_time_to_run = true;
     suspend_if_no_recent_input = true;
+    suspend_cpu_usage = 0;
     start_hour = true;
     end_hour = true;
     net_start_hour = true;
@@ -84,6 +85,7 @@ bool GLOBAL_PREFS_MASK::are_prefs_set() {
     if (run_gpu_if_user_active) return true;
     if (idle_time_to_run) return true;
     if (suspend_if_no_recent_input) return true;
+    if (suspend_cpu_usage) return true;
     if (start_hour) return true;
     if (end_hour) return true;
     if (net_start_hour) return true;
@@ -205,6 +207,7 @@ void GLOBAL_PREFS::defaults() {
     run_gpu_if_user_active = false;
     idle_time_to_run = 3;
     suspend_if_no_recent_input = 0;
+    suspend_cpu_usage = 25;
     cpu_times.clear();
     net_times.clear();
     leave_apps_in_memory = false;
@@ -398,6 +401,10 @@ int GLOBAL_PREFS::parse_override(
             mask.suspend_if_no_recent_input = true;
             continue;
         }
+        if (xp.parse_double(tag, "suspend_cpu_usage", suspend_cpu_usage)) {
+            mask.suspend_cpu_usage = true;
+            continue;
+        }
         if (xp.parse_double(tag, "start_hour", cpu_times.start_hour)) {
             mask.start_hour = true;
             continue;
@@ -560,6 +567,7 @@ int GLOBAL_PREFS::write(MIOFILE& f) {
         "   <run_if_user_active>%d</run_if_user_active>\n"
         "   <run_gpu_if_user_active>%d</run_gpu_if_user_active>\n"
         "   <suspend_if_no_recent_input>%f</suspend_if_no_recent_input>\n"
+        "   <suspend_cpu_usage>%f</suspend_cpu_usage>\n"
         "   <start_hour>%f</start_hour>\n"
         "   <end_hour>%f</end_hour>\n"
         "   <net_start_hour>%f</net_start_hour>\n"
@@ -589,6 +597,7 @@ int GLOBAL_PREFS::write(MIOFILE& f) {
         run_if_user_active?1:0,
         run_gpu_if_user_active?1:0,
         suspend_if_no_recent_input,
+        suspend_cpu_usage,
         cpu_times.start_hour,
         cpu_times.end_hour,
         net_times.start_hour,
@@ -685,6 +694,12 @@ int GLOBAL_PREFS::write_subset(MIOFILE& f, GLOBAL_PREFS_MASK& mask) {
             suspend_if_no_recent_input
         );
     }
+    if (mask.suspend_cpu_usage) {
+
+        f.printf("   <suspend_cpu_usage>%f</suspend_cpu_usage>\n",
+            suspend_cpu_usage
+        );
+    }
     if (mask.start_hour) {
         f.printf("   <start_hour>%f</start_hour>\n", cpu_times.start_hour);
     }
@@ -768,7 +783,3 @@ int GLOBAL_PREFS::write_subset(MIOFILE& f, GLOBAL_PREFS_MASK& mask) {
     return 0;
 }
 
-const char *BOINC_RCSID_3fb442bb02 = "$Id: prefs.cpp 17740 2009-04-07 18:21:39Z davea $";
-
-
-
diff --git a/lib/prefs.h b/lib/prefs.h
index 1f612b9..841223a 100644
--- a/lib/prefs.h
+++ b/lib/prefs.h
@@ -40,6 +40,7 @@ struct GLOBAL_PREFS_MASK {
     bool run_gpu_if_user_active;
     bool idle_time_to_run;
     bool suspend_if_no_recent_input;
+    bool suspend_cpu_usage;
     bool start_hour;
     bool end_hour;
     bool net_start_hour;
@@ -137,6 +138,7 @@ struct GLOBAL_PREFS {
     bool run_gpu_if_user_active;
     double idle_time_to_run;
     double suspend_if_no_recent_input;
+    double suspend_cpu_usage;
     bool leave_apps_in_memory;
     bool confirm_before_connecting;
     bool hangup_if_dialed;
diff --git a/lib/procinfo_mac.cpp b/lib/procinfo_mac.cpp
index 6ae41ce..54da06f 100644
--- a/lib/procinfo_mac.cpp
+++ b/lib/procinfo_mac.cpp
@@ -38,7 +38,7 @@ using std::vector;
 // build table of all processes in system
 //
 int procinfo_setup(vector<PROCINFO>& pi) {
-
+    int pid = getpid();
     FILE* fd;
     PROCINFO p;
     int c, real_mem, virtual_mem, hours;
@@ -106,7 +106,7 @@ int procinfo_setup(vector<PROCINFO>& pi) {
         p.working_set_size = (double)real_mem * 1024.;
         p.swap_size = (double)virtual_mem * 1024.;
         p.user_time += 60. * (float)hours;
-        p.is_boinc_app = false;
+        p.is_boinc_app = (p.id == pid || strcasestr(p.command, "boinc"));
         pi.push_back(p);
     }
     
diff --git a/lib/procinfo_unix.cpp b/lib/procinfo_unix.cpp
index 077b151..9da763c 100644
--- a/lib/procinfo_unix.cpp
+++ b/lib/procinfo_unix.cpp
@@ -170,6 +170,7 @@ int procinfo_setup(vector<PROCINFO>& pi) {
     PROCINFO p;
     char pidpath[1024];
     char buf[1024];
+    int pid = getpid();
 
     dir = opendir("/proc");
     if (!dir) return 0;
@@ -205,7 +206,7 @@ int procinfo_setup(vector<PROCINFO>& pi) {
                             p.page_fault_count = prusage.pr_majf + prusage.pr_minf;
                         }
                         fclose(fd);
-                        p.is_boinc_app = false;
+                        p.is_boinc_app = (p.id == pid || strcasestr(p.command, "boinc"));
                         pi.push_back(p);
                     }
                 }
@@ -230,7 +231,7 @@ int procinfo_setup(vector<PROCINFO>& pi) {
                     p.user_time = ps.utime / 100.;
                     p.kernel_time = ps.stime / 100.;
                     strlcpy(p.command, ps.comm, sizeof(p.command));
-                    p.is_boinc_app = false;
+                    p.is_boinc_app = (p.id == pid || strcasestr(p.command, "boinc"));
                     pi.push_back(p);
                 }
 #endif
diff --git a/lib/procinfo_win.cpp b/lib/procinfo_win.cpp
index bb57497..154dc38 100644
--- a/lib/procinfo_win.cpp
+++ b/lib/procinfo_win.cpp
@@ -4,6 +4,7 @@
 #include "error_numbers.h"
 #include "diagnostics_win.h"
 #include "str_util.h"
+#include "str_replace.h"
 #include "procinfo.h"
 
 using std::vector;
@@ -67,6 +68,11 @@ int get_procinfo_XP(vector<PROCINFO>& pi) {
     ULONG                   cbBuffer = 128*1024;    // 128k initial buffer
     PVOID                   pBuffer = NULL;
     PSYSTEM_PROCESSES       pProcesses = NULL;
+    static DWORD pid = 0;
+
+    if (!pid) {
+        pid = GetCurrentProcessId();
+    }
 #if 0
 	printf("FILETIME: %d\n", sizeof(FILETIME));
 	printf("LARGE_INTEGER: %d\n", sizeof(LARGE_INTEGER));
@@ -97,7 +103,7 @@ int get_procinfo_XP(vector<PROCINFO>& pi) {
             sizeof(p.command),
             NULL, NULL
         );
-		p.is_boinc_app = false;
+		p.is_boinc_app = (p.id == pid) || (strcasestr(p.command, "boinc") != NULL);
         pi.push_back(p);
         if (!pProcesses->NextEntryDelta) {
             break;
@@ -163,7 +169,7 @@ void procinfo_other(PROCINFO& pi, vector<PROCINFO>& piv) {
 	memset(&pi, 0, sizeof(pi));
 	for (i=0; i<piv.size(); i++) {
 		PROCINFO& p = piv[i];
-		if (!p.is_boinc_app) {
+		if (!p.is_boinc_app && p.id != 0) {     // PID 0 is idle process
 			pi.kernel_time += p.kernel_time;
 			pi.user_time += p.user_time;
 			pi.swap_size += p.swap_size;
diff --git a/lib/proxy_info.cpp b/lib/proxy_info.cpp
index 6255c5c..c6115fd 100644
--- a/lib/proxy_info.cpp
+++ b/lib/proxy_info.cpp
@@ -32,11 +32,13 @@ int PROXY_INFO::parse(MIOFILE& in) {
 
     memset(this, 0, sizeof(PROXY_INFO));
     while (in.fgets(buf, 256)) {
-        if (match_tag(buf, "</proxy_info>")) return 0;
+        if (match_tag(buf, "</proxy_info>")) {
+            present = true;
+            return 0;
+        }
         else if (parse_bool(buf, "use_http_proxy", use_http_proxy)) continue;
         else if (parse_bool(buf, "use_socks_proxy", use_socks_proxy)) continue;
         else if (parse_bool(buf, "use_http_auth", use_http_auth)) continue;
-        else if (parse_int(buf, "<socks_version>", socks_version)) continue;
         else if (parse_str(buf, "<socks_server_name>", socks_server_name, sizeof(socks_server_name))) continue;
         else if (parse_int(buf, "<socks_server_port>", socks_server_port)) continue;
         else if (parse_str(buf, "<http_server_name>", http_server_name, sizeof(http_server_name))) continue;
@@ -50,6 +52,15 @@ int PROXY_INFO::parse(MIOFILE& in) {
     return ERR_XML_PARSE;
 }
 
+int PROXY_INFO::parse_config(MIOFILE& in) {
+    int retval = parse(in);
+    if (retval) return retval;
+    if (strlen(http_server_name)) use_http_proxy = true;
+    if (strlen(socks_server_name)) use_socks_proxy = true;
+    if (strlen(http_user_name)) use_http_auth = true;
+    return 0;
+}
+
 int PROXY_INFO::write(MIOFILE& out) {
     char s5un[2048], s5up[2048], hun[2048], hup[2048];
     xml_escape(socks5_user_name, s5un, sizeof(s5un));
@@ -61,7 +72,6 @@ int PROXY_INFO::write(MIOFILE& out) {
         "%s"
         "%s"
         "%s"
-        "    <socks_version>%d</socks_version>\n"
         "    <socks_server_name>%s</socks_server_name>\n"
         "    <socks_server_port>%d</socks_server_port>\n"
         "    <http_server_name>%s</http_server_name>\n"
@@ -74,7 +84,6 @@ int PROXY_INFO::write(MIOFILE& out) {
         use_http_proxy?"    <use_http_proxy/>\n":"",
         use_socks_proxy?"    <use_socks_proxy/>\n":"",
         use_http_auth?"    <use_http_auth/>\n":"",
-        socks_version,
         socks_server_name,
         socks_server_port,
         http_server_name,
@@ -113,11 +122,9 @@ void PROXY_INFO::clear() {
     strcpy(socks5_user_passwd, "");
     strcpy(http_user_name, "");
     strcpy(http_user_passwd, "");
-    socks_version = 0;
 	strcpy(noproxy_hosts, "");
 	strcpy(autodetect_server_name, "");
     autodetect_port = 80;
     autodetect_protocol = 0;
 }
 
-const char *BOINC_RCSID_af13db88e5 = "$Id: proxy_info.cpp 19101 2009-09-18 20:48:19Z romw $";
diff --git a/lib/proxy_info.h b/lib/proxy_info.h
index ebb6880..f52427f 100644
--- a/lib/proxy_info.h
+++ b/lib/proxy_info.h
@@ -23,7 +23,10 @@
 // info on whether HTTP requests need to go through a proxy
 //
 struct PROXY_INFO {
-    // the following is populated is user has specified an HTTP proxy
+    bool present;
+        // set if rest of structure is filled in
+
+    // the following is populated if user has specified an HTTP proxy
     //
     bool use_http_proxy;
     bool use_http_auth;
@@ -32,10 +35,10 @@ struct PROXY_INFO {
     char http_user_name[256];
     char http_user_passwd[256];
 
-    // the following is populated if use has specified a SOCKs proxy
+    // the following is populated if user has specified a SOCKS proxy.
+    // Only SOCKS 5 is supported.
     //
     bool use_socks_proxy;
-    int socks_version;
     char socks_server_name[256];
     int socks_server_port;
     char socks5_user_name[256];
@@ -61,11 +64,9 @@ struct PROXY_INFO {
         // whether above fields are defined
 
     int parse(MIOFILE&);
+    int parse_config(MIOFILE&);
     int write(MIOFILE&);
     void clear();
 };
 
-
-
 #endif
-
diff --git a/lib/shmem.cpp b/lib/shmem.cpp
index 3b86295..c1361ef 100644
--- a/lib/shmem.cpp
+++ b/lib/shmem.cpp
@@ -535,4 +535,3 @@ int destroy_shmem(key_t) {
 
 #endif  // !defined(_WIN32) && !defined(__EMX__)
 
-const char *BOINC_RCSID_f835f078de = "$Id: shmem.cpp 19251 2009-10-05 20:16:26Z romw $";
diff --git a/lib/stackwalker_win.cpp b/lib/stackwalker_win.cpp
index 18d8c6c..916e166 100644
--- a/lib/stackwalker_win.cpp
+++ b/lib/stackwalker_win.cpp
@@ -1,4 +1,4 @@
-// $Id: stackwalker_win.cpp 18365 2009-06-11 02:14:36Z romw $
+// $Id: stackwalker_win.cpp 20874 2010-03-12 17:03:53Z romw $
 //
 
 /*////////////////////////////////////////////////////////////////////////////
@@ -1008,4 +1008,3 @@ static void ShowStackRM(HANDLE hThread, CONTEXT& Context)
     LeaveCriticalSection(&g_csFileOpenClose);
 }
 
-const char *BOINC_RCSID_e8b4633192 = "$Id: stackwalker_win.cpp 18365 2009-06-11 02:14:36Z romw $";
diff --git a/lib/str_util.cpp b/lib/str_util.cpp
index 615af64..4dcf0e5 100644
--- a/lib/str_util.cpp
+++ b/lib/str_util.cpp
@@ -80,56 +80,58 @@ size_t strlcat(char *dst, const char *src, size_t size) {
 #endif // !HAVE_STRLCAT
 
 #if !defined(HAVE_STRCASESTR)
-extern const char *strcasestr(const char *s1, const char *s2) {
-  char *needle, *haystack, *p=NULL;
-  // Is alloca() really less likely to fail with out of memory error 
-  // than strdup?
+const char *strcasestr(const char *s1, const char *s2) {
+    char *needle=NULL, *haystack=NULL, *p=NULL;
+    bool need_free = false;
+    // Is alloca() really less likely to fail with out of memory error 
+    // than strdup?
 #if defined(HAVE_STRDUPA)
-  haystack=strdupa(s1);
-  needle=strdupa(s2);
+    haystack=strdupa(s1);
+    needle=strdupa(s2);
 #elif defined(HAVE_ALLOCA_H) || defined(HAVE_ALLOCA)
-  haystack=(char *)alloca(strlen(s1)+1);
-  needle=(char *)alloca(strlen(s2)+1);
-  if (needle && haystack) {
-    strlcpy(haystack,s1,strlen(s1)+1);
-    strlcpy(needle,s2,strlen(s2)+1);
-  }
+    haystack=(char *)alloca(strlen(s1)+1);
+    needle=(char *)alloca(strlen(s2)+1);
+    if (needle && haystack) {
+        strlcpy(haystack,s1,strlen(s1)+1);
+        strlcpy(needle,s2,strlen(s2)+1);
+    }
 #elif defined(HAVE_STRDUP)
-  haystack=strdup(s1);
-  needle=strdup(s1)
+    haystack=strdup(s1);
+    needle=strdup(s1)
+    need_free = true;
 #else
-  haystack=(char *)malloc(strlen(s1)+1);
-  needle=(char *)malloc(strlen(s2)+1);
-  if (needle && haystack) {
-    strlcpy(haystack,s1,strlen(s1)+1);
-    strlcpy(needle,s2,strlen(s2)+1);
-  }
-#endif
-  if (needle && haystack) {
-    // convert both strings to lower case
-    do {
-      *haystack=tolower(*haystack);
-    } while (*(++haystack));
-    do {
-      *needle=tolower(*needle);
-    } while (*(++needle));
-    // find the substring
-    p=strstr(haystack,needle);
-    // correct the pointer to point to the substring within s1
-    if (p) {
-      // C++ type checking requires const_cast here, although this
-      // is dangerous if s1 points to read only storage.  But the C
-      // function definitely takes a const char * as the first parameter
-      // and returns a char *.  So that's what we'll do.
-      p=const_cast<char *>(s1)+(p-haystack);
+    haystack=(char *)malloc(strlen(s1)+1);
+    needle=(char *)malloc(strlen(s2)+1);
+    if (needle && haystack) {
+        strlcpy(haystack,s1,strlen(s1)+1);
+        strlcpy(needle,s2,strlen(s2)+1);
     }
-  } 
-#if !defined(HAVE_STRDUPA) && !defined(HAVE_ALLOCA) && !defined(HAVE_ALLOC_H)
-  // If we didn't allocate on the stack free our strings
-  if (needle) free(needle);
-  if (haystack) free(haystack);
+    need_free = true;
 #endif
-  return p;
+    if (needle && haystack) {
+        // convert both strings to lower case
+        p = haystack;
+        while (*p) {
+            *p = tolower(*p);
+            p++;
+        }
+        p = needle;
+        while (*p) {
+            *p = tolower(*p);
+            p++;
+        }
+        // find the substring
+        p = strstr(haystack, needle);
+        // correct the pointer to point to the substring within s1
+        if (p) {
+            p = const_cast<char *>(s1)+(p-haystack);
+        }
+    } 
+    if (need_free) {
+        if (needle) free(needle);
+        if (haystack) free(haystack);
+    }
+    return p;
 }
 #endif
 // Converts a double precision time (where the value of 1 represents
@@ -294,32 +296,6 @@ int parse_command_line(char* p, char** argv) {
     return argc;
 }
 
-static char x2c(char *what) {
-    register char digit;
-
-    digit = (what[0] >= 'A' ? ((what[0] & 0xdf) - 'A')+10 : (what[0] - '0'));
-    digit *= 16;
-    digit += (what[1] >= 'A' ? ((what[1] & 0xdf) - 'A')+10 : (what[1] - '0'));
-    return(digit);
-}
-
-void c2x(char *what) {
-    char buf[3];
-    char num = atoi(what);
-    char d1 = num / 16;
-    char d2 = num % 16;
-    int abase1, abase2;
-    if (d1 < 10) abase1 = 48;
-    else abase1 = 55;
-    if (d2 < 10) abase2 = 48;
-    else abase2 = 55;
-    buf[0] = d1+abase1;
-    buf[1] = d2+abase2;
-    buf[2] = 0;
-
-    strcpy(what, buf);
-}
-
 // remove whitespace from start and end of a string
 //
 void strip_whitespace(char *str) {
@@ -356,178 +332,6 @@ void strip_whitespace(string& str) {
     }
 }
 
-void unescape_url(char *url) {
-    int x,y;
-
-    for (x=0,y=0;url[y];++x,++y) {
-        if ((url[x] = url[y]) == '%') {
-            url[x] = x2c(&url[y+1]);
-            y+=2;
-        }
-    }
-    url[x] = '\0';
-}
-
-void unescape_url_safe(char *url, int url_size) {
-    int x,y;
-
-    for (x=0,y=0; url[y] && (x<url_size);++x,++y) {
-        if ((url[x] = url[y]) == '%') {
-            url[x] = x2c(&url[y+1]);
-            y+=2;
-        }
-    }
-    url[x] = '\0';
-}
-
-// unescape_url needs to be able to handle potentially hostile
-// urls.
-void unescape_url(string& url) {
-    char buf[1024];
-    strncpy(buf, url.c_str(), sizeof(buf));
-    unescape_url_safe(buf, sizeof(buf));
-    url = buf;
-}
-
-void escape_url(char *in, char*out) {
-    int x, y;
-    for (x=0, y=0; in[x]; ++x) {
-        if (isalnum(in[x])) {
-            out[y] = in[x];
-            ++y;
-        } else {
-            out[y] = '%';
-            ++y;
-            out[y] = 0;
-            char buf[256];
-            sprintf(buf, "%d", (char)in[x]);
-            c2x(buf);
-            strcat(out, buf);
-            y += 2;
-        }
-    }
-    out[y] = 0;
-}
-
-void escape_url_safe(const char *in, char*out, int out_size) {
-    int x, y;
-    for (x=0, y=0; in[x] && (y<out_size); ++x) {
-        if (isalnum(in[x])) {
-            out[y] = in[x];
-            ++y;
-        } else {
-            out[y] = '%';
-            ++y;
-            out[y] = 0;
-            char buf[256];
-            sprintf(buf, "%d", (char)in[x]);
-            c2x(buf);
-            strcat(out, buf);
-            y += 2;
-        }
-    }
-    out[y] = 0;
-}
-
-// escape_url needs to be able to handle potentially hostile
-// urls
-void escape_url(string& url) {
-    char buf[1024];
-    escape_url_safe(url.c_str(), buf, sizeof(buf));
-    url = buf;
-}
-
-// Escape a URL for the project directory, cutting off the "http://",
-// converting everthing other than alphanumbers, ., - and _ to "_".
-//
-void escape_url_readable(char *in, char* out) {
-    int x, y;
-    char *temp;
-
-    temp = strstr(in,"://");
-    if (temp) {
-        in = temp + strlen("://");
-    }
-    for (x=0, y=0; in[x]; ++x) {
-        if (isalnum(in[x]) || in[x]=='.' || in[x]=='-' || in[x]=='_') {
-            out[y] = in[x];
-            ++y;
-        } else {
-            out[y] = '_';
-            ++y;
-        }
-    }
-    out[y] = 0;
-}
-
-
-// Canonicalize a master url.
-//   - Convert the first part of a URL (before the "://") to http://,
-// or prepend it
-//   - Remove double slashes in the rest
-//   - Add a trailing slash if necessary
-//
-void canonicalize_master_url(char* url) {
-    char buf[1024];
-    size_t n;
-	bool bSSL = false; // keep track if they sent in https://
-
-    char *p = strstr(url, "://");
-    if (p) {
-		bSSL = (bool) (p == url + 5);
-		strcpy(buf, p+3);
-    } else {
-        strcpy(buf, url);
-    }
-    while (1) {
-        p = strstr(buf, "//");
-        if (!p) break;
-        strcpy(p, p+1);
-    }
-    n = strlen(buf);
-    if (buf[n-1] != '/') {
-        strcat(buf, "/");
-    }
-	sprintf(url, "http%s://%s", (bSSL ? "s" : ""), buf);
-}
-
-void canonicalize_master_url(string& url) {
-    char buf[1024];
-    strcpy(buf, url.c_str());
-    canonicalize_master_url(buf);
-    url = buf;
-}
-
-// is the string a valid master URL, in canonical form?
-//
-bool valid_master_url(char* buf) {
-    char* p, *q;
-    size_t n;
-	bool bSSL = false;
-
-    p = strstr(buf, "http://");
-	if (p != buf) {
-		// allow https
-	    p = strstr(buf, "https://");
-		if (p == buf) {
-			bSSL = true;
-		} else {
-			return false; // no http or https, it's bad!
-	    }
-	}
-	q = p+strlen(bSSL ? "https://" : "http://");
-    p = strstr(q, ".");
-    if (!p) return false;
-    if (p == q) return false;
-    q = p+1;
-    p = strstr(q, "/");
-    if (!p) return false;
-    if (p == q) return false;
-    n = strlen(buf);
-    if (buf[n-1] != '/') return false;
-    return true;
-}
-
 char* time_to_string(double t) {
     static char buf[100];
     time_t x = (time_t)t;
@@ -591,15 +395,6 @@ string timediff_format(double diff) {
     return buf;
 }
 
-void escape_project_url(char *in, char* out) {
-    escape_url_readable(in, out);
-    char& last = out[strlen(out)-1];
-    // remove trailing _
-    if (last == '_') {
-        last = '\0';
-    }
-}
-
 void mysql_timestamp(double dt, char* p) {
     struct tm* tmp;
     time_t t = (time_t)dt;
@@ -879,4 +674,3 @@ int string_substitute(
     return retval;
 }
 
-const char *BOINC_RCSID_ab90e1e = "$Id: str_util.cpp 18663 2009-07-22 22:33:36Z davea $";
diff --git a/lib/str_util.h b/lib/str_util.h
index d9fbd72..b76b42d 100644
--- a/lib/str_util.h
+++ b/lib/str_util.h
@@ -35,15 +35,6 @@ extern int parse_command_line(char*, char**);
 extern void c2x(char *what);
 extern void strip_whitespace(char *str);
 extern void strip_whitespace(std::string&);
-extern void unescape_url(std::string& url);
-extern void unescape_url(char *url);
-extern void escape_url(std::string& url);
-extern void escape_url(char *in, char*out);
-extern void escape_url_readable(char* in, char* out);
-extern void escape_project_url(char *in, char* out);
-extern bool valid_master_url(char*);
-extern void canonicalize_master_url(char *url);
-extern void canonicalize_master_url(std::string&);
 #define safe_strcpy(x, y) strlcpy(x, y, sizeof(x))
 #define safe_strcat(x, y) if (strlen(x)+strlen(y)<sizeof(x)) strcat(x, y)
 extern char* time_to_string(double);
diff --git a/lib/url.cpp b/lib/url.cpp
new file mode 100644
index 0000000..e624b19
--- /dev/null
+++ b/lib/url.cpp
@@ -0,0 +1,307 @@
+// This file is part of BOINC.
+// http://boinc.berkeley.edu
+// Copyright (C) 2009 University of California
+//
+// BOINC is free software; you can redistribute it and/or modify it
+// under the terms of the GNU Lesser General Public License
+// as published by the Free Software Foundation,
+// either version 3 of the License, or (at your option) any later version.
+//
+// BOINC is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+// See the GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
+
+#include <string>
+#include <stdio.h>
+#include <string.h>
+#include <ctype.h>
+
+#include "str_util.h"
+#include "str_replace.h"
+
+#include "url.h"
+
+using std::string;
+
+// Break a URL down into its protocol, server, port and file components
+// URL format:
+// [{http|https|socks}://][user[:passwd]@]host.dom.dom[:port][/dir/file]
+//
+void parse_url(const char* url, PARSED_URL& purl) {
+    char* p, *q, *buf;
+    char _buf[256];
+
+    // strip off the protocol if present
+    //
+    if (strncmp(url, "http://", 7) == 0) {
+        safe_strcpy(_buf, url+7);
+        purl.protocol = URL_PROTOCOL_HTTP;
+    } else if (strncmp(url, "https://", 8) == 0) {
+        safe_strcpy(_buf, url+8);
+        purl.protocol = URL_PROTOCOL_HTTPS;
+    } else if (strncmp(url, "socks://", 8) == 0) {
+        safe_strcpy(_buf, url+8);
+        purl.protocol = URL_PROTOCOL_SOCKS;
+    } else {
+        safe_strcpy(_buf, url);
+        purl.protocol = URL_PROTOCOL_UNKNOWN;
+    }
+    buf = _buf;
+
+    // parse user name and password
+    //
+    strcpy(purl.user, "");
+    strcpy(purl.passwd, "");
+    p = strchr(buf, '@');
+    if (p) {
+        *p = 0;
+        q = strchr(buf, ':');
+        if (q) {
+            *q = 0;
+            strcpy(purl.user, buf);
+            strcpy(purl.passwd, q+1);
+        } else {
+            strcpy(purl.user, buf);
+        }
+        buf = p+1;
+    }
+
+    // parse and strip off file part if present
+    //
+    p = strchr(buf, '/');
+    if (p) {
+        strcpy(purl.file, p+1);
+        *p = 0;
+    } else {
+        strcpy(purl.file, "");
+    }
+
+    // parse and strip off port if present
+    //
+    p = strchr(buf,':');
+    if (p) {
+        purl.port = atol(p+1);
+        *p = 0;
+    } else {
+        // CMC note:  if they didn't pass in a port #,
+        //    but the url starts with https://, assume they
+        //    want a secure port (HTTPS, port 443)
+        purl.port = (purl.protocol == URL_PROTOCOL_HTTPS) ? 443 : 80;
+    }
+
+    // what remains is the host
+    //
+    strcpy(purl.host, buf);
+}
+
+static char x2c(char *what) {
+    register char digit;
+
+    digit = (what[0] >= 'A' ? ((what[0] & 0xdf) - 'A')+10 : (what[0] - '0'));
+    digit *= 16;
+    digit += (what[1] >= 'A' ? ((what[1] & 0xdf) - 'A')+10 : (what[1] - '0'));
+    return(digit);
+}
+
+void c2x(char *what) {
+    char buf[3];
+    char num = atoi(what);
+    char d1 = num / 16;
+    char d2 = num % 16;
+    int abase1, abase2;
+    if (d1 < 10) abase1 = 48;
+    else abase1 = 55;
+    if (d2 < 10) abase2 = 48;
+    else abase2 = 55;
+    buf[0] = d1+abase1;
+    buf[1] = d2+abase2;
+    buf[2] = 0;
+
+    strcpy(what, buf);
+}
+
+void unescape_url(char *url) {
+    int x,y;
+
+    for (x=0,y=0;url[y];++x,++y) {
+        if ((url[x] = url[y]) == '%') {
+            url[x] = x2c(&url[y+1]);
+            y+=2;
+        }
+    }
+    url[x] = '\0';
+}
+
+void unescape_url_safe(char *url, int url_size) {
+    int x,y;
+
+    for (x=0,y=0; url[y] && (x<url_size);++x,++y) {
+        if ((url[x] = url[y]) == '%') {
+            url[x] = x2c(&url[y+1]);
+            y+=2;
+        }
+    }
+    url[x] = '\0';
+}
+
+// unescape_url needs to be able to handle potentially hostile
+// urls.
+void unescape_url(string& url) {
+    char buf[1024];
+    strncpy(buf, url.c_str(), sizeof(buf));
+    unescape_url_safe(buf, sizeof(buf));
+    url = buf;
+}
+
+void escape_url(char *in, char*out) {
+    int x, y;
+    for (x=0, y=0; in[x]; ++x) {
+        if (isalnum(in[x])) {
+            out[y] = in[x];
+            ++y;
+        } else {
+            out[y] = '%';
+            ++y;
+            out[y] = 0;
+            char buf[256];
+            sprintf(buf, "%d", (char)in[x]);
+            c2x(buf);
+            strcat(out, buf);
+            y += 2;
+        }
+    }
+    out[y] = 0;
+}
+
+void escape_url_safe(const char *in, char*out, int out_size) {
+    int x, y;
+    for (x=0, y=0; in[x] && (y<out_size); ++x) {
+        if (isalnum(in[x])) {
+            out[y] = in[x];
+            ++y;
+        } else {
+            out[y] = '%';
+            ++y;
+            out[y] = 0;
+            char buf[256];
+            sprintf(buf, "%d", (char)in[x]);
+            c2x(buf);
+            strcat(out, buf);
+            y += 2;
+        }
+    }
+    out[y] = 0;
+}
+
+// escape_url needs to be able to handle potentially hostile
+// urls
+void escape_url(string& url) {
+    char buf[1024];
+    escape_url_safe(url.c_str(), buf, sizeof(buf));
+    url = buf;
+}
+
+// Escape a URL for the project directory, cutting off the "http://",
+// converting everthing other than alphanumbers, ., - and _ to "_".
+//
+void escape_url_readable(char *in, char* out) {
+    int x, y;
+    char *temp;
+
+    temp = strstr(in,"://");
+    if (temp) {
+        in = temp + strlen("://");
+    }
+    for (x=0, y=0; in[x]; ++x) {
+        if (isalnum(in[x]) || in[x]=='.' || in[x]=='-' || in[x]=='_') {
+            out[y] = in[x];
+            ++y;
+        } else {
+            out[y] = '_';
+            ++y;
+        }
+    }
+    out[y] = 0;
+}
+
+
+// Canonicalize a master url.
+//   - Convert the first part of a URL (before the "://") to http://,
+// or prepend it
+//   - Remove double slashes in the rest
+//   - Add a trailing slash if necessary
+//
+void canonicalize_master_url(char* url) {
+    char buf[1024];
+    size_t n;
+	bool bSSL = false; // keep track if they sent in https://
+
+    char *p = strstr(url, "://");
+    if (p) {
+		bSSL = (bool) (p == url + 5);
+		strcpy(buf, p+3);
+    } else {
+        strcpy(buf, url);
+    }
+    while (1) {
+        p = strstr(buf, "//");
+        if (!p) break;
+        strcpy(p, p+1);
+    }
+    n = strlen(buf);
+    if (buf[n-1] != '/') {
+        strcat(buf, "/");
+    }
+	sprintf(url, "http%s://%s", (bSSL ? "s" : ""), buf);
+}
+
+void canonicalize_master_url(string& url) {
+    char buf[1024];
+    strcpy(buf, url.c_str());
+    canonicalize_master_url(buf);
+    url = buf;
+}
+
+// is the string a valid master URL, in canonical form?
+//
+bool valid_master_url(char* buf) {
+    char* p, *q;
+    size_t n;
+	bool bSSL = false;
+
+    p = strstr(buf, "http://");
+	if (p != buf) {
+		// allow https
+	    p = strstr(buf, "https://");
+		if (p == buf) {
+			bSSL = true;
+		} else {
+			return false; // no http or https, it's bad!
+	    }
+	}
+	q = p+strlen(bSSL ? "https://" : "http://");
+    p = strstr(q, ".");
+    if (!p) return false;
+    if (p == q) return false;
+    q = p+1;
+    p = strstr(q, "/");
+    if (!p) return false;
+    if (p == q) return false;
+    n = strlen(buf);
+    if (buf[n-1] != '/') return false;
+    return true;
+}
+
+void escape_project_url(char *in, char* out) {
+    escape_url_readable(in, out);
+    char& last = out[strlen(out)-1];
+    // remove trailing _
+    if (last == '_') {
+        last = '\0';
+    }
+}
+
diff --git a/lib/url.h b/lib/url.h
new file mode 100644
index 0000000..f48cfaa
--- /dev/null
+++ b/lib/url.h
@@ -0,0 +1,41 @@
+// This file is part of BOINC.
+// http://boinc.berkeley.edu
+// Copyright (C) 2009 University of California
+//
+// BOINC is free software; you can redistribute it and/or modify it
+// under the terms of the GNU Lesser General Public License
+// as published by the Free Software Foundation,
+// either version 3 of the License, or (at your option) any later version.
+//
+// BOINC is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+// See the GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
+
+#define URL_PROTOCOL_UNKNOWN 0
+#define URL_PROTOCOL_HTTP    1
+#define URL_PROTOCOL_HTTPS   2
+#define URL_PROTOCOL_SOCKS   3
+
+struct PARSED_URL {
+    int protocol;
+    char user[256];
+    char passwd[256];
+    char host[256];
+    int port;
+    char file[256];
+};
+
+extern void parse_url(const char* url, PARSED_URL&);
+extern void unescape_url(std::string& url);
+extern void unescape_url(char *url);
+extern void escape_url(std::string& url);
+extern void escape_url(char *in, char*out);
+extern void escape_url_readable(char* in, char* out);
+extern void escape_project_url(char *in, char* out);
+extern bool valid_master_url(char*);
+extern void canonicalize_master_url(char *url);
+extern void canonicalize_master_url(std::string&);
diff --git a/lib/util.cpp b/lib/util.cpp
index 0724c29..8b6ffee 100644
--- a/lib/util.cpp
+++ b/lib/util.cpp
@@ -344,7 +344,9 @@ int read_file_malloc(const char* path, char*& buf, size_t max_len, bool tail) {
 
 // read file (at most max_len chars, if nonzero) into string
 //
-int read_file_string(const char* path, string& result, size_t max_len, bool tail) {
+int read_file_string(
+    const char* path, string& result, size_t max_len, bool tail
+) {
     result.erase();
     int retval;
     char* buf;
@@ -496,7 +498,7 @@ static int get_client_mutex(const char*) {
     if (IsWindows2000Compatible()) {
         strcpy(buf, "Global\\");
     }
-    strcat( buf, RUN_MUTEX);
+    strcat(buf, RUN_MUTEX);
 
     HANDLE h = CreateMutexA(NULL, true, buf);
     if ((h==0) || (GetLastError() == ERROR_ALREADY_EXISTS)) {
@@ -508,8 +510,11 @@ static int get_client_mutex(const char* dir) {
     static FILE_LOCK file_lock;
 
     sprintf(path, "%s/%s", dir, LOCK_FILE_NAME);
-    if (file_lock.lock(path)) {
+    int retval = file_lock.lock(path);
+    if (retval == ERR_FCNTL) {
         return ERR_ALREADY_RUNNING;
+    } else if (retval) {
+        return retval;
     }
 #endif
     return 0;
@@ -517,13 +522,14 @@ static int get_client_mutex(const char* dir) {
 
 int wait_client_mutex(const char* dir, double timeout) {
     double start = dtime();
+    int retval = 0;
     while (1) {
-        int retval = get_client_mutex(dir);
+        retval = get_client_mutex(dir);
         if (!retval) return 0;
         boinc_sleep(1);
         if (dtime() - start > timeout) break;
     }
-    return ERR_ALREADY_RUNNING;
+    return retval;
 }
 
 bool boinc_is_finite(double x) {
@@ -531,8 +537,7 @@ bool boinc_is_finite(double x) {
     return _Isfinite(x);
     return false;
 #else
-    return finite(x);
+    return finite(x) != 0;
 #endif
 }
 
-const char *BOINC_RCSID_ab65c90e1e = "$Id: util.cpp 18772 2009-07-29 23:50:00Z romw $";
diff --git a/lib/win_util.cpp b/lib/win_util.cpp
index c12cb45..e01f2fa 100644
--- a/lib/win_util.cpp
+++ b/lib/win_util.cpp
@@ -22,6 +22,7 @@
 #include "boinc_win.h"
 #endif
 
+#include "diagnostics.h"
 #include "win_util.h"
 
 
@@ -355,17 +356,19 @@ BOOL AddAceToWindowStation(HWINSTA hwinsta, PSID psid)
       pace = (ACCESS_ALLOWED_ACE *)HeapAlloc(
             GetProcessHeap(),
             HEAP_ZERO_MEMORY,
-            sizeof(ACCESS_ALLOWED_ACE) + GetLengthSid(psid) -
-                  sizeof(DWORD));
+            sizeof(ACCESS_ALLOWED_ACE) + GetLengthSid(psid) - sizeof(DWORD)
+      );
 
       if (pace == NULL)
          throw;
 
       pace->Header.AceType  = ACCESS_ALLOWED_ACE_TYPE;
       pace->Header.AceFlags = CONTAINER_INHERIT_ACE |
-                   INHERIT_ONLY_ACE | OBJECT_INHERIT_ACE;
-      pace->Header.AceSize  = sizeof(ACCESS_ALLOWED_ACE) +
-                   GetLengthSid(psid) - sizeof(DWORD);
+                              INHERIT_ONLY_ACE |
+                              OBJECT_INHERIT_ACE;
+      pace->Header.AceSize  = (WORD)sizeof(ACCESS_ALLOWED_ACE) + 
+                              (WORD)GetLengthSid(psid) - 
+                              (WORD)sizeof(DWORD);
       pace->Mask            = GENERIC_ALL;
 
       if (!CopySid(GetLengthSid(psid), &pace->SidStart, psid))
@@ -772,6 +775,7 @@ int suspend_or_resume_threads(DWORD pid, bool resume) {
     }
 
     do { 
+        if (!diagnostics_is_thread_exempt_suspend(te.th32ThreadID)) continue;
         if (te.th32OwnerProcessID == pid) {
             thread = pOT(THREAD_SUSPEND_RESUME, FALSE, te.th32ThreadID);
             resume ?  ResumeThread(thread) : SuspendThread(thread);
diff --git a/locale/Makefile.am b/locale/Makefile.am
index e7d8414..94cb7e6 100644
--- a/locale/Makefile.am
+++ b/locale/Makefile.am
@@ -5,29 +5,25 @@ include $(top_srcdir)/Makefile.incl
 datadir = $(prefix)/share/locale 
 
 locale_dirs = \
-        af_ZA \
 	ar \
 	be \
 	bg \
 	ca \
 	cs \
-	cs_CZ \
 	da \
 	de \
 	el \
-	en_US \
 	es \
-	eu \
-	fi \
+	fa \
 	fr \
+	gl \
 	hr \
 	hu \
 	it \
 	ja \
-	ko_KR \
+	ko \
 	lt \
 	lv \
-	nb \
 	nl \
 	pl \
 	pt \
@@ -35,7 +31,6 @@ locale_dirs = \
 	ro \
 	ru \
 	sk \
-	sl \
 	sv_SE \
 	tr \
 	uk \
@@ -46,8 +41,8 @@ install-exec-hook:
 	mydir=$(DESTDIR)$(datadir) ;\
 	for ldir in $(locale_dirs) ; do \
 	  $(INSTALL) -d $$mydir/$$ldir ; \
-	  if [ -f $$ldir/BOINC-Manager.po ] ; then \
-	    $(INSTALL) $$ldir/BOINC-Manager.po $$mydir/$$ldir/BOINC-Manager.po ; \
+	  if [ -f $$ldir/BOINC-Manager.mo ] ; then \
+	    $(INSTALL) $$ldir/BOINC-Manager.mo $$mydir/$$ldir/BOINC-Manager.mo ; \
 	  fi ;\
 	done
 
diff --git a/locale/ar/BOINC-Manager.mo b/locale/ar/BOINC-Manager.mo
index f7a723e..f48bf93 100644
Binary files a/locale/ar/BOINC-Manager.mo and b/locale/ar/BOINC-Manager.mo differ
diff --git a/locale/ar/BOINC-Manager.po b/locale/ar/BOINC-Manager.po
index 2466513..84dc841 100644
--- a/locale/ar/BOINC-Manager.po
+++ b/locale/ar/BOINC-Manager.po
@@ -1,27 +1,27 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 6.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
 "PO-Revision-Date: 2008-05-23 06:57+0100\n"
 "Last-Translator: Ahmad Gharbeia أحمد غربية <gharbeia at gmail.com>\n"
 "Language-Team: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Translate Toolkit 1.2.1\n"
 "X-Poedit-Language: English\n"
 "X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: iso-8859-1\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: UNITED STATES\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "معلومات المستخدم"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
@@ -29,7 +29,7 @@ msgstr ""
 "أدخل بيانات حسابك\n"
 "(لتفتح حسابا زر موقع المشروع على وب)"
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
@@ -37,411 +37,478 @@ msgstr ""
 "لا يقبل هذا المشروع حسابات جديدة حاليا.\n"
 "يمكنك الشَّبك فقط إن كان لديك حساب مفتوح."
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "هل تُشغّل هذا المشروع بالفعل؟"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "&لا، أنا مستخدم جديد"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "&نعم، أنا مستخدم قائم"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "&كلمة السر"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "اختر &كلمة سر"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "أ&كد كلمة السر"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr "هل تشغل بالفعل هذا المشروع %s؟"
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr "ا&سم المستخدم"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "عنوان ال&بريد"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr "%d خانات على الأقل"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "اشبك بمشروع"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "حدث مدير الحسابات"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "اشبك بمدير حسابات"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr "أدنى طول لكلمة السر لهذا المشروع %d خانات. رجاء أدخل كلمة سر أطول."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
 "أدنى طول لكلمة السر لمدير الحسابات هذا  %d خانات. رجاء أدخل كلمة سر أطول."
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr "كلمة السر و توكيدها غير متطابقتين. رجاءً أدخلها مجددا."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "مسار مدير الحسابات"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "أدخل مسار موقع مدير الحسابات"
+#: clientgui/AccountManagerInfoPage.cpp:252
+#, fuzzy
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr "لتختار مشروعا انقر اسمه أو أدخل مساره أدناه."
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "م&سار مدير الحسابات"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr "الاتصال جارٍ مع %s"
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr "يجري التواصل مع الخادوم"
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "انتظر رجاء…"
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr "طرأ عطل داخلي في الخادوم.\n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "تمّ الاتصال"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "قُطع الاتصال"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "أ&غلق النافذة\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "أغلق نافذة مدير BOINC."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
-msgstr "اخرج من %s"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "ا&خرج"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:325
-#, fuzzy
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
-msgstr "مناظير الجداول تتيح ترتيب أعمدة متعددة و تعرض مؤشر تقدم رسومي."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "اعرض واجهة BOINC الرسومية البسيطة"
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "اشبك بم&شروع"
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "اشبك بمشروع"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "اشبك بمدير &حسابات"
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "اشبك بمدير حسابات"
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:372
+#, fuzzy
+msgid "Display the simple graphical interface."
+msgstr "اعرض واجهة BOINC الرسومية البسيطة"
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr "&زامن مع %s"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr "اجلب التضبيطات الحالية من %s"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "اشبك بم&شروع"
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "يشبك بمشروع لتبدأ معالجة الشغل"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "أو&قف استخدام %s…"
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "يزيل العميل من تحكمات مدير الحسابات"
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "اشتغل &دائما"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr "اسمح بالعمل بغض النظر عن التفضيلات"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "اشتغل و&فق التفضيلات"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "اسمح بالشغل وفق تفضيلاتك"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "ع&لق"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr "أوقف التشغيل بغض النظر عن التفضيلات"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+#, fuzzy
+msgid "Allow GPU work regardless of preferences"
+msgstr "اسمح بالعمل بغض النظر عن التفضيلات"
+
+#: clientgui/AdvancedFrame.cpp:473
+#, fuzzy
+msgid "Use GPU based on &preferences"
+msgstr "اشتغل و&فق التفضيلات"
+
+#: clientgui/AdvancedFrame.cpp:474
+#, fuzzy
+msgid "Allow GPU work according to your preferences"
+msgstr "اسمح بالشغل وفق تفضيلاتك"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+#, fuzzy
+msgid "Stop GPU work regardless of preferences"
+msgstr "أوقف التشغيل بغض النظر عن التفضيلات"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "نشاط بالشب&كة متاح دائما"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr "اسمح بنشاط الشبكة بغض النظر عن التفضيلات"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+#, fuzzy
+msgid "Network activity based on pre&ferences"
 msgstr "نشاط الشبكة و&فق التفضيلات"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr "اسمح بنشاط الشبكة وفق تفضيلاتك"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+#, fuzzy
+msgid "Network activity s&uspended"
 msgstr "نشاط الشبكة مع&لق"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr "أوقف نشاط BOIN على الشبكة"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "&خيارات"
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "اضبط خيارات الواجهة الرسومية و تضبيطات الوسيط"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "ت&فضيلات"
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr "اضبط التفضيلات المحلية"
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
 msgid "Connect to another computer running %s"
 msgstr "اتصل بحاسوب آخر يشغل %s"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "اختر حاسوبا"
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr "أطفئ العميل المتصل…"
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr "يطفئ العميل النواة المتصل حاليا"
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "أجر قيا&سات المعالج الميكروي"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "يجري قياسات BOINC على المعالج الميكروي"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr "أجر الات&صال عبر الشبكة"
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr "أجر كل اتصالات الشبكة المؤجلة."
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr "اقرأ ملف التضبيطات"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr "اقرأ بيانات التضبيطات من cc_config.xml."
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "اقرأ ملف التضبيطات المحلي"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr "اقرأ التفضيلات من global_prefs_override.xml"
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr "أو&قف استخدام %s…"
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "يزيل العميل من تحكمات مدير الحسابات"
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "اشبك بمش&روع"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "يشبك بمشروع لتبدأ معالجة الشغل"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
 msgstr "م&ساعدة %s"
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
 msgid "Show information about %s"
 msgstr "يعرض معلومات عن %s"
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr "مساعدة &%s"
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr "يعرض معلومات عن %s"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr "مو&قع %s"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
 msgid "Show information about BOINC and %s"
 msgstr "يعرض معلومات عن BOINC و %s"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr "&عن %s"
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "معلومات التراخيص و حقوق الطبع"
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "م&لف"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "اع&رض"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "أ&دوات"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "أن&شطة"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "مت&قدم"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "م&ساعدة"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr "‮‪%s‬ - أطفئ العميل الحالي…"
-
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr "‮‪%s‬ - افصل عن %s"
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -454,55 +521,62 @@ msgstr ""
 "\n"
 "أتريد التوقف عن استخدام %s؟"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "يجري الشبك بالمشروع…"
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "تجري إعادة الاتصال بالمشروع(ات)…"
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr "%s - اختيار اللغة"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr "لغة %s المبدئية تغيرت. لكي تسري التغييرات عليك إعادة تشغيل %s"
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "‮‪%s‬ - أطفئ العميل الحالي…"
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "تجري إعادة الاتصال بالمشروع(ات)…"
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr "%s نجح في الشبك مع%s"
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "يجري الاتصال مع%s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
 msgid "Connected to %s (%s)"
 msgstr "‮تم الاتصال مع %s (‪%s‬)"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "اسم المستخدم محجوز"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -513,11 +587,11 @@ msgstr ""
 "\n"
 "زر موقع المشروع و اتخذ إجراءات استعادة كلمة السر، إن كان هذا حسابك."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "عنوان البريد مسجل من قبل"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -528,16 +602,30 @@ msgstr ""
 "\n"
 "زر موقع المشروع و اتبع الإجراءات المذكورة هناك."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "الغ"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr "%s - عطل في الاتصال"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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."
@@ -545,7 +633,7 @@ msgstr ""
 "ليست لك حاليا الصلاحية لإدارة العميل.\n"
 "اتصل بمدير نظامك ليضيفك إلى محموعة المستخدمين 'boinc_users'"
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
@@ -553,21 +641,21 @@ msgstr ""
 "فشل التصريح بالاتصال بعميل عامل.\n"
 "تأكد من أنك تشغل هذه البرمجية من نفس الدليل المثبت فيه العميل."
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "كلمة السرّ التي أدخلتها غير صحيحة، رجاء حاول مجددا."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - فشل الاتصال"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
@@ -575,32 +663,32 @@ msgstr ""
 "%s لم يتمكن من الاتصال بعميل %s.\n"
 "أترغب في إعادة محاولة الاتصال؟"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr "%s - حالة الاتصال"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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"
@@ -610,24 +698,22 @@ msgstr ""
 "استخدم أمر قائمة 'متقدم//اختر حاسوبا…' لتتصل بعميل %s.\n"
 "لتتصل بحاسبوك المحلي استخدم 'localhost' كاسم للمضيف"
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "مواقع وب"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr "%s - حالة الشبكة"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr "%s يحتاج للاتصال بإنترنت. اضغط لتفتح %s"
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
 "Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
@@ -635,8 +721,8 @@ msgstr ""
 "‮%s لا يستطيع الاتصال بمشروع و يحتاج إلى وصلة إنترنت.\n"
 "اتصل بإنترنت ثم أصدر أمر 'أجر الاتصال عبر الشبكة' من قائمة 'متقدمة'"
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
@@ -644,13 +730,13 @@ msgstr ""
 "%s يحتاج للاتصال بإنترنت.\n"
 "هل له أن يتصل الآن؟"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s يتصل بإنترنت."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
 "Please connect to the Internet, or select a default connection\n"
@@ -659,18 +745,18 @@ msgstr ""
 "لم يتمكن %s من الاتصال بإنترنت حيث لا توجد وصلة مبدئية معينة.\n"
 "اتصل بإنترنت أو عين وصلة مبدئية من 'متقدم/خيارات/وصلات'."
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s اتصل بإنترنت بنجاح."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "فشل %s في الاتصال بإنترنت."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
@@ -678,122 +764,154 @@ msgstr ""
 "لقد تحسس %s أنه متصل الآن بإنترنت.\n"
 "يجري رفع كل المشروعات و إعادة محاولة كل النقل."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "قطع %s اتصاله بإنترنت بنجاح."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "فشل %s في قطع اتصاله بإنترنت."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+#, fuzzy, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"ملكية و أذون BOINC غير مضبوطة كما ينبغي؛ أعد تثبيت BOINC.\n"
+"(Error code %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "مدير BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr "يبدأ تشغيل BOINC بحيث تكون فقط أيقونة صينية النظام هي الظاهرة"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr "يبدأ تشغيل BOINC بهذه الحجج الاختيارية"
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr "عطِّل مستخدمي السرية و أذون BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "تحسُّسٌ أوتوماتيّ)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(غير معروف)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(بتعريف المستخدم)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 #, fuzzy
 msgid "Computation is suspended."
 msgstr "المعالجة معلقة.\n"
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 #, fuzzy
 msgid "Network activity is suspended."
 msgstr "نشاط الشبكة مع&لق.\n"
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s: %.2f%% completed."
 msgstr "‮‪%s: %.2f%%‬ تمت\n"
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 #, fuzzy
 msgid "Reconnecting to client."
 msgstr "تجري إعادة الاتصال مع %s.\n"
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 #, fuzzy
 msgid "Not connected to a client."
 msgstr "غير متصل بعميل.\n"
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr "زر موقع %s…"
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr "افتح %s…"
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "أرجئ"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "فشل الشبك بالمشروع"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr "فشل تحديث مدير الحسابات"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr "فشلت إزالة مدير المشروع"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "فشل الشبك بمدير المشروع"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -805,149 +923,138 @@ msgstr ""
 "\n"
 "اضغط 'أنه' للإغلاق."
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "اضغط 'أنه' للإغلاق."
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "رسائل من الخادوم:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "مشبوك بالمشروع"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "أنت الآن مشبوك بهذا المشروع."
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
 msgstr "يمكنك ضبط اسمك في الحساب و تفضيلاتك."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr "تم التحديث من %s."
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "تم التحديث."
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr "تم الفصل عن %s."
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "نجح الفصل!"
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr "مشبوك مع %s"
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "مشبوك بمدير الحسابات"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
 msgstr "مرحبا بك في %s!"
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
+#, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "أنت الآن مشبوك بنظام %s."
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "أنت الآن مشبوك بمدير الحسابات هذا."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr "عن %s"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "إصدارة:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "حقوق الطبع:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 #, fuzzy
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
 "© 2003-2007 جامعة كاليفورنيا في بركلي.\n"
 "جميع الحقوق محفوظة."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr ""
 "بنية بركلي التحتية المفتوحة للحوسبة الشبكية Berkeley Open Infrastructure for "
 "Network Computing"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "موا&فق"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr "كسر غير صحيح"
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr "وقت غير صحيح؛ الصيغة هي HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr "مدة زمنية غير صحيحة؛ الصيغة هي HH:MM-HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr "تُحسست قيمة دخل غير صحيحة"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr "عطل في التحقق"
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr "أتريد حقا تصفير كل الخيارات المحلية؟"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr "توكيد"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
 msgstr "‮‪%s‬ - تفضيلات"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
@@ -957,187 +1064,197 @@ msgstr ""
 "اضغط 'موافق' لتضبط.\n"
 "اضغط 'صفِّر' لتسترجع التضبيطات من الإنترنت."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr "صفِّر"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr "صفِّر كل التفضيلات المحلية و أغلق الحوار"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr "الحسبان مسموح به"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr "عندما يعمل الحاسوب بالبطارية"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr "أشّر هذا إن أردت أن يشتغل الحاسوب أثناء عمله بالبطارية"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr "عندما يكون الحاسوب مشغولا"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr "أشّر هذا إن أردت أن يشتغل الحاسوب حتى أثناء استخدامك له"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr "فقط عندما يكون الحاسوب ساكنا لمدة"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 "يشتغل فقط بعد أن تمر مدة لا تستخدم أثناءها الحاسوب قدرها هذا العدد من "
 "الدقائق"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr "دقائق"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+#, fuzzy
+msgid "While processor usage is less than"
+msgstr "استغلال المعالج"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr "كل يوم ما بين الساعتين"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr "يبدأ الشغل في هذا الوقت"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr "Ùˆ"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr "أوقف الشغل في هذا الوقت"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr "(لا قيود عند التساوي)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr "استثناء يوم في الأسبوع:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr "أشّر هذا لتحدد ساعات لهذا اليوم من الأسبوع"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr "الإثنين"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr "الثلاثاء"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr "الأربعاء"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr "الخميس"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr "الجمعة"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr "السبت"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr "الأحد"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr "خيارات أخرى"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+#, fuzzy
+msgid "Switch between applications every"
 msgstr "بدِّل ما بين التطبيقات كل"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr "في النظم عديدة المعالجات الميكروية، استغل بحد أقصى"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
 #, no-c-format
-#, fuzzy
+#, fuzzy, no-c-format
 msgid "% of the processors"
 msgstr "من المعالج"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr "استغل بحد أقصى"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
 msgid "% CPU time"
 msgstr "% من وقت المعالج"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr "استغلال المعالج"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr "خيارات عامة"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr "أقصى معدل للتنزيل"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr "ك.بايت/ثانية."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr "أقصى معدل للرفع"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr "اتصل تقريبا كل"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
@@ -1145,43 +1262,43 @@ msgstr ""
 "يتصل هذا الحاسوب بالإنترنت مرة كل حوالي س يوما\n"
 "(0 إن كان متصلا على الدوام)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr "أيام"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr "براح الشغل الإضافي"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr "يوما (10 بحد أقصى)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr "أغفل التحقق من ملفات الصور"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr "أشّر هذا إن كان مقم خدمة الإنترنت لك يعدل ملفات الصور"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr "خيارات الاتصال"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr "أكد قبل الاتصال بإنترنت"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr "بتأشير هذا فإن حوار توكيد سيظهر لك قبل محاولة الاتصال بالإنترنت"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr "اقطع الاتصال بعد الانتهاء"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
@@ -1189,130 +1306,126 @@ msgstr ""
 "بتأشير هذا فإن BOINC ينهي الاتصال بعد الانتهاء من استخدام الشبكة\n"
 "(يتعلق بالاتصال الهاتفي حصرا)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr "استغلال الشبكة المسموح"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr "ساعة بدء استغلال الشبكة"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr "ساعة انتهاء استغلال الشبكة"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr "استغلال الشبكة"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr "استغلال القرص"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr "أقصى مساحة من القرص بالجيجابايت يمكن أن يستخدمها BOINC"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr "جيجابايت من مساحة القرص"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr "اترك على الأقل"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 #, fuzzy
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr "يترك BOINC هذا القدر من المساحة على القرص شاغرا (بالجيجابايت)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr "جيجابايت من مساحة القرص"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr "أقصى نسبة من المساحة الإجمالية للقرص يمكن أن يستخدمها BOINC"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr "% من إجمالي مساحة القرص"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
-msgstr "اكتب على القرص بحد أقصى كل"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr "ثوان"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr "% من مساحة ملف الصفحات (مساحة التبديل)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr "استغلال الذاكرة"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr "% عندما يكون الحاسوب مشغولا"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr "% عندما يكون الحاسوب ساكنا"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr "اترك التطبيقات في الذاكرة أثناء تعليقها"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr "بتأشير هذا فإن وحدات الشغل المعلّق تترك في الذاكرة"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr "استغلال القرص و الذاكرة"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr "موافق"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr "احفظ كل القيم و أغلق الحوار"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr "الغ"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr "أغلق الحوار دون حفظ"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "مساعدة"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr "أظهر صفحة التفضيلات على الوب"
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
 msgstr "%s - توكيد الخروج"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1322,8 +1435,8 @@ msgid ""
 "exit the Manager, then choose from the following options:"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1338,538 +1451,496 @@ msgstr ""
 "هذا\n"
 "%s بتنفيذ مهامه في الأوقات التي ضبطتها في تفضيلاتك."
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "ا&لغ"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "عام"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 #, fuzzy
 msgid "User name"
 msgstr "اسم المستخدم"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "التشارك في الموارد"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 #, fuzzy
 msgid "Scheduler call in progress"
 msgstr "يجري طلبُ المُجَدوِِل"
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 #, fuzzy
 msgid "Attached via account manager"
 msgstr "مشبوك بمدير الحسابات"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "التطبيق"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "موعد التسليم"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "وقت المعالِج"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 #, fuzzy
 msgid "Elapsed time"
 msgstr "الوقت المنصرم"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "جديد"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "فشل التنزيل"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "يجري التنزيل"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "علِّق المستخدمُ المشروعَ"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr "علَّقَ المستخدمُ المهمة"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "معلق"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr " - بالبطارية"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr " - المستخدم نشط"
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr " - المعالجة معلقة"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr " - تضبيطات الوقت"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr " - مقايسات المعالج"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr " - بحاجة لمزيد من المساحة على القرص"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr " في انتظار ذاكرة"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr "في انتظار ذاكرةٍ مشارَكة"
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr "يشتغل، بأولية عالية"
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "تشتغل"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr "في انتظار التشغيل"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr "جاهزة للبدء"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "عطل في الحسبان"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "فشل الرفع"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "يجري الرفع"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "أجهضها المستخدم"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "أجهضها المشروع"
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "تم إجهاضها"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "احتُسِبَت"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "جاهزة للتسليم"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr "عطل: حالة غير صحيحة '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
 msgstr "‮‪%s‬ - &خيارات"
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "تضبيطات الاتصال بالهاتف و الشبكة الافتراضية الخاصة"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "&خله المبدئي"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "&صفِّر المبدئي"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "الوصلة المبدئية"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "الوصلات"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "اتصل عبر خادوم HTTP وسيط"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "تضبيطات خادوم HTTP الوسيط"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "المسار"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "الميناء"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "اترك هذه خاوية إن لم تكن تحتاجها"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "اسم المستخدم"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "كلمة السرّ"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "وسيط HTTP"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "اتصل عبر وسيط SOCKS وسيط"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "تضبيطات خادوم SOCKS الوسيط"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "خادوم SOCKS"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
 msgid "%s - Select Computer"
 msgstr "‮‪%s‬ - اختر حاسوبا"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "اسم المضيف"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s - تعذر إيجاد متصفح وب"
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
+#, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1884,230 +1955,225 @@ msgstr ""
 "لتصلح هذا، اضبط المتغير البيئي BROWSER ليشير إلى مسار متصفحك،\n"
 "ثم أعد تشغيل %s."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "المنتدى"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "تواصل مع مستخدمي BOINC الآخرين عبر منتدى SETI at Home"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "اطرح أسئلة و أبلغ عن المشكلات"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "حسابك"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "طالع بيانات حسابك و مجموع نقاطك"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "تفضيلاتك"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr "طالع و راجع ملف حسابك في SETI at Home و تفضيلاتك"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "نتائجك"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr "طالع نتائج و شغل آخر أسبوع (أو ما يزيد عنه)"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "حواسيبك"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr "طالع قائمة بكل الحواسيب التي تشغل عليها SETI at Home"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "فريقك"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "طالع معلومات عن فريقك"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "أسئلة شائعة"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "اقرأ الأسئلة الشائعة حول Einstein at Home"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "معلومات حافظ الشاشة"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "اقرأ وصفا تفصيليا لحافظ شاشة Eisntein at Home"
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr "تواصل مع الإداريين و المستخدمين الآخين عبر منتدى Einstein at Home"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "حالة أينشتين"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "حالة خادوم Einstein at Home"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "أبلغ عن المشكلات"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr "رابط لمنتدى الإبلاغ عن مشكلات و بقّات Einstein at Home"
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr "طالع و غير ملف حسابك في Einstein at Home و تفضيلاتك"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "ملخص حسابك"
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr "طالع قائمة بكل الحواسيب التي تشغل عليها Einstein at Home"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "مشروع LIGO"
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr ""
 "مشروع مرصد موجة التثاقل بمقياس تداخل الليزر  Laser Interferometer "
 "Gravitational-wave Observatory (LIGO)"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "مشروع GEO-600"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "موقع مشروع GEO-600"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "فريق"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "معلومات عن فريقك"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "يطلب مساعدة فيما يخص مشروع climateprediction.net"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "أخبار"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "أخبار climateprediction.net"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr "يعرض بيانات حسابك، و نقاطك"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "معلومات عن فريقك"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr "ابحث في نظام المساعدة"
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "إحصاءات كلية"
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "ملخص إحصاءات شبكة المجتمع العالمية"
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr "شبكتي"
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "إحصاءاتك و تضبيطاتك"
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr "ملفات النبائط"
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr "حدث تضبيطات نبائطك"
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr "ابحث"
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "اعرف عن المشروعات المستضافة في شبكة المجتمع العالمية"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr ""
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "يجري جلب حالة النظام؛ انتظر رجاء…"
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "يجري جلب معلومات المضيف؛ انتظر رجاء…"
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "لا اتصال بإنترنت"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "اتصل بإنترنت و حاول مجددا"
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "تعذر إيجاد المشروع"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2117,11 +2183,11 @@ msgstr ""
 "\n"
 "تحقق من المسار ثم حاول مجددا."
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "تعذر إيجاد مدير الحسابات"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2132,50 +2198,60 @@ msgstr ""
 "\n"
 "تحقق من المسار ثم حاول مجددا."
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr "فشل الولوج"
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr "تحقق من اسم المستحدم و كلمة السرّ ثم حاول مجددا."
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr "تحقق من عنوان البريد و كلمة السرّ ثم حاول مجددا."
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr "اختر مشروعا"
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr "لتختار مشروعا انقر اسمه أو أدخل مساره أدناه."
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "م&سار المشروع"
 
-#: clientgui/ProjectInfoPage.cpp:320
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:321
-#, fuzzy
-msgid "Already Attached to Project"
-msgstr "مشبوك بهذا المشروع بالفعل"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
 msgstr ""
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
-msgstr "انقر هنا لتذهب إلى صفحة %s على الوب"
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
@@ -2183,17 +2259,17 @@ msgstr ""
 "يجري التواصل بالمشروع\n"
 "انتظر رجاء…"
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
 msgstr "تعذر إيجاد ملفات مطلوبة للمرشد على الخادوم المحدد.\n"
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "فشل في الاتصال عبر الشبكة"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
 #, fuzzy
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
@@ -2205,7 +2281,7 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
@@ -2220,7 +2296,7 @@ msgstr ""
 "3) أنت تستخدم خادوما وسيطا.\n"
 "اضغط 'اللاحق' لتضبط إعدادات BOINC المتعلقة بالوسطاء"
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 #, fuzzy
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
@@ -2247,492 +2323,470 @@ msgstr ""
 "3) أنت تستخدم خادوما وسيطا.\n"
 "اضغط 'اللاحق' لتضبط إعدادات BOINC المتعلقة بالوسطاء"
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "تضبيطات الوسيط"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "وسيط HTTP"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "خادوم"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "تحسس أوتوماتيا"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "خادوم SOCLS"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr "&%s"
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr "يجري جلب الحالة الراهنة"
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr "ليست لديك أية مشروعات. أضف مشروعا."
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr "يجري تنزيل شغل من الخادوم."
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr "المعالجة معلقة: الحاسوب يعمل بالبطارية"
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr "المعالجة معلقة: المستخدم يستغل الحاسوب"
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr "المعالجة مُلبثة: أوقف المستخدمُ المعالجةَ"
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr "المعالجة معلقة: تضبيطات هذا الوقت"
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr "المعالجة معلقة: القياسات تجري"
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr "المعالجة معلقة."
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr "في انتظار الاتصال بخواديم المشروع"
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr "يجري جلب الحالة الراهنة"
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr "لا يوجد شغل لمعالجته"
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr "تعذر الاتصال بعميل النواة"
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "المشروع"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "الوقت"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "الرسالة"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "ينسخ كل الرسائل إلى لوح القصاصات"
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 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 ""
 "ينسخ الرسالة المختارة إلى لوح القصاصات.\n"
 "يمكنك اختيار عدة رسائل بالإبقاء على Shift أو Command مضغوطا أثناء النقر "
 "بالفأرة."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
 "ينسخ الرسالة المختارة إلى لوح القصاصات.\n"
 "يمكنك اختيار عدة رسائل بالإبقاء على Shift أو Control مضغوطا أثناء النقر "
 "بالفأرة."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr "اطلب مساعدة بخصوص BOINC"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr "‮‪%s‬ - الرسائل"
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr "100 م بايت"
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr "200 م بايت"
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr "500 م بايت"
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr "1 ج بايت"
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr "2 ج بايت"
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr "5 ج بايت"
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr "10 ج بايت"
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr "20 ج بايت"
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr "50 ج بايت"
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr "100 ج بايت"
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr "%10"
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr "%20"
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr "%30"
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr "%40"
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr "%50"
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr "%60"
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr "%70"
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr "%80"
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr "%90"
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr "%100"
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr "1"
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr "3"
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr "5"
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr "10"
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr "15"
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr "30"
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr "60"
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr "كسوة"
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr "كسوة"
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr "تفضيلات"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr "أريد تطويع تفضيلاتي في هذا الحاسوب فقط"
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr "التفضيلات المطوعة"
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr "اشتغل فقط ما بين"
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr "اتصل بإنترنت فقط ما بين"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr "لا تستغل أكثر من"
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr "من مساحة القرص"
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr "من المعالج"
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr "أجر الشغل عند العمل بالبطارية؟"
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr "اشتغل بعد السكون لمدة"
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr "أي وقت"
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr "%d م بايت"
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr "%4.2f ج بايت"
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr "%d%%"
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr "0 (اشتغل دائما)"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr "%d"
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr "مُلبث: يجري شغل آخر"
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr "مُلبث: بطلب المستخدم؛ انقر 'عاود' للمواصلة"
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr "مُلبث: المستخدم نشط"
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr "ملبث: الحاسوب يعمل الحاسوب بالبطارية"
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr "مُلبث: حسب الوقت"
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr "مُلبث: المقايسات تجري"
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr "مُلبث"
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr "انقر لتستعرض رسوميات المشروع"
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr "اشبك بمشروع إضافي"
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr "زامن المشروعات مع نظام إدارة الحسابات"
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr "افتح نافذة للاطلاع على الرسائل"
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr "أوقف كل الأنشطة"
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr "عاود الأنشطة"
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr "افتح نافذة لتضبط تفضيلات"
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr "حوِّل إلى منظور BOINC المتقدم"
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr "المشروعات:"
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr "%s. أنجز %s شغلا قدره: %0.2f"
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr "أزل المشروع"
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "أمتأكد أنك تريد الفصل عن مشروع %s؟"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "افصل عن المشروع"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr "%.1lf"
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr "%d ساعة %d دقيقة %d ثانية"
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr "أمتأكد أنك تريد عرض الرسوميات على حاسوب بعيد؟"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "اعرض الرسوميات"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
 msgstr "التطبيق:"
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr "المدة المتبقية:"
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
 msgstr "الوقت المنصرم:"
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "المشروع غير متاح مؤقتا"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2742,11 +2796,11 @@ msgstr ""
 "\n"
 "حاول مجددا لاحقا."
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "مدير الحسابات غير مناح مؤقتا"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2756,32 +2810,32 @@ msgstr ""
 "\n"
 "حاول مجددا لاحقا."
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "أدخل مفتاح حساب للمواصلة"
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr "مفتاح حساب غير صحيح؛ أدخل مفتاح حساب صحيح"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "تعارض في التحقق"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr "أدخل عنوان بريد"
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr "عنوان البريد غير صحيح؛ أدخل عنوان بريد صحيح"
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "المسار مفتقد"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2791,18 +2845,18 @@ msgstr ""
 "على سبيل المثال:\n"
 "‪http://www.example.com/‬"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "مسار غير صحيح"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2812,610 +2866,508 @@ msgstr ""
 "على سبيل المثال:\n"
 "‪http://boincproject.example.com‬"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "'%s' لا يحوي اسما صحيحا لمضيف."
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "'%s' لا يحوي مسارا صحيحا."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "أوامر"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "انسخ كل الرسائل"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "انسخ الرسائل المختارة"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "الرسائل"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "يجري نسخ كل الرسائل إلى لوح القصاصات…"
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 #, fuzzy
 msgid "Copying selected messages to the clipboard..."
 msgstr "يجري نسخ الرسائل المختارة إلى لوح القصاصات…"
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 #, fuzzy
 msgid "Show all messages"
 msgstr "انسخ كل الرسائل"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr "المعرِّف"
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr "الأولوية"
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr "MessagesGrid"
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr "يجري نسخ الرسائل المختارة إلى لوح القصاصات…"
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr "معلومات"
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr "تنبيه"
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr "عطل"
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "حدِّث"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr ""
 "يسلم المهام المنتهية، و يجلب أحدث رصيد نقاط، و أحدث التفضيلات، و ربما مزيدا "
 "من المهام."
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "علِّق"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr "يعلق مهام هذا المشروع"
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr "لا مهام جديدة"
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr "يحظر جلب مهام جديدة من هذا المشروع"
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "صفِّر المشروع"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 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 ""
 "يحذف كل الملفات و المهام المرتبطة بهذا المشروع و يجلب مهام جديدة. يمكنك "
 "تحديث المشروع أولا لتسليم المهام التامة."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "افصل"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr ""
 "يفصل الحاسوب عن هذا المشروع. ستفقد المهام التي لا تزال قيد التنفيذ (استخدم "
 "'حدِّث' أولا لتسليم المهام التامة)."
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "حساب"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "شغل تام"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr "معدل الشغل التام"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "الحالة"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "المشروعات"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "يجري تحديث المشروع"
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "يجري استئناف المشروع"
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "يجري تعليق المشروع"
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr "يجري إبلاغ المشروع بأنه مسموح جلب مهام جديدة منه…"
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "يجري إبلاغ المشروع أنه غير مسموح جلب مهام جديدة منه…"
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "يجري تصفير المشروع…"
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "أمتأكد أنك تريد تصفير المشروع '%s'؟"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "صفِّر المشروع"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "يجري الفصل عن المشروع…"
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "يجري تشغيل المتصفح…"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "عاود"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "عاود مهام هذا المشروع"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "اسمح بمهام جديدة"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr "اسمح للمشروع بجلب مهام جديدة."
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "لا تجلب مهام جديدة من هذا المشروع"
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "علَّقه المستخدم"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "لن يجلب مهام جديدة"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr "المشروع انتهى - اضغط 'موافق' ليزال"
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr "سيُفصل بعد تمام المهمات"
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "طَلبُ المُجَدوِِل في الطابور"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr "يجري طلبُ المُجَدوِِل"
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "تأجَّل الاتصال "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr "جدول المشروعات"
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 #, fuzzy
 msgid "Total disk usage"
 msgstr "إجمالي استغلال القرص"
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 #, fuzzy
 msgid "Disk usage by BOINC projects"
 msgstr "استغلال مشروعات BOINC للقرص"
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "القرص"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 #, fuzzy
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr "غير مشبوك بأي مشروع BOINC - 0 بايت"
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 #, fuzzy
 msgid "used by BOINC: "
 msgstr "ما يستغله BOINC - "
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 #, fuzzy
 msgid "used by other programs: "
 msgstr "ما تستغله برمجيات أخرى - "
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "إجمالي المستخدم"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "معدل المستخدم"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "إجمالي المضيف"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "معدل المضيف"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
 msgstr "آخر تحديث منذ: %.0f أيام مضت"
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "اعرض إجمالي المستخدم"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr "يعرض اجمالي نقاط المستخدم"
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "اعرض معدل المستخدم"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr "يعرض معدل نقاط المستخدم"
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "اعرض إجمالي المضيف"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr "يعرض اجمالي نقاط المضيف"
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "اعرض معدل المضيف"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr "يعرض معدل نقاط المضيف"
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< المشروع السا&بق"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr "يعرض مخطط المشروع السابق"
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "المشروع اللا&حق >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr "يعرض مخطط المشروع اللاحق"
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "طور العرض"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "كل المشروعات"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr "يعرض كل المشروعات؛ مخطط لكل مشروع"
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "مشروع واحد"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr "يعرض مخططا واحدا للمشروع المختار"
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr "كل المشروعات (إجمالي)"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr "يعرض مخططا واحدا لكل المشروعات"
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "إحصائيات"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "يجري تحديث المخططات…"
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "حاول الآن"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "اضغط 'حاول الآن' لتنقل الملف الآن"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "أجهض النقل"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr ""
 "اضغط 'أجهض النقل' لتحذف الملف من طابور النقل. سيحول هذا دون منحك نقاطا لهذه "
 "النتيجة ."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "الملف"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "التقدم"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "الحجم"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "الوقت المنصرم"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "السرعة"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "النقل"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "تجري محاولة النقل الآن…"
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "يجري إجهاض النقل…"
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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"
@@ -3424,34 +3376,42 @@ msgstr ""
 "أمتأكد أنك تريد إجهاض نقل هذا الملف '%s'؟\n"
 "ملاحظة: إجهاض النقل سيلغي المهمة و لن تنال نقاطا عنها."
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "أجهض نقل ملف"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "ستعاد المحاولة بعد"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr "الرفع مؤجل"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "التنزيل مؤجل"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr "جدول النقل"
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 msgid "Aborting transfer(s)..."
 msgstr "يجري إجهاض النقل…"
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
@@ -3460,75 +3420,80 @@ msgstr ""
 "أمتأكد أنك تريد إجهاض نقل هذا الملف '%s'؟\n"
 "ملاحظة: إجهاض النقل سيلغي المهمة و لن تنال نقاطا عنها."
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 msgid "Abort File Transfer(s)"
 msgstr "أجهض نقل ملف"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "يعرض رسوميات المشروع في نافذة."
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "علّق الشغل في هذه النتيجة."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "أجهض"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr "يوقف الشغل في هذه المهمة. لن تنال نقاطا عنها."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "الاسم"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "حتى التمام"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "المهام"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "تجري معاودة مهمة…"
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "يجري تعليق مهمة…"
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "يجري عرض رسوميات مهمة…"
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "يجري إجهاض نتيجة…"
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
@@ -3536,36 +3501,62 @@ msgstr ""
 "أمتأكد أنك تريد إجهاض هذه المهمة '%s'؟\n"
 "(التقدم: %s، الحالة: %s)"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "أجهض المهمة"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "يجري إجهاض نتيجة…"
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr "عاود تشغيل هذه المهمة."
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr "علِّق تشغيل هذه المهمة."
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr "(غير كثيف استغلال المعالج)"
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr "جدول المهام"
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
@@ -3573,12 +3564,12 @@ msgstr ""
 "أمتأكد أنك تريد إجهاض هذه المهمة '%s'؟\n"
 "(التقدم: %s، الحالة: %s)"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3592,13 +3583,13 @@ msgstr ""
 "المشروعات المضافة بهذا المرشد لن\n"
 "تدرج أو تدار باستخدام %s."
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
-msgstr "سنرشدك الآن في سيرورة الشبك بمشروع."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3614,139 +3605,264 @@ msgid ""
 "World Community Grid then please click on the following button:"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
-msgstr "أو&قف استخدام %s"
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr "سنزيل الآن هذا الحاسوب من %s. من الآن فصاعدا اشبك و افصل المشروعات من هذا "
-"الحاسوب.\n"
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "مدير الحسابات"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"سنرشدك الآن في سيرورة الشبك بمدير حسابات.\n"
-"\n"
-"إن كنت تنوي الشبك بمشروع واحد فقط فاضغط 'ألغ' ثم اضغط 'اشبك بمشروع' عوضا عن "
-"هذا"
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "رايات اصطياد البقّات"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "فشل في خصائص المشروع"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "فشل في مسار خصائص المشروع"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "فتح الحسابات معطل"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "فتح حسابات العملاء معطل"
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "الحساب مفتوح بالفعل"
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "المشروع مشبوك بالفعل"
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "فشل شَبكُ المشروع"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "فشل في تحسس الشبكة"
-
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr ".اضغط 'اللاحق' للمواصلة"
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "أتريد حقا الإلغاء؟"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "سؤال"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "اللا&حق >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< ال&سابق"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "أ&نه"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
 msgid "New page inserted. Index = %i"
 msgstr "أدخلت صفحة جديدة. فهرسها = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
 msgid "New page appended. Index = %i"
 msgstr "أُلحِقَت صفحة جديدة. فهرسها = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
 msgid "Old Page Index = %i"
 msgstr "فهرس الصفحة القديم = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr "OnDropTarget: فهرس HitTest = %i"
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr "تحكمات الرسم البياني"
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr "حدد ساعات بدء و توقف الشغل في الصيغة HH:MM-HH:MM"
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr "حدد ساعات بدء و توقف استغلال الشبكة في الصيغة HH:MM-HH:MM"
 
+#, fuzzy
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "أ&غلق النافذة\tCTRL+W"
+
+#, fuzzy
+#~ msgid ""
+#~ "You currently are not authorized to manage the client.\n"
+#~ "Please contact your administrator to add you to the 'boinc_master' user "
+#~ "group."
+#~ msgstr ""
+#~ "ليست لك حاليا الصلاحية لإدارة العميل.\n"
+#~ "اتصل بمدير نظامك ليضيفك إلى محموعة المستخدمين 'boinc_users'"
+
+#~ msgid "User information"
+#~ msgstr "معلومات المستخدم"
+
+#~ msgid "Account Manager URL"
+#~ msgstr "مسار مدير الحسابات"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "أدخل مسار موقع مدير الحسابات"
+
+#~ msgid "Close BOINC Manager Window."
+#~ msgstr "أغلق نافذة مدير BOINC."
+
+#~ msgid "Exit the %s"
+#~ msgstr "اخرج من %s"
+
+#, fuzzy
+#~ msgid ""
+#~ "Advanced views allow you to sort various columns and displays graphical "
+#~ "progress bars."
+#~ msgstr "مناظير الجداول تتيح ترتيب أعمدة متعددة و تعرض مؤشر تقدم رسومي."
+
+#~ msgid "Attach to a project"
+#~ msgstr "اشبك بمشروع"
+
+#~ msgid "Attach to &account manager..."
+#~ msgstr "اشبك بمدير &حسابات"
+
+#~ msgid "Attach to an account manager"
+#~ msgstr "اشبك بمدير حسابات"
+
+#~ msgid "Attach to &project"
+#~ msgstr "اشبك بمش&روع"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "يجري الشبك بالمشروع…"
+
+#~ msgid "Removal from %s completed."
+#~ msgstr "تم الفصل عن %s."
+
+#~ msgid "Removal succeeded!"
+#~ msgstr "نجح الفصل!"
+
+#~ msgid "Write to disk at most every"
+#~ msgstr "اكتب على القرص بحد أقصى كل"
+
+#, fuzzy
+#~ msgid "Already Attached to Project"
+#~ msgstr "مشبوك بهذا المشروع بالفعل"
+
+#~ msgid "Click here to go to %s's website."
+#~ msgstr "انقر هنا لتذهب إلى صفحة %s على الوب"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr "سنرشدك الآن في سيرورة الشبك بمشروع."
+
+#~ msgid "&Stop using%s"
+#~ msgstr "أو&قف استخدام %s"
+
+#~ msgid ""
+#~ "We'll now remove this computer from %s.  From now on,\n"
+#~ "attach and detach projects directly from this computer.\n"
+#~ msgstr ""
+#~ "سنزيل الآن هذا الحاسوب من %s. من الآن فصاعدا اشبك و افصل المشروعات من هذا "
+#~ "الحاسوب.\n"
+
+#~ msgid "Account manager"
+#~ msgstr "مدير الحسابات"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to an account manager.\n"
+#~ "\n"
+#~ "If you want to attach to a single project, click Cancel,\n"
+#~ "then select the 'Attach to project' menu item instead."
+#~ msgstr ""
+#~ "سنرشدك الآن في سيرورة الشبك بمدير حسابات.\n"
+#~ "\n"
+#~ "إن كنت تنوي الشبك بمشروع واحد فقط فاضغط 'ألغ' ثم اضغط 'اشبك بمشروع' عوضا "
+#~ "عن هذا"
+
+#~ msgid "Debug Flags"
+#~ msgstr "رايات اصطياد البقّات"
+
+#~ msgid "Project Properties Failure"
+#~ msgstr "فشل في خصائص المشروع"
+
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "فشل في مسار خصائص المشروع"
+
+#~ msgid "Account Creation Disabled"
+#~ msgstr "فتح الحسابات معطل"
+
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "فتح حسابات العملاء معطل"
+
+#~ msgid "Account Already Exists"
+#~ msgstr "الحساب مفتوح بالفعل"
+
+#~ msgid "Project Already Attached"
+#~ msgstr "المشروع مشبوك بالفعل"
+
+#~ msgid "Project Attach Failure"
+#~ msgstr "فشل شَبكُ المشروع"
+
+#~ msgid "Net Detection Failure"
+#~ msgstr "فشل في تحسس الشبكة"
+
 #~ msgid ""
 #~ "You can copy and paste the URL from your browser's\n"
 #~ "address bar."
@@ -3787,28 +3903,22 @@ msgstr "حدد ساعات بدء و توقف استغلال الشبكة في ا
 #~ msgid "&Accessible View"
 #~ msgstr "منظور الإ&عانة"
 
-#~ msgid "Accessible views are compatible with accessibility aids such as screen readers."
+#~ msgid ""
+#~ "Accessible views are compatible with accessibility aids such as screen "
+#~ "readers."
 #~ msgstr "تتوافق مناظير الإعانة مع أدوات الإعانة مثل قارءات الشاشة."
 
 #~ msgid "&Grid View"
 #~ msgstr "منظور ال&جدول"
 
-#, c-format
 #~ msgid ""
 #~ "%s is going to shutdown the core client it is currently connected to.\n"
 #~ "NOTE: Choosing 'OK' will cause the select new computer dialog to appear \n"
 #~ "so you can attach to a different core client."
 #~ msgstr ""
 #~ "سيطفئ %s العميل النواة المتصل به حاليا.\n"
-#~ "ملحوظة: الموافقة ستظهر نافذة اختيار حاسوب لتتمكن من الاتصال بعميل نواة مختلف."
-
-#, c-format
-#~ msgid ""
-#~ "BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
-#~ "(Error code %d)"
-#~ msgstr ""
-#~ "ملكية و أذون BOINC غير مضبوطة كما ينبغي؛ أعد تثبيت BOINC.\n"
-#~ "(Error code %d)"
+#~ "ملحوظة: الموافقة ستظهر نافذة اختيار حاسوب لتتمكن من الاتصال بعميل نواة "
+#~ "مختلف."
 
 #~ msgid "processors"
 #~ msgstr "معالجات"
@@ -3825,7 +3935,9 @@ msgstr "حدد ساعات بدء و توقف استغلال الشبكة في ا
 #~ msgid "Reminder Frequency:"
 #~ msgstr "دورية التذكير"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
+#~ msgid ""
+#~ "How often, in minutes, should the manager remind you of possible "
+#~ "connection events."
 #~ msgstr "كل كم دقيقة على المدير أن يذكرك بأحداث الاتصال المتوقعة"
 
 #~ msgid "free disk space - "
diff --git a/locale/ar/BOINC-Web.po b/locale/ar/BOINC-Web.po
index b7d0dd7..4f5e001 100644
--- a/locale/ar/BOINC-Web.po
+++ b/locale/ar/BOINC-Web.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Web 6.x\n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
 "PO-Revision-Date: 2008-05-08 03:00+0200\n"
 "Last-Translator: Ahmad Gharbeia أحمد غربية <gharbeia at gmail.com>\n"
 "Language-Team: \n"
@@ -18,386 +18,312 @@ msgstr ""
 "X-Poedit-Country: UNITED STATES\n"
 "X-Poedit-KeywordsList: tra\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
 msgstr ""
 
-"
-
+#: poll.inc:47
 msgid "Other:"
 msgstr ""
 
-"
-
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
 msgstr ""
 
-"
-
+#: poll_data.inc:22
 msgid "less than a week"
 msgstr ""
 
-"
-
+#: poll_data.inc:23
 msgid "less than a month"
 msgstr ""
 
-"
-
+#: poll_data.inc:24
 msgid "less than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:25
 msgid "more than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:34
 msgid "I lost interest"
 msgstr ""
 
-"
-
+#: poll_data.inc:35
 msgid "it was too complicated"
 msgstr ""
 
-"
-
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
 msgstr ""
 
-"
-
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:38
 msgid "it used too much electricity"
 msgstr ""
 
-"
-
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr ""
 
-"
-
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
 msgstr ""
 
-"
-
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
 msgstr ""
 
-"
-
+#: poll_data.inc:50
 msgid "I had network communication problems"
 msgstr ""
 
-"
-
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
 msgstr ""
 
-"
-
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr ""
 
-"
-
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
 msgstr ""
 
-"
-
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr ""
 
-"
-
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr ""
 
-"
-
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr ""
 
-"
-
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr ""
 
-"
-
+#: poll_data.inc:87
 msgid "Home"
 msgstr ""
 
-"
-
+#: poll_data.inc:88
 msgid "Work"
 msgstr ""
 
-"
-
+#: poll_data.inc:89
 msgid "School"
 msgstr ""
 
-"
-
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr ""
 
-"
-
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr ""
 
-"
-
+#: poll_data.inc:119
 msgid "Age"
 msgstr ""
 
-"
-
+#: poll_data.inc:129
 msgid "Sex"
 msgstr ""
 
-"
-
+#: poll_data.inc:131
 msgid "Male"
 msgstr ""
 
-"
-
+#: poll_data.inc:132
 msgid "Female"
 msgstr ""
 
-"
-
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr ""
 
-"
-
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr ""
 
-"
-
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr ""
 
-"
-
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr ""
 
-"
-
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr ""
 
-"
-
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr ""
 
-"
-
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
 msgstr ""
 
-"
-
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr ""
 
-"
-
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr ""
 
-"
-
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr ""
 
-"
-
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr ""
 
-"
-
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr ""
 
-"
-
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr ""
 
-"
-
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr ""
 
-"
-
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr ""
 
-"
-
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr ""
 
-"
-
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr ""
 
-"
-
+#: poll_data.inc:192
 msgid "Yes"
 msgstr ""
 
-"
-
+#: poll_data.inc:193
 msgid "No"
 msgstr ""
 
-"
-
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr ""
 
-"
-
+#: poll_data.inc:200
 msgid "to read information"
 msgstr ""
 
-"
-
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr ""
 
-"
-
+#: poll_data.inc:202
 msgid "None"
 msgstr ""
 
-"
-
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr ""
 
-"
-
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr ""
 
-"
-
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr ""
 
-"
-
+#: download.php:40
 msgid "Download BOINC"
 msgstr ""
 
-"
-
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr ""
 
-"
-
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -405,41 +331,34 @@ msgid ""
 "computer, you can connect it to as many of these projects as you like."
 msgstr ""
 
-"
-
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
 "(GPU), you may be able to %suse it to compute faster%s"
 msgstr ""
 
-"
-
+#: download.php:120
 msgid "System requirements"
 msgstr ""
 
-"
-
+#: download.php:121
 msgid "Release notes"
 msgstr ""
 
-"
-
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr ""
 
-"
-
+#: download.php:123
 msgid "All versions"
 msgstr ""
 
-"
-
+#: download.php:141
 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 "
@@ -448,8 +367,7 @@ msgid ""
 "problems you might have."
 msgstr ""
 
-"
-
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -458,8 +376,7 @@ msgid ""
 "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 "
@@ -467,20 +384,17 @@ msgid ""
 "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 "
@@ -488,30 +402,70 @@ msgid ""
 "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 ""
 
-"
+#: index.php:23
+msgid "Computing power"
+msgstr ""
 
-msgid "Volunteer"
+#: index.php:25
+msgid "Top 100 volunteers"
 msgstr ""
 
-"
+#: index.php:26
+msgid "Statistics"
+msgstr ""
 
-msgid "Download"
+#: index.php:53
+msgid "Active:"
 msgstr ""
 
-"
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
 
-msgid "Documentation"
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
 msgstr ""
 
-"
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
 
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -520,28 +474,92 @@ msgid ""
 "sDownload%s and run BOINC software  %sEnter%s an email address and password. "
 msgstr ""
 
-"
-
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
 "sGridRepublic%s or %sBAM!%s. "
 msgstr ""
 
-"
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
 
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
 
-"
-
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr ""
 
-"
-
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -554,84 +572,68 @@ msgid ""
 "href=poll_results.php>here</a>. "
 msgstr ""
 
-"
-
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr ""
 
-"
-
+#: poll.php:30
 msgid "Your participation"
 msgstr ""
 
-"
-
+#: poll.php:32
 msgid "Your computers"
 msgstr ""
 
-"
-
+#: poll.php:34
 msgid "You"
 msgstr ""
 
-"
-
+#: poll.php:39
 msgid "Nationality"
 msgstr ""
 
-"
-
+#: poll.php:44
 msgid "Comments"
 msgstr ""
 
-"
-
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
 msgstr ""
 
-"
-
+#: poll.php:50
 msgid "When done click:"
 msgstr ""
 
-"
-
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
 msgstr ""
 
-"
-
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr ""
 
-"
-
+#: poll_results.php:195
 msgid "Survey results"
 msgstr ""
 
-"
-
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
 msgstr ""
 
-"
-
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 #~ msgid "CHARSET"
 #~ msgstr "UTF-8"
diff --git a/locale/ar/pootle-boincclient610-ar.prefs b/locale/ar/pootle-boincclient610-ar.prefs
new file mode 100644
index 0000000..807f71d
--- /dev/null
+++ b/locale/ar/pootle-boincclient610-ar.prefs
@@ -0,0 +1,7 @@
+# Pootle preferences for project boinctrunk, language ar
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/ar/pootle-boinctrunk-ar.prefs b/locale/ar/pootle-boinctrunk-ar.prefs
deleted file mode 100644
index 79b19d9..0000000
--- a/locale/ar/pootle-boinctrunk-ar.prefs
+++ /dev/null
@@ -1,6 +0,0 @@
-# Pootle preferences for project boinctrunk, language ar
-
-rights:
-  default = u'view, suggest, archive, pocompile'
-  nobody = u'view'
-  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/be/BOINC-Manager.mo b/locale/be/BOINC-Manager.mo
index 1b258d1..c75fa38 100644
Binary files a/locale/be/BOINC-Manager.mo and b/locale/be/BOINC-Manager.mo differ
diff --git a/locale/be/BOINC-Manager.po b/locale/be/BOINC-Manager.po
index e17be46..892985a 100644
--- a/locale/be/BOINC-Manager.po
+++ b/locale/be/BOINC-Manager.po
@@ -1,28 +1,28 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 6.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
 "PO-Revision-Date: 2007-01-07 17:42+0200\n"
 "Last-Translator: Drive DRKA <drka2003 at mail.ru>\n"
 "Language-Team: <Drive DRKA<drka2003 at mail.ru>> <drka2003 at mail.ru>\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Translate Toolkit 1.2.1\n"
 "X-Poedit-Language: English\n"
 "X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: iso-8859-1\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: UNITED STATES\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "Інфармацыя аб удзельніку"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr ""
 
 # ???
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
@@ -31,7 +31,7 @@ msgstr ""
 "(уліковы запіс ствараецца на сайце праекту)"
 
 # крыва
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
@@ -39,433 +39,495 @@ msgstr ""
 "Стварэнне новых уліковых запісаў забароненае.\n"
 "Падлучэнне толькі для ўжо зарэгістраваных."
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "Вы ўжо зарэгістраваныя ў праекце?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "Не, новы ўдзельнік"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "Так, ужо зарэгістраваны"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "Пароль:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "Увядзіце пароль:"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "Пацверджанне пароля:"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr "Імя ўдзельніка:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "Адрас электроннае пошты:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr "мінімум %d знакаў"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "Падлучэнне да праекту"
 
 # адкуль усе гэтыя фразы бяруцца - сапраўды не адгадаў сэнс
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "Абнаўленне мэнэджэра праектаў"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "Злучэнне з мэнэджэрам праектаў"
 
 # не адпаведнасць колькасці радкоў у перакладзе
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr ""
 "Мінімальная даўжыня пароля для дадзенага праекту %d знакаў. Зменіце пароль у "
 "адпаведнасць з дадзеным крытэрам."
 
 # не адпаведнасць колькасці радкоў у перакладзе
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
 "Мінімальная даўжыня пароля для дадзенага мэнэджэра праектаў %d знакаў. "
 "Зменіце пароль у адпаведнасць з дадзеным крытэрам."
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr "\"Пароль\" і \"Пацверджанне пароля\" не супадаюць. Паўторыце ўвод пароля."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "Адрас мэнэджэра праектаў"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Увядзіце адрас вылучанага мэнэджэра праектаў"
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "Адрас (URL):"
 
 # ???
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr "Усталёўка сувязі з %s."
 
 # ???
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr "Усталёўка сувязі з серверам."
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "Калі ласка пачакайце..."
 
 # што бы гэта значыла???
 # Я думаю тут хакеры пастараліся
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr "Адбылася ўнутраная памылка сервера.\n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Злучэнне ўсталявана"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Адсутнічае злучэнне"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "Зачыніць акно\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "Зачыніць акно BOINC мэнэджэра."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr ""
 
-# ???
-# На жаль усё лепкае калісці заканчваецца :-)
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
-msgstr "Завяршыць працу праграмы %s"
-
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "Выхад"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "Змяніць знешні выгляд BOINC мэнэджэра на больш зразумелы"
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "Дадаць праект..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr ""
 
-# дубль (перакладу)
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "Падлучыцца да яшчэ адному праекту размеркаваных вылічэнняў"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "Злучыцца з мэнэджэрам праектаў..."
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Злучыцца з мэнэджэрам праектаў"
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:372
+#, fuzzy
+msgid "Display the simple graphical interface."
+msgstr "Змяніць знешні выгляд BOINC мэнэджэра на больш зразумелы"
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
 
 # абнавіць данныя
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr "Сінхранізавацца з %s"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr "Абнавіць налады з %s"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "Дадаць праект..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Падлучыцца да яшчэ адному праекту размеркаваных вылічэнняў"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Адлучыць кліент ад мэнэджэра праектаў."
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "Апрацоўка заўседы"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr "Апрацоўка заданняў запушчаная заўсёды"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "Графік працы вызначаецца наладамі"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "Апрацоўка адбываецца ў моманты часу ў адпаведнасць з наладамі"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "Прыпыніць апрацоўку"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr "Прыпыняецца апрацоўка ўсіх заданняў ва ўсіх праектах"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+#, fuzzy
+msgid "Allow GPU work regardless of preferences"
+msgstr "Апрацоўка заданняў запушчаная заўсёды"
+
+#: clientgui/AdvancedFrame.cpp:473
+#, fuzzy
+msgid "Use GPU based on &preferences"
+msgstr "Графік працы вызначаецца наладамі"
+
+#: clientgui/AdvancedFrame.cpp:474
+#, fuzzy
+msgid "Allow GPU work according to your preferences"
+msgstr "Апрацоўка адбываецца ў моманты часу ў адпаведнасць з наладамі"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+#, fuzzy
+msgid "Stop GPU work regardless of preferences"
+msgstr "Прыпыняецца апрацоўка ўсіх заданняў ва ўсіх праектах"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "Падлучаны да інтэрнэту"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr ""
 "Дазваляецца абмен дадзенымі праз інтэрнэт у любы момант часу, незалежна ад "
 "наладаў."
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+#, fuzzy
+msgid "Network activity based on pre&ferences"
 msgstr "Доступ у інтэрнэт вызначаецца наладамі"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr "Абмен дадзенымі праз інтэрнэт здзяйсняецца ў адпаведнасць з наладамі."
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+#, fuzzy
+msgid "Network activity s&uspended"
 msgstr "Працаваць аўтаномна"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr ""
 "Забараняецца абмен дадзенымі праз інтэрнэт паміж BOINC і серверамі праектаў"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "Налады..."
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "Налады графічнага інтэрфейсу праграмы і проксі сервераў"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
 msgid "Connect to another computer running %s"
 msgstr "Падлучыць іншы кампутар з %s"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "Змяніць кампутар..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "Запусціць тэст прадукцыйнасці"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "Запусціць тэст прадукцыйнасці працэсара"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr "Перазагрузіць файл спецнастроек "
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 #, fuzzy
 msgid "Read configuration info from cc_config.xml."
 msgstr "Перазагрузіць файл спецнастроек cc-config.xml."
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "Перазагрузіць лакальны файл агульных наладаў"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr "Перазагрузіць лакальны файл агульных наладаў global_prefs_override.xml."
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "Адлучыць кліент ад мэнэджэра праектаў."
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "Дадаць праект"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "Падлучыцца да яшчэ адному праекту размеркаваных вылічэнняў"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "Show information about %s"
 msgstr "Паказаць даведку па праграме %s"
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr "Паказаць даведку па праграме %s"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr "Хатняя старонка %s"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
 msgid "Show information about BOINC and %s"
 msgstr "Паказаць інфармацыю аб BOINC і %s"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr "Аб %s..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "Паказаць звесткі аб версіі праграмы і аўтарскіх правах  "
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "Файл"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "Выгляд"
 
 # old version 1.14
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "Сэрвіс"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "Кіраванне"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "Дадаткова"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "Даведка"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -479,59 +541,65 @@ msgstr ""
 "\n"
 "Адлучыцца ад %s?"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "Падлучэнне да праекту..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "Паўторны абмен дадзенымі для ўсіх падлучаных праектаў..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr "%s - змена мовы"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr ""
 "Мова інтэрфейсу праграмы %s быў зменены,\n"
 "для ўступа ў сілу зменаў патрабуецца перазапусціць праграму %s."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Паўторны абмен дадзенымі для ўсіх падлучаных праектаў..."
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr "Падлучэнне %s да праекту %s прайшло паспяхова"
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "Ідзе падлучэнне да %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "Connected to %s (%s)"
 msgstr "Падлучаны да %s"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "Дадзенае імя ўдзельніка ўжо выкарыстоўваецца"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -544,11 +612,11 @@ msgstr ""
 "Наведаеце хатнюю старонку праекту для атрымання інструкцыяў."
 
 # не ўлазіць цалкам
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "Дадзены адрас эл. пошты ўжо выкарыстоўваецца"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -560,42 +628,57 @@ msgstr ""
 "\n"
 "Наведаеце хатнюю старонку праекту для атрымання інструкцыяў."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1229
+#, fuzzy
+msgid "Cancel"
+msgstr "Адмена"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr "%s - памылка злучэння"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "Уведзены не правільны пароль, паспрабуйце падлучыцца яшчэ раз"
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - памылка падлучэння"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
@@ -603,32 +686,32 @@ msgstr ""
 "%s не можа падлучыцца да %s кліенту.\n"
 "Паспрабаваць паўтарыць падлучэнне?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr "%s - стан падлучэння"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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"
@@ -639,26 +722,23 @@ msgstr ""
 "кампутар'.\n"
 "Для лакальнага кампутара выкарыстайце 'localhost' у якасці імя кампутара."
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Спасылкі"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr "%s - стан сеткавага падлучэння"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr "%s неабходна падлучыцца да інтэрнэту. Пстрыкніце каб адкрыць %s"
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
 "Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
@@ -667,8 +747,8 @@ msgstr ""
 "Падлучыцеся да інтэрнэту і націсніце \"Паўтарыць абмен дадзенымі з серверамі "
 "праектаў\"."
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
@@ -676,13 +756,13 @@ msgstr ""
 "%s неабходна падлучыцца да інтэрнэту\n"
 "Вырабіць злучэнне зараз?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s вырабляе падлучэнне  да інтэрнэту."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
 "Please connect to the Internet, or select a default connection\n"
@@ -692,18 +772,18 @@ msgstr ""
 "Падлучыцеся да інтэрнэту або задайце падлучэнне па змаўчанні\n"
 "у меню Дадаткова/Налады/Параметры падлучэння"
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s усталяваў падлучэнне да інтэрнэту."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "%s не атрымалася падлучыцца да інтэрнэту."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
@@ -711,127 +791,160 @@ msgstr ""
 "%s выявіў усталяванае падлучэнне да інтэрнэту.\n"
 "Ідзе абмен файламі данных і абнаўленне інфармацыі аб праектах."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s разарваў падлучэнне да інтэрнэту."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s не атрымалася разарваць падлучэнне да інтэрнэту."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+#, fuzzy, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"BOINC або налады бяспекі наладжаныя не правільна; пераўсталюеце BOINC.\n"
+"(Код памылкі %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "BOINC мэнэджэр"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr "Згортваць BOINC мэнэджэр у значок на панэлі задачаў пры запуску"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr "адключыць палітыку бяспекі доступу карыстачоў да BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Аўтавызначэнне)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Невядомы)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Карыстацкі)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 #, fuzzy
 msgid "Network activity is suspended."
 msgstr "Працаваць аўтаномна"
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr ""
 
 # не адпавядае рэчаістнасці - рэальна пры фразе "Open BOINC Web..." - адчыняецца GridRepublic
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr "Наведаць вэб-старонку %s..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr "Адкрыць %s..."
 
 # Час сноў
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "Паўза"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "Не атрымалася дадаць праект"
 
 # ???
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr ""
 "Не атрымалася абнавіць дадзеныя\n"
 "з мэнэджэра праектаў"
 
 # ???
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr ""
 "Не атрымалася адлучыцца\n"
 "ад мэнэджэра праектаў"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr ""
 "Не атрымалася злучыцца\n"
 "з мэнэджэрам праектаў"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -843,28 +956,27 @@ msgstr ""
 "\n"
 "Для завяршэння націсніце кнопку \"Гатова\"."
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "Націсніце кнопку \"Гатова\" для выхаду з майстра."
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "Паведамленні ад сервера:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "Праект дададзены"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "Падлучэнне да праекту прайшло паспяхова."
 
 # ...
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -873,495 +985,485 @@ msgstr ""
 "аўтаматычна адкрыецца старонка, дзе вы зможаце паказаць\n"
 "імя вашага  запісу і змяніць яе налады."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr "Абнаўленне %s завершанае."
 
 # Слаўна папрацавалі
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "Абнаўленне завершанае."
 
-# ёсць некаторыя сумненні ў правільнасці перакладу :)
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr "Выдаленне %s завершанае."
-
-# Goblin forever
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "Ура, усё выдалена!"
-
 # ???
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr "Праект %s дадан"
 
 # ?
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "Злучэнне з мэнэджэрам праектаў усталявана"
 
 # Хоць "у" хоць "на" - усё роўна неяк крыва
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
 msgstr "Сардэчна запрашаем у %s!"
 
 # ??
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
+#, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "Падлучэнне да %s прайшло паспяхова."
 
 # ?
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr ""
 "Злучэнне з паказаным мэнэджэрам праектаў\n"
 "паспяхова ўсталявана."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr "Аб %s"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "Версія:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Аўтарскія правы:"
 
 # З маёй стараны :
 # ///Пераклад зроблены Drive DRKA drka2003 at mail.ru
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 #, fuzzy
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
 "(C) 2003-2006 Каліфарнійскі ўніверсітэт, Берклі \n"
 "Усё правы абароненыя."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr ""
 "BOINC - Berkeley Open Infrastructure for Network Computing\n"
 "Адчыненая Інфраструктура для Размеркаваных Вылічэнняў універсітэта Берклі"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "OK"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
 "Click Clear to restore web-based settings."
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr "хвілінаў"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr ""
 
 # Ñ–
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr "да"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
 #, no-c-format
-#, fuzzy
+#, fuzzy, no-c-format
 msgid "% of the processors"
 msgstr "працэсара"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
 #, no-c-format
-#, fuzzy
+#, fuzzy, no-c-format
 msgid "% CPU time"
 msgstr "Час ЦП"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-#, fuzzy
-msgid "Cancel"
-msgstr "Адмена"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr ""
 
 # Калі ў Вас узніклі пытанні,то Вам сюды
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "Дапамога"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
 msgstr "%s - Пацверджанне выхаду"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1372,8 +1474,8 @@ msgid ""
 msgstr ""
 
 # ???
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1389,545 +1491,503 @@ msgstr ""
 "то %s працягне кіраваць апрацоўкаю заданняў\n"
 "у адпаведнасці з вызначанымі вамі наладамі."
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "Адмена"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "Агульныя"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 #, fuzzy
 msgid "User name"
 msgstr "Імя карыстача:"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Вылучана рэсурсаў"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr ""
 
 # ?
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 #, fuzzy
 msgid "Attached via account manager"
 msgstr "Злучэнне з мэнэджэрам праектаў усталявана"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Прыкладанне"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Адправіць да"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "Час ЦП"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 #, fuzzy
 msgid "Elapsed time"
 msgstr "Час перадачы"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Новае"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "Памылка загрузкі данных"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "Загрузка данных"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "Праект прыпынены карыстачом"
 
 # доўга
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr "Апрацоўка задання прыпыненая карыстачом"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Прыпыненая"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr " - сілкаванне ад акумулятараў"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr " - карыстач працуе"
 
 # паўза
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr " - апрацоўка прыпыненая"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr " - у залежнасці ад часу суткаў"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr " - запушчаны тэст прадукцыйнасці"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr " - бракуе месцы на дыску"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr "Чаканне вызвалення аператыўнае памяці"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "Працуе"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Памылка вылічэнняў"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "Памылка адпраўкі данных"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "Адпраўка данных"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Перарвана карыстачом"
 
 # ???? удакладніць
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "Перарвана праектам"
 
 # ???
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "Перарвана"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Прызнана"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "Чакаецца пацверджанне аб прыёме данных"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Памылка: invalid state \"%d\""
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "Налады мадэмнага злучэння і VPN"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "Падлучэнне па змаўчанні"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "Няма падлучэння па змаўчанні"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Падлучэнне па змаўчанні:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Параметры падлучэння"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Злучацца праз HTTP проксі сервер"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "Параметры  HTTP проксі сервера"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Адрас:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Порт:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Пакінуць палі пустымі ,калі не выкарыстоўваюцца"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Імя карыстача:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Пароль:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "HTTP проксі"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Злучацца праз SOCKS проксі сервер"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "Параметры SOCKS проксі сервера"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "SOCKS проксі"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
 msgid "%s - Select Computer"
 msgstr ""
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Імя кампутара ў сеткі або IP:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s - не знойдзены вэб-браўзэр"
 
 # ?
 # пошукі браўзэра працягваюцца...
 # Або ў Вас няма Internet Explorera
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
+#, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1943,272 +2003,267 @@ msgstr ""
 "як браўзэр па змаўчанні\n"
 "і перазапусціце %s."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "Дошка паведамленняў"
 
 # seti
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "Форум для зносінаў з іншымі ўдзельнікамі праекту SETI at home"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "Форум, дзе можна задаць пытанні і паведаміць аб памылках"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "Ваш уліковы запіс"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "Прагляд інфармацыі аб вашым уліковым запісе і набраных ачках"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "Вашы налады"
 
 # seti
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr ""
 "Прагляд і змена наладаў вашага  запісу і вашага профіля ў праекце SETI at home"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "Вашы вынікі"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr "Прагляд інфармацыі аб выдадзеных заданнях (за апошнія некалькі тыдняў)"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "Вашы кампутары"
 
 # seti
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr ""
 "Прагляд інфармацыі аб вашых кампутарах, якія ўдзельнічаюць у апрацоўцы "
 "заданняў праекту SETI at Home"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "Каманда"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "Прагляд інфармацыі аб камандзе, да якой вы далучыліся"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "Частыя пытанні"
 
 # einstein
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "Часта зададзеныя пытанні па праекце Einstein at Home"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "Экранная застаўка"
 
 # einstein
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "Падрабязнае апісанне экраннае застаўкі праекту Einstein at Home"
 
 # einstein
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr ""
 "Форум для зносінаў з распрацоўнікамі і іншымі ўдзельнікамі праекту "
 "Einstein at Home"
 
 # einstein
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "Стан сервераў"
 
 # einstein
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Інфармацыя аб бягучым стане сервераў праекту Einstein at Home"
 
 # ?
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "Праблемы і памылкі"
 
 # einstein
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr ""
 "Форум для абмеркавання праблемаў і памылкаў у працы праграмаў праекту "
 "Einstein at Home"
 
 # einstein
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr ""
 "Прагляд і змена наладаў вашага  запісу і вашага профіля ў праекце "
 "Einstein at Home"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "Уліковы запіс (інфа.)"
 
 # einstein
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr ""
 "Прагляд інфармацыі аб вашых кампутарах, якія ўдзельнічаюць у апрацоўцы "
 "заданняў праекту Einstein at Home"
 
 # einstein
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "LIGO"
 
 # einstein ?
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr ""
 "Хатняя старонка праекту LIGO (лазерны інтэрферометр абсерваторыі "
 "гравітацыйных хваляў)"
 
 # einstein
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "GEO-600"
 
 # einstein
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "Хатняя старонка праекту GEO-600"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Каманда"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "Прагляд інфармацыі аб камандзе, да якой вы далучыліся"
 
 # cpdn ???
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "Дапамога па праекце climateprediction.net"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "Навіны"
 
 # cpdn
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "Навіны праекту climateprediction.net"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr "Прагляд інфармацыі аб вашым уліковым запісе і набраных ачках"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "Прагляд інфармацыі аб камандзе, да якой вы далучыліся"
 
 # WCG
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr ""
 "Сістэма дапамогі па працы праграмаў і ўдзеле ў размеркаваных вылічэннях на "
 "базе WCG."
 
 # WCG
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "Агульная статыстыка"
 
 # WCG
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "Зводная статыстыка па праектах WCG"
 
 # WCG
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr "Ваш уліковы запіс"
 
 # WCG
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "Ваша індывідуальная статыстыка па праектах і налады  запісу"
 
 # WCG
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr "Налады кампутара"
 
 # WCG
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr "Змена наладаў вашых кампутараў"
 
 # WCG
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr "Апісанні праектаў"
 
 # WCG
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "Падрабязныя апісанні праектаў запушчаных у рамках WCG"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr ""
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "Абнаўляецца інфармацыя аб стан сістэмы; калі ласка пачакайце..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "Абнаўляецца інфармацыя аб хасце; калі ласка пачакайце..."
 
 # ?
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "Адсутнічае сувязь з інтэрнэтам."
 
 # ?
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Вырабіце падлучэнне да інтэрнэту і паўторыце."
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Праект не знойдзены"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2218,11 +2273,11 @@ msgstr ""
 "на базе BOINC.\n"
 "Удакладніце адрас (URL) і паўторыце спробу."
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "Мэнэджэр праектаў не знойдзены"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2235,55 +2290,65 @@ msgstr ""
 "Удакладніце адрас (URL) і паўторыце спробу."
 
 # ???? хто такі Login
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr "Няўдача"
 
 # карыстача
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr ""
 "Праверце правільнасць напісання імя\n"
 "удзельніка і пароля і паўторыце ўвод."
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr ""
 "Праверце правільнасць напісання адрасу\n"
 "электроннае пошты і пароля і паўторыце ўвод."
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "Адрас (URL):"
 
-#: clientgui/ProjectInfoPage.cpp:320
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:321
-#, fuzzy
-msgid "Already Attached to Project"
-msgstr "Праект ужо прысутнічае"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
 msgstr ""
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
 msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
@@ -2292,7 +2357,7 @@ msgstr ""
 "Калі ласка пачакайце..."
 
 # штучны інтэлект нейкі
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
@@ -2301,12 +2366,12 @@ msgstr ""
 "(lookup_account.php/create_account.php)\n"
 
 # Няўдача пры спробе ўсталяваць злучэнне
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "Няўдача пры ўсталяванні злучэння"
 
 # Такіх доўгіх тэкстаў я яўэ не бачыў
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
 #, fuzzy
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
@@ -2318,7 +2383,7 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
@@ -2339,7 +2404,7 @@ msgstr ""
 "а BOINC не ведае аб гэтым."
 
 # Такіх доўгіх тэкстаў я яўэ не бачыў
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 #, fuzzy
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
@@ -2371,501 +2436,479 @@ msgstr ""
 "3) Вы выкарыстаеце проксі сервер для выхаду ў інтэрнэт,\n"
 "а BOINC не ведае аб гэтым."
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Параметры проксі сервера"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "HTTP проксі"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "Сервер:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "Аўтавызначэнне"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "SOCKS проксі"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr "&%s"
 
 # ?????? гэта аб чым
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr "Праверка бягучага стану."
 
 # ?
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr "BOINC не падлучаны ні да аднога праекту."
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr "Загрузка заданняў з сервера праекту."
 
 # наўтбук
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr "Апрацоўка прыпыненая: праца кампутара ад батарэяў."
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr "Апрацоўка прыпыненая: карыстач працуе."
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr "Апрацоўка прыпыненая карыстачом."
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr "Апрацоўка прыпыненая: забаронены час суткаў."
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr "Апрацоўка прыпыненая: запушчаны тэст прадукцыйнасці."
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr "Апрацоўка прыпыненая."
 
 # Арыгінальная фраза не соостветствует сэнсу таго месца дзе з'яўляецца.
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr "Пачакайце калі ласка."
 
 # ??? для тых хто не зазначыў, у папярэдняй аналагічнай фразе ёсць кропка
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr "Праверка бягучага стану"
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr "Няма заданняў для апрацоўкі"
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr "Не атрымалася падлучыцца да BOINC кліенту."
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Праект"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "Час"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Паведамленне"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Капіяваць усе паведамленні ў буфер абмену"
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 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 ""
 "Капіяваць вылучаныя паведамленні ў буфер абмену. Можна выкарыстаць SHIFT і "
 "CTRL для вылучэння некалькіх паведамленняў."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
 "Капіяваць вылучаныя паведамленні ў буфер абмену. Можна выкарыстаць SHIFT і "
 "CTRL для вылучэння некалькіх паведамленняў."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr "Дапамога па працы з праграмаю BOINC"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr "100 Мб"
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr "200 Мб"
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr "500 Мб"
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr "1 Гб"
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr "2 Гб"
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr "5 Гб"
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr "10 Гб"
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr "20 Гб"
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr "50 Гб"
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr "100 Гб"
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr "10%"
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr "20%"
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr "30%"
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr "40%"
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr "50%"
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr "60%"
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr "70%"
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr "80%"
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr "90%"
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr "100%"
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr "1"
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr "3"
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr "5"
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr "10"
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr "15"
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr "30"
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr "60"
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr "Вокладка"
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr "Вокладка:"
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr "Агульныя налады"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr "Змяніць параметры толькі для дадзенага кампутара."
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr "Змяняныя параметры"
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr "Апрацоўваць толькі з"
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr "Доступ у інтэрнэт толькі з"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr "Выкарыстаць не больш:"
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr "месцы на дыску"
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr "працэсара"
 
 # ...апалы
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr "Працаваць на батарэях?"
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr "Запуск апрацоўкі пры прастою:"
 
 # ?
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr "заўсёды"
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr "%d МБ"
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr "%4.2f ГБ"
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr "%d%%"
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr "працаваць заўсёды"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr "%d"
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr "Падлучыцца да яшчэ адному праекту размеркаваных вылічэнняў"
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr "Адкрыць акно з паведамленнямі."
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr "Прыпыніць усю апрацоўку і сеткавую актыўнасць"
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr "Аднавіць апрацоўку"
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr "Адкрыць акно з персанальнымі наладамі кліента"
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr "Измеенить знешні выгляд праграмы на больш падрабязны"
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr "%s. Удзельнікам %s зароблена: %0.2f ачкоў."
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "Вы сапраўды жадаеце адлучыцца ад праекту \"%s\"?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "Адлучэнне ад праекту"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr "%.1lf"
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr "%d гадзінаў %d хвілінаў %d секундаў"
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr ""
 "Вы ўпэўненыя, што жадаеце паказаць графічнае акно для прыкладання на "
 "выдаленым кампутары?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Паказаць графіку"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 #, fuzzy
 msgid "Application: "
 msgstr "Прыкладанне"
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 #, fuzzy
 msgid "Elapsed Time: "
 msgstr "Час перадачы"
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Праект часова недаступны"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2876,11 +2919,11 @@ msgstr ""
 "Паспрабуйце падлучыцца пазней."
 
 # ?
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "Мэнэджэр праектаў часова недаступны"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2890,37 +2933,37 @@ msgstr ""
 "\n"
 "Паспрабуйце падлучыцца пазней."
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "Увядзіце код доступу для працягу."
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr "Уведзены не правільны код доступу, паўторыце ўвод кода доступу"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Праверка правільнасці ўводу данных"
 
 # ???
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr "Пакажыце адрас электроннае пошты"
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr ""
 "Уведзены не правільны адрас электроннае пошты,\n"
 "паўторыце ўвод адрасу электроннае пошты."
 
 # ?
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "Не паказаны адрас (URL)"
 
 # ?
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2930,18 +2973,18 @@ msgstr ""
 "Прыклад:\n"
 "http://www.example.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "Не карэктны адрас (URL)"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2952,206 +2995,169 @@ msgstr ""
 "http://boincproject.example.com"
 
 # ?
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "Кампутар (хост) з імем: \"%s\" не знойдзены."
 
 # ?
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "Паказаны шлях: \"%s\" не існуе."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "Дзеянні"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Капіяваць усё"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Капіяваць вылучанае"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Паведамленні"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "Капіююцца ўсё паведамленні ў буфер абмену..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 #, fuzzy
 msgid "Copying selected messages to the clipboard..."
 msgstr "Капіююцца ўсё паведамленні ў буфер абмену..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 #, fuzzy
 msgid "Show all messages"
 msgstr "Капіяваць усё"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 #, fuzzy
 msgid "Copying selected messages to Clipboard..."
 msgstr "Капіююцца ўсё паведамленні ў буфер абмену..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Абнавіць"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr ""
 "Атрымаць інфармацыю з сервера праекту: аб пацверджанні перадачы завершаных "
 "заданняў, аб колькасці набраных ачкоў, аб наладах  запісу і (магчыма) "
 "запампоўцы новых заданняў."
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Прыпыніць"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr "Прыпыніць апрацоўку вылучанага праекту"
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr "Не запытваць заданні"
 
 # ?
 # дубль???
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr "Не запытваць новыя заданні з сервера праекту."
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Перазапусціць праект"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 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 ""
 "Выдаліць УСЕ файлы і заданні вылучанага праекту і запампаваць новыя.\n"
 "УВАГА: не забудзьце перад дадзенаю аперацыяю адправіць усе завершаныя "
 "заданні для дадзенага праекту :-)"
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Выдаліць праект"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr ""
 "Адлучыць дадзены кампутар ад вылучанага праекту. Апрацоўваемыя ў дадзены "
@@ -3159,419 +3165,354 @@ msgstr ""
 "УВАГА: не забудзьце перад дадзенаю аперацыяю адправіць усе завершаныя "
 "заданні для дадзенага праекту :-)"
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Уліковы запіс"
 
 # ??
 # Надпіс на кабінеце практолага "рамонт акуляраў"
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "Заробленыя ачкі"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr "У сярэднім за дзень"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Стан"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Праекты"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "Абнаўляецца інфармацыя аб праекце..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "Праект запускаецца..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "Прыпыняецца выкананне праекту..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr "Перадаецца запыт на дазвол атрымання новых заданняў для апрацоўкі..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "Перадаецца запыт на забарону атрымання новых заданняў для апрацоўкі..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "Праект перазапускаецца..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Вы сапраўды жадаеце перазапусціць праект \"%s\"?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Перазапуск праекту"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "Адлучэнне ад праекту..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "Загружаецца браўзэр..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Запусціць"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "Працягнуць апрацоўку вылучанага праекту"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "Атрымоўваць новыя заданні"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr "Запытваць новыя заданні з сервера праекту"
 
 # ???
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "Не запытваць новыя заданні з сервера праекту"
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Прыпынена карыстачом"
 
 # ???
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "Не запытваць новыя заданні"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Запыт інфармацыі ў планіроўніка"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "Паўтор праз "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Дыск"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 #, fuzzy
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr "BOINC не падлучаны ні да аднога праекту"
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 #, fuzzy
 msgid "used by BOINC: "
 msgstr "занята BOINC - "
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 #, fuzzy
 msgid "used by other programs: "
 msgstr "занята іншымі дадзенымі - "
 
 # Агульная колькасць ачкоў набраных удзельнікам
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Агульная колькасць ачкоў удзельніка"
 
 # Сярэдняя колькасць ачкоў якія набіраюцца ўдзельнікам за дзень
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Сярэдняя колькасць ачкоў за дзень"
 
 # Агульная колькасць ачкоў набраных на дадзеным хасце
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Агульная колькасць ачкоў для хаста"
 
 # Сярэдняя колькасць ачкоў якія набіраюцца дадзеным хастом за дзень
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Сярэдняя колькасць ачкоў за дзень для хаста"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
 msgstr "Інфармацыя абнаўлялася: %.0f дн. назад"
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Усяго ачкоў"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr "Паказаць агульную колькасць ачкоў набраных удзельнікам"
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "У сярэднім за дзень"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr "Паказаць сярэднюю колькасць ачкоў якія набіраюцца ўдзельнікам за дзень"
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Усяго ачкоў для хаста"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr "Паказаць агульную колькасць ачкоў набраных на дадзеным хасце"
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "У сярэднім для хаста"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr ""
 "Паказаць сярэднюю колькасць ачкоў якія набіраюцца дадзеным хастом за дзень"
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< Папярэдні"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr "Паказаць папярэдні праект (уверх)"
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "Наступны >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr "Паказаць наступны праект (уніз)"
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "Выгляд графікаў"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "Усе праекты"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr "Паказаць усе праекты, кожны праект на асобным графіку"
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "Адзін праект"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr "Паказаць адзін вылучаны праект"
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr "Усе праекты разам"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr "Паказаць усе праекты на адным графіцы"
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Статыстыка"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "Абнаўляецца графік..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Паўтарыць"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "Запусціць паўторную перадачу данных"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Выдаліць"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr ""
 "Выдаліць вылучаны перадаваны файл данных. УВАГА ачкі за выдалены файл могуць "
 "быць страчаныя."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "Файл"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Прагрэс"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Памер"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "Час перадачы"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Хуткасць"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Перадача"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "Паўторная спроба перадачы данных..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr ""
 "Перапыненне перадачы данных з наступным выдаленнем перадаванага файла..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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"
@@ -3581,38 +3522,46 @@ msgstr ""
 "перадаваны файл \"%s\"?\n"
 "УВАГА: ачкі за выдалены файл не налічаюцца."
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Перапыненне перадачы файла"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "Паўтор праз "
 
 # не вельмі
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr "Чаканне адпраўкі данных"
 
 # не вельмі
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "Чаканне загрузкі данных"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr "Перадача"
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 #, fuzzy
 msgid "Aborting transfer(s)..."
 msgstr ""
 "Перапыненне перадачы данных з наступным выдаленнем перадаванага файла..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 #, fuzzy
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
@@ -3623,79 +3572,84 @@ msgstr ""
 "перадаваны файл \"%s\"?\n"
 "УВАГА: ачкі за выдалены файл не налічаюцца."
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 #, fuzzy
 msgid "Abort File Transfer(s)"
 msgstr "Перапыненне перадачы файла"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "Паказаць акно прыкладання з графічнаю інфармацыяю"
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "Прыпыніць апрацоўку вылучанага задання"
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Перапыніць апрацоўку"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr ""
 "Перапыніць апрацоўку вылучанага задання (выдаліць заданне). Ачкі за "
 "перарваныя заданні не налічаюцца."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr ""
 
 # Імя
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Заданне"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "Засталося"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Заданні"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "Аднаўляецца апрацоўка раней прыпыненага задання..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "Прыпыняецца апрацоўка вылучанага задання..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "Адчыняецца акно прыкладання з графічнаю інфармацыяю..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Перарываецца апрацоўка вылучанага задання..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
@@ -3703,36 +3657,62 @@ msgstr ""
 "Вы ўпэўненыя, што жадаеце перапыніць апрацоўку вылучанага задання \"%s\"?\n"
 "(Прагрэс: %s, Стан: %s)"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "Перапыненне апрацоўкі задання"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Перарываецца апрацоўка вылучанага задання..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr "Працягнуць апрацоўку вылучанага задання."
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr "Прыпыніць апрацоўку вылучанага задання"
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr "Заданні"
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
@@ -3740,12 +3720,12 @@ msgstr ""
 "Вы ўпэўненыя, што жадаеце перапыніць апрацоўку вылучанага задання \"%s\"?\n"
 "(Прагрэс: %s, Стан: %s)"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3754,15 +3734,13 @@ msgid ""
 "listed on or managed via %s."
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
 msgstr ""
-"Дадзены майстар дапаможа вам падлучыцца\n"
-" да праекту размеркаваных вылічэнняў."
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3778,139 +3756,214 @@ msgid ""
 "World Community Grid then please click on the following button:"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
+#: clientgui/WelcomePage.cpp:301
+msgid "To continue, click Next."
+msgstr "Для працягу націсніце кнопку \"Далей\"."
+
+#: clientgui/WizardAttachProject.cpp:610
+msgid "Do you really want to cancel?"
+msgstr "Перапыніць працэс падлучэння ?"
 
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "Мэнэджэр праектаў"
+#: clientgui/WizardAttachProject.cpp:611
+msgid "Question"
+msgstr "Пытанне"
 
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"Дадзены майстар дапаможа вам падлучыцца\n"
-"да мэнэджэра праектаў.\n"
-"Калі вы жадаеце падлучыцца да праекту,\n"
-"націсніце \"Адмена\" і вылучыце ў меню\n"
-"\"Сэрвіс/Дадаць праект\"."
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
+msgid "&Next >"
+msgstr "Далей >"
+
+#: clientgui/wizardex.cpp:383
+msgid "< &Back"
+msgstr "< Назад"
+
+#: clientgui/wizardex.cpp:553
+msgid "&Finish"
+msgstr "Гатова"
 
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
+msgid "New page inserted. Index = %i"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
+msgid "New page appended. Index = %i"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
+msgid "Old Page Index = %i"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
+msgid "OnDropTarget: index by HitTest = %i"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
+#: clientgui/common/wxPieCtrl.cpp:66
+msgid "Pie Ctrl"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:427
-msgid "To continue, click Next."
-msgstr "Для працягу націсніце кнопку \"Далей\"."
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
-msgid "Do you really want to cancel?"
-msgstr "Перапыніць працэс падлучэння ?"
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
-msgid "Question"
-msgstr "Пытанне"
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
-msgid "&Next >"
-msgstr "Далей >"
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
 
-#: clientgui/wizardex.cpp:408
-msgid "< &Back"
-msgstr "< Назад"
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
 
-#: clientgui/wizardex.cpp:604
-msgid "&Finish"
-msgstr "Гатова"
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
-msgid "New page inserted. Index = %i"
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
-msgid "New page appended. Index = %i"
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
-msgid "Old Page Index = %i"
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
-msgid "OnDropTarget: index by HitTest = %i"
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
 msgstr ""
 
-#: clientgui/common/wxPieCtrl.cpp:66
-msgid "Pie Ctrl"
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 
+#, fuzzy
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "Зачыніць акно\tCTRL+W"
+
+#~ msgid "User information"
+#~ msgstr "Інфармацыя аб удзельніку"
+
+#~ msgid "Account Manager URL"
+#~ msgstr "Адрас мэнэджэра праектаў"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "Увядзіце адрас вылучанага мэнэджэра праектаў"
+
+#~ msgid "Close BOINC Manager Window."
+#~ msgstr "Зачыніць акно BOINC мэнэджэра."
+
+# ???
+# На жаль усё лепкае калісці заканчваецца :-)
+#~ msgid "Exit the %s"
+#~ msgstr "Завяршыць працу праграмы %s"
+
+# дубль (перакладу)
+#~ msgid "Attach to a project"
+#~ msgstr "Падлучыцца да яшчэ адному праекту размеркаваных вылічэнняў"
+
+#~ msgid "Attach to &account manager..."
+#~ msgstr "Злучыцца з мэнэджэрам праектаў..."
+
+#~ msgid "Attach to an account manager"
+#~ msgstr "Злучыцца з мэнэджэрам праектаў"
+
+#~ msgid "Attach to &project"
+#~ msgstr "Дадаць праект"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "Падлучэнне да праекту..."
+
+# ёсць некаторыя сумненні ў правільнасці перакладу :)
+#~ msgid "Removal from %s completed."
+#~ msgstr "Выдаленне %s завершанае."
+
+# Goblin forever
+#~ msgid "Removal succeeded!"
+#~ msgstr "Ура, усё выдалена!"
+
+#, fuzzy
+#~ msgid "Already Attached to Project"
+#~ msgstr "Праект ужо прысутнічае"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr ""
+#~ "Дадзены майстар дапаможа вам падлучыцца\n"
+#~ " да праекту размеркаваных вылічэнняў."
+
+#~ msgid "Account manager"
+#~ msgstr "Мэнэджэр праектаў"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to an account manager.\n"
+#~ "\n"
+#~ "If you want to attach to a single project, click Cancel,\n"
+#~ "then select the 'Attach to project' menu item instead."
+#~ msgstr ""
+#~ "Дадзены майстар дапаможа вам падлучыцца\n"
+#~ "да мэнэджэра праектаў.\n"
+#~ "Калі вы жадаеце падлучыцца да праекту,\n"
+#~ "націсніце \"Адмена\" і вылучыце ў меню\n"
+#~ "\"Сэрвіс/Дадаць праект\"."
+
 #~ msgid ""
 #~ "You can copy and paste the URL from your browser's\n"
 #~ "address bar."
@@ -3957,43 +4010,35 @@ msgstr ""
 #~ msgid "Retry &communications"
 #~ msgstr "Паўтарыць абмен дадзенымі з серверамі праектаў"
 
-#~ msgid "Report completed work, get latest credit, get latest preferences, and possibly get more work."
-#~ msgstr "Пацверджанне завершаных заданняў і запыт новых, атрыманне інфармацыі аб наладах і колькасці ачкоў."
+#~ msgid ""
+#~ "Report completed work, get latest credit, get latest preferences, and "
+#~ "possibly get more work."
+#~ msgstr ""
+#~ "Пацверджанне завершаных заданняў і запыт новых, атрыманне інфармацыі аб "
+#~ "наладах і колькасці ачкоў."
 
-#, c-format
 #~ msgid "&Defect from %s"
 #~ msgstr "Адлучыцца ад %s"
 
-#, c-format
 #~ msgid "BOINC Manager - Detach from %s"
 #~ msgstr "BOINC мэнэджэр - адлучэнне ад %s"
 
-#, c-format
-#~ msgid ""
-#~ "BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
-#~ "(Error code %d)"
-#~ msgstr ""
-#~ "BOINC або налады бяспекі наладжаныя не правільна; пераўсталюеце BOINC.\n"
-#~ "(Код памылкі %d)"
-
 # Апрацоўка прыпынена...
-#, c-format
 #~ msgid "%s is currently suspended...\n"
 #~ msgstr "%s - паўза ...\n"
 
-#, c-format
 #~ msgid "%s networking is currently suspended...\n"
 #~ msgstr "Аўтаномная праца %s ...\n"
 
-#, c-format
 #~ msgid "%s is currently reconnecting to a %s client...\n"
 #~ msgstr "%s спрабуе паўторна падлучыцца да %s кліенту...\n"
 
-#, c-format
 #~ msgid "%s is not currently connected to a %s client...\n"
 #~ msgstr "%s не падлучаны да  %s кліенту...\n"
 
-#~ msgid "A software platform for distributed computing using volunteered computer resources"
+#~ msgid ""
+#~ "A software platform for distributed computing using volunteered computer "
+#~ "resources"
 #~ msgstr ""
 #~ "Праграмная платформа для арганізацыі размеркаваных вылічэнняў\n"
 #~ " з выкарыстаннем кампутараў добраахвотнікаў"
@@ -4010,8 +4055,12 @@ msgstr ""
 #~ msgid "Reminder Frequency:"
 #~ msgstr "Інтэрвал паміж паўторамі:"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
-#~ msgstr "Інтэрвал, у хвілінах, паміж напамінкамі аб неабходнасці злучэння з інтэрнэтам."
+#~ msgid ""
+#~ "How often, in minutes, should the manager remind you of possible "
+#~ "connection events."
+#~ msgstr ""
+#~ "Інтэрвал, у хвілінах, паміж напамінкамі аб неабходнасці злучэння з "
+#~ "інтэрнэтам."
 
 #~ msgid "Project URL"
 #~ msgstr "Адрас праекту"
@@ -4049,7 +4098,6 @@ msgstr ""
 
 # ууууууууу якія канцэпты пайшлі, у амерыканцы даюць - пераход на ручное кіраванне ўжо прыдумалі.
 # думка - рухавік Прагрэсу
-#, c-format
 #~ msgid ""
 #~ "We'll now remove this computer from %s.  You will\n"
 #~ "be responsible for managing the BOINC client software from\n"
@@ -4079,11 +4127,17 @@ msgstr ""
 
 # my Spinhenge at home
 #~ msgid "View and modify your Spinhenge at home account profile and preferences"
-#~ msgstr "Прагляд і змена наладаў вашага  запісу і вашага профіля ў праекце Spinhenge at home"
+#~ msgstr ""
+#~ "Прагляд і змена наладаў вашага  запісу і вашага профіля ў праекце "
+#~ "Spinhenge at home"
 
 # my Spinhenge at home
-#~ msgid "View a listing of all the computers on which you are running Spinhenge at Home"
-#~ msgstr "Прагляд інфармацыі аб вашых кампутарах, якія ўдзельнічаюць у апрацоўцы заданняў праекту Spinhenge at Home"
+#~ msgid ""
+#~ "View a listing of all the computers on which you are running "
+#~ "Spinhenge at Home"
+#~ msgstr ""
+#~ "Прагляд інфармацыі аб вашых кампутарах, якія ўдзельнічаюць у апрацоўцы "
+#~ "заданняў праекту Spinhenge at Home"
 
 # my Spinhenge at home
 #~ msgid "View information about your team:"
@@ -4115,7 +4169,8 @@ msgstr ""
 
 # my Seti at home
 #~ msgid "View information about your team: www.elite-games.ru"
-#~ msgstr "Прагляд інфармацыі аб камандзе, да якой вы далучыліся: www.elite-games.ru"
+#~ msgstr ""
+#~ "Прагляд інфармацыі аб камандзе, да якой вы далучыліся: www.elite-games.ru"
 
 # my Primegrid
 #~ msgid "View detailed statistics"
@@ -4134,7 +4189,9 @@ msgstr ""
 #~ msgstr "Вашы паведамленні"
 
 # my Einstein
-#~ msgid "Links to messages that you have posted on the Einstein at Home message boards."
+#~ msgid ""
+#~ "Links to messages that you have posted on the Einstein at Home message "
+#~ "boards."
 #~ msgstr "Вашы паведамленні на форуме Einstein at Home."
 
 # my  SIMAP
@@ -4142,12 +4199,17 @@ msgstr ""
 #~ msgstr "Хатняя старонка праекту SIMAP at home"
 
 # my Rosetta
-#~ msgid "View a listing of all the computers on which you are running Rosetta at home"
-#~ msgstr "Прагляд інфармацыі аб вашых кампутарах, якія ўдзельнічаюць у апрацоўцы заданняў праекту Rosetta at home"
+#~ msgid ""
+#~ "View a listing of all the computers on which you are running Rosetta at home"
+#~ msgstr ""
+#~ "Прагляд інфармацыі аб вашых кампутарах, якія ўдзельнічаюць у апрацоўцы "
+#~ "заданняў праекту Rosetta at home"
 
 # my Rosetta
 #~ msgid "View and modify your Rosetta at home account profile and preferences"
-#~ msgstr "Прагляд і змена наладаў вашага  запісу і вашага профіля ў праекце Rosetta at home"
+#~ msgstr ""
+#~ "Прагляд і змена наладаў вашага  запісу і вашага профіля ў праекце "
+#~ "Rosetta at home"
 
 # my Rosetta
 #~ msgid "Correspond with other users on the Rosetta at home message boards"
@@ -4187,11 +4249,16 @@ msgstr ""
 
 # my RALPH at home
 #~ msgid "View and modify your RALPH at home account profile and preferences"
-#~ msgstr "Прагляд і змена наладаў вашага  запісу і вашага профіля ў праекце RALPH at home"
+#~ msgstr ""
+#~ "Прагляд і змена наладаў вашага  запісу і вашага профіля ў праекце "
+#~ "RALPH at home"
 
 # my RALPH at home
-#~ msgid "View a listing of all the computers on which you are running RALPH at home"
-#~ msgstr "Прагляд інфармацыі аб вашых кампутарах, якія ўдзельнічаюць у апрацоўцы заданняў праекту RALPH at home"
+#~ msgid ""
+#~ "View a listing of all the computers on which you are running RALPH at home"
+#~ msgstr ""
+#~ "Прагляд інфармацыі аб вашых кампутарах, якія ўдзельнічаюць у апрацоўцы "
+#~ "заданняў праекту RALPH at home"
 
 # my SETI at Home
 #~ msgid "Donate"
@@ -4219,7 +4286,9 @@ msgstr ""
 
 # my CPDN
 #~ msgid "Get help from project staff and users with the experiment"
-#~ msgstr "Тут можна атрымаць дапамогу па праекце і эксперыментам ад арганізатараў і ўдзельнікаў."
+#~ msgstr ""
+#~ "Тут можна атрымаць дапамогу па праекце і эксперыментам ад арганізатараў і "
+#~ "ўдзельнікаў."
 
 # my CPDN
 #~ msgid "User Forum"
diff --git a/locale/be/BOINC-Web.po b/locale/be/BOINC-Web.po
index 4df82a4..02cb2c8 100644
--- a/locale/be/BOINC-Web.po
+++ b/locale/be/BOINC-Web.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Web 6.x\n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
 "PO-Revision-Date: 2007-02-15 19:18+0200\n"
 "Last-Translator: Drive DRKA <drka2003 at mail.ru>\n"
 "Language-Team: Drive DRKA RTL <drkacorp at gmail.com>\n"
@@ -18,386 +18,312 @@ msgstr ""
 "X-Poedit-Country: UNITED STATES\n"
 "X-Poedit-KeywordsList: tra\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
 msgstr ""
 
-"
-
+#: poll.inc:47
 msgid "Other:"
 msgstr ""
 
-"
-
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
 msgstr ""
 
-"
-
+#: poll_data.inc:22
 msgid "less than a week"
 msgstr ""
 
-"
-
+#: poll_data.inc:23
 msgid "less than a month"
 msgstr ""
 
-"
-
+#: poll_data.inc:24
 msgid "less than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:25
 msgid "more than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:34
 msgid "I lost interest"
 msgstr ""
 
-"
-
+#: poll_data.inc:35
 msgid "it was too complicated"
 msgstr ""
 
-"
-
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
 msgstr ""
 
-"
-
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:38
 msgid "it used too much electricity"
 msgstr ""
 
-"
-
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr ""
 
-"
-
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
 msgstr ""
 
-"
-
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
 msgstr ""
 
-"
-
+#: poll_data.inc:50
 msgid "I had network communication problems"
 msgstr ""
 
-"
-
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
 msgstr ""
 
-"
-
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr ""
 
-"
-
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
 msgstr ""
 
-"
-
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr ""
 
-"
-
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr ""
 
-"
-
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr ""
 
-"
-
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr ""
 
-"
-
+#: poll_data.inc:87
 msgid "Home"
 msgstr ""
 
-"
-
+#: poll_data.inc:88
 msgid "Work"
 msgstr ""
 
-"
-
+#: poll_data.inc:89
 msgid "School"
 msgstr ""
 
-"
-
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr ""
 
-"
-
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr ""
 
-"
-
+#: poll_data.inc:119
 msgid "Age"
 msgstr ""
 
-"
-
+#: poll_data.inc:129
 msgid "Sex"
 msgstr ""
 
-"
-
+#: poll_data.inc:131
 msgid "Male"
 msgstr ""
 
-"
-
+#: poll_data.inc:132
 msgid "Female"
 msgstr ""
 
-"
-
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr ""
 
-"
-
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr ""
 
-"
-
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr ""
 
-"
-
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr ""
 
-"
-
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr ""
 
-"
-
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr ""
 
-"
-
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
 msgstr ""
 
-"
-
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr ""
 
-"
-
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr ""
 
-"
-
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr ""
 
-"
-
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr ""
 
-"
-
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr ""
 
-"
-
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr ""
 
-"
-
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr ""
 
-"
-
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr ""
 
-"
-
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr ""
 
-"
-
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr ""
 
-"
-
+#: poll_data.inc:192
 msgid "Yes"
 msgstr ""
 
-"
-
+#: poll_data.inc:193
 msgid "No"
 msgstr ""
 
-"
-
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr ""
 
-"
-
+#: poll_data.inc:200
 msgid "to read information"
 msgstr ""
 
-"
-
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr ""
 
-"
-
+#: poll_data.inc:202
 msgid "None"
 msgstr ""
 
-"
-
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr ""
 
-"
-
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr ""
 
-"
-
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr ""
 
-"
-
+#: download.php:40
 msgid "Download BOINC"
 msgstr ""
 
-"
-
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr ""
 
-"
-
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -405,41 +331,34 @@ msgid ""
 "computer, you can connect it to as many of these projects as you like."
 msgstr ""
 
-"
-
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
 "(GPU), you may be able to %suse it to compute faster%s"
 msgstr ""
 
-"
-
+#: download.php:120
 msgid "System requirements"
 msgstr ""
 
-"
-
+#: download.php:121
 msgid "Release notes"
 msgstr ""
 
-"
-
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr ""
 
-"
-
+#: download.php:123
 msgid "All versions"
 msgstr ""
 
-"
-
+#: download.php:141
 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 "
@@ -448,8 +367,7 @@ msgid ""
 "problems you might have."
 msgstr ""
 
-"
-
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -458,8 +376,7 @@ msgid ""
 "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 "
@@ -467,20 +384,17 @@ msgid ""
 "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 "
@@ -488,30 +402,70 @@ msgid ""
 "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 ""
 
-"
+#: index.php:23
+msgid "Computing power"
+msgstr ""
 
-msgid "Volunteer"
+#: index.php:25
+msgid "Top 100 volunteers"
 msgstr ""
 
-"
+#: index.php:26
+msgid "Statistics"
+msgstr ""
 
-msgid "Download"
+#: index.php:53
+msgid "Active:"
 msgstr ""
 
-"
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
 
-msgid "Documentation"
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
 msgstr ""
 
-"
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
 
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -520,28 +474,92 @@ msgid ""
 "sDownload%s and run BOINC software  %sEnter%s an email address and password. "
 msgstr ""
 
-"
-
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
 "sGridRepublic%s or %sBAM!%s. "
 msgstr ""
 
-"
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
 
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
 
-"
-
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr ""
 
-"
-
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -554,84 +572,68 @@ msgid ""
 "href=poll_results.php>here</a>. "
 msgstr ""
 
-"
-
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr ""
 
-"
-
+#: poll.php:30
 msgid "Your participation"
 msgstr ""
 
-"
-
+#: poll.php:32
 msgid "Your computers"
 msgstr ""
 
-"
-
+#: poll.php:34
 msgid "You"
 msgstr ""
 
-"
-
+#: poll.php:39
 msgid "Nationality"
 msgstr ""
 
-"
-
+#: poll.php:44
 msgid "Comments"
 msgstr ""
 
-"
-
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
 msgstr ""
 
-"
-
+#: poll.php:50
 msgid "When done click:"
 msgstr ""
 
-"
-
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
 msgstr ""
 
-"
-
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr ""
 
-"
-
+#: poll_results.php:195
 msgid "Survey results"
 msgstr ""
 
-"
-
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
 msgstr ""
 
-"
-
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 #~ msgid "CHARSET"
 #~ msgstr "UTF-8"
diff --git a/locale/be/pootle-boincclient610-be.prefs b/locale/be/pootle-boincclient610-be.prefs
new file mode 100644
index 0000000..1271ac4
--- /dev/null
+++ b/locale/be/pootle-boincclient610-be.prefs
@@ -0,0 +1,7 @@
+# Pootle preferences for project boinctrunk, language be
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/be/pootle-boinctrunk-be.prefs b/locale/be/pootle-boinctrunk-be.prefs
deleted file mode 100644
index 3f3ad3c..0000000
--- a/locale/be/pootle-boinctrunk-be.prefs
+++ /dev/null
@@ -1,2 +0,0 @@
-# Pootle preferences for project boinctrunk, language be
-
diff --git a/locale/bg/BOINC-Manager.mo b/locale/bg/BOINC-Manager.mo
index 047dbad..e6e85d2 100644
Binary files a/locale/bg/BOINC-Manager.mo and b/locale/bg/BOINC-Manager.mo differ
diff --git a/locale/bg/BOINC-Manager.po b/locale/bg/BOINC-Manager.po
index 84913dd..d70ce1e 100644
--- a/locale/bg/BOINC-Manager.po
+++ b/locale/bg/BOINC-Manager.po
@@ -1,455 +1,516 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 6.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
 "PO-Revision-Date: 2009-01-05 15:51-0500\n"
 "Last-Translator: Son Goku 3SSJ <timeros at gmail.com>\n"
 "Language-Team: AMD Powered @ Home Team <timeros at gmail.com>\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Translate Toolkit 1.2.1\n"
 "X-Poedit-Language: English\n"
 "X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: iso-8859-1\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: UNITED STATES\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "Информация за потребителя"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "Вече участваш ли в този проект?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "&Не, нов потребител"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "&Да, съществуващ потребител"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "Парола:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "Избери си &парола:"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "Потвърди паролата: "
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr "Потребит. име:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "Email адрес:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr "минимална дължина %d"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "Влез в проект"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "Обнови акаунт менажера"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "Прикрепи Акаунт Менажера"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr ""
 "Минималната дължина на паролата за този проект е %d. Моля изберете друга "
 "парола."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
 "Минималната дължина на паролата за този акаунт менажер е %d. Моля посочете "
 "друга парола. "
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr "Паролата и повторената парола не са еднакви. Моля напишете ги отново. "
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "URL на акаунт менажера:"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Въведете URL-то на уеб сайта на акаунт менажера"
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "URL на акаунт менажера:"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr "Свързване към %s."
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr "Свързване към сървъра. "
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "Моля изчакай..."
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr "Случи се грешка на сървъра. \n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Свързан"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Прекъснат"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
-msgstr "Излиза от %s. "
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "&Изход"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:345
-#, fuzzy
-msgid "Attach to &project..."
-msgstr "Влез в проект"
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "Влез в проект"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:350
-#, fuzzy
-msgid "Attach to &account manager..."
-msgstr "Прикрепи Акаунт Менажера"
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Прикрепи Акаунт Менажер"
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr "&Синхронизирай с %s"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr "Взима текущите настройки от %s. "
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+#, fuzzy
+msgid "Attach to &project..."
+msgstr "Влез в проект"
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Влез в проект, за да започнеш да обработваш работа"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Премахва клиента от контрола на акаунт менажера."
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "Работи &винаги"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr "Позволява работата независимо от предпочитанията. "
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "Работи на база на &предпочитанията"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "Позволява работата на база на твоите предпочитания. "
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "&Временно прекратяване"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr "Спира работата независимо от предпочитанията. "
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+#, fuzzy
+msgid "Allow GPU work regardless of preferences"
+msgstr "Позволява работата независимо от предпочитанията. "
+
+#: clientgui/AdvancedFrame.cpp:473
+#, fuzzy
+msgid "Use GPU based on &preferences"
+msgstr "Работи на база на &предпочитанията"
+
+#: clientgui/AdvancedFrame.cpp:474
+#, fuzzy
+msgid "Allow GPU work according to your preferences"
+msgstr "Позволява работата на база на твоите предпочитания. "
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+#, fuzzy
+msgid "Stop GPU work regardless of preferences"
+msgstr "Спира работата независимо от предпочитанията. "
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "&Мрежова активност винаги възможна"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr "Позволява Интернет дейности независимо от предпочитанията. "
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+#, fuzzy
+msgid "Network activity based on pre&ferences"
 msgstr "Мрежовата активност на база на &предпочитанията"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr "Позволява интернет дейности на база на твоите предпочитания. "
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+#, fuzzy
+msgid "Network activity s&uspended"
 msgstr "&Мрежовата дейност временно прекратена"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr "Спира Интернет дейностите на BOINC. "
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "Настройка на GUI опциите и прокси настройките"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
 msgid "Connect to another computer running %s"
 msgstr "Свържи се с друг компютър, който има стартиран %s. "
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "Избери компютър..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "Пусни CPU &диагностика"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "Стартира  BOINC CPU диагностика"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "Премахва клиента от контрола на акаунт менажера."
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "Влез в проект"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "Влез в проект, за да започнеш да обработваш работа"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "Show information about %s"
 msgstr "Показва информация за %s."
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr "Показва информация за %s."
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr "%s &website"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
 msgid "Show information about BOINC and %s"
 msgstr "Показва инфоррмация за BOINC и %s."
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr "&Относно %s..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "Лицензионна и copyright информация."
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "&Файл"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "&Инструменти"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "&Дейности"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "&Помощ"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -463,59 +524,65 @@ msgstr ""
 "\n"
 "Сигурен ли си, че искаш да излезеш от %s?"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "Влизане в проект..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "Опитвам отново комуникацията с проектите..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr "%s -Избор на език"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr ""
 "Езикът по подразбиране на %sбеше променен, за да влезе в сила промяната "
 "трябва да рестартираш %s."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Опитвам отново комуникацията с проектите..."
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "Свързване към %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "Connected to %s (%s)"
 msgstr "Свързан към %s"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "Потребителското име е вече заето"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -527,11 +594,11 @@ msgstr ""
 "\n"
 "Посети уеб сайта на проектаи следвай инструкциите там."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "Email адреса вече е използван"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -543,42 +610,57 @@ msgstr ""
 "\n"
 "Моля посетете сайта на проекта и следвайте указаните инструкции. "
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1229
+#, fuzzy
+msgid "Cancel"
+msgstr "&Отказ"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr "%s - Грешка при връзката"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "Паролата, която въведохте е грешна, моля опитайте отново. "
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - Връзката провалена"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
@@ -586,34 +668,33 @@ msgstr ""
 "%sне можа да се свърже към %s клиент.\n"
 "Изкаш ли да опиташ отново?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr "%s - Статус на връзката"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
 #, c-format
-#, fuzzy
+#, fuzzy, 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"
@@ -624,31 +705,29 @@ msgstr ""
 "се свързеш към %s client.\n"
 "За да се свързеш към локалния компютър използвай 'localhost' име на хоста."
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Web сайтове"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr "%s - Статус на връзката"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
 "Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
@@ -656,33 +735,32 @@ msgstr ""
 "%s трябва да се свърже с Интернет.\n"
 "Може ли да го направи сега?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s се свързва към Интернет."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
 "Please connect to the Internet, or select a default connection\n"
 "using Advanced/Options/Connections."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s успя да се свърже към Интернет."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "%s не успя да се свърже към Интернет."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
@@ -690,117 +768,147 @@ msgstr ""
 "%s установи, че е свързан към Интернет. Обновяване на всички проекти и "
 "бъзстановяване на всички трансфери. "
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s успя да се изключи от Интернет."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s не успя да се изключи от Интернет. "
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "BOINC Manager"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr "Стартирай BOINC  така че само system tray иконата е видима"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Автоматичен избор)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Непознат)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Дефиниран от потребителя)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 #, fuzzy
 msgid "Network activity is suspended."
 msgstr "&Мрежовата дейност временно прекратена"
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr "Отвори %s уеб стрницата..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr "Отвори %s..."
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "Неуспешно влизане в проекта"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr "Неуспех при обновяваенто на акаунт менажера"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr "Неуспех при премахването на акаунт менажера"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "Неуспех при прикрепянето към акаунт менажера. "
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -808,27 +916,26 @@ msgid ""
 "Click Finish to close."
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "Натисни Приключи, за да затвориш прозореца. "
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "Съобщения от сървъра: "
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "Влязъл в проекта"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "Успешно успя да се прикрепиш към този проект. "
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -836,481 +943,473 @@ msgstr ""
 "Когато натиснеш Приключи, твоят уеб браузър ще отиде на страница,\n"
 "където можеш да настроиш твоя акаунт"
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr "Обновяването от %s приключи!"
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "Обновяването приключи. "
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr "Премахването от %s е завършено. "
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "Премахването узпешно!"
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr "Прикрепен към %s"
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "Прокрепен към акаунт менажер"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
 msgstr "Добре дошъл в %s!"
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr ""
 "Успешно успя да се прикрепиш към %s системата.\n"
 "%s"
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "Успешно успяхте да се прикрепите към този акаунт менажер. "
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr "Относно %s"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "Версия: "
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Copyright:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 #, fuzzy
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
 "(C) 2003-2006 Калифорнийския Университет в Бъркли.\n"
 "Всички права запазени."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr "Berkeley Open Infrastructure for Network Computing"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "&OK"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
 "Click Clear to restore web-based settings."
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
 msgid "% of the processors"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
 #, no-c-format
-#, fuzzy
+#, fuzzy, no-c-format
 msgid "% CPU time"
 msgstr "CPU време"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-#, fuzzy
-msgid "Cancel"
-msgstr "&Отказ"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "&Помощ"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1320,8 +1419,8 @@ msgid ""
 "exit the Manager, then choose from the following options:"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1331,538 +1430,496 @@ msgid ""
 "tasks at the times you selected in your preferences."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "&Отказ"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "Основни"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 #, fuzzy
 msgid "User name"
 msgstr "Потребит. име"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Дял ресурси"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 #, fuzzy
 msgid "Attached via account manager"
 msgstr "Прокрепен към акаунт менажер"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Приложение"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Срок за Докладване "
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "CPU време"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 #, fuzzy
 msgid "Elapsed time"
 msgstr "Изминало време"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Ново"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "Свалянето неуспешно"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "Сваляне"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "Проектът преустановен от потребителя"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Временно прекратено"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 #, fuzzy
 msgid " - CPU benchmarks"
 msgstr "Пусни CPU &диагностика"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "Работи"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Грешка при изчисленията"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "Изпращането неуспешно"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "Изпращане"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Преустановено от потребителя"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Потвърдено"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "Готово за докладване"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Грешка: Невалидно състояние '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "Dial-up и Virtual Private Network настройки"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "И&збере стойност по подразбиране"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "&Изчисти стойностите по подразбиране"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Връзка по подразбиране"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Връзки"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Свързвай се чрез HTTP прокси сървър"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "Настройки на HTTP прокси сървър"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Адрес:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Порт:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Остави тези полета празни ако не са нужни"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Потребит. име"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Парола:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "HTTP прокси"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Свързвай се чрез SOCKS прокси сървър"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "Настройки на SOCKS прокси сървър"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "SOCKS прокси"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
 msgid "%s - Select Computer"
 msgstr ""
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Име на хоста:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s - Не може да се намери браузър"
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
+#, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1878,230 +1935,225 @@ msgstr ""
 "BROWSER да е пътят до твоя любим уеб браузър,\n"
 "след това рестартирай %s."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "Форуми"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "Общувай с други потребители във форумите на SETI at home"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "Задавай въпроси и докладвай проблеми"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "Вашият акаунт"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "Виж информация за твоя акаунт и общия кредит"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "Вашите Преференции"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr "Виж и промени твоя SETI at home профил на акаунта и преференции"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "Вашите резултати"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr "Виж твоите работа и резултати от последната седмица (и повече)"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "Вашите компютри"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr "Виж списък на всички компютри, които работят по SETI at home "
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "Вашият отбор"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "Виж информация за твоя отбор"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "Често задавани въпроси"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "Прочети списъка с често задаваните въпроси (FAQ) относно Einstein at Home "
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "Информация за скрийнсейвъра"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "Прочети подробното описание на скрийнсейвъра на Einstein at Home."
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr "Общувай с админи и други потребители във  форума на Einstein at Home"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "Einstein статус"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Текущия статус на Einstein at Home сървъра"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "Докладваай проблеми"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr "Линк към форума на Einstein at Home за проблеми и бъгове"
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr "Вий и промени профила и предпочитанията на твоя Einstein at Home акаунт"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "Обща информация за акаунта"
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr "Виж списък със всички компютри, на които работиш с Einstein at Home"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "LIGO проекта"
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr ""
 "Началната страница на  Laser Interferometer Gravitational-wave Observatory "
 "(LIGO) проекта"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "GEO-600 проекта"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "Началната страница на GEO-600 проекта"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Отбор"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "Информация за твоя отбор"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "Помощ относно climateprediction.net"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "Норювини"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "climateprediction.net Новини"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr "Виж информация за твоя акаунт, кредити и trickles"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "Информация за теоя отбор"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr "Търси помощ в нашата система за помощ"
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "Глобални статистики"
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "Общи статистики за World Community Grid"
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr ""
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "Твоите статистики и настройки"
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr "Профили на устройството"
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr "Обнови настройките на устройството. "
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr ""
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "Научи повече за проектите на World Community Grid. "
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr ""
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "Обработвам състоянието на системата; моля изчакайте..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "Обработвам информацията за хоста; моля изчакайте..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "Няма връзка към Интернет. "
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Моля свържи се към Интернет и опитай отново. "
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Проекта не е намерен"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2111,11 +2163,11 @@ msgstr ""
 "\n"
 "Моля провери URL-то и опитай отново. "
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "Акаунт менажера не е намерен. "
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2127,50 +2179,60 @@ msgstr ""
 "\n"
 "Моля провери URL-то и опитай отново. "
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr "Проверете потребителсото име и парола и опитайте отново."
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr "Проверете email-а и парола и опитайте отново."
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "URL на Проекта:"
 
-#: clientgui/ProjectInfoPage.cpp:320
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:321
-#, fuzzy
-msgid "Already Attached to Project"
-msgstr "Вече си прикрепен към проекта"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
 msgstr ""
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
 msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
@@ -2178,7 +2240,7 @@ msgstr ""
 "Свързвам се към проекта \n"
 "Моля изчакай..."
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
@@ -2186,11 +2248,12 @@ msgstr ""
 "Нужните файл(ове) за магьосника липсват от избрания сървър. \n"
 "(lookup_account.php/create_account.php)\n"
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "Грешка при връзката"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
+#, fuzzy
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2201,13 +2264,23 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
+"BOINC ен успя да се свърже с Интернет. Най-честите причини\n"
+"за това са:\n"
+"\n"
+"1)Личната ти защитна стена блокира BOINC. Ти трябва да\n"
+"настроиш ли4ната ти защитна стена да позволява на BOINC \n"
+"да комуникира на порт 80. Когато това е направено, натисни\n"
+"Назад и опитай отново. \n"
+"\n"
+"2)Изполваш прокси сървър и BOINC трябва да знае за него"
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
+#, fuzzy
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2223,494 +2296,481 @@ msgid ""
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
+"BOINC ен успя да се свърже с Интернет. Най-честите причини\n"
+"за това са:\n"
+"\n"
+"1)Личната ти защитна стена блокира BOINC. Ти трябва да\n"
+"настроиш ли4ната ти защитна стена да позволява на BOINC \n"
+"да комуникира на порт 80. Когато това е направено, натисни\n"
+"Назад и опитай отново. \n"
+"\n"
+"2)Изполваш прокси сървър и BOINC трябва да знае за него"
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Прокси Настройки"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "HTTP прокси"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "Сървър: "
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "Автоматично засичане"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "SOCKS прокси"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Проект"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "Време"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Съобщение"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Копира всички съобщения в clipboard."
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 #, fuzzy
 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 ""
 "Копира избраните съобщения в clipboard. Може да изберете някоко съобщения "
 "като задържите клавиша Shift  или Ctrl, докато кликате на съобщенията."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
 "Копира избраните съобщения в clipboard. Може да изберете някоко съобщения "
 "като задържите клавиша Shift  или Ctrl, докато кликате на съобщенията."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "Сигурни ли сте, че искате да излезете от проекта '%s'?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "Излез от проекта"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr "Сигурни ли сте че искате да показвате графики на отдалечена машина?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Покажи графики"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 #, fuzzy
 msgid "Application: "
 msgstr "Приложение"
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 #, fuzzy
 msgid "Elapsed Time: "
 msgstr "Изминало време"
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Проекта временно недостъпен"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2720,11 +2780,11 @@ msgstr ""
 "\n"
 "Моля опитай отново. "
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "Акаунт менажера е временно недостъпен."
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2734,32 +2794,32 @@ msgstr ""
 "\n"
 "Моля опитай отново. "
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "Моля посочете ключ на акаунта, за да продължите. "
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr "Невалиден ключ на акаунта; моля въведете валиден ключ на акаунта"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Валидационен конфликт"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr ""
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr "Невалиден email адрес; Моля въведете валиден email адрес"
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "Липсващо URL"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2769,18 +2829,18 @@ msgstr ""
 "Например:\n"
 "http://www.example.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "Невалидно URL"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2790,606 +2850,504 @@ msgstr ""
 "Например:\n"
 "http://boincproject.example.com"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "'%s' не съдържа валидно име на хоста. "
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "'%s' не съдържа валиден път. "
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "&Команди"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Копирай всички съобщения"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Копирай избраните съобщения"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Съобщения"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "Копиране на всички съобщения в clipboard..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 #, fuzzy
 msgid "Copying selected messages to the clipboard..."
 msgstr "Копиране на всички съобщения в clipboard..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 #, fuzzy
 msgid "Show all messages"
 msgstr "Копирай всички съобщения"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 #, fuzzy
 msgid "Copying selected messages to Clipboard..."
 msgstr "Копиране на всички съобщения в clipboard..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Обнови проекта"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr ""
 "Докладва всички приключили задачи, обновява кредитите, преференциите и е "
 "възможно да вземе нови задачи. "
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Временно прекратяване"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr "Временно прекратява задачите по този проект. "
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr "Без нови задачи"
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr "Не взимай нови задачи за този проект. "
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Рестартирай проекта"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 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 ""
 "Изтрива всички файлове асоциирани с този проект, и взима нови задачи. Можеш "
 "първо да обновиш проекта, за да  докладваш завършените задачи. "
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Излез от проекта"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr ""
 "Излиза от този проект. Задачите, по които се работи, ще бъдат загубени "
 "използвай \"Обнови\", за да докладваш всички завършени задачи)."
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Акаунт"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "Свършена работа"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr "Ср. свършена работа"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Стаус"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Проекти"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "Обновяване на проекта..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "Подновяване на проекта..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "Временно прекратяване на проекта..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr "Казвам на проекта да позволи взимането на нови задачи..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "Казвам на проекта да не взима нови задачи..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "Рестатртиране на проекта..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Сигурни ли сте, че искате да рестартирате проекта '%s'?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Рестартирай проекта"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "Излизане от проекта..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "Стартиране на браузъра..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Подновяване"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "Подновява работите по този проект."
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "Позволи нови задачи"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr "Позволява взимането на нови задачи за този проект. "
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "Не взимай нови задачи за този проект."
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Преустановено от потрбителя"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "Няма да взима нови задачи"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Заявка към scheduler-а се очаква"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "Връзката отложена за "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Диск"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Общ кредит на потребителя"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Среден кредит на потребителя"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Общ кредит на хоста"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Среден кредит на хоста"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Общ кредит на потребителя"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "Среден кредит на потрбителя"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Общ кредит на хоста"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "Среден кредит на хоста"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< &Предходен проект"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "&Следващ проект >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "Вид изглед"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "Всички проекти"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "Един проект"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr "Всички проекти(сума)"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Статистики"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "Обновяване на графиките..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Опитай отново сега"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "Натиснете \"Опитай отново сега\", за да трансферирате файла сега. "
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Преустанови трансфера"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr ""
 "Натиснете \"Преустанови трансфера\", за да изтриете файла от списъка за "
 "сваляне. По този начин няма да получите кредити за този резултат."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "Файл"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Прогрес"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Размер"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "Изминало време"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Скорост"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Трансфери"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "Опитвам отново сега..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "Преустановяване на трансфера..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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"
@@ -3399,35 +3357,43 @@ msgstr ""
 "ВНИМАНИЕ: Прекратяването на трансфера ще направи\n"
 "невалидна задачата и ти няма да получиш кредити за нея."
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Преустановява трансфера на файла"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "Нов опит след "
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr "Очаква качване"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "Очаква сваляне"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 #, fuzzy
 msgid "Aborting transfer(s)..."
 msgstr "Преустановяване на трансфера..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 #, fuzzy
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
@@ -3438,76 +3404,81 @@ msgstr ""
 "ВНИМАНИЕ: Прекратяването на трансфера ще направи\n"
 "невалидна задачата и ти няма да получиш кредити за нея."
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 #, fuzzy
 msgid "Abort File Transfer(s)"
 msgstr "Преустановява трансфера на файла"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "Показва графиките в прозорец. "
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "Временно преустановява работата по този резултат."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Преустанови"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr "Изоставя работата по резултата. Няма да получите кредит за него."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Име"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "Остават"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Задачи"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "Подновяване на задачата..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "Временно прекратяване на задачата..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "Показване на графики за задачата..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Преустановяване на резултата..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
@@ -3515,38 +3486,63 @@ msgstr ""
 "Сигурни ли сте, че искате да преустановиш тази задача  '%s'?\n"
 "(Прогрес: %s, Статус: %s)"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "Прекрати задачата"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Преустановяване на резултата..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr "Подновява работата по тази задача. "
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr "Временно прекратява работата по тази задача. "
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
@@ -3554,12 +3550,12 @@ msgstr ""
 "Сигурни ли сте, че искате да преустановиш тази задача  '%s'?\n"
 "(Прогрес: %s, Статус: %s)"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3568,14 +3564,13 @@ msgid ""
 "listed on or managed via %s."
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:350
-#, fuzzy
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
-msgstr "Сега ще те преведем през процеса на добавяне на нов проект. "
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3591,139 +3586,222 @@ msgid ""
 "World Community Grid then please click on the following button:"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "Акаунт менажер"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "Debug Flags"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "Грешка при Настройките на Проекта"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "Грешка на URL-то за Настройки на Проекта"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "Създаването на акаунти временно преустановено"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "Създаването на акаунти е преустановено. "
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "Акаунта вече съществува"
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "Проекта вече е добавен. "
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "Грешка при добавянето на проекта"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "Грешка при установяването на връзка към Интернет"
-
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "За да продължите, натиснете Натаък. "
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "Съгурни ли сте че искате да се откажете?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "Въпрос"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "На&пред >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< На&зад"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "&Проключи"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
 msgid "New page inserted. Index = %i"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
 msgid "New page appended. Index = %i"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
 msgid "Old Page Index = %i"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr ""
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 
+#~ msgid "User information"
+#~ msgstr "Информация за потребителя"
+
+#~ msgid "Account Manager URL"
+#~ msgstr "URL на акаунт менажера:"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "Въведете URL-то на уеб сайта на акаунт менажера"
+
+#~ msgid "Exit the %s"
+#~ msgstr "Излиза от %s. "
+
+#~ msgid "Attach to a project"
+#~ msgstr "Влез в проект"
+
+#, fuzzy
+#~ msgid "Attach to &account manager..."
+#~ msgstr "Прикрепи Акаунт Менажера"
+
+#~ msgid "Attach to an account manager"
+#~ msgstr "Прикрепи Акаунт Менажер"
+
+#~ msgid "Attach to &project"
+#~ msgstr "Влез в проект"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "Влизане в проект..."
+
+#~ msgid "Removal from %s completed."
+#~ msgstr "Премахването от %s е завършено. "
+
+#~ msgid "Removal succeeded!"
+#~ msgstr "Премахването узпешно!"
+
+#, fuzzy
+#~ msgid "Already Attached to Project"
+#~ msgstr "Вече си прикрепен към проекта"
+
+#, fuzzy
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr "Сега ще те преведем през процеса на добавяне на нов проект. "
+
+#~ msgid "Account manager"
+#~ msgstr "Акаунт менажер"
+
+#~ msgid "Debug Flags"
+#~ msgstr "Debug Flags"
+
+#~ msgid "Project Properties Failure"
+#~ msgstr "Грешка при Настройките на Проекта"
+
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "Грешка на URL-то за Настройки на Проекта"
+
+#~ msgid "Account Creation Disabled"
+#~ msgstr "Създаването на акаунти временно преустановено"
+
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "Създаването на акаунти е преустановено. "
+
+#~ msgid "Account Already Exists"
+#~ msgstr "Акаунта вече съществува"
+
+#~ msgid "Project Already Attached"
+#~ msgstr "Проекта вече е добавен. "
+
+#~ msgid "Project Attach Failure"
+#~ msgstr "Грешка при добавянето на проекта"
+
+#~ msgid "Net Detection Failure"
+#~ msgstr "Грешка при установяването на връзка към Интернет"
+
 #, fuzzy
 #~ msgid ""
 #~ "You can copy and paste the URL from your browser's\n"
 #~ "address bar."
-#~ msgstr "Можеш да копираш и пейстнеш URLто от адресния панел на твоя браузър. "
+#~ msgstr ""
+#~ "Можеш да копираш и пейстнеш URLто от адресния панел на твоя браузър. "
 
 #, fuzzy
 #~ msgid "For a list of account managers go to:"
@@ -3769,18 +3847,24 @@ msgstr ""
 #~ msgid "Account key:"
 #~ msgstr "Ключ на акаунта:"
 
-#, c-format
-#~ msgid "%s needs a connection to the Internet to perform some maintenance, open the %s to connect up and perform the needed work."
-#~ msgstr "%s се нуждае от връзка към Интернет за подръжка, отвори %s, за да се свържеш и да свършиш неопходимата работа."
+#~ msgid ""
+#~ "%s needs a connection to the Internet to perform some maintenance, open "
+#~ "the %s to connect up and perform the needed work."
+#~ msgstr ""
+#~ "%s се нуждае от връзка към Интернет за подръжка, отвори %s, за да се "
+#~ "свържеш и да свършиш неопходимата работа."
 
-#, c-format
 #~ msgid ""
-#~ "%s is unable to communicate with a project and no default connection is specified.\n"
-#~ "Please connect up to the Internet or specify a default connection via the connections\n"
+#~ "%s is unable to communicate with a project and no default connection is "
+#~ "specified.\n"
+#~ "Please connect up to the Internet or specify a default connection via the "
+#~ "connections\n"
 #~ "tab in the Options dialog off of the advanced menu."
 #~ msgstr ""
-#~ "%s не можа да комуникира с проект и няма зададена връзка по подразбиране. \n"
-#~ "Моля свържи се към Интернет или задай връзка по подразбиране от таба връзки\n"
+#~ "%s не можа да комуникира с проект и няма зададена връзка по "
+#~ "подразбиране. \n"
+#~ "Моля свържи се към Интернет или задай връзка по подразбиране от таба "
+#~ "връзки\n"
 #~ "в прозореца с опциите от advanced менюто. "
 
 #~ msgid ""
@@ -3807,7 +3891,8 @@ msgstr ""
 #~ "адрес ако искаш да промениш опциите на акаунта ти или да използваш\n"
 #~ "нашите форуми. \n"
 #~ "\n"
-#~ "От време на време ще ти пращаме email-и. Можеш да спреш това по всяко време\n"
+#~ "От време на време ще ти пращаме email-и. Можеш да спреш това по всяко "
+#~ "време\n"
 #~ "Ние няма да даваме твоя email на трети лица. "
 
 #~ msgid "Project Started"
@@ -3836,19 +3921,15 @@ msgstr ""
 #~ "на база на твоите предпочитания. Затвори прозореца за да затвориш\n"
 #~ "менажера без да спираш задачите."
 
-#, c-format
 #~ msgid "%s is currently suspended...\n"
 #~ msgstr "%s е временно прекратен...\n"
 
-#, c-format
 #~ msgid "%s networking is currently suspended...\n"
 #~ msgstr "Интернет дейностите на %s са временно прекратени...\n"
 
-#, c-format
 #~ msgid "%s is currently reconnecting to a %s client...\n"
 #~ msgstr "%s в момента се свързва отново към %s клиент...\n"
 
-#, c-format
 #~ msgid "%s is not currently connected to a %s client...\n"
 #~ msgstr "%s в момента не е свързан към %s клиент...\n"
 
@@ -3863,14 +3944,19 @@ msgstr ""
 #~ "\n"
 #~ "Натиснете край за да затворите прозореца. "
 
-#~ msgid "A software platform for distributed computing using volunteered computer resources"
-#~ msgstr "Софтурна платформа за разпределено изчисление,  използвайки компютърните ресурси на доброволци. "
+#~ msgid ""
+#~ "A software platform for distributed computing using volunteered computer "
+#~ "resources"
+#~ msgstr ""
+#~ "Софтурна платформа за разпределено изчисление,  използвайки компютърните "
+#~ "ресурси на доброволци. "
 
 #~ msgid "Username:"
 #~ msgstr "Потребит. име:"
 
 #~ msgid "Click here to disable displaying this message in the future."
-#~ msgstr "Натисни тук, за да изключиш показването на това съобщени за в бъдеще. "
+#~ msgstr ""
+#~ "Натисни тук, за да изключиш показването на това съобщени за в бъдеще. "
 
 #~ msgid "Language Selection:"
 #~ msgstr "Избор на език:"
@@ -3881,8 +3967,12 @@ msgstr ""
 #~ msgid "Reminder Frequency:"
 #~ msgstr "Честота на напомнянията:"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
-#~ msgstr "Колко често, в минути, менажера трябва да ви напомня за възможни дейности изискващи връзка към Интернет?"
+#~ msgid ""
+#~ "How often, in minutes, should the manager remind you of possible "
+#~ "connection events."
+#~ msgstr ""
+#~ "Колко често, в минути, менажера трябва да ви напомня за възможни дейности "
+#~ "изискващи връзка към Интернет?"
 
 #~ msgid "&Account manager"
 #~ msgstr "Акаунт менажер"
@@ -3893,14 +3983,16 @@ msgstr ""
 #~ msgid "Retry &communications"
 #~ msgstr "Опитай отново &комуникациите"
 
-#~ msgid "Report completed work, get latest credit, get latest preferences, and possibly get more work."
-#~ msgstr "Докладва всичката свършена работа, взима последните кредити, взима последните предпочитрания, и по възмойност сваля нова работа. "
+#~ msgid ""
+#~ "Report completed work, get latest credit, get latest preferences, and "
+#~ "possibly get more work."
+#~ msgstr ""
+#~ "Докладва всичката свършена работа, взима последните кредити, взима "
+#~ "последните предпочитрания, и по възмойност сваля нова работа. "
 
-#, c-format
 #~ msgid "&Defect from %s"
 #~ msgstr "&Излез от %s"
 
-#, c-format
 #~ msgid "&%s\tF1"
 #~ msgstr "&%s\tF1"
 
@@ -3916,7 +4008,6 @@ msgstr ""
 #~ msgid "Close Confirmation"
 #~ msgstr "Затвори потвърждението"
 
-#, c-format
 #~ msgid "BOINC Manager - Detach from %s"
 #~ msgstr "BOINC Manager - Излез от %s"
 
@@ -3932,27 +4023,6 @@ msgstr ""
 #~ msgid "For a list of BOINC-based projects go to:"
 #~ msgstr "За списък на BOINC-базирани проекти отидете на:"
 
-#~ msgid ""
-#~ "BOINC failed to communicate on the Internet. The most likely\n"
-#~ "reasons are:\n"
-#~ "\n"
-#~ "1) Personal firewall software is blocking BOINC. You must\n"
-#~ "configure your personal firewall to let BOINC communicate\n"
-#~ "on port 80. Once this is fixed, click Back to try again.\n"
-#~ "\n"
-#~ "2) You are using a proxy server and BOINC needs to know\n"
-#~ "about it."
-#~ msgstr ""
-#~ "BOINC ен успя да се свърже с Интернет. Най-честите причини\n"
-#~ "за това са:\n"
-#~ "\n"
-#~ "1)Личната ти защитна стена блокира BOINC. Ти трябва да\n"
-#~ "настроиш ли4ната ти защитна стена да позволява на BOINC \n"
-#~ "да комуникира на порт 80. Когато това е направено, натисни\n"
-#~ "Назад и опитай отново. \n"
-#~ "\n"
-#~ "2)Изполваш прокси сървър и BOINC трябва да знае за него"
-
 #~ msgid "Click Next to configure BOINC's proxy settings."
 #~ msgstr "Натизнете Напред, за да конфигурирате прокси настройките на BOINC. "
 
@@ -3977,7 +4047,6 @@ msgstr ""
 #~ msgid "Activities suspended by user"
 #~ msgstr "Дейностите временно прекратени от потребителя"
 
-#, c-format
 #~ msgid ""
 #~ "We'll now remove this computer from %s.  You will\n"
 #~ "be responsible for managing the BOINC client software from\n"
diff --git a/locale/bg/BOINC-Web.po b/locale/bg/BOINC-Web.po
index 2b1d653..7ee0cbe 100644
--- a/locale/bg/BOINC-Web.po
+++ b/locale/bg/BOINC-Web.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Web 6.x\n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
 "PO-Revision-Date: 2009-01-05 15:51-0500\n"
 "Last-Translator: MasterAIP <MasterAIP at gmail.com>\n"
 "Language-Team: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
@@ -18,386 +18,312 @@ msgstr ""
 "X-Poedit-Country: UNITED STATES\n"
 "X-Poedit-KeywordsList: tra\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
 msgstr ""
 
-"
-
+#: poll.inc:47
 msgid "Other:"
 msgstr ""
 
-"
-
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
 msgstr ""
 
-"
-
+#: poll_data.inc:22
 msgid "less than a week"
 msgstr ""
 
-"
-
+#: poll_data.inc:23
 msgid "less than a month"
 msgstr ""
 
-"
-
+#: poll_data.inc:24
 msgid "less than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:25
 msgid "more than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:34
 msgid "I lost interest"
 msgstr ""
 
-"
-
+#: poll_data.inc:35
 msgid "it was too complicated"
 msgstr ""
 
-"
-
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
 msgstr ""
 
-"
-
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:38
 msgid "it used too much electricity"
 msgstr ""
 
-"
-
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr ""
 
-"
-
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
 msgstr ""
 
-"
-
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
 msgstr ""
 
-"
-
+#: poll_data.inc:50
 msgid "I had network communication problems"
 msgstr ""
 
-"
-
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
 msgstr ""
 
-"
-
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr ""
 
-"
-
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
 msgstr ""
 
-"
-
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr ""
 
-"
-
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr ""
 
-"
-
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr ""
 
-"
-
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr ""
 
-"
-
+#: poll_data.inc:87
 msgid "Home"
 msgstr ""
 
-"
-
+#: poll_data.inc:88
 msgid "Work"
 msgstr ""
 
-"
-
+#: poll_data.inc:89
 msgid "School"
 msgstr ""
 
-"
-
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr ""
 
-"
-
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr ""
 
-"
-
+#: poll_data.inc:119
 msgid "Age"
 msgstr ""
 
-"
-
+#: poll_data.inc:129
 msgid "Sex"
 msgstr ""
 
-"
-
+#: poll_data.inc:131
 msgid "Male"
 msgstr ""
 
-"
-
+#: poll_data.inc:132
 msgid "Female"
 msgstr ""
 
-"
-
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr ""
 
-"
-
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr ""
 
-"
-
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr ""
 
-"
-
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr ""
 
-"
-
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr ""
 
-"
-
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr ""
 
-"
-
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
 msgstr ""
 
-"
-
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr ""
 
-"
-
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr ""
 
-"
-
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr ""
 
-"
-
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr ""
 
-"
-
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr ""
 
-"
-
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr ""
 
-"
-
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr ""
 
-"
-
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr ""
 
-"
-
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr ""
 
-"
-
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr ""
 
-"
-
+#: poll_data.inc:192
 msgid "Yes"
 msgstr ""
 
-"
-
+#: poll_data.inc:193
 msgid "No"
 msgstr ""
 
-"
-
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr ""
 
-"
-
+#: poll_data.inc:200
 msgid "to read information"
 msgstr ""
 
-"
-
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr ""
 
-"
-
+#: poll_data.inc:202
 msgid "None"
 msgstr ""
 
-"
-
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr ""
 
-"
-
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr ""
 
-"
-
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr ""
 
-"
-
+#: download.php:40
 msgid "Download BOINC"
 msgstr ""
 
-"
-
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr ""
 
-"
-
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -405,41 +331,34 @@ msgid ""
 "computer, you can connect it to as many of these projects as you like."
 msgstr ""
 
-"
-
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
 "(GPU), you may be able to %suse it to compute faster%s"
 msgstr ""
 
-"
-
+#: download.php:120
 msgid "System requirements"
 msgstr ""
 
-"
-
+#: download.php:121
 msgid "Release notes"
 msgstr ""
 
-"
-
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr ""
 
-"
-
+#: download.php:123
 msgid "All versions"
 msgstr ""
 
-"
-
+#: download.php:141
 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 "
@@ -448,8 +367,7 @@ msgid ""
 "problems you might have."
 msgstr ""
 
-"
-
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -458,8 +376,7 @@ msgid ""
 "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 "
@@ -467,20 +384,17 @@ msgid ""
 "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 "
@@ -488,30 +402,70 @@ msgid ""
 "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 ""
 
-"
+#: index.php:23
+msgid "Computing power"
+msgstr ""
 
-msgid "Volunteer"
+#: index.php:25
+msgid "Top 100 volunteers"
 msgstr ""
 
-"
+#: index.php:26
+msgid "Statistics"
+msgstr ""
 
-msgid "Download"
+#: index.php:53
+msgid "Active:"
 msgstr ""
 
-"
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
 
-msgid "Documentation"
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
 msgstr ""
 
-"
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
 
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -520,28 +474,92 @@ msgid ""
 "sDownload%s and run BOINC software  %sEnter%s an email address and password. "
 msgstr ""
 
-"
-
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
 "sGridRepublic%s or %sBAM!%s. "
 msgstr ""
 
-"
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
 
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
 
-"
-
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr ""
 
-"
-
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -554,84 +572,68 @@ msgid ""
 "href=poll_results.php>here</a>. "
 msgstr ""
 
-"
-
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr ""
 
-"
-
+#: poll.php:30
 msgid "Your participation"
 msgstr ""
 
-"
-
+#: poll.php:32
 msgid "Your computers"
 msgstr ""
 
-"
-
+#: poll.php:34
 msgid "You"
 msgstr ""
 
-"
-
+#: poll.php:39
 msgid "Nationality"
 msgstr ""
 
-"
-
+#: poll.php:44
 msgid "Comments"
 msgstr ""
 
-"
-
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
 msgstr ""
 
-"
-
+#: poll.php:50
 msgid "When done click:"
 msgstr ""
 
-"
-
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
 msgstr ""
 
-"
-
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr ""
 
-"
-
+#: poll_results.php:195
 msgid "Survey results"
 msgstr ""
 
-"
-
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
 msgstr ""
 
-"
-
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 #~ msgid "CHARSET"
 #~ msgstr "UTF-8"
diff --git a/locale/bg/pootle-boincclient610-bg.prefs b/locale/bg/pootle-boincclient610-bg.prefs
new file mode 100644
index 0000000..0f0feee
--- /dev/null
+++ b/locale/bg/pootle-boincclient610-bg.prefs
@@ -0,0 +1,7 @@
+# Pootle preferences for project boinctrunk, language bg
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/bg/pootle-boinctrunk-bg.prefs b/locale/bg/pootle-boinctrunk-bg.prefs
deleted file mode 100644
index 2833aea..0000000
--- a/locale/bg/pootle-boinctrunk-bg.prefs
+++ /dev/null
@@ -1,2 +0,0 @@
-# Pootle preferences for project boinctrunk, language bg
-
diff --git a/locale/ca/BOINC-Manager.mo b/locale/ca/BOINC-Manager.mo
index 4ea27f2..8bee607 100644
Binary files a/locale/ca/BOINC-Manager.mo and b/locale/ca/BOINC-Manager.mo differ
diff --git a/locale/ca/BOINC-Manager.po b/locale/ca/BOINC-Manager.po
index 812f8e6..392462f 100644
--- a/locale/ca/BOINC-Manager.po
+++ b/locale/ca/BOINC-Manager.po
@@ -1,29 +1,29 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 6.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
-"PO-Revision-Date: 2009-05-01 15:22-0700\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2010-03-18 15:21-0700\n"
 "Last-Translator: Xavier Mor-Mur <xmormur at telepolis.com>\n"
 "Language-Team: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 1.2.1\n"
 "X-Poedit-Language: English\n"
 "X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: iso-8859-1\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: UNITED STATES\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "Informació de l'usuari"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr "Identifiqui el seu compte "
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
@@ -31,7 +31,7 @@ msgstr ""
 "Si us plau, entri la informació del seu compte\n"
 "(per crear un compte, visiti la pàgina web del projecte)"
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
@@ -39,438 +39,483 @@ msgstr ""
 "Aquest projecte en aquest moments no accepta nous comptes.\n"
 "Es pot adjuntar només si ja disposa d'un compte."
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "Està executant ja aquest projecte?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "&No, usuari nou"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "&Si, usuari ja existent"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+"No podem actualitzar automàticament la informaciódel seu compte.Si us plau "
+"premi l'accés 'Obtenir la informació d'inici de sessió'per saber el que ha "
+"de posar en els camps adreça de correu icontrasenya."
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr "Obtenir la informació d'inici de sessió"
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "&Contrasenya:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "Escolleixi una &contrasenya:"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "C&onfirmi la contrasenya:"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
 #, c-format
 msgid "Are you already running %s?"
 msgstr "Ja està executant %s?"
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr "Nom &usuari:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "&Adreça de correu:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
 #, c-format
 msgid "minimum length %d"
 msgstr "longitud mínima %d"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr "Ha oblidat la contrasenya?"
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+"Si encara no s'ha registrat en aquest administrador de comptes,si us plau "
+"faci-ho abans de continuar.  Premi el següent accés perregistrar-se o "
+"recuperar la contrasenya que ha oblidat."
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr "Pàgina web de l'administrador de comptes"
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "Adjuntar-se al projecte"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "Actualitzar el administrador de comptes"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "Adjuntar-se a un administrador de comptes"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
 #, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr ""
-"La longitud mínima de la contrassenya per aquest projecte es %d. Si us plau, "
+"La longitud mínima de la contrasenya per aquest projecte es %d. Si us plau, "
 "entri una contrasenya diferent."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
 #, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
 "La longitud mínima per aquest administrador de comptes es %d. Si us plau, "
 "entri una contrasenya diferent."
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr ""
 "La contrasenya i la confirmació no son iguals. Si us plau entri-les de nou."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "URL del Administrador de Comptes"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr "Esculli un administrador de comptes"
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Entri la URL de web del administrador de comptes."
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"Per escollir un administrador de comptes, premi el seu nom o introdueixi la "
+"seva URL a continuació."
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "&URL del Administrador de Comptes:"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
 #, c-format
 msgid "Communicating with %s."
 msgstr "Establint comunicació amb %s."
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr "Establint comunicació amb el servidor."
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "Si us plau, esperi..."
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr "Ha ocorregut un error intern del servidor.\n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Connectat"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Desconnectat"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "&Tancar la Finestra\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr "Tancar la finestra %s"
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "Tancar la finestra de l'Administrador BOINC"
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr "Tan&car la finestra"
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
+#: clientgui/AdvancedFrame.cpp:319
 #, c-format
-msgid "Exit the %s"
-msgstr "Sortir de %s"
+msgid "Exit %s"
+msgstr "Tancar %s"
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "&Sortir"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
-msgstr "Vista &avançada\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr "&Projectes\tCtrl+Shift+P"
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
-msgstr ""
-"La visualització avançada li permet reordenar varies columnes i mostrar "
-"barres de progrés gràfiques."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr "Mostrar els projectes"
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
-msgstr "Vista &Senzilla...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr "&Tasques\tCtrl+Shift+T"
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "Mostrar la interfície gràfica senzilla de BOINC."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr "Mostrar les tasques"
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "Adjuntar-se al &projecte..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr "&Lliuraments\tCtrl+Shift+X"
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "Adjuntar-se a un projecte"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr "Mostrar els lliuraments"
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "Adjuntar-se al administrador de &comptes..."
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr "&Missatges\tCtrl+Shift+M"
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Adjuntar-se a un administrador de comptes"
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr "Mostrar els missatges"
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr "&Estadístiques\tCtrl+Shift+S"
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr "Mostrar les estadístiques"
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr "Utilització de &disc\tCtrl+Shift+D"
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr "Mostrar la utilització de disc"
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "&Vista Senzilla...\tCTRL+SHIFT+V"
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr "Mostrar la interfície gràfica senzilla."
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr "Adjuntar-se al projecte o administrador de comptes..."
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+"Adjuntar-se al projecte o administrador de comptes per començar a processar "
+"feina"
+
+#: clientgui/AdvancedFrame.cpp:397
 #, c-format
 msgid "&Synchronize with %s"
 msgstr "&Sincronitzar amb %s"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
 #, c-format
 msgid "Get current settings from %s"
 msgstr "Obtenir la configuració actual des de %s"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "Adjuntar-se al &projecte..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Adjuntar-se a un projecte per iniciar el procés de treball"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "&Aturar utilitzant %s..."
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Eliminar el client del control del administrador de comptes."
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "Executar &sempre"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr "Permetre treballs tot i les preferències"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "Executar segons les &preferències"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "Permetre treballs segons les preferències"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "&Suspendre"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
-msgstr "Aturar treballs tot i les preferències"
+msgstr "Aturar les tasques tot i les preferències"
+
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr "Utilitzar sempre la GPU"
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr "Permetre treballar la GPU independentment de les preferències"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr "Utilitzeu la GPU basant-se en les &preferències"
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr "Permetre la GPU treballar d'acord a les seves preferències"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr "No utilitzeu mai la GPU"
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr "Aturar el treball de la GPU independentment de les preferències"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "Accés a la xarxa sempre disponible"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr "Permetre l'accés al xarxa tot i les preferències"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
-msgstr "Accés a la xarxa basat en les preferències"
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
+msgstr "Accés a la xarxa basat en les pre&ferències"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr "Permetre l'accés a la xarxa segons les preferències"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
-msgstr "Accés la xarxa suspès"
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
+msgstr "S&uspès l'accés a la xarxa"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr "Aturar l'accés de BOINC a la xarxa"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "&Opcions..."
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "Configurar les opcions de la interfície i els paràmetres del proxy"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "&Preferències"
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr "Configurar les preferències locals"
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
 #, c-format
 msgid "Connect to another computer running %s"
 msgstr "Connectar a un altre ordinador executant %s"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "Seleccioni un ordinador..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr "Aturar el client connectat..."
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr "Aturar el client nucli actualment connectat"
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "Executar les proves de la CPU"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "Executa les proves de la CPU de BOINC"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr "Establir comunicació per xarxa"
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr "Executar les comunicacions per xarxa pendents."
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr "Llegir el fitxer de configuració"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr "Llegir la informació de configuració des de cc_config.xml."
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "Llegir el fitxer de preferències locals"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr "Llegir les preferències des de global_prefs_override.xml."
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-#, c-format
-msgid "&Stop using %s..."
-msgstr "&Aturar utilitzant %s..."
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "Eliminar el client del control del administrador de comptes."
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "Adjuntar-se al &projecte"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "Adjuntar-se a un projecte per iniciar el procés de treball"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
 #, c-format
 msgid "%s &help"
 msgstr "&ajuda de %s"
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
 #, c-format
 msgid "Show information about %s"
 msgstr "Mostrar la informació de %s"
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
 #, c-format
 msgid "&%s help"
 msgstr "ajuda de &%s"
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
 #, c-format
 msgid "Show information about the %s"
 msgstr "Mostrar la informació de %s"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
 #, c-format
 msgid "%s &website"
 msgstr "pàgina &web de %s"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
 #, c-format
 msgid "Show information about BOINC and %s"
 msgstr "Mostrar la informació de BOINC i %s"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
 #, c-format
 msgid "&About %s..."
 msgstr "&A propòsit de %s..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "Informació de la llicència i copyright"
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "&Fitxer"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "&Veure"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "&Utilitats"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "&Activitat"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "&Avançat"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "Ajuda"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr "%s - Aturar el client actual..."
-
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-"%s aturarà el client connectat actualment,\n"
-"i demanarà per connectar-vos a un altre servidor.\n"
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr "Adjuntant-se al projecte o administrador de comptes..."
 
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
 #, c-format
 msgid "%s - Detach from %s"
 msgstr "%s - Separar-se de %s"
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
 #, c-format
 msgid ""
 "If you stop using %s,\n"
@@ -485,102 +530,115 @@ msgstr ""
 "\n"
 "Desitja finalitzar la utilització de %s?"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "Adjuntant-se al projecte..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "Intentant de nou les comunicacions per el(s) projecte(s)..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
 #, c-format
 msgid "%s - Language Selection"
 msgstr "%s - Selecció d'idioma"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
 #, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr ""
 "L'idioma per defecte de %s ha estat canviat. Per tal de que el canvi tingui "
 "efecte heu de re inicialitzar %s."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - Aturar el client actual..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s aturarà el client connectat actualment,\n"
+"i demanarà per connectar-vos a un altre servidor.\n"
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Intentant de nou les comunicacions per el(s) projecte(s)..."
+
+#: clientgui/AdvancedFrame.cpp:1725
 #, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
 #, c-format
 msgid "%s has successfully attached to %s"
 msgstr "%s s'ha adjuntat satisfactòriament a %s"
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
 #, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
 #, c-format
 msgid "Connecting to %s"
 msgstr "Connectant a %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
 #, c-format
 msgid "Connected to %s (%s)"
 msgstr "Connectat a %s (%s)"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "Aquest nom d'usuari ja està en ús"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 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 ""
-"Ja existeix un compta d'usuari amb aquest nom i te una\n"
-"contrasenya diferent a la que ha introduït.\n"
-"\n"
-"Si us plau, visiti la pàgina web del projecte i segueixi les instruccions."
+"Ja existeix un compte d'usuari amb aquest nom i te unacontrasenya diferent a "
+"la que ha introduït.Si us plau, visiti la pàgina web del projecte i "
+"segueixi les instruccions."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "L'adreça de correu ja està en ús"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 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 ""
-"Ja existeix un compta amb aquest correu i te una\n"
-"contrasenya diferent a la que ha introduït.\n"
-"\n"
-"Si us plau, visiti la pàgina web del projecte i segueixi les instruccions."
+"Ja existeix un compte amb aquest correu i te unacontrasenya diferent a la "
+"que ha introduït.Si us plau, visiti la pàgina web del projecte i segueixi "
+"les instruccions."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr "Establint comunicació amb el client BOINC.  Esperi si us plau ..."
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr "&Sortir de %s"
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr "&Tancar %s"
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "Cancel·lar"
+
+#: clientgui/BOINCBaseFrame.cpp:422
 #, c-format
 msgid "%s - Connection Error"
 msgstr "%s - Error de connexió"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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."
@@ -589,7 +647,7 @@ msgstr ""
 "Si us plau posi's en contacte amb l'administrador per afegir-lo al grup "
 "local 'boinc_users'."
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
@@ -598,23 +656,21 @@ msgstr ""
 "Asseguri's d'iniciar aquest programa en el mateix directori que el client en "
 "execució."
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr "L'autorització ha fallat connectant amb el client en execució"
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr ""
 "La contrasenya proporcionada és incorrecte, si us plau intenti-ho de nou."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
 #, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - Ha fallat la connexió"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
 #, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
@@ -623,14 +679,12 @@ msgstr ""
 "%s no pot connectar amb el client %s.\n"
 "Desitja intentar connectar de nou?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
 #, c-format
 msgid "%s - Daemon Start Failed"
 msgstr "%s - Ha fallat l'inici del servei"
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
 #, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
@@ -640,8 +694,7 @@ msgstr ""
 "Si us plau inicii el Panell de Control->Eines Administratives->Serveis i "
 "inicieu el servei BOINC."
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
 #, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
@@ -650,14 +703,12 @@ msgstr ""
 "%s no capaç d'iniciar el client %s.\n"
 "Si us plau inicii el servei i provi-ho de nou."
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
 #, c-format
 msgid "%s - Connection Status"
 msgstr "%s - Estat de la connexió"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
 #, c-format
 msgid ""
 "%s is not currently connected to a %s client.\n"
@@ -670,100 +721,114 @@ msgstr ""
 "Per connectar amb el propi ordinador si us plau utilitzi 'localhost' com a "
 "nom d'ordinador."
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Pàgines web"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
 #, c-format
 msgid "%s - Network Status"
 msgstr "%s - Estat de la xarxa"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
 #, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr ""
 "%s necessita connectar-se per Internet.  Si us plau faci clic per obrir %s."
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
 #, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
 "Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
 msgstr ""
-"%s no pot comunicar amb el projecte i necessita connexió amb internet.\n"
-"Si us plau connecti amb internet, després seleccioni 'Executar comunicacions "
-"de xarxa' en el menú Avançat."
+"%s no pot comunicar amb el projecte i necessita connexió a internet.Si us "
+"plau connecti a internet, després seleccioni 'Executar comunicacions de "
+"xarxa' en el menú Avançat."
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
 #, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
-msgstr ""
-"%s necessita connectar amb Internet.\n"
-"Pot fer-ho ara?"
+msgstr "%s necessita connectar a Internet.Pot fer-ho ara?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
 #, c-format
 msgid "%s is connecting to the Internet."
-msgstr "%s està connectant amb Internet."
+msgstr "%s està connectant a Internet."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
 #, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
 "Please connect to the Internet, or select a default connection\n"
 "using Advanced/Options/Connections."
 msgstr ""
-"%s no pot connectar amb Internet, i no hi ha una connexió per defecte "
-"seleccionada.\n"
-"Si us plau connecti amb Internet, o seleccioni una connexió per defecte\n"
-"utilitzant Avançat/Opcions/Connexions."
+"%s no pot connectar a Internet, i no hi ha una connexió per defecte "
+"seleccionada.Si us plau connecti a Internet, o seleccioni una connexió per "
+"defecteutilitzant Avançat/Opcions/Connexions."
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
 #, c-format
 msgid "%s has successfully connected to the Internet."
-msgstr "%s a connectat amb Internet."
+msgstr "%s a connectat a Internet."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
 #, c-format
 msgid "%s failed to connect to the Internet."
-msgstr "%s no ha pogut connectar amb Internet."
+msgstr "%s no ha pogut connectar a Internet."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
 #, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
 msgstr ""
-"%s ha detectat que està connectat amb Internet.\n"
-"Actualitzant tots els projectes i intentant de nou totes les transferències."
+"%s ha detectat que està connectat a Internet.Actualitzant tots els projectes "
+"i intentant de nou totes les transferències."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
 #, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s s'ha desconnectat d'Internet."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
 #, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s no ha pogut desconnectar-se d'Internet."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+"En aquests moment no te autorització per gestionar el client.\n"
+"\n"
+"Per executar BOINC amb aquest usuari, si us plau:\n"
+"  - reinstal·li BOINC i respongui \"Si\" a la pregunta sobre\n"
+"     usuaris no-administradors\n"
+" o\n"
+"  - contacti amb el seu administrador per afegir-lo al grup\n"
+"     d'usuaris 'boinc_master'."
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"Les propietats o permisos de BOINC no estan definides correctament; si us "
+"plau reinstal·li BOINC.\n"
+"(Codi d'error %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
@@ -772,108 +837,115 @@ msgstr ""
 "correctament.\n"
 "Si us plau reiniciï l'ordinador i provi-ho de nou."
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "Administrador BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr "El sistema ha iniciat automàticament l'Administrador BOINC "
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr ""
 "Iniciar BOINC de manera que només la icona de la barra de tasques sigui "
 "visible"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr "Directori que conté l'executable del Client BOINC"
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr "Directori de les dades de BOINC"
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr "Iniciar BOINC amb aquests arguments opcionals"
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr "desactivar la seguretat d'usuaris i permisos BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 "seleccioni el mode de depuració per activar els missatges d'error de "
 "l'administrador"
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Detecció Automàtica)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Desconegut)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Definit per l'Usuari)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr "Computació suspesa."
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr "Activitat de xarxa suspesa."
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
 #, c-format
 msgid "%s: %.2f%% completed."
 msgstr "%s: %.2f%% finalitzada."
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
 #, c-format
 msgid "%d tasks running."
 msgstr "%d feina(es) executant-se."
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr "Tornant a connectar amb el client."
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr "No connectat a cap client."
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
 #, c-format
 msgid "Open %s Web..."
 msgstr "Obrir la pàgina web %s..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
 #, c-format
 msgid "Open %s..."
 msgstr "Obrir %s..."
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "Becaina"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr "Posar en becaina  la GPU"
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "Ha fallat l'intent d'unió al projecte"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr "Ha fallat l'actualització de l'administrador de comptes"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr "Ha fallat l'eliminació de l'administrador de comptes"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "Ha fallat l'intent d'unió a l'administrador de comptes"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -885,27 +957,26 @@ msgstr ""
 "\n"
 "Premi Finalitzar per tancar."
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "Premi Finalitzar per tancar."
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "Missatges del servidor:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "Adjuntat al projecte"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "S'ha adjuntat correctament al projecte."
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -913,127 +984,110 @@ msgstr ""
 "Quan premi Finalitzar, el seu navegador obrirà la pàgina on\n"
 "podrà establir el seu nom de compte i les preferències."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
 #, c-format
 msgid "Update from %s completed."
 msgstr "Actualització des de %s finalitzada."
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "Actualització finalitzada."
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-#, c-format
-msgid "Removal from %s completed."
-msgstr "Eliminació des de %s finalitzada."
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "Eliminació finalitzada."
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
 #, c-format
 msgid "Attached to %s"
 msgstr "Adjuntat a %s"
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "Adjuntat a l'administrador de comptes"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
 #, c-format
 msgid "Welcome to %s!"
 msgstr "Benvingut a %s!"
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
 #, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "Ara està correctament adjuntat al sistema %s."
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "Ara està correctament adjuntat a aquest administrador de comptes."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
 #, c-format
 msgid "About %s"
 msgstr "Sobre %s"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "Versió:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr "Versió wxWidgets:"
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Copyright:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
-"(C) 2003-2008 Universitat de California, Berkeley.\n"
+"(C) 2003-2008 Universitat de Califòrnia, Berkeley.\n"
 "Tots els Drets Reservats."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
-msgstr "Infrastuctura Oberta de Berkeley per la Computació en xarxa"
+msgstr "Infraestructura Oberta de Berkeley per la Computació en xarxa"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "&Correcte"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr "número decimal incorrecte"
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr "hora incorrecte, el format es HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr "període de temps incorrecte, el format es HH:MM-HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr "detectat valor d'entrada incorrecte"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr "Error de validació"
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr "Està segur d'eliminar totes les preferències locals ?"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr "Confirmació"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
 #, c-format
 msgid "%s - Preferences"
 msgstr "%s - Preferències"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
@@ -1043,197 +1097,203 @@ msgstr ""
 "Premi Correcte per establir les preferències.\n"
 "Premi Netejar per restaurar les preferències basades en la web."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr "Netejar"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr "netejar totes les preferències locals i tancar la finestra"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr "Computació disponible"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr " Mentre l'ordinador utilitza bateries"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr ""
 "seleccioni-ho si desitja que l'ordinador realitzi feina mentre utilitza "
 "bateries"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr " Mentre l'ordinador està en us"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr ""
 "seleccioni aquesta opció si desitja que l'ordinador treballi mentre l'està "
-"utilitzantseleccioni-ho si desitja que l'ordinador treballi mentre l'està "
 "utilitzant"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
-msgstr "Utitlitzar la GPU al mateix temps que l'ordinador s'està fent servir"
+msgstr "Utilitzar la GPU al mateix temps que l'ordinador s'està fent servir"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
 "seleccioni aquesta opció si desitja utilitzar la GPU per fer feina al mateix "
 "temps que està utilitzant l'ordinador"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr "Només després de que l'ordinador hagi estat inactiu uns"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 "fer feina només després de no haver utilitzat l'ordinador en el següent "
 "nombre de minuts"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr "minuts"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr "Mentre l'ús del processador és inferior a"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr "suspendre el treball si l'ús del processador supera a aquest nivell"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr "per cent (0 significa que no hi ha restricció)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr "Cada dia entre les hores"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr "començar a fer feina a aquesta hora"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr "i"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr "aturar de fer feina a aquesta hora"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr "(cap restricció si és igual)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr ""
-"Horari preferit dels dias de la setmana. Aquesta selecció és la que "
+"Horari preferit dels dies de la setmana. Aquesta selecció és la que "
 "s'aplicarà:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr ""
 "marcar la casella per especificar les hores per aquest dia de la setmana"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr "Dilluns"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr "Dimarts"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr "Dimecres"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr "Dijous"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr "Divendres"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr "Dissabte"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr "Diumenge"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr "Altres opcions"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
 msgstr "Canviar entre aplicacions cada"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr "En equips multi-processador, utilitzar com a màxim"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
 #, no-c-format
 msgid "% of the processors"
 msgstr "% dels processadors"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr "Utilitzar com a màxim"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
 #, no-c-format
 msgid "% CPU time"
 msgstr "% temps de CPU"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr "utilització de processador"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr "Opcions generals"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr "Màxima taxa de descàrrega"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr "KBytes/seg."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr "Màxima taxa de càrrega"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr "Connectar aproximadament cada "
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
@@ -1241,45 +1301,45 @@ msgstr ""
 "aquest ordinador està connectat a Internet aproximadament ca X dies\n"
 "(0 si està permanentment connectat)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr "dies"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr "Buffer addicional de treball"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr "dies (màx. 10)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr " Ometre la verificació del fitxer"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr "seleccioni-ho si el seu proveïdor d'internet modifica els fitxers"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr "Opcions de connexió"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
-msgstr "Confirmar abans de connectar amb internet"
+msgstr "Confirmar abans de connectar a internet"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr ""
 "si està seleccionat, una finestra de confirmació es mostrarà abans "
-"d'intentar connectar amb Internet"
+"d'intentar connectar a Internet"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr "desconnectar en finalitzar"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
@@ -1287,134 +1347,124 @@ msgstr ""
 "si està seleccionat, BOINC penja quan finalitza l'activitat de xarxa\n"
 "(només es vàlid per connexions telefòniques)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
-msgstr "Utilització de xarxa permesa"
+msgstr "Es permet la utilització de la xarxa"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr "hora d'inici d'utilització de la xarxa"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr "hora de fi d'utilització de la xarxa"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr "utilització de la xarxa"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr "Utilització de disc"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr "màxim espai en disc utilitzat per BOINC (en Gigabytes)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr "Gigabytes de espai en disc"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr "Deixar al menys"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr "BOINC deixa lliure al menys aquest espai en disc (en Gigabytes)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr "Gigabytes d'espai en disc lliure"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr "BOINC utilitza com a mínim aquest percentatge del total d'espai en disc"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
 #, no-c-format
 msgid "% of total disk space"
 msgstr "% del total d'espai en disc"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
-msgstr "Escriure a disc al menys cada"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr "Actualitzar els punts de control de les tasques cada"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr "segons"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
 #, no-c-format
 msgid "% of page file (swap space)"
 msgstr "% del fitxer d'intercanvi (espai d'intercanvi)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr "Utilització de memòria"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
 #, no-c-format
 msgid "% when computer is in use"
 msgstr "% quan l'ordinador està en ús"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
 #, no-c-format
 msgid "% when computer is idle"
 msgstr "% quan l'ordinador està en repòs"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr " Deixar les aplicacions en memòria mentre estan en suspens"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr "Si està seleccionat, els treballs aturats es deixen en memòria"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr "utilització de disc i memòria"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr "Correcte"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr "guardar tots els valors i tancar la finestra"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr "Cancel·lar"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr "tancar la finestra sense guardar"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "Ajuda"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr "mostra la pàgina web de les preferències"
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
 #, c-format
 msgid "%s - Exit Confirmation"
 msgstr "%s - Confirmació de Sortida"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
 #, c-format
 msgid ""
 "You have requested to exit the %s,\n"
@@ -1424,16 +1474,12 @@ msgid ""
 "If you also want to stop running the science applications when you\n"
 "exit the Manager, then choose from the following options:"
 msgstr ""
-"Ha sol·licitat sortir de %s,\n"
-"que li permet veure i administrar\n"
-"les aplicacions científiques que s'executen en el seu ordinador.\n"
-"\n"
-"Si també vol finalitzar l'execució de les aplicacions cientifiques que "
-"s'executen quan\n"
-"surti de l'Administrador, esculli una de les següent opcions:"
+"Ha sol·licitat sortir de %s,que li permet veure i administrarles aplicacions "
+"científiques que s'executen en el seu ordinador.Si també vol finalitzar "
+"l'execució de les aplicacions científiques quan surtide l'Administrador, "
+"esculli una de les següent opcions:"
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
 #, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
@@ -1443,423 +1489,384 @@ msgid ""
 "rather than to exit the application; that will allow %s to run its\n"
 "tasks at the times you selected in your preferences."
 msgstr ""
-"Això aturarà %s i les seves tasques fins que el programa\n"
-"%s o el protector de pantalla %s s'executin de nou.\n"
-"\n"
-"La majoria de vegades, es millor tancar la finestra de %s\n"
-"en lloc de finalitzar l'aplicació; això pemetrà %s executar les seves tasques\n"
-"en els períodes de temps que ha seleccionat en les seves preferències."
+"Això aturarà %s i les seves tasques fins que el programa%s o el protector de "
+"pantalla %s s'executin de nou.La majoria de vegades, es millor tancar la "
+"finestra de %sen lloc de finalitzar l'aplicació; això permetrà %s executar "
+"les seves tasquesen els períodes de temps que ha seleccionat en les seves "
+"preferències."
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr ""
 "Finalitzar l'execució de les aplicacions científiques en sortir de "
 "l'administrador"
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr "Recordar aquesta opció i no mostrar aquesta finestra."
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "&Cancel·lar"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr "No tornar a mostrar aquesta finestra."
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr "&Tancar"
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr "Propietats del projecte"
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "General"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr "URL principal"
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
 msgstr "Nom del usuari"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr "Nom de l'equip"
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Compartició de recursos"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr "La programació RPC s'ha ajornat durant"
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr "Descàrrega de fitxers posposada durant"
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr "Lliurament de fitxers posposada durant"
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr "ID de l'ordinador"
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr "Us no intensiu de la CPU"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr "si"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr "no"
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr "Aturat via GUI"
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr "No demanar més feina"
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr "Petició programada en execució"
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
 msgstr "Adjuntat via l'administrador de comptes"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr "Separar-se en finalitzar"
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr "Finalitzat"
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr "Crèdit"
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr "Usuari"
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr "Ordinador central"
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr "Planificant"
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr "Planificació prioritària de la CPU"
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr "Prioritat del treball de la CPU"
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr "Feina de la CPU ajornada durant"
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr "Interval d'ajornament de la feina de la CPU"
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr "Prioritat de programació de la GPU de NVIDIA"
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr "Prioritat de la feina a la GPU NVIDIA"
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr "Feina a la GPU NVIDIA ajornada durant"
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr "Interval d'ajornament de la feina a la GPU NVIDIA"
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr "Planificació de la prioritat de la GPU d'ATI"
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr "Prioritat de la feina a la GPU ATI"
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr "Feina a la GPU ATI ajornada durant"
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr "Interval d'ajornament de la feina a la GPU ATI"
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr "Durada del factor de correcció"
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr "Propietats de la tasca"
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Aplicació"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr "Nom de la feina"
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr "Estat"
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr "Rebut"
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Data límit per informar"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr "Recursos"
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr "Temps de CPU en el darrer punt de control"
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "Temps de CPU"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 msgid "Elapsed time"
 msgstr "Temps transcorregut"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
-msgstr "Temps estimat remanent"
+msgstr "Temps estimat que resta"
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr "Fracció realitzada"
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr "Grandària de la memòria virtual"
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr "Grandària del bloc de treball"
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
-msgstr "Ranura"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr "Directori"
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr "ID del procés"
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Nou"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "La descàrrega ha fallat"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "Descarregant"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "Projecte suspès per l'usuari"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr "Tasca suspesa per l'usuari"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Suspès"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr " - en bateries"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr " - usuari actiu"
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr " - computació suspesa"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr " - en aquest moment"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr " - test de CPU"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr " - necessita espai en disc"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr "Esperant memòria"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr "Esperant memòria compartida"
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr "Executant, alta prioritat"
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "Executant"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr "Esperant per executar"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr "A punt per començar"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Error de computació"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "La càrrega ha fallat"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "Carregant"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Avortat per l'usuari"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "Avortat per el projecte"
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "Avortat"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Reconegut"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "A punt per informar"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
 #, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Error: estat incorrecte '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
 #, c-format
 msgid "%s - Options"
 msgstr "%s - Opcions"
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr "Idioma:"
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr "Quin idioma ha d'utilitzar l'administrador?"
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
@@ -1867,126 +1874,117 @@ msgstr ""
 "Interval recordatori per a les connexions:\n"
 "(minuts)"
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 "Quants cops ha de recordar-li l'administrador que necessita una connexió?"
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr "Executar l'administrador en iniciar?"
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr "Executar l'administrador BOINC quan s'identifiqui en el sistema."
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr "Activar el diàleg de sortida de l'administrador?"
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr "Mostrar el diàleg de sortida en finalitzar l'administrador."
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "Paràmetres de trucada i Xarxa Privada Virtual"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "&Aplicar valors per defecte"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "&Netejar valors per defecte"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Connexió per defecte:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Connexions"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Connectar utilitzant un servidor proxy HTTP"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "Configuració del Servidor Proxy HTTP"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Adreça"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Port:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr "No utilitzar un proxy per:"
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Deixar en blanc si no es necessita"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Nom d'usuari:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Contrasenya:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "Proxy HTTP"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Connectar utilitzant un servidor proxy SOCKS"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "Configuració del Servidor Proxy SOCKS"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "Proxy SOCKS"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
 #, c-format
 msgid "%s - Select Computer"
 msgstr "%s - Seleccionar un Ordinador"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Nom ordinador:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
 #, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s - No es pot trobar el navegador web"
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
 #, c-format
 msgid ""
 "%s tried to display the web page\n"
@@ -2003,239 +2001,234 @@ msgstr ""
 "BROWSER amb el directori del vostre navegador,\n"
 "desprès reiniciar %s."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "Taulers de missatges"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr ""
 "Correspondència amb altres usuaris en els taulers de missatges de SETI at home"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "Feu preguntes i informeu dels problemes"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "El vostre compte"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "Veure la informació del seu compte i crèdits totals"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "Les seves preferències"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr "Veure i modificar el perfil i preferències del seu compte a SETI at home"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "Els seus resultats"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr ""
 "Veure la seva darrera setmana (o més) de resultats i treballs de computació"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "Els seus ordinadors"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr ""
 "Veure la llista de tots els ordinadors en els que vostè està executant "
 "SETI at Home"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "El seu equip"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "Veure la informació sobre el seu equip"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "Preguntes freqüents"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "Llegeixi la llista de preguntes freqüents de Einstein at Home"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "Informació del salva pantalles"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "Llegeixi una descripció detallada del salva pantalles de Einstein at Home"
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr ""
 "Correspondència amb els administradors i altres usuaris en el taulers de "
 "missatges de Einstein at Home"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "Estat de Einstein"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Estat actual del servidor de Einstein at Home"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "Informar de problemes"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr "Enllaç al tauler de missatges de problemes i errors de Einstein at Home"
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr ""
 "Veure i modificar el perfil i preferències del seu compte a Einstein at Home"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "Resum del compte"
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr ""
 "Veure la llista de tots els ordinadors en els que vostè està executant "
 "Einstein at Home"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "Projecte LIGO"
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr ""
 "Pàgina del projecte Observatori de Interferometria d'Ones Gravitacionals "
 "(LIGO)"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "Projecte GEO-600"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "Pàgina del projecte GEO-600"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Equip"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "Informació respecte de l'equip"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
-msgstr "Obtingui ajuda des de climateprediction.net"
+msgstr "Obtingui ajuda per a climateprediction.net"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "Novetats"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "Novetats de climateprediction.net"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr "Veure la informació del seu compte, crèdits i preguntes"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "Informació respecte al seu equip"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr "Cercar ajuda en el nostre sistema d'ajuda"
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "Estadístiques Globals"
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "Resum estadístiques de World Community Grid"
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr "La meva graella"
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "Les seves estadístiques i paràmetres"
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr "Perfils de Dispositius"
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr "Actualitzar els paràmetres dels seus dispositius"
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr "Recerca"
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "Aprendre respecte del projectes controlats per la World Community Grid"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr "Iniciant els serveis del client; si us plau esperi..."
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "Recuperant l'estat del sistema; esperi si us plau..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "Recuperant informació de l'ordinador; esperi si is plau..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
-msgstr "No hi ha connexió amb Internet"
+msgstr "No hi ha connexió a Internet"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Si us plau connecti's a Internet i provi-ho de nou."
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Projecte no trobat"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2245,11 +2238,11 @@ msgstr ""
 "\n"
 "Si us plau verifiqui la URL i provi-ho de nou."
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "Administrador de comptes no trobat"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2261,62 +2254,72 @@ msgstr ""
 "\n"
 "Si us plau verifiqui la URL i provi-ho de nou."
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr "Ha Fallat la Identificació."
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr "Verifiqui el nom d'usuari i contrasenya, i provi-ho de nou"
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr ""
 "Verifiqui l'adreça de correu electrònic i contrasenya, i provi-ho de nou"
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr "Esculli un projecte"
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
 "Per escollir un projecte, premi el seu nom o introdueixi la seva URL a "
 "continuació."
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "&URL del projecte:"
 
-#: clientgui/ProjectInfoPage.cpp:320
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+"Aquest projecte poder no te feina per al seu ordinador. Està segur que vol "
+"continuar?"
+
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr ""
 "Ja està adjuntat a aquest projecte. Si us plau esculli un projecte diferent."
 
-#: clientgui/ProjectInfoPage.cpp:321
-msgid "Already Attached to Project"
-msgstr "Ja està adjuntat al projecte"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr "Clic"
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
-msgstr "Aquest projecte pot no tenir feina per el seu tipus d'ordinador."
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr "Multicore CPU suportades"
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-#, c-format
-msgid "Click here to go to %s's website."
-msgstr "Prémer aquí per accedir a la pàgina de %s"
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr "NVIDIA GPU suportada"
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr "ATI GPU suportada"
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr "Lloc Web del Projecte"
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
-msgstr ""
-"Comunicant amb el projecte\n"
-"Si us pla, esperi ..."
+msgstr "Comunicant amb el projecteSi us plau, esperi ..."
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
@@ -2324,11 +2327,11 @@ msgstr ""
 "Fitxer(s) necessari(s) de configuració no es troben en el servidor.\n"
 "(lookup_account.php/create_account.php)\n"
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "Fallo en la comunicació per xarxa."
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2339,7 +2342,7 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
@@ -2347,7 +2350,7 @@ msgstr ""
 "The World Community Grid - BOINC no ha pogut establir comunicació\n"
 "per Internet. Les raons més probables son:\n"
 "\n"
-"1) Problema de connectivitat. Verifiqueu la vostra xarxa o la connexió per "
+"1) Problema de connectivitat.  Verifiqueu la vostra xarxa o la connexió per "
 "mòdem\n"
 "i després premeu Enrere per intentar-ho de nou.\n"
 "\n"
@@ -2359,7 +2362,7 @@ msgstr ""
 "3) Esteu fent servir un servidor proxy.\n"
 "Premeu Següent per configurar els paràmetres proxy de BOINC."
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2389,501 +2392,469 @@ msgstr ""
 "3) Esteu fent servir un servidor proxy.\n"
 "Premeu Següent per configurar els paràmetres proxy de BOINC."
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Configuració del proxy"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "Proxy HTTP"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "Servidor:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "Auto detectar"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "SOCKS proxy"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr "Vista Avançada...\tCTRL+SHIFT+A"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr "Mostrar la interfície gràfica avançada (accessible)."
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
 #, c-format
 msgid "&%s"
 msgstr "&%s"
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr "Recuperant estat actual."
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr "No te cap projecte. Si us plau, afegeixi un  projecte."
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr "Descarregant feina des del servidor."
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr "Procés en suspens: Execució En Bateries."
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr "Procés en suspens: Usuari Actiu."
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr "Procés en suspens: L'usuari ha aturat l'execució."
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr "Procés en suspens: Canviar Hora."
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr "Procés en suspens: Executant Test de Rendiment"
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr "Procés en suspens."
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr "Esperant contactar amb els servidors del projecte."
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr "Recuperant l'estat actual"
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr "No hi ha feina disponible a processar"
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr "Impossible connectar amb el client"
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Projecte"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "Hora"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Missatge"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Copiar tots els missatges al porta papers."
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 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 ""
 "Copiar els missatges seleccionats al porta papers. Pot seleccionar diversos "
 "missatges prement les tecles shift o control mentre prem en els missatges."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
 "Copiar els missatges seleccionats al porta papers. Pot seleccionar diversos "
 "missatges prement les tecles shift o control mentre prem en els missatges."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr "Obtenir ajuda amb BOINC"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
 #, c-format
 msgid "%s - Messages"
 msgstr "%s - Missatges"
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr "100 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr "200 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr "500 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr "1 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr "2 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr "5 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr "10 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr "20 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr "50 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr "100 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr "10%"
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr "20%"
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr "30%"
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr "40%"
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr "50%"
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr "60%"
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr "70%"
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr "80%"
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr "90%"
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr "100%"
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr "1"
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr "3"
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr "5"
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr "10"
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr "15"
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr "30"
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr "60"
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr "Aspecte"
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr "Aspecte:"
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr "Preferències"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr ""
 "Desitjo personalitzar les meves preferències només per aquest ordinador."
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr "Preferències Personalitzades"
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr "Fer feina només entre:"
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr "Connectar a internet només entre:"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr "No utilitzar més de:"
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr "de l'espai en disc"
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr "del processador"
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr "Fer feina mentre funcioni en bateries?"
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr "Fer feina després d'estar inactiu durant:"
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr "En qualsevol moment"
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
 #, c-format
 msgid "%d MB"
 msgstr "%d MB"
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
 #, c-format
 msgid "%4.2f GB"
 msgstr "%4.2f GB"
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
 #, c-format
 msgid "%d%%"
 msgstr "%d%%"
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr "0 (Executar Sempre)"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
 #, c-format
 msgid "%d"
 msgstr "%d"
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr "En pausa: Hi ha altres tasques en execució"
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr "En pausa: Usuari admès. Premi 'Continuar' per a continuar"
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr "En pausa: Usuari actiu"
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr "En pausa: Ordinador funcionant amb bateries"
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr "En pausa: Canviar Hora"
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr "En pausa: Executant test rendiment"
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr "En pausa"
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr "Aturat: Inici de l'aplicació ajornada"
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr "Prémer per mostrar els gràfics del projecte"
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr "Adjuntar-se a un projecte addicional"
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr "Sincronitzar els projectes amb el sistema de l'administrador de comptes"
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr "Obrir la finestra per veure els missatges"
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr "Aturar tota activitat"
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr "Continuar activitat"
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr "Obrir la per actualitzar les preferències"
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr "Canviar a la vista avançada de BOINC"
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr "Els meus projectes:"
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
 #, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr "%s. Feina realitzada per %s: %0.2f"
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr "Eliminar el Projecte"
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
 #, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "Està segur que desitja separar-se del projecte '%s'?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "Separar-se del Projecte"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
 #, c-format
 msgid "%.1lf"
 msgstr "%.1lf"
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
 #, c-format
 msgid "%d hr %d min %d sec"
 msgstr "%d hr %d min %d seg"
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr "Està segur que desitja mostrar els gràfics en un ordinador remot?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Mostrar els gràfics"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
 msgstr "Aplicació: "
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr "Temps per Finalitzar: "
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
 msgstr "Temps Transcorregut: "
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr "Condicions d'ús"
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr "Si us plau, llegeixi les següents condicions d'ús:"
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr "Accepto les condicions d'ús."
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr "No accepto les condicions d'ús."
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Projecte temporalment no disponible"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2893,11 +2864,11 @@ msgstr ""
 "\n"
 "Si us plau, provi-ho mes tard."
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "Administrador de comptes temporalment no disponible"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2907,34 +2878,34 @@ msgstr ""
 "\n"
 "Si us plau, provi-ho mes tard."
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "Si us plau entri una clau de compte per continuar."
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr "Clau de Compte invàlida; si us plau entri una Clau de Compte vàlida"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Verificació fallida"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr "Si us plau entri el seu compte de correu"
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr ""
 "Compte de correu incorrecte; si us plau, introdueixi un compte de correu "
 "vàlid"
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "Falta la URL"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2944,18 +2915,18 @@ msgstr ""
 "Per exemple:\n"
 "http://www.example.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "URL incorrecte"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2965,608 +2936,501 @@ msgstr ""
 "Per exemple:\n"
 "http://boincproject.example.com"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
 #, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "'%s' no conté un nom vàlid de d'ordinador."
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
 #, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "'%s' no conté una ruta vàlida."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "Ordres"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Copiar tots els missatges"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Copiar els missatges seleccionats"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr "Mostrar només aquest projecte"
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr "Mostrar només el missatges del projecte seleccionat."
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Missatges"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "Copiar tots els missatges al porta papers..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 msgid "Copying selected messages to the clipboard..."
 msgstr "Copiant els missatges seleccionats al porta papers..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr "Filtrant missatges..."
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 msgid "Show all messages"
 msgstr "Mostrar tots els missatges"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr "Mostrar els missatges de tots els projectes."
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr "ID"
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr "Prioritat"
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr "Graella de missatges"
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr "Copiant els missatges seleccionats al porta papers..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr "Informació"
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr "Atenció"
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr "Error"
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr "Receptor de noticies"
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr "BOINC"
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr "Mostrar les darreres noticies sobre BOINC"
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
 msgstr "Pàgina web de BOINC"
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr "Mostrar les darreres noticies sobre BOINC des de la pàgina web de BOINC"
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Actualitzar"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr ""
 "Informar de totes les tasques finalitzades, obtenir els darrers crèdits, i "
 "possiblement obtenir noves tasques."
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Suspendre"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr "Suspendre les tasques d'aquest projecte."
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr "No descarregar tasques noves"
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr "No obtenir noves tasques per aquest projecte."
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Reiniciar el projecte"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 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 ""
 "Eliminar tots els fitxers i tasques associades amb aquest projecte, i "
 "obtenir tasques noves. Abans podeu actualitzar el projecte per informar de "
 "les tasques finalitzades."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Separar-se"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr ""
 "Separar l'ordinador d'aquest projecte. Les tasques en execució es perdran "
 "(abans utilitzi 'Actualitzar' per informar de les tasques finalitzades)."
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr "Propietats"
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr "Mostrar els detalls del projecte."
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Compte"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "Feina finalitzada"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr "Mitjana de la feina realitzada"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Estat"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Projectes"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "Actualitzant el projecte..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "Continuant el projecte..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "Suspenent el projecte..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr "Informant al projecte que es poden descarregar noves tasques..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "Informant al projecte de no es volen descarregar noves tasques..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "Reiniciant el projecte..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
 #, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Està segur que vol reiniciar el projecte '%s'?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Reiniciar el Projecte"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "Separant-se del projecte..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "Activant el navegador..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Continuar"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "Continuar les tasques d'aquest projecte."
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "Permetre noves tasques"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr "Permetre l'obtenció de noves tasques per aquest projecte."
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "No obtenir noves tasques per aquest projecte."
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Suspès per l'usuari"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "No es desitgen noves tasques"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr "Projecte finalitzat - Apunt per separar-se"
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr "Es separarà quan les tasques hagin finalitzat"
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Petició programada en espera"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr "Petició programada en execució"
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "Comunicació posposada"
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr "Graella de projecte"
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr "Espai usat del total del disc"
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr "Espai del disc usat per els projectes BOINC"
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Disc"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr "no adjuntat a cap projecte BOINC: 0 bytes"
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr "utilitzat per BOINC:"
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr "lliure, disponible per BOINC: "
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr "lliure, no disponible per BOINC: "
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr "lliure: "
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr "utilitzat per altres programes:"
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
-msgstr "Total Usuari"
+msgstr "Total de l'Usuari"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Mitjana de l'Usuari"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
-msgstr "Total Ordinador"
+msgstr "Total de l'Ordinador"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Mitjana de l'Ordinador"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
 #, c-format
 msgid "Last update: %.0f days ago"
 msgstr "Darrera actualització: fa %.0f dies"
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Mostrar el total de l'usuari"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr "Mostrar els crèdits totals de l'usuari"
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "Mostrar la mitjana de l'usuari"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr "Mostrar el crèdit mitjà de l'usuari"
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Mostrar el total de l'ordinador"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr "Mostrar el crèdit total de l'ordinador"
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "Mostrar la mitjana de l'ordinador"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr "Mostrar el crèdit mitjà de l'ordinador"
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< Projecte &anterior"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr "Mostrar gràfica del projecte anterior"
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "Projecte &següent >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr "Mostrar la gràfica del projecte següent"
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "Mode visual"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "Tots els projectes"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr "Mostrar tots els projectes, una gràfica per projecte"
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "Un projecte"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr "Mostrar la gràfica del projecte seleccionat"
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr "Tots els projectes (junts)"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr "Mostrar una gràfica amb tots els projectes"
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Estadístiques"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "Actualitzant les gràfiques..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
-msgstr "Re intentar ara"
+msgstr "Re-intentar ara"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "Prémer 'Actualitzar ara' per lliurar el fitxer ara"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Avortar el lliurament"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr ""
 "Prémer 'Avortar el lliurament' per eliminar el fitxer de la cua de "
 "lliurament. Això evitarà que obtingueu crèdits per aquest resultat."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "Fitxer"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Progrés"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Mida"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "Temps transcorregut"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Velocitat"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Lliuraments"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
-msgstr "Re intentar el lliurament ara..."
+msgstr "Re-intentar el lliurament ara..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "Avortant la transferència..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
 #, c-format
 msgid ""
 "Are you sure you want to abort this file transfer '%s'?\n"
@@ -3577,34 +3441,42 @@ msgstr ""
 "NOTA: Cancel·lant el lliurament invalidarà la tasca i\n"
 "no rebrà crèdit per ella."
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Avortar el Lliurament del Fitxer"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
-msgstr "Re intentar en "
+msgstr "Re-intentar en "
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr "Càrrega pendent"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "Descàrrega pendent"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr " (backoff del projecte: "
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ")"
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr "Graella de Lliuraments"
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 msgid "Aborting transfer(s)..."
 msgstr "Avortant el(s) lliurament(s)..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
@@ -3614,75 +3486,79 @@ msgstr ""
 "NOTA: Cancel·lant el lliurament invalidarà la tasca i\n"
 "no rebrà crèdit per ella."
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 msgid "Abort File Transfer(s)"
 msgstr "Avortar el Lliurament del(s) Fitxer(s)"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr "Mostrar les tasques actives"
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr "Mostrar només les tasques actives."
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "Mostrar els gràfics de l'aplicació en una finestra."
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "Suspendre la feina per aquest resultat."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Avortar"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr "Abandonar la feina per aquest resultat. No obtindrà crèdit per ella."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr "Mostrar els detalls de la tasca."
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Nom"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr "Transcorregut"
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "Per finalitzar"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Tasques"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "Continuar la tasca..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "Suspendre la tasca..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "Mostrant els gràfics de la tasca..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Avortant el resultat..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
 #, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
@@ -3691,36 +3567,61 @@ msgstr ""
 "Està segur de voler avortar aquesta tasca '%s'?\n"
 "(Progrés: %s, Estat: %s)"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "Està segur que vol avortar aquestes %d tasques?"
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "Avortar la tasca"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Avortant el resultat..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr "Mostrar totes les tasques"
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr "Mostrar totes les tasques."
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr "Continuar la feina per aquesta tasca"
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr "Aturar el treball d'aquesta tasca."
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr "GPU inexistent, "
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr " - s'està executant una aplicació amb exclusivitat"
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr " (no-CPU-intensiva)"
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr "Avortat: no s'ha iniciat per haver acabat el termini"
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr "Graella de Tasques"
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
 #, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
@@ -3729,12 +3630,11 @@ msgstr ""
 "Està segur de voler avortar la tasca '%s'?\n"
 "(Progrés: %s %%, Estat: %s)"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
-msgstr "Canviar les Aplicacions de Reserca a la World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr "Adjuntis al projecte o administrador de comptes"
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
 #, c-format
 msgid ""
 "If possible, add projects at the\n"
@@ -3749,15 +3649,15 @@ msgstr ""
 "Els projectes afegits amb aquest assessor no seran\n"
 "mostrats o administrats amb %s."
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
 msgstr ""
-"El guiarem en el procés per adjuntar-se\n"
-"a un projecte."
+"Nosaltres el guiarem en el procés de adjuntar-se\n"
+"a un projecte o un administrador de comptes."
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3772,158 +3672,163 @@ msgid ""
 "To change which research applications are sent to you from\n"
 "World Community Grid then please click on the following button:"
 msgstr ""
-"Ha seleccionat adjuntar-se a un nou projecte BOINC.  Adjuntar-se a un nou\n"
-"projecte significa que el seu ordinador es connectarà a un nou lloc web\n"
-"i organització.  Si es això el que desitja, si us plau premi\n"
-"el botó Següent abaix.\n"
-"\n"
-"Alguns projectes com World Community Grid executen diverses aplicacions.\n"
-"Si desitja les aplicaciones que li son lliurades per executar-les en\n"
-"el seu ordinador, visiti el lloc web del projecte i modifiqui\n"
-"les seves preferències.\n"
-"\n"
-"Per canviar les aplicacions de recerca que li son lliurades des de\n"
-"World Community Grid premi en el següent botó:"
-
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-#, c-format
-msgid "&Stop using%s"
-msgstr "Aturar utilitzant%s"
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-"Ara eliminarem aquest ordinador de %s. A partir d'ara,\n"
-"adjuntar-se i separar-se directament des d'aquest ordinador.\n"
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "Administrador de comptes"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"Ara el guiarem en el procés per adjuntar-se\n"
-"a un administrador de comptes.\n"
-"\n"
-"Si desitja adjuntar-se a un sol projecte, premi cancel·lar,\n"
-"després seleccioni 'Adjuntar-se a un projecte' en el menú corresponent."
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "Senyals per depurar"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "Han Fallat les Propietats del Projecte"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr "Ha fallat la comunicació del projecte"
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "Ha Fallat la URL de les Propietats del Projecte"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "Creació de Comptes Desactivada"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "Creació de Comptes de Client Desactivada"
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "El Compte ja Existeix"
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "EL Projecte ja hi està Adjuntat"
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "Ha Fallat Ajuntar-se al Projecte"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
-msgstr "Ha fallat la comunicació amb el lloc web de referència"
-
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "Ha Fallat la Detecció de Xarxa"
+"Ha seleccionat adjuntar-se a un nou projecte BOINC.  Adjuntar-se a un "
+"nouprojecte significa que el seu ordinador es connectarà a un nou lloc "
+"weborganització.  Si es això el que desitja, si us plau premi el botó "
+"'Següent' abaix.Alguns projectes com World Community Grid executen diverses "
+"aplicacions.Si desitja canviar les aplicacions de recerca que li son "
+"lliurades per executar-lesen el seu ordinador, visiti el lloc web del "
+"projecte i modifiqui les seves preferències.Per canviar les aplicacions de "
+"recerca que li son lliurades des deWorld Community Grid premi en el següent "
+"botó:"
+
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr "Canviar les Aplicacions de Reserca a la World Community Grid"
 
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "Per continuar, prémer Següent."
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "Realment vol cancel·lar?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "Pregunta"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "&Següent >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< &Enrere"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "&Finalitzar"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
 #, c-format
 msgid "New page inserted. Index = %i"
 msgstr "Inserida una nova pàgina. Índex = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
 #, c-format
 msgid "New page appended. Index = %i"
 msgstr "Afegida una nova pàgina. Índex = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
 #, c-format
 msgid "Old Page Index = %i"
 msgstr "Índex de la pàgina antiga = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
 #, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr "OnDropTarget: índex per HitTest = %i"
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr "Ctrl de Pastis"
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+"per donar suport a l'accessibilitat, si us plau, seleccioneu Opcions "
+"avançades al menú Veure o premeu shift-a"
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+"Aquest panell conté gràfics que mostren els totals de l'usuari dels "
+"projectes"
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr "en blanc"
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr "llista de "
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr " és buida"
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr "%d de %d; "
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr "columna de classificació actual "
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr " ordre descendent "
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr " ordre ascendent "
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr "columna "
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr "la llista està buida"
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr "seleccionats "
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr "fila %d "
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr "de %d; "
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr "columna %d; "
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr "llista de projectes o d'administradors de comptes"
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr "fila %d de %d; "
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr "especifiqui les hores de inici i fi de treball en el format HH:MM-HH:MM"
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 "especifiqui les hores de inici i fi d'ús de la xarxa en el format HH:MM-"
 "HH:MM"
+
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "&Tancar la Finestra\tCTRL+W"
+
+#~ msgid "&News\tCtrl+Shift+N"
+#~ msgstr "&Notícies\tCtrl+Shift+N"
+
+#~ msgid "Display news"
+#~ msgstr "Mostrar les notícies"
diff --git a/locale/ca/BOINC-Project-Generic.po b/locale/ca/BOINC-Project-Generic.po
index 70edc52..dad61b3 100644
--- a/locale/ca/BOINC-Project-Generic.po
+++ b/locale/ca/BOINC-Project-Generic.po
@@ -3,12 +3,12 @@ msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: BOINC translation team <translate at boinc.berkeley.edu>\n"
 "POT-Creation-Date: 2009-05-09 21:36 PDT\n"
-"PO-Revision-Date: 2009-05-15 16:26-0700\n"
+"PO-Revision-Date: 2009-10-29 15:43-0700\n"
 "Last-Translator: Xavier Mor-Mur <xmormur at telepolis.com>\n"
 "Language-Team: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 1.2.1\n"
@@ -189,6 +189,9 @@ msgstr "Crèdit total"
 msgid "Recent average credit"
 msgstr "Crèdit mitjà més recent"
 
+msgid "Cross-project stats"
+msgstr "Estadístiques multi-projecte"
+
 msgid "Type"
 msgstr "Tipus"
 
@@ -606,8 +609,9 @@ 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 ""
-"Si desitja incloure una imatge en el seu perfil, premi el botó "
-"\"Navegar\" i seleccioni un fitxer JPEG o PNG. Si us plau seleccioni imatges de %1 o menys."
+"Si desitja incloure una imatge en el seu perfil, premi el botó \"Navegar\" i "
+"seleccioni un fitxer JPEG o PNG. Si us plau seleccioni imatges de %1 o "
+"menys."
 
 msgid "Language"
 msgstr "Idioma"
@@ -621,8 +625,7 @@ msgstr "Lliurar el perfil"
 msgid ""
 "To protect the project's webpages from spam, we kindly ask you to type in "
 "the two words shown in the image:<br>\n"
-msgstr ""
-"Per protegir les pàgines del projectes de l'spam, li demanem que introdueixi "
+msgstr "Per protegir les pàgines del projectes de l'spam, li demanem que introdueixi "
 "les dues paraules que es mostren en la imatge:<br>\n"
 
 msgid "Create/edit profile"
@@ -635,25 +638,26 @@ msgid ""
 "Your %1profile%2 lets you share your opinions and background with the %3 "
 "community."
 msgstr ""
-"El seu %1perfil%2 li permet compartir les seves opinions i coneixements amb %3 "
-"comunitat."
+"El seu %1perfil%2 li permet compartir les seves opinions i coneixements amb "
+"%3 comunitat."
 
 msgid "Your ReCaptcha response was not correct.  Please try again."
-msgstr "La seva resposta 'ReCaptcha' no es correcte. Si us plau, provi-ho de nou."
+msgstr ""
+"La seva resposta 'ReCaptcha' no es correcte. Si us plau, provi-ho de nou."
 
 msgid ""
 "Your first response was flagged as spam by the Akismet anti-spam system.  "
 "Please modify your text and try again."
 msgstr ""
-"La seva primera resposta ha estat marcada com spam per el sistema anti-spam Akimest.  "
-"Si us plau modifiqui el text i provi-ho de nou."
+"La seva primera resposta ha estat marcada com spam per el sistema anti-spam "
+"Akimest.  Si us plau modifiqui el text i provi-ho de nou."
 
 msgid ""
 "Your second response was flagged as spam by the Akismet anti-spam system.  "
 "Please modify your text and try again."
 msgstr ""
-"La seva segona resposta ha estat marcada com spam per el sistema anti-spam Akismet.  "
-"Si us plau modifiqui el seu text i provi-ho de nou."
+"La seva segona resposta ha estat marcada com spam per el sistema anti-spam "
+"Akismet.  Si us plau modifiqui el seu text i provi-ho de nou."
 
 msgid "Your profile submission was empty."
 msgstr "El perfil que ha lliurat està buit"
@@ -669,8 +673,7 @@ msgstr "S'ha guardat el perfil"
 
 msgid ""
 "Congratulations! Your profile was successfully entered into our database."
-msgstr ""
-"Felicitats! El seu perfil ha estat incorporat a la base de dades."
+msgstr "Felicitats! El seu perfil ha estat incorporat a la base de dades."
 
 msgid "%1View your profile%2"
 msgstr "%1Veure el seu perfil%2"
@@ -682,8 +685,8 @@ 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 ""
-"Per prevenir l'spam, necessita un crèdit promitg de %1 o mes gran per crear o "
-"editar un perfil. Disculpin aquestes molèsties."
+"Per prevenir l'spam, necessita un crèdit promitg de %1 o mes gran per crear "
+"o editar un perfil. Disculpin aquestes molèsties."
 
 msgid "Download BOINC add-on software"
 msgstr "Descarregar programari BOINC addicional"
@@ -694,7 +697,8 @@ msgstr "Pot descarregar aplicatius de diverses categories."
 msgid ""
 "These applications are not endorsed by %1 and you use them at your own risk."
 msgstr ""
-"Aquestes aplicacions no estan aprovades per %1 i les ha d'utilitzar sota la seva responsabilitat."
+"Aquestes aplicacions no estan aprovades per %1 i les ha d'utilitzar sota la "
+"seva responsabilitat."
 
 msgid ""
 "We do not provide instructions for installing these applications.\n"
@@ -703,15 +707,17 @@ msgid ""
 "If this is not enough you should contact the author."
 msgstr ""
 "No proporcionem instruccions per la instal·lació d'aquestes aplicacions.\n"
-"De totes maneres, es probable que l'autor hagi proporcionat algun tipus d'ajuda per "
-"la instal·lació o des-instal·lació de l'aplicació. \n"
+"De totes maneres, es probable que l'autor hagi proporcionat algun tipus "
+"d'ajuda per la instal·lació o des-instal·lació de l'aplicació. \n"
 "Si no estès disponible contacti l'autor."
 
 msgid "Instructions for installing and running BOINC are %1here%2."
 msgstr "Les instruccions per instal·lar i executar BOINC es troben %1aquí%2."
 
 msgid "This list is managed centrally at %1the BOINC website%2."
-msgstr "Aquesta llista està gestionada per el servidor de la %1pagína web de BOINC%2."
+msgstr ""
+"Aquesta llista està gestionada per el servidor de la %1pagína web de "
+"BOINC%2."
 
 msgid "fll"
 msgstr "f11"
@@ -748,7 +754,8 @@ msgid "Forum search results"
 msgstr "Resultats de la recerca al fòrum"
 
 msgid "No thread with id %1. Please check the link and try again."
-msgstr "No hi ha cap fil amb id %1. Si us plau comprovi l'accés i provi-ho de nou."
+msgstr ""
+"No hi ha cap fil amb id %1. Si us plau comprovi l'accés i provi-ho de nou."
 
 msgid "This forum is not visible to you."
 msgstr "Aquest fòrum no està disponible per a vostè."
@@ -762,7 +769,8 @@ msgstr "La meva pregunta ja va ser contestada"
 msgid ""
 "If your question has been adequately answered please click here to close it!"
 msgstr ""
-"Si la seva pregunta ha estat resposta satisfactòriment si us plau premi aqui per finalitzar-la!"
+"Si la seva pregunta ha estat resposta satisfactòriment si us plau premi aqui "
+"per finalitzar-la!"
 
 msgid "I've also got this question"
 msgstr "Jo també m'he fet aquesta pregunta"
@@ -858,8 +866,8 @@ msgid ""
 "You have asked to add %1 as a friend. We will notify %2 and will ask him/her "
 "to confirm that you are friends."
 msgstr ""
-"Heu demanat d'afegir %1 com amic. Ho notificarem a %2 i li demanarem "
-"que confirmi que sou amics."
+"Heu demanat d'afegir %1 com amic. Ho notificarem a %2 i li demanarem que "
+"confirmi que sou amics."
 
 msgid "Add an optional message here:"
 msgstr "Afegir aquí un missatge opcional:"
@@ -949,7 +957,9 @@ msgid "Welcome to %1"
 msgstr "Benvingut a %1"
 
 msgid "View and edit your account preferences using the links below."
-msgstr "Revisi i editi les preferències del seu compte utilitzant els vincles següents."
+msgstr ""
+"Revisi i editi les preferències del seu compte utilitzant els vincles "
+"següents."
 
 msgid "Your account"
 msgstr "El seu compte"
@@ -1034,10 +1044,10 @@ msgid ""
 "them to your %2message filter%3.  This will prevent you from seeing any "
 "public or private messages from that user."
 msgstr ""
-"El missatges privats a la web %1 només son visibles per qui els envia i "
-"el receptor.  %1 no comprova ni restringeix el continguts del missatges privats.  "
-"Si rep un missatge privat no desitjat d'un altre usuari %1, pot afegir-lo "
-"en el seu %2filtre de missatges%3.  Això evitarà que vegi cap "
+"El missatges privats a la web %1 només son visibles per qui els envia i el "
+"receptor.  %1 no comprova ni restringeix el continguts del missatges "
+"privats.  Si rep un missatge privat no desitjat d'un altre usuari %1, pot "
+"afegir-lo en el seu %2filtre de missatges%3.  Això evitarà que vegi cap "
 "missatge públic o privat d'aquest usuari."
 
 msgid ""
@@ -1046,10 +1056,10 @@ msgid ""
 "members.  By posting to the forums, you are granting irrevocable license for "
 "anyone to view and copy your posts."
 msgstr ""
-"Si utilitza els fòrums de la nostra web ha de seguir les %2normes%3.  "
-"Els missatges que enviï missatges als fòrums de %1 seran visibles per tothom, "
-"inclosos els que no son membres.  Lliurant els missatges al fòrum, esteu autoritzant "
-"de forma incondicional a tothom a veure'ls i copiar-los."
+"Si utilitza els fòrums de la nostra web ha de seguir les %2normes%3.  Els "
+"missatges que enviï missatges als fòrums de %1 seran visibles per tothom, "
+"inclosos els que no son membres.  Lliurant els missatges al fòrum, esteu "
+"autoritzant de forma incondicional a tothom a veure'ls i copiar-los."
 
 msgid "Is it safe to run %1?"
 msgstr "Es segura l'execució de %1?"
@@ -1167,11 +1177,12 @@ msgid ""
 "Are you really sure you want to block user %1 from sending you private "
 "messages?"
 msgstr ""
-"Està segur que vol bloquejar que l'usuari %1 li enviï missatges "
-"privats?"
+"Està segur que vol bloquejar que l'usuari %1 li enviï missatges privats?"
 
 msgid "Please note that you can only block a limited amount of users."
-msgstr "Si us plau, tingui en compte que només pot bloquejar un nombre limitat d'usuaris."
+msgstr ""
+"Si us plau, tingui en compte que només pot bloquejar un nombre limitat "
+"d'usuaris."
 
 msgid ""
 "Once the user has been blocked you can unblock it using forum preferences "
@@ -1308,28 +1319,30 @@ msgid ""
 "More detailed statistics for %1 and other BOINC-based projects are available "
 "at several web sites:"
 msgstr ""
-"Estadístiques mes detallades de %1 i altres projectes BOINC disponibles "
-"a diverses pàgines web:"
+"Estadístiques mes detallades de %1 i altres projectes BOINC disponibles a "
+"diverses pàgines web:"
 
 msgid ""
 "You can also get your current statistics in the form of a \"signature image"
 "\":"
-msgstr ""
-"També pot obtenir les seves estadístiques en forma de \"imatge\":"
+msgstr "També pot obtenir les seves estadístiques en forma de \"imatge\":"
 
 msgid ""
 "Additionally you can get your individual statistics summed across all BOINC "
 "projects from several sites; see your %1home page%2."
 msgstr ""
 "També pot obtenir les seves estadístiques individuals com a suma de tots els "
-"projectes BOINC a partir de diverses pàgines web; vegi la seva %1pàgina principal%2."
+"projectes BOINC a partir de diverses pàgines web; vegi la seva %1pàgina "
+"principal%2."
 
 msgid "%1 participants may form %2teams%3"
 msgstr "%1 participants poden formar %2equips%3"
 
 msgid ""
 "You may belong to only one team. You can join or quit a team at any time."
-msgstr "Només podeu pertànyer a un equip. Us podeu adjuntar o separar en qualsevol moment."
+msgstr ""
+"Només podeu pertànyer a un equip. Us podeu adjuntar o separar en qualsevol "
+"moment."
 
 msgid "Each team has a %1founder%2 who may:"
 msgstr "Cada equip te un %1fondador%2 que pot:"
@@ -1347,7 +1360,9 @@ msgid "disband a team if it has no members"
 msgstr "dissoldre un equip si no te membres"
 
 msgid "To join a team, visit its team page and click %1Join this team%2."
-msgstr "Per adjuntar-vos a u  equip, visiteu la seva pàgina i premeu %1Adjuntar-se a aquest equip%2."
+msgstr ""
+"Per adjuntar-vos a u  equip, visiteu la seva pàgina i premeu %1Adjuntar-se a "
+"aquest equip%2."
 
 msgid "Find a team"
 msgstr "Trobar un grup"
diff --git a/locale/ca/BOINC-Web.po b/locale/ca/BOINC-Web.po
index 90257ed..ea8464f 100644
--- a/locale/ca/BOINC-Web.po
+++ b/locale/ca/BOINC-Web.po
@@ -8,7 +8,7 @@ msgstr ""
 "Language-Team: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 1.2.1\n"
diff --git a/locale/ca/pootle-boincclient610-ca.prefs b/locale/ca/pootle-boincclient610-ca.prefs
new file mode 100644
index 0000000..fe9246f
--- /dev/null
+++ b/locale/ca/pootle-boincclient610-ca.prefs
@@ -0,0 +1,8 @@
+# Pootle preferences for project boinctrunk, language ca
+
+rights:
+  Xavi = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/ca/pootle-boinctrunk-ca.prefs b/locale/ca/pootle-boinctrunk-ca.prefs
deleted file mode 100644
index dc1e281..0000000
--- a/locale/ca/pootle-boinctrunk-ca.prefs
+++ /dev/null
@@ -1,6 +0,0 @@
-# Pootle preferences for project boinctrunk, language ca
-
-rights:
-  Xavi = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  default = u'view, suggest, archive, pocompile'
-  nobody = u'view'
diff --git a/locale/cs/BOINC-Manager.mo b/locale/cs/BOINC-Manager.mo
index 0ad6b47..475e45b 100644
Binary files a/locale/cs/BOINC-Manager.mo and b/locale/cs/BOINC-Manager.mo differ
diff --git a/locale/cs/BOINC-Manager.po b/locale/cs/BOINC-Manager.po
index d3c4013..6487fe6 100644
--- a/locale/cs/BOINC-Manager.po
+++ b/locale/cs/BOINC-Manager.po
@@ -1,37 +1,37 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 6.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
-"PO-Revision-Date: 2009-05-05 12:11-0700\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2010-03-22 14:29-0700\n"
 "Last-Translator: Martin Suchan <martin.suchan at email.cz>\n"
 "Language-Team: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
 "Language: cs\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 "X-Generator: Pootle 1.2.1\n"
 "X-Poedit-Language: English\n"
 "X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: iso-8859-1\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: UNITED STATES\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "Informace o uživateli"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr "Označte váš účet "
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
 msgstr ""
-"Zadejte prosím údaje o Vašem účtu \n"
+"Zadejte prosím údaje o vašem účtu \n"
 "(Účet si vytvoříte na www stránkách projektu)"
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
@@ -39,417 +39,483 @@ msgstr ""
 "Tento projekt momentálně neumožňuje vytváření nových účtů.\n"
 "Připojit se můžete pouze pokud již máte vytvořený účet."
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "Máte již vytvořený účet u tohoto projektu?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "&Ne, jsem nový uživatel"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "&Ano, mám již účet"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+"Nepodařilo se automaticky nastavit informace\n"
+"o vašem účtu.\n"
+"\n"
+"Pro nápovědu co zadat do kolonek Emailová adresa a Heslo,\n"
+"klikněte dole na odkaz 'Získat přihlašovací informace'."
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr "Získat přihlašovací informace"
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "&Heslo:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "Zvolte &heslo: "
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "P&otvrzení hesla: "
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr "Používáte již %s?"
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr "&Uživatelské jméno:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "&Emailová adresa:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr "Minimální délka hesla je %d znaků."
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr "Zapomněli jste heslo?"
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+"Pokus ještě nejste registrováni u tohoto Správce účtu,\n"
+"učiňte tak, než budete pokračovat. Pro registraci nebo\n"
+"získání zapomenutého hesla klikněte na odkaz dole."
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr "Webové stránky Správce účtu"
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "Připojit k projektu"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "Aktualizovat Správce účtu "
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "Připojit ke Správci účtu "
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr ""
 "Minimální délka hesla pro tento projekt je %d znaků. Zadejte prosím jiné "
 "heslo."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
 "Minimální délka hesla pro tohoto Správce účtu je %d znaků. Zadejte prosím "
 "jiné heslo."
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr "Zadaná hesla se neshodují. Prosím napište je znovu."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "Adresa Správce účtu "
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr "Zvolte Správce účtu"
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Zadejte adresu (URL) webové stránky Správce účtu. "
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"Zvolte Správce účtu kliknutím na jeho jméno \n"
+"nebo napište do kolonky dole jeho webovou adresu (URL)."
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "&Adresa (URL) Správce účtu: "
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr "Komunikuji s %s."
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr "Komunikuji se serverem."
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "Čekejte prosím..."
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr "Na serveru se vyskytla vnitřní chyba. \n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Připojen"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Odpojen"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "&Zavřít okno\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr "Zavřít okno %s"
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "Zavřít okno Správce BOINC."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr "Zavřít okno"
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
-msgstr "Ukončit %s"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr "&Ukončit %s"
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "&Ukončit"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
-msgstr "&Pokročilé zobrazení\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr "&Projekty\tCtrl+Shift+P"
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
-msgstr ""
-"Pokročilé zobrazení umožňuje zobrazit více sloupců s údaji a grafickými "
-"ukazateli průběhu."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr "Zobrazit projekty"
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
-msgstr "&Jednoduché zobrazení...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr "Úkoly\tCtrl+Shift+T"
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "Přepne BOINC do režimu volitelných zobrazení"
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr "Zobrazit úkoly"
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "Připojit k &Projektu..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr "Přenosy\tCtrl+Shift+X"
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "Připojit k projektu"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr "Zobrazit přenosy"
+
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr "Zprávy\tCtrl+Shift+M"
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr "Zobrazit zprávy"
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr "&Statistiky\tCtrl+Shift+S"
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr "Zobrazit statistiky"
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr "Využití &disku\tCtrl+Shift+D"
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr "Zobrazit využití disku"
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "Připojit ke &Správci účtu..."
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "Jednoduché zobrazení...\tCtrl+Shift+V"
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Připojit ke Správci účtu"
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr "Přepne BOINC do režimu zjednodušeného zobrazení"
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr "Připojit k &projektu nebo správci účtu..."
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr "Připojit k projektu nebo správci účtu a zahájit práci"
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr "&Synchronizovat s %s"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr "Použít aktuální nastavení z %s"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "Připojit se k &projektu..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Připojit se k projektu a začít pracovat"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "Ukončit %s..."
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Odebrat klienta ze spravování správcem účtů."
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "&Počítat nepřetržitě"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr "Počítat bez ohledu na nastavení"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "Počítat podle &Nastavení"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "Počítat podle nastavení"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "Po&zastavit"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr "Pozastavit práci bez ohledu na nastavení"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr "Vždy používat GPU"
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr "Povolit práci pro GPU bez ohledu na nastavení"
+
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr "Používat GPU podle nastavení"
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr "Povolit práci pro GPU podle nastavení"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr "Nepoužívat GPU"
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr "Zakázat práci pro GPU bez ohledu na nastavení"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
-msgstr "Trvale po&volit přístup k síti"
+msgstr "Trvale povolit přístup k Internetu"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
-msgstr "Povolit připojení k síti bez ohledu na nastavení"
+msgstr "Povolit připojení k Internetu bez ohledu na nastavení"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
-msgstr "Připojovat k &síti podle nastavení"
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
+msgstr "Připojovat k Internetu podle nastavení"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
-msgstr "Využívat připojení k síti podle nastavení"
+msgstr "Využívat připojení k Internetu podle nastavení"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
-msgstr "Z&akázat přístup k síti"
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
+msgstr "Pozastaven přístup k Internetu"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
-msgstr "Zakázat Správci BOINC využívat síť"
+msgstr "Zakázat Správci BOINC využívat Internet"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "&Možnosti..."
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "Nastavení vzhledu a proxy serveru"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "&Předvolby..."
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr "Nastavit lokální předvolby"
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
 msgid "Connect to another computer running %s"
-msgstr "Připojit k jinému počítači se spuštěným %s"
+msgstr "Připojit k jinému počítači se spuštěným klientem %s"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
-msgstr "Volba &počítače "
+msgstr "Volba &počítače... "
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
-msgstr "Vypínání připojeného klienta..."
+msgstr "Vypnutí připojeného klien&ta..."
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr "Vypnout aktuálně připojeného klienta"
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "Spustit &testy procesoru"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
-msgstr "Spouští testy procesoru"
+msgstr "Spustit BOINC testy procesoru"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
-msgstr "Zahájit síťovou &komunikaci"
+msgstr "Spustit &všechny přenosy"
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
-msgstr "Zahájit veškerou čekající síťovou &komunikaci."
+msgstr "Zahájit veškerou čekající síťovou komunikaci."
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
-msgstr "Načíst &Konfigurační soubor"
+msgstr "Načíst &konfigurační soubor"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr "Načíst informace o nastavení z \"cc-config.xml\"."
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
-msgstr "Načíst nastavení z &Lokálního souboru"
+msgstr "Načíst nastavení z &lokálního souboru"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr "Načíst nastavení z \"global_prefs_override.xml\""
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr "&Ukončit %s..."
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "Odpojit tohoto klienta od Správce účtu."
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "&Připojit k projektu"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "Práci zahájíte připojením se k projektu."
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
-msgstr "Náp&ověda pro %s"
+msgstr "%s nápověda"
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
 msgid "Show information about %s"
-msgstr "Zobrazí informace o %s"
+msgstr "Zobrazit informace o %s"
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
-msgstr "Nápověda pro &%s"
+msgstr "&%s nápověda"
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
-msgstr "Zobrazí informace o %s"
+msgstr "Zobrazit informace o %s"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
-msgstr "&Webové stránky %s"
+msgstr "%s &webové stránky"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
 msgid "Show information about BOINC and %s"
-msgstr "Zobrazí informace o Správci BOINC a %s"
+msgstr "Zobrazit informace o BOINC a %s"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
-msgstr "&O aplikaci %s"
+msgstr "Informace o %s..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
-msgstr "Informace o licencích a autorských právech."
+msgstr "Informace o licencování a copyrightu."
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
-msgstr "&Soubor"
+msgstr "Soubor"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "&Vzhled"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
-msgstr "&Nástroje"
+msgstr "Nás&troje"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
-msgstr "&Aktivita"
+msgstr "&Aktivity"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
-msgstr "Nas&tavení"
+msgstr "Pokročilé"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
-msgstr "Náp&ověda"
-
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr "%s - Vypnout aktuálního klienta..."
+msgstr "Nápověda"
 
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-"%s vypne aktuálně připojeného klienta,\n"
-"a vyzve vás k připojení k jinému počítači.\n"
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr "Připojuji se k projektu nebo správci účtu..."
 
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr "%s - Odpojit od %s"
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -463,57 +529,66 @@ msgstr ""
 "\n"
 "Chcete opustit %s?"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "Připojuji se k projektu..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "Obnovuji komunikaci s projektem..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr "%s - Volba jazyka:"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr ""
 "Jazyk %s byl změněn. Aby se změna projevila, je nutné %s ukončit a znovu "
 "spustit."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - Vypnout aktuálního klienta..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s vypne aktuálně připojeného klienta,\n"
+"a vyzve vás k připojení k jinému počítači.\n"
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Obnovuji komunikaci s projektem..."
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr "%s byl úspěšně připojen k %s"
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "Připojuji se k:  %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
 msgid "Connected to %s (%s)"
 msgstr "Připojeno k: %s (%s)"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "Toto uživatelské jméno je již použito "
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -525,11 +600,11 @@ msgstr ""
 "\n"
 "Postupujte prosím dle instrukcí na webových stránkách projektu."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "Tato emailová adresa je již použita"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -541,16 +616,30 @@ msgstr ""
 "\n"
 "Postupujte prosím dle instrukcí na webových stránkách projektu."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr "Komunikuji s BOINC klientem.  Prosím čekejte..."
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr "&Opustit %s"
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr "&Ukončit %s"
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "Zrušit"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr "%s - Chyba připojení"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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."
@@ -559,7 +648,7 @@ msgstr ""
 "Kontaktujte prosím vašeho administrátora, aby vás přidal do lokální "
 "uživatelské skupiny 'boinc_users'."
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
@@ -567,21 +656,21 @@ msgstr ""
 "Chyba autorizace při připojení k běžícímu klientu.\n"
 "Ujistěte se, že jste tento program spustili ze stejné složky jako klienta."
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr "Selhala autorizace při připojení k běžícímu klientovi."
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "Zadané heslo je chybné. Prosím, zkuste znovu."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - Připojení selhalo"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
@@ -589,232 +678,269 @@ msgstr ""
 "%s nemůže navázat spojení s klientem %s.\n"
 "Chcete pokus opakovat?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr "%s - Start daemona selhal"
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
-"%s není schopen spustit %s klienta.\n"
-"Spusťte prosím Panel nástrojů->Administrativní nástroje->Služby a spusťte "
+"%s není schopen spustit klienta %s.\n"
+"Spusťte prosím \"Ovládací panely -> Nástroje pro správu -> Služby\" a spusťte "
 "službu BOINC."
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
 msgstr ""
-"%s není schopen spustit %s klienta.\n"
+"%s není schopen spustit klienta %s.\n"
 "Spusťe prosím daemona a zkuste to znova."
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr "%s - Stav připojení"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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 ""
 "%s není připojen k žádnému klientu %s.\n"
-"V menu 'Nastavení\\Volba počítače' zadejte připojiení ke klientu %s.\n"
+"V menu 'Nastavení / Volba počítače...' zadejte připojení ke klientu %s.\n"
 "Chcete-li se připojit ke klientu běžícímu na vašem počítači, \n"
 "do kolonky \"Jméno počítače\" zadejte 'localhost'."
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Webové stránky"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr "%s - Stav sítě"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
-msgstr "%s vyžaduje připojení na internet. Prosím klikněte pro otevření %s."
+msgstr "%s vyžaduje připojení k internetu. Prosím klikněte pro otevření %s."
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
 #, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
 "Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
 msgstr ""
-"%s není schopen se spojit s projektem a potřebuje připojení k Internetu.\n"
-"Připojte se prosím k Internetu, poté zvolte 'Provést síťovou komunikaci' v "
-"'Pokročilém' menu."
+"%s není schopen spojit se s projektem a potřebuje připojení k internetu.\n"
+"Připojte se prosím k internetu, poté zvolte 'Opakovat přenos' v menu "
+"'Nastavení'."
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
 msgstr ""
-"%s vyžaduje připojení na internet. \n"
+"%s vyžaduje připojení k internetu. \n"
 "Připojit?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s se připojuje k internetu."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
 "Please connect to the Internet, or select a default connection\n"
 "using Advanced/Options/Connections."
 msgstr ""
-"%s se nemůže připojit k internetu, a není nastaveno žádné standardní "
-"připojení.\n"
-"Připojte se prosím k internetu nebo nastavte standardní připojení \n"
-"v menu Rozšířené/Možnosti/Připojení."
+"%s se nemůže připojit k internetu a není nastaveno žádné výchozí připojení.\n"
+"Připojte se prosím k internetu nebo nastavte výchozí připojení \n"
+"v menu 'Nastavení / Možnosti / Připojení."
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s se úspěšně připojil k internetu."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
 msgid "%s failed to connect to the Internet."
-msgstr "Selhalo připojení %s na internet. "
+msgstr "Selhalo připojení %s k internetu. "
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
 msgstr ""
-"%s detekoval připojení k internetu. Bude znovu zahájen přenos\n"
-" a aktualizovány všechny projekty. "
+"%s detekoval připojení k internetu. \n"
+"Bude znovu zahájen přenos a aktualizovány všechny projekty. "
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s byl úspěšně odpojen z internetu."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "Selhalo odpojení %s z internetu."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+"Momentálně nemáte práva na správu klienta.\n"
+"\n"
+"Abyste mohl používat BOINC jako aktuální uživatel:\n"
+"- přeinstalujte BOINC se zvolením \"Ano\" u otázky na\n"
+"ne-administrátorské účty nebo\n"
+"- kontaktujte vašeho administrátora, aby vás přidal\n"
+"do uživatelské skupiny 'boinc_master'."
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"Práva či vlastnictví souborů BOINC nejsou nastavena správně, prosím "
+"přeinstalujte BOINC.\n"
+"(Chybový kód %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
 msgstr ""
-"Pro správné fungování BOINCu je vyžadován restart.\n"
-"Prosím restartujte počítač a zkuste to znova."
+"Pro správné fungování BOINC je vyžadován restart.\n"
+"Prosím restartujte počítač a pokus opakujte."
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "Správce BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
-msgstr "BOINC Manager byl spuštěn automaticky operačním systémem"
+msgstr "Správce BOINC byl automaticky spuštěn operačním systémem"
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
-msgstr "Spouštět BOINC minimalizovaný."
+msgstr "Spustit BOINC minimalizovaný."
+
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr "Složka obsahující spustitelného BOINC klienta"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr "Složka pro BOINC data"
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr "Spustit BOINC s těmito volitelnými parametry"
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
-msgstr "zruší bezpečnostní uživatele a práva BOINC"
+msgstr "Zrušit bezpečnostní uživatele a práva BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
-"povolit debugovací mod skinu pro zobrazení chybových hlášek správce skinů"
+"Nastavit vývojový režim (debugging mode) pro zobrazení chybových zpráv "
+"správce vzhledů"
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Zjistit automaticky)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Neznámý)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Definováno uživatelem)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr "Počítání je pozastaveno."
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr "Přístup k síti je pozastaven."
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr "%s: %.2f%% dokončeno."
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr "%d úkolů se počítá."
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr "Obnovuji spojení s klientem."
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr "Nepřipojeno ke klientu."
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
-msgstr "Otevřít stránky %s..."
+msgstr "Otevřít webové stránky %s..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr "Otevřít %s..."
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "Uspat"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr "Uspat GPU"
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "Připojení k projektu selhalo"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr "Selhala aktualizace Správce účtu. "
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr "Selhalo odstranění Správce účtu. "
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "Selhala komunikace se Správcem účtu. "
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -824,526 +950,525 @@ msgstr ""
 "Došlo k chybě.\n"
 "Další podrobnosti naleznete v okně 'Zprávy'.\n"
 "\n"
-"Zrušte kliknutím na <Dokončit>."
+"Zavřete kliknutím na <Dokončit>."
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
-msgstr "Pro zavření stiskněte Dokončit. "
+msgstr "Zavřete kliknutím na <Dokončit>. "
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
-msgstr "Zprávy od serveru:"
+msgstr "Zprávy ze serveru: "
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "Připojeno k projektu "
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "Připojení k projektu bylo úspěšně dokončeno. "
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
 msgstr ""
-"Po kliknutí na Dokončit se otevře v internetovém prohlížeči stránka, \n"
-"kde bude možno účet pojmenovat a nastavit."
+"Po kliknutí na <Dokončit> bude ve vašem internetovém prohlížeči otevřena "
+"stránka, \n"
+"ve které budete moci nastavit jméno účtu a další parametry."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr "Aktualizace z %s dokončena."
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "Aktualizace dokončena. "
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr "Odstranění z %s dokončeno."
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "Úspešně odstraněn!"
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr "Připojeno k %s"
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "Spojení se Správcem účtu navázáno. "
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
 msgstr "Vítejte v %s!"
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
+#, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "Připojení k systému %s bylo úspěšně dokončeno."
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "Připojení ke Správci účtu bylo úspěšně dokončeno."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr "O aplikaci %s"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
-msgstr "Verze:"
+msgstr "Verze: "
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
-msgstr "Verze widgetů:"
+msgstr "Verze wxWidgets: "
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
-msgstr "Copyright:"
+msgstr "Copyright: "
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
 "(C) 2003-2007 Kalifornská Univerzita, Berkeley.\n"
 "Všechna práva vyhrazena.\n"
 "Překlad: Spok a Necroman"
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr ""
 "Berkeley Open Infrastructure for Network Computing \n"
 "(Berkeleyská Otevřená Infrastruktura pro Síťové Výpočty)"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "&OK"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
-msgstr "Neplatý tok (invalid float)"
+msgstr "Neplatý formát čísla. Použijte x,xx"
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
-msgstr "Neplatný čas. Formát musí být HH:MM"
+msgstr ""
+"Neplatný formát času. Použijte H:mm\n"
+"(H = 24hodinový formát)"
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
-msgstr "Neplatné časové rozmezí. Formát musí být HH:MM-HH:MM"
+msgstr ""
+"Neplatný formát časového rozmezí. Použijte H:mm-H:mm\n"
+"(H = 24hodinový formát)"
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr "Byla zadána neplatná hodnota"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr "Chyba při ověřování"
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr "Opravdu chcete vymazat všechny lokální předvolby?"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
-msgstr "Potvrdit"
+msgstr "Dotaz"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
 msgstr "%s - Předvolby"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
 "Click Clear to restore web-based settings."
 msgstr ""
-"Tato nabídka obsahuje předvolby pro tento počítač.\n"
-"Klikněte OK pro uložení předvoleb.\n"
-"Klikněte Smazat pro obnovení nastavení podle webu."
+"Tato nabídka obsahuje předvolby pouze pro tento počítač.\n"
+"Klikněte <OK> pro uložení předvoleb.\n"
+"Klikněte <Vymazat> pro obnovení předvoleb z webu."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr "Vymazat"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
-msgstr "smazat všechna místní nastavení a zavřít nabídku"
+msgstr "Smazat všechna místní nastavení a zavřít nabídku"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr "Počítání povoleno"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr "Při provozu na baterie"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
-msgstr ""
-"pokud zaškrtnete tuto nabídku, povolíte výpočet i tehdy, když počítač poběží "
-"z baterie"
+msgstr "Je-li zaškrtnuto, budou výpočty probíhat i při provozu na baterie"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr "Je-li počítač používán"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr ""
-"pokud zaškrtnete tuto nabídku, povolíte výpočet i tehdy, když bude počítač "
-"běžně používán"
+"Je-li zaškrtnuto, budou výpočty probíhat, i když je počítač právě používán"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
-msgstr "Používat GPU pro výpočet když je počítač běžně používán"
+msgstr "Používat GPU pro výpočty, i když je počítač právě používán"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
-"pokud zaškrtnete tuto nabídku, povolíte výpočet pomocí GPU i tehdy, když "
-"bude počítač běžně používán"
+"Je-li zaškrtnuto, budou výpočty pomocí GPU probíhat, i když je počítač právě "
+"používán "
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
-msgstr "Pouze pokud počítač nebude používán po"
+msgstr "Po nečinnosti "
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr ""
-"počítat pouze tehdy, pokud nebyl počítač používán po tuto dobu v minutách"
+"Výpočty budou zahájeny až poté, co počítač nebyl používán po stanovenou dobu "
+"(minuty). "
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
-msgstr "minut(y)"
+msgstr "min."
+
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr "Pokud je využití procesoru nižší než"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr "pozastavit práci, pokud využití procesoru překročí tuto úroveň"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr "procent (0 znamená bez omezení)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
-msgstr "Každý den mezi těmito hodinami"
+msgstr "Každý den mezi "
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
-msgstr "začít pracovat v tuto dobu"
+msgstr "Čas zahájení výpočtů"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr "a"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
-msgstr "přestat pracovat v tuto dobu"
+msgstr "Čas ukončení výpočtů"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
-msgstr "(bez omezení, pokud se časy rovnají)"
+msgstr "(bez omezení, pokud jsou časy shodné) "
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
-msgstr "Vyjímky na dny v týdnu:"
+msgstr "Nastavení pro dny v týdnu:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
-msgstr "zaškrtněte pro dny, kde chcete upřesnit čas"
+msgstr "Po zaškrtnutí lze nastavit hodiny individuálně pro daný den v týdnu"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr "Pondělí"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr "Úterý"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr "Středa"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr "ÄŒtvrtek"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr "Pátek"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr "Sobota"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr "Neděle"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
-msgstr "Ostatní možnosti"
+msgstr "Ostatní předvolby"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
-msgstr "Změnit aplikaci každých"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
+msgstr "Přepnout aplikaci každých"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr "Na víceprocesorových systémech použít nejvýše"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
 msgid "% of the processors"
-msgstr "procesorů"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+msgstr "% procesorů"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr "Použít nejvýše"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
 msgid "% CPU time"
 msgstr "% procesorového času"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr "Využití procesoru"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr "Obecné předvolby"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr "Max. rychlost stahování"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr "KB/s"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr "Max. rychlost odesílání"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr "Připojit se přibližně každých"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
 msgstr ""
-"tento počítač je připojen k Internetu každý x-tý den\n"
-"(0 pokud je připojen stále)"
+"Jak často (jednou za kolik dní) bývá tento počítač připojován k internetu.\n"
+"(Pokud je připojen trvale, zadejte 0)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr "dní"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr "Dodatečná zásoba jednotek"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr "dní (max. 10)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
-msgstr "Přeskočit kontrolu souborů s obrázky"
+msgstr "Nekontrolovat obrázky "
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr ""
-"zaškrtněte, pokud váš poskytovatel připojení k Internetu upravuje soubory s "
-"obrázky"
+"Zaškrtněte, pokud váš poskytovatel připojení k internetu modifikuje soubory "
+"s obrázky.\n"
+"(Například GPRS připojení)."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr "Možnosti připojení"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr "Zobrazit dotaz před připojením k internetu"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr ""
-"pokud je zaškrtnuto, zobrazí se před připojením k Internetu dialogové okno s "
-"dotazem"
+"Je-li zaškrtnuto, před každým pokusem o připojení k internetu je vyžadováno "
+"potvrzení."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr "Odpojit po ukončení komunikace"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
 msgstr ""
-"pokud je zaškrtnuto, BOINC ukončí připojení po dokončení internetové "
-"komunikace\n"
-"(má význam jen u výtáčeného připojení)"
+"Je-li zaškrtnuto, BOINC ukončí připojení k internetu po dokončení všech "
+"potřebných přenosů.\n"
+"Platí pouze pro vytáčená (dial-up) připojení."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
-msgstr "Povolené využítí sítě"
+msgstr "Povolit přístup k síti"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
-msgstr "počáteční hodina možného připojení k síti"
+msgstr "Čas otevření přístupu k síti"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
-msgstr "konečná hodina možného připojení k síti"
+msgstr "Čas ukončení přístupu k síti"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr "Využití internetu"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr "Využití disku"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
-msgstr "maximum místa na disku využitého BOINCem (v GB)"
+msgstr "BOINC využije nejvýše tolik GB místa na disku."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr "GB na disku"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr "Ponechat aspoň"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
-msgstr "BOINC ponechá aspoň tolik místa na disku volného (v GB)"
+msgstr "BOINC ponechá nejméně tolik GB na disku volných"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr "GB na disku volných"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
-msgstr "BOINC využije maximálně tolik procent celkového místa na disku"
+msgstr "BOINC využije nejvýše tolik procent z celkové kapacity disku."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
-msgstr "% od celkového místa na disku"
+msgstr "% celkového místa na disku"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
-msgstr "Zapisovat na disk každých"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr "Ukládat kontrolní body úkolů na disk každých"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr "vteřin"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr "% stránkovacího souboru"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr "Využití paměti"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr "% je-li počítač používán"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr "% není-li počítač používán"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr "Při pozastavení výpočtů ponechat aplikaci v paměti"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr ""
-"pokud je zaškrtnuto, pozastavené pracovní jednotky jsou ponechané v paměti"
+"Je-li zaškrtnuto, pak pokud z nějakého důvodu budou výpočty pozastaveny, \n"
+"úkoly které byly zpracovávány budou ponechány v paměti."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
-msgstr "využití disku a paměti"
+msgstr "Využití disku a paměti"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr "OK"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
-msgstr "uložit všechny hodnoty a zavřít nabídku"
+msgstr "Uložit všechny hodnoty a zavřít nabídku"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr "Zrušit"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
-msgstr "zavřít nabídku bez uložení nových hodnot"
+msgstr "Zavřít nabídku bez uložení nových hodnot"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "Nápověda"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
-msgstr "zobrazí stránku s volbou preferencí"
+msgstr "Zobrazit webovou stránku s předvolbami"
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
 msgstr "%s - Potvrdit ukončení"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1352,15 +1477,15 @@ msgid ""
 "If you also want to stop running the science applications when you\n"
 "exit the Manager, then choose from the following options:"
 msgstr ""
-"Chcete opustit %s,\n"
-"který vám umožňuje zobrazovat a měnit\n"
+"Rozhodli jste se ukončit %s,\n"
+"který vám umožňuje zobrazovat a spravovat\n"
 "vědecké aplikace běžící na vašem počítači.\n"
 "\n"
-"Pokud chcete též ukončit vědecké aplikace když\n"
-"ukončujete Managera, zvolte z následujících možností:"
+"Pokud chcete při ukončení Správce BOINC ukončit též\n"
+"všechny běžící vědecké aplikace, zvolte z následujících možností: "
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1372,540 +1497,498 @@ msgstr ""
 "Tímto ukončíte %s a přerušíte všechny výpočty až do doby, \n"
 "než opět spustíte aplikaci %s nebo kdy bude spuštěn spořič obrazovky %s.\n"
 "\n"
-"Ve většině případů je lepší zavřít jen okno %s\n"
-"než zavírat celou aplikaci. To umožní %s pokračovat\n"
+"Ve většině případů je lepší pouze zavřít okno %s\n"
+"než zavírat celou aplikaci. Tím umožníte %s pokračovat\n"
 "ve výpočtech v době, kterou jste si zvolili v nastavení."
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
-msgstr "Přerušit výpočet vědeckých aplikací při ukončení Managera."
+msgstr "Přerušit výpočet vědeckých aplikací při ukončení Správce."
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
-msgstr "Zapamatovat si toto rozhodnutí a nezobrazovat znova tuto nabídku."
+msgstr "Zapamatovat si toto rozhodnutí a tuto nabídku již nezobrazovat."
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "&Zrušit"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
-msgstr "Nezobrazovat znova tuto nabídku."
+msgstr "Tuto infomaci již nezobrazovat."
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr "&Zavřít"
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr "Vlastnosti projektu "
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "Obecné"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr "Hlavní URL"
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
 msgstr "Uživatelské jméno"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr "Název týmu"
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Rozdělení práce"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
-msgstr "RPC plánovače odloženo o"
+msgstr "RPC plánovače odloženo o "
+
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr "Stahování souborů odloženo o "
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr "Odesílání souborů odloženo o "
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr "ID počítače"
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
-msgstr "Nenáročné na CPU"
-
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+msgstr "Nenáročné na procesor"
+
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
-msgstr "ano"
-
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+msgstr "Ano"
+
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
-msgstr "ne"
+msgstr "Ne"
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr "Pozastaveno přes GUI"
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
-msgstr "Nepožadovat více práce"
+msgstr "Zakázáno přijímat další práci"
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr "Zpracovávám požadavek plánovače"
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
-msgstr "Připojeno přes správce účtů"
+msgstr "Připojeno přes Správce účtu"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr "Odpojit po ukončení komunikace"
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr "Ukončeno"
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr "Kredit"
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr "Uživatel"
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr "Počítač"
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr "Plánování"
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr "Priorita plánovávní procesoru"
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr "Priorita vyzvedávání práce procesoru"
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
-msgstr "Vyzvedávání práce procesoru odloženo o"
+msgstr "Vyzvedávání práce procesoru odloženo o "
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr "Interval odkládání vyzvedávání práce procesoru"
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr "Rozvrhování práce pro GPU nVidia"
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr "Priorita vyzvedávání práce pro GPU nVidia"
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
-msgstr "Vyzvedávání práce pro GPU nVidia odloženo o"
+msgstr "Vyzvedávání práce pro GPU nVidia odloženo o "
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr "Interval odkládání vyzvedávání práce pro GPU nVidia"
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr "Rozvrhování práce pro ATI GPU"
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr "Priorita vyzvedávání práce ATI GPU"
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr "Vyzvedávání práce ATI GPU odloženo o "
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr "Interval odkládání vyzvedávání práce ATI GPU "
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
-msgstr "Korekční faktor pro dobu trvání"
+msgstr "Korekční faktor pro dobu trvání "
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr "Vlastnosti úkolu "
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Aplikace"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
-msgstr "Jméno pracovní jednotky"
+msgstr "Jméno jednotky"
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr "Stav"
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr "Přijato"
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
-msgstr "Odevzdat do"
+msgstr "Odevzdat do "
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr "Prostředky"
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
-msgstr "Procesorový čas při posledním uložení"
+msgstr "Procesorový čas při posledním uložení "
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "Procesorový čas"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 msgid "Elapsed time"
 msgstr "ÄŒas"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
-msgstr "Odhadovaný zbývající čas"
+msgstr "Odhadovaný zbývající čas "
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr "Hotová část"
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
-msgstr "Množství virtuální paměti"
+msgstr "Velikost virtuální paměti"
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr "Velikost pracovní sady"
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
-msgstr "Slot"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr "Složka"
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr "ID procesu"
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Nový"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "Chyba při přijímání"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "Stahuji"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "Projekt pozastaven uživatelem"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr "Úkol pozastaven uživatelem"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Pozastaveno"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr " - na bateriích"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr " - uživatel aktivní"
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
-msgstr " - činnost pozastavena"
+msgstr " - výpočty pozastaveny"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr " - čas"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr " - testy procesoru"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr " - nedostatek místa na disku"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr "Čekám na uvolnění paměti"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr "Čekám na uvolnění sdílené paměti"
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr "Počítám s vysokou prioritou"
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "Počítám"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr "Čekám na zpracování"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr "Připraven"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Chyba při výpočtu"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "Chyba při odesílání"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "Odesílám"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Zrušeno uživatelem"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "Zrušeno projektem"
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "Zrušeno"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Potvrzeno"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
-msgstr "Výsledek odeslán"
+msgstr "Odeslán. Připraven k ohlášení"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Chyba: Neplatný stav '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
 msgstr "%s - Možnosti"
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
-msgstr "Jazyk:"
+msgstr "Jazyk: "
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
-msgstr "Jaký jazyk má Manager používat?"
+msgstr "Jazyk, který bude použit pro zobrazení Správce BOINC."
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
 msgstr ""
-"Interval připomenutí požadavku sítě:\n"
-"(minuty)"
+"Interval upozornění nutnosti\n"
+"přístupu k internetu (minuty):"
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
-msgstr "Jak často má Manager připomínat, že vyžaduje připojení k síti?"
+msgstr "Jak často má Správce upozorňovat, že vyžaduje připojení k internetu?"
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
-msgstr "Spustit Managera po přihlášení?"
+msgstr "Spustit Správce po přihlášení?"
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
-msgstr "Spustit BOINC Managera při přihlášení?"
+msgstr "Spustit Správce BOINC hned po přihlášení do Windows."
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
-msgstr "Povolit nabídku pro ukončení Managera?"
+msgstr "Zobrazovat nabídku při vypínání Správce?"
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
-msgstr "Zobrazovat dotaz na ukončení při vypínání Managera?"
+msgstr "Zobrazovat nabídku s informacemi při ukončování Správce."
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
-msgstr "Nastavení \"Dial-up\" a \"Virtual Private Network\""
+msgstr "Nastavení vytáčeného (\"Dial-up\") připojení a \"Virtual Private Network\""
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "&Nastavit výchozí"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "&Zrušit výchozí"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
-msgstr "Výchozí připojení:"
+msgstr "Výchozí připojení: "
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Připojení"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Připojit přes HTTP proxy server"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "Nastavení HTTP proxy serveru"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Adresa:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Port:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr "Nepoužívat proxy pro:"
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
-msgstr "Nechat tato pole volná, pokud nejsou zapotřebí."
+msgstr "Autorizace (vyžadují pouze některé proxy servery)"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Uživatelské jméno:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Heslo:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "HTTP proxy server"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Připojit přes SOCKS proxy server"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "Nastavení SOCKS proxy serveru"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "SOCKS proxy server"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
 msgid "%s - Select Computer"
-msgstr "%s - Zvolit počítač"
+msgstr "%s - Zvolit počítač "
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Jméno počítače:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s - Nemohu najít internetový prohlížeč"
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
+#, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1921,235 +2004,230 @@ msgstr ""
 "na složku, ve které je Váš internetový prohlížeč,\n"
 "a restartujte %s."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "Diskuzní fóra"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
-msgstr "Psát si s ostatními uživateli na diskuzním fóru SETI at home"
+msgstr "Diskutovat s ostatními uživateli na diskuzním fóru SETI at home"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
-msgstr "Zeptat se nebo nahlásit problém"
+msgstr "Zeptat se nebo ohlásit problém"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "Váš účet "
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
-msgstr "Zobrazit informaci o Vašem účtu a kreditech"
+msgstr "Zobrazit informaci o vašem účtu a kreditech"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "Vaše nastavení"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
-msgstr "Zobrazit a měnit nastavení Vašeho účtu SETI at home"
+msgstr "Zobrazit a měnit nastavení vašeho účtu SETI at home"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "Vaše výsledky"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
-msgstr "Zobrazit Vaše výsledky a práci za posledních sedm (a více) dní"
+msgstr "Zobrazit vaše výsledky a práci za posledních sedm (a více) dní"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "Vaše počítače"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr ""
 "Zobrazit seznam všech počítačů, \n"
 "na kterých provozujete SETI at home"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "Váš tým"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
-msgstr "Zobrazit informace o Vašem týmu"
+msgstr "Zobrazit informace o vašem týmu"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "Obvyklé dotazy"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "Přečtěte si Často Kladené Dotazy projektu Einstein at Home"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "Informace o spořiči obrazovky"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "Přečtěte si podrobný popis spořiče obrazovky Einstein at Home"
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr ""
-"Psát si se správci a ostatními uživateli na diskuzním fóru Einstein at Home"
+"Diskutovat se správci a ostatními uživateli na diskuzním fóru Einstein at Home"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "Stav projektu Einstein"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Současný stav serveru Einstein at Home"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
-msgstr "Oznam problémy"
+msgstr "Ohlásit problémy"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr "Odkaz na stránky pro oznamování problémů a chyb Einstein at Home"
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
-msgstr "Zobrazit a měnit nastavení Vašeho účtu Einstein at home"
+msgstr "Zobrazit a měnit nastavení vašeho účtu Einstein at home"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
-msgstr "Přehled účtu"
+msgstr "Stav účtu "
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr ""
 "Zobrazit seznam všech počítačů, \n"
 "na kterých provozujete Einstein at home"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "Projekt LIGO"
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr ""
-"Domovská stránka projektu LIGO (Laser Interferometer Gravitational-wave "
-"Observatory)"
+"Domovská stránka projektu LIGO\n"
+"(Laser Interferometer Gravitational-wave Observatory)"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "Projekt GEO-600"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "Domovská stránka projektu GEO-600"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Tým"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
-msgstr "Informace o Vašem týmu"
+msgstr "Informace o vašem týmu"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "Zobrazit nápovědu projektu climateprediction.net"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "Novinky"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "Novinky projektu climateprediction.net"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
-msgstr "Zobrazit informace o Vašem účtu a kreditech"
+msgstr "Zobrazit informace o vašem účtu, kreditech a průběhu"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
-msgstr "Informace o Vašem týmu"
+msgstr "Informace o vašem týmu"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr "Vyhledat radu v naší Nápovědě."
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "Celkové statistiky"
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "Celková statistika World Community Grid"
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
-msgstr "Můj Grid"
+msgstr "Můj Grid (My Grid)"
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "Vaše statistiky a nastavení"
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr "Profily zařízení"
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr "Aktualizujte nastavení Vašich zařízení"
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr "Výzkum"
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "Dozvědět se víc o projektech umístěných na World Community Grid"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
-msgstr "Startuji klientskou službu. Prosím čekejte..."
+msgstr "Spouštím služby klienta. Prosím čekejte..."
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "Zjišťuji stav systému. Prosím čekejte..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
-msgstr "Zjišťuji stav počítače. Prosím čekejte..."
+msgstr "Zjišťuji stav počítače. Prosím čekejte... "
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "Internet je nedostupný"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Prosím obnovte připojení k internetu a zkuste znovu. "
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Projekt nebyl nalezen"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2159,11 +2237,11 @@ msgstr ""
 "\n"
 "Zkontrolujte prosím zadávanou adresu a zkuste znovu."
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "Správce účtu nebyl nalezen"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2174,50 +2252,67 @@ msgstr ""
 "\n"
 "Zkontrolujte prosím zadávanou adresu a zkuste znovu."
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr "Přihlášení selhalo."
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr ""
 "Zkontrolujte uživatelské jméno (username) a heslo (password) a zkuste znovu."
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
-msgstr "Zkontrolujte prosím zadanou emailovou adresu a heslo a zkuste znovu."
+msgstr ""
+"Zkontrolujte prosím zadanou emailovou adresu a heslo \n"
+"kliknutím na tlačítko < Zpět >."
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
-msgstr "Zvolte si projekt"
+msgstr "Zvolit projekt"
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
-msgstr "Pro volbu projektu klikněte na jeho jméno či příslušnou adresu."
+msgstr ""
+"Zvolte projekt kliknutím na jeho jméno \n"
+"nebo napište do kolonky dole jeho webovou adresu (URL)."
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "&Adresa (URL) projektu:"
 
-#: clientgui/ProjectInfoPage.cpp:320
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+"Tento projekt nemusí mít práci pro váš typ počítače.\n"
+"Opravdu chcete pokračovat?"
+
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr "K tomuto projektu jste již připojen. Zvolte si prosím jiný projekt."
 
-#: clientgui/ProjectInfoPage.cpp:321
-msgid "Already Attached to Project"
-msgstr "Projekt je již připojen"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr "Klik"
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr "Podpora CPU s více jádry"
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr "Podpora GPU nVidia"
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
-msgstr "Tento projekt nemusí mít práci pro váš typ počítače."
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr "Podpora GPU ATI"
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
-msgstr "Klikněte sem pro přechod na internetové stránky %s."
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr "Webové stránky projektu"
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
@@ -2225,7 +2320,7 @@ msgstr ""
 "Komunikuji s projektem.\n"
 "Čekejte prosím... "
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
@@ -2233,11 +2328,11 @@ msgstr ""
 "Na cílovém serveru schází některé soubory, vyžadované Průvodcem.\n"
 "(lookup_account.php/create_account.php)\n"
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "Selhala síťová komunikace"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2248,27 +2343,28 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
 "The World Community Grid - BOINC nemá přístup k internetu.\n"
-"Pravděpodobnou příčinou bývá:\n"
+"Nejčastější příčiny bývají:\n"
 "\n"
-"1) Problém s připojením. Prosím zkontolujte si telefonické\n"
-"nebo síťové připojení k internetu. Stiskněte tlačítko 'Zpět'\n"
-"pro zopakování předchozího kroku.\n"
+"1) Problém s připojením.\n"
+"Zkontrolujte prosím Vaše telefonické nebo síťové připojení k internetu.\n"
+"Poté klikněte na tlačítko <Zpět> a zopakujte předchozí krok.\n"
 "\n"
-"2) Nainstalovaný firewall blokuje World Community\n"
-"Grid - BOINC. Nastavte prosím firewall tak,\n"
-"aby umožnil BOINCu komunikovat na portu 80 a 443.\n"
-"Poté klikněte na 'Zpět' pro zopakování předchozího kroku.\n"
+"2) Nainstalovaný firewall blokuje World Community Grid - BOINC.\n"
+"Nastavte prosím firewall tak, aby umožnil programům 'BOINC' a 'Správce "
+"BOINC' komunikovat na portu 80 a 443.\n"
+"Poté klikněte na tlačítko <Zpět> a zopakujte předchozí krok.\n"
 "\n"
-"3) Jste připojeni k internetu přes proxy server. Je třeba\n"
-"nastavit proxy server v menu 'Nastavení/Možnosti'."
+"3) Jste připojeni k internetu přes proxy server.\n"
+"Je třeba ve Správci BOINC, v menu 'Nastavení / Možnosti' nastavit proxy "
+"server."
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2284,522 +2380,502 @@ msgid ""
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
-"BOINC nemá přístup k internetu. Nejčastější příčiny \n"
-"bývají:\n"
+"BOINC nemá přístup k internetu.\n"
+"Nejčastější příčiny bývají:\n"
 "\n"
-"1) Problém s připojením. Prosím zkontolujte si telefonické\n"
-"nebo síťové připojení k internetu. Stiskněte  tlačítko 'Zpět'\n"
-"pro zopakování předchozího kroku.\n"
+"1) Problém s připojením.\n"
+"Zkontrolujte prosím Vaše telefonické nebo síťové připojení k internetu.\n"
+"Poté klikněte na tlačítko <Zpět> a zopakujte předchozí krok.\n"
 "\n"
-"2) Nainstalovaný firewall blokuje BOINC. Nastavte prosím\n"
-"firewall tak, aby umožnil BOINC komunikovat na portu 80.\n"
-"Poté klikněte na 'Zpět'pro zopakování předchozího kroku.\n"
+"2) Nainstalovaný firewall blokuje BOINC.\n"
+"Nastavte prosím firewall tak, aby umožnil programům \"BOINC' a 'Správce "
+"BOINC' komunikovat na portu 80.\n"
+"Poté klikněte na tlačítko <Zpět> a zopakujte předchozí krok.\n"
 "\n"
-"3) Jste připojeni k internetu přes proxy server. Je třeba\n"
-"nastavit proxy server v menu 'Nastavení/Možnosti'."
+"3) Jste připojeni k internetu přes proxy server.\n"
+"Je třeba nastavit proxy server v menu 'Nastavení / Možnosti'."
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Nastavení proxy serveru"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "HTTP proxy server"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "Server:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
-msgstr "Autodekuji"
+msgstr "Autodekce"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "SOCKS proxy server"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr "Pokročilé zobrazení...\tCtrl+Shift+A"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr "Zobrazit pokročilé grafické rozhraní."
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr "&%s"
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr "Zjišťuji aktuální stav."
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr "Nejste připojeni k žádnému projektu. Připojte se k nějakému projektu."
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr "Stahuji práci ze serveru."
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr "Výpočty pozastaveny:  Provoz na baterie"
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr "Výpočty pozastaveny:  Uživatel aktivní"
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr "Výpočty pozastaveny:  Pozastaveno uživatelem."
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr "Výpočty pozastaveny:  Plánované pozastavení."
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr "Výpočty pozastaveny:  Probíhají testy procesoru."
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr "Výpočty pozastaveny."
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr "Čekám na kontakt se servery projektu."
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr "Zjišťuji aktuální stav"
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr "Není k dispozici žádná práce"
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr "Selhalo spojení s klientem"
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Projekt"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "ÄŒas"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Zpráva"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Zkopíruje všechny zprávy do schránky"
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 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 ""
-"Zkopíruje vybrané zprávy do schránky. \n"
-"Zvolit více zpráv je možno klikáním na zprávy se současně stisknutou "
-"klávesou Shift nebo Control."
+"Zkopíruje označené zprávy do schránky. \n"
+"Označit více zpráv je možno klikáním na zprávy se současně stisknutou "
+"klávesou <Shift> nebo <Command>."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
-"Zkopíruje vybrané zprávy do schránky. \n"
-"Zvolit více zpráv je možno klikáním na zprávy se současně stisknutou "
-"klávesou Shift nebo Ctrl."
+"Zkopíruje označené zprávy do schránky. \n"
+"Označit více zpráv je možno klikáním na zprávy se současně stisknutou "
+"klávesou <Shift> nebo <Ctrl>."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr "Otevře nápovědu BOINC"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr "%s - Zprávy"
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr "100 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr "200 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr "500 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr "1 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr "2 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr "5 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr "10 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr "20 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr "50 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr "100 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr "10%"
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr "20%"
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr "30%"
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr "40%"
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr "50%"
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr "60%"
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr "70%"
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr "80%"
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr "90%"
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr "100%"
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr "1"
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr "3"
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr "5"
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr "10"
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr "15"
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr "30"
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr "60"
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr "Vzhled"
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr "Vzhled:"
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr "Předvolby"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr "Chci změnit nastavení pouze pro tento počítač."
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr "Vlastní předvolby"
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
-msgstr "Počítej pouze mezi:"
+msgstr "Počítej pouze mezi: "
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
-msgstr "Připojuj se k Internetu pouze mezi:"
+msgstr "Připojuj se k internetu pouze mezi:"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr "Nepoužívej více než:"
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr "místa na disku"
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr "procesoru"
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
-msgstr "Počítat při běhu na baterie"
+msgstr "Počítat při běhu na baterie?"
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr "Počítat po nečinnosti:"
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr "Kdykoliv"
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr "%d MB"
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr "%4.2f GB"
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr "%d%%"
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr "0 (Počítat nepřetržitě)"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr "%d"
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
-msgstr "Pozastaveno: Běží jiná práce"
+msgstr "Pozastaveno: Probíhá výpočet jiného úkolu "
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
-msgstr "Pozastaveno: Uživatel nastaven. Klikněte na 'Obnovit' pro pokračování"
+msgstr ""
+"Pozastaveno: Vyžádáno uživatelem. Klikněte na <Obnovit> pro obnovení výpočtu"
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr "Pozastaveno: Uživatel aktivní"
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
-msgstr "Pozastaveno: Počítač běží na baterie"
+msgstr "Pozastaveno: Provoz na baterie"
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
-msgstr "Pozastaveno: Nastavená denní doba"
+msgstr "Pozastaveno: Plánované pozastavení"
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
-msgstr "Pozastaveno: Běží testy procesoru"
+msgstr "Pozastaveno: Probíhají testy procesoru"
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr "Pozastaveno"
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr "Pozastaveno: Odložený start aplikace"
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
-msgstr "Klikněte pro zobrazení grafiky projektu"
+msgstr "Kliknutím zobrazíte grafické okno projektu"
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr "Umožní připojit se k dalšímu projektu"
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
-msgstr "Synchronizovat projekt se systémem správy účtů"
+msgstr "Synchronizuje projekty se systémem Správce Účtu"
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr "Otevře okno s informačními zprávami"
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr "Pozastaví veškerou aktivitu"
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr "Znovu zahájí výpočty"
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr "Otevře okno s Předvolbami"
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
-msgstr "Přepne BOINC do rozšířeného zobrazení"
+msgstr "Přepne Správce BOINC do rozšířeného zobrazení"
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr "Mé projekty:"
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr ""
 "Projekt: %s\n"
 "Kredit uživatele %s: %0.2f"
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
-msgstr "Odstranit projekt"
+msgstr "Opustit projekt"
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "Opravdu chcete opustit projekt '%s'?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "Opustit projekt"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr "%.1lf"
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr "%d h %d m %d s"
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
-msgstr "Opravdu chcete zobrazit grafiku na vzdáleném počítači?"
+msgstr "Opravdu chcete zobrazit grafické okno na vzdáleném počítači?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Zobrazit grafiku"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
 msgstr "Aplikace: "
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr "Zbývající čas: "
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
 msgstr "ÄŒas: "
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr "Podmínky použití"
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr "Přečtěte si prosím následující podmínky použití:"
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr "Souhlasím s podmínkami použití."
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr "Nesouhlasím s podmínkami použití."
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Projekt je dočasně nedostupný"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
 "Please try again later."
 msgstr ""
-"Projekt je momentálně nedostupný.\n"
+"Projekt je dočasně nedostupný.\n"
 "\n"
 "Zkuste to prosím později. "
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "Správce účtu je dočasně nedostupný."
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2809,32 +2885,32 @@ msgstr ""
 "\n"
 "Zkuste to prosím později. "
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "Zadej klíč k účtu (Account Key)."
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr "Neplatný klíč k účtu. Vložte prosím platný klíč"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Chyba při ověřování"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr "Zadejte prosím emailovou adresu"
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr "Neplatná emailová adresa. Vložte prosím platnou adresu."
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "Chybí adresa (URL)"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2845,18 +2921,18 @@ msgstr ""
 "Příklad:\n"
 "http://www.example.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "Neplatná adresa (URL)"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2867,722 +2943,633 @@ msgstr ""
 "Příklad:\n"
 "http://boincproject.example.com"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "'%s' neobsahuje platné jméno počítače."
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "'%s' neobsahuje platnou cestu."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "Příkazy"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Zkopírovat všechny zprávy"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
-msgstr "Zkopírovat vybrané zprávy"
+msgstr "Zkopírovat označené zprávy"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
-msgstr "Zobrazit jen tento projekt"
+msgstr "Jen tento projekt"
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
-msgstr "Zobrazit zprávy jen pro tento projekt."
+msgstr "Zobrazit pouze zprávy tohoto projektu."
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Zprávy"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "Kopíruji všechny zprávy do schránky..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 msgid "Copying selected messages to the clipboard..."
-msgstr "Kopíruji vybrané zprávy do schránky..."
+msgstr "Kopíruji označené zprávy do schránky..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr "Filtruji zprávy..."
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 msgid "Show all messages"
 msgstr "Zobrazit všechny zprávy"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
-msgstr "Zobrazit zprávy pro všechny projekty."
+msgstr "Zobrazit zprávy všech projektů."
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr "ID"
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr "Priorita"
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
-msgstr "Mříž zpráv"
+msgstr "Mříž zpráv (MessagesGrid)"
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr "Kopíruji označené zprávy do schránky..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr "Informace"
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr "Upozornění"
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr "Chyba"
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr "Zdroje novinek"
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr "BOINC"
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
-msgstr "Zobrazit nejnovější zprávy o BOINCu"
+msgstr "Zobrazit nejnovější zprávy o BOINC"
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
 msgstr "Webová stránka BOINC"
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
-msgstr "Zobrazit nejnovější zprávy o BOINCu z webových stránek BOINCu"
+msgstr "Zobrazit nejnovější zprávy o BOINC z jeho webových stránek "
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Aktualizovat"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr ""
 "Oznámit veškerou dokončenou práci, získat nejnovější informace o kreditu a "
 "nastavení a je-li možno, přijmout další práci."
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Pozastavit"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr "Pozastavit práci na tomto projektu."
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
-msgstr "Žádnou další práci"
+msgstr "Nepřijímat další práci"
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr "Zakázat projektu přijímat další práci."
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Restartovat projekt"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 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 ""
-"Smazat všechny soubory související s tímto projektem a stáhnout nové. Před "
-"restartováním doporučujeme projekt aktualizovat, čímž odešlete a ohlásíte "
-"všechny dokončené výsledky."
+"Smazat všechny soubory související s tímto projektem a stáhnout nové.\n"
+"Před restartováním doporučujeme projekt aktualizovat, čímž odešlete a "
+"ohlásíte všechny dokončené výsledky."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Opustit"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr ""
 "Odpojit se z daného projektu. Započatá práce bude ztracena. \n"
 "Před opuštěním doporučujeme projekt aktualizovat, čímž odešlete a ohlásíte "
 "všechny dokončené výsledky. "
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr "Vlastnosti"
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr "Zobrazit detaily projektu."
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Účet"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "Kredit"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr "Průměrný kredit"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Stav"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Projekty"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "Aktualizuji projekt..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "Obnovuji projekt..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "Pozastavuji projekt..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr "Povoluji projektu přijímat další práci..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "Zakazuji projektu přijímat další práci..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "Restartuji projekt..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Opravdu chcete restartovat projekt '%s'?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Restartovat projekt"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "Opouštím projekt..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "Spouštím internetový prohlížeč..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Obnovit"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "Obnovit práci pro tento projekt"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
-msgstr "Povolit přijímat další práci"
+msgstr "Přijímat další práci"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr "Povolit tomuto projektu přijímat další práci."
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "Zakázat tomuto projektu přijímat další práci."
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Pozastaveno uživatelem"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
-msgstr "Nelze získat další práci"
+msgstr "Zakázáno přijímat další práci"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
-msgstr "Projekt ukončet - můžete se odpojit"
+msgstr "Projekt dokončen - nyní je možné projekt opustit"
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
-msgstr "Odpojí se po ukončení veškeré práce"
+msgstr "Bude opuštěn po dokončení úkolů"
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Nevyřízený požadavek plánovače"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr "Zpracovávám požadavek plánovače"
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
-msgstr "Přenos odložen"
+msgstr "Přenos odložen "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
-msgstr "Mříž projektů"
+msgstr "Mříž projektů (ProjectsGrid)"
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr "Obsazené místo na disku"
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr "Využití disku projekty BOINC"
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Disk"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr "Nepřipojen k žádnému projektu BOINC: 0 bytů"
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr "Prostor využitý BOINC: "
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
-msgstr "Volného místa pro BOINC: "
+msgstr "Volné místo pro BOINC: "
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
-msgstr "Volného místa nedostupného pro BOINC: "
+msgstr "Volné místo nedostupné pro BOINC: "
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
-msgstr "Volného místa: "
+msgstr "Volné místo: "
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr "Prostor využitý ostatními programy: "
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Celkový kredit uživatele"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Průměrný kredit uživatele"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Celkový kredit počítače"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Průměrný kredit počítače"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
 msgstr "Poslední akualizace - před %.0f dny"
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Celkový kredit uživatele"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
-msgstr "Zobraz celkový kredit uživatele"
+msgstr "Zobrazit celkový kredit uživatele"
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "Průměrný kredit uživatele"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
-msgstr "Zobraz průměrný kredit uživatele"
+msgstr "Zobrazit průměrný kredit uživatele"
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Celkový kredit počítače"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
-msgstr "Zobraz celkový kredit hostitele"
+msgstr "Zobrazit celkový kredit počítače"
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "Průměrný kredit počítače"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
-msgstr "Zobraz průměrný kredit hostitele"
+msgstr "Zobrazit průměrný kredit počítače"
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< &Předchozí projekt"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
-msgstr "Ukaž graf předchozího projektu"
+msgstr "Zobrazit graf předchozího projektu"
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "&Další projekt >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
-msgstr "Zobraz graf následujícího projektu"
+msgstr "Zobrazit graf následujícího projektu"
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "Zobrazení"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "VÅ¡echny projekty"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
-msgstr "Zobraz všechny projekty, každý ve svém grafu"
+msgstr "Zobrazit všechny projekty, každý ve svém grafu"
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "Jeden projekt"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
-msgstr "Zobraz jeden graf se zvoleným projektem"
+msgstr "Zobrazit jeden graf se zvoleným projektem"
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr "VÅ¡echny projekty (dohromady)"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
-msgstr "Zobraz jeden graf se všemi projekty"
+msgstr "Zobrazit jeden graf se všemi projekty"
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Statistiky"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "Aktualizuji grafy..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Obnovit přenos"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "Klikněte na 'Obnovit přenos' pro odeslání souboru"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Zrušit přenos"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr ""
 "Klikněte na 'Zrušit přenos' pro odstranění souboru z fronty.\n"
 "Za odstraněný výsledek nebude přidělen žádný kredit."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "Soubor"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Průběh"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Velikost"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "ÄŒas"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Rychlost"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Přenos"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "Pokouším se obnovit přenos..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "Ruším přenos..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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 ""
-"Skutečně chcete zrušit tento přenos souboru '%s'?\n"
-"Pozn.: Zrušením přenosu souboru zrušíte daný úkol\n"
+"Skutečně chcete zrušit přenos souboru '%s'?\n"
+"Pozn: Zrušením přenosu souboru zrušíte daný úkol\n"
 "a neobdržíte za něj kredity."
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Zrušit přenos souboru"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "Znovu zkusím za "
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
-msgstr "Nevyřízené odeslání"
+msgstr "Připraveno k odeslání "
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "Nevyřízené stahování"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr "(Odložení projektu: "
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ")"
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
-msgstr "Mříž přenosů"
+msgstr "Mříž přenosů (TransferGrid)"
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 msgid "Aborting transfer(s)..."
-msgstr "Ruším přenos(y)..."
+msgstr "Odstraňuji soubor(y)..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
 "will not receive credit for it."
 msgstr ""
-"Skutečně chcete zrušit přenos tohoto souboru?\n"
-"Pozn.: Zrušením přenosu souboru zrušíte daný úkol\n"
+"Skutečně chcete zrušit přenos souboru '%s'?\n"
+"Pozn: Zrušením přenosu souboru zrušíte daný úkol\n"
 "a neobdržíte za něj kredity."
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 msgid "Abort File Transfer(s)"
 msgstr "Zrušit přenos souboru"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr "Zobrazit aktivní úkoly "
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr "Zobrazit pouze aktivní úkoly."
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
-msgstr "Zobrazí grafické okno aplikace"
+msgstr "Zobrazit grafické okno aplikace"
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
-msgstr "Pozastaví práci na tomto souboru"
+msgstr "Pozastavit práci na tomto souboru"
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Zrušit"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr ""
-"Ukončí práci na daném souboru.\n"
-"Za soubor nebude přidělen žádný kredit."
+"Ukončit práci na daném úkolu.\n"
+"Za úkol nebude přidělen žádný kredit."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr "Zobrazit detaily úkolu."
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Název"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr "ÄŒas"
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "Dokončí za"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Úkoly"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "Obnovuji úkol..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "Pozastavuji úkol..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "Zobrazuji grafické okno pro úkol..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Ruším výsledek..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
@@ -3590,36 +3577,62 @@ msgstr ""
 "Opravdu chcete zrušit tento úkol '%s'?\n"
 "(Průběh: %s, Stav: %s)"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "Jste si jisti, že chcete zrušit těchto %d úkolů?"
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "Zrušit úkol"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Odstraňuji soubor..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr "Zobrazit všechny úkoly "
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr "Zobrazit všechny úkoly."
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
-msgstr "Obnoví práci na tomto úkolu."
+msgstr "Obnovit práci na tomto úkolu."
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
-msgstr "Pozastaví práci na tomto úkolu."
+msgstr "Pozastavit práci na tomto úkolu."
+
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr "Grafická karta nenalezena, "
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr " - běží důležitější aplikace"
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
-msgstr " (nenáročný na CPU)"
+msgstr " (nenáročný na procesor)"
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr "Zrušeno: nestihlo se začít do stanovené lhůty"
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
-msgstr "Mříž úkolů"
+msgstr "Mříž úkolů (TaskGrid)"
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
@@ -3627,12 +3640,12 @@ msgstr ""
 "Opravdu chcete zrušit tento úkol '%s'?\n"
 "(Průběh: %s %%, Stav: %s)"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
-msgstr "Změnit výzkumné aplikace ve World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr "Připojit k Projektu nebo Správci účtu."
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3640,19 +3653,21 @@ msgid ""
 "Projects added via this wizard will not be\n"
 "listed on or managed via %s."
 msgstr ""
-"Pokud možno, přidejte projekty na\n"
-"%s webové stránce.\n"
+"Pokud je to možné, přidejte projekty\n"
+"na webové stránce %s.\n"
 "\n"
-"Projekty přidané pomocí průvodce nebudou zobrazené nebo\n"
-"spravované přes %s."
+"Projekty přidané tímto Průvodcem nebudou\n"
+"na seznamu %s a nepůjdou zde spravovat."
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
-msgstr "Nyní Vám pomůžeme s připojením k projektu"
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
+"Nyní vám pomůžeme připojit se k Projektu\n"
+"nebo ke Správci účtu."
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3667,332 +3682,238 @@ msgid ""
 "To change which research applications are sent to you from\n"
 "World Community Grid then please click on the following button:"
 msgstr ""
-"Rozhodli jste se připojit se k novému BOINC projektu.\n"
-"Připojení k novému\n"
-"projektu znamená připojení vašeho počítače k webovým stránkám\n"
-"nové organizace. Pokud si to přejete, klikněte na tlačítko 'Další'.\n"
+"Zvolili jste připojení k novému projektu BOINC. Připojení k novému projektu "
+"znamená, \n"
+"že se váš počítač bude připojovat k nové internetové stránce a k nové "
+"organizaci.\n"
+"Pokud to bylo vaším úmyslem, pokračujte prosím klinutím na tlačítko 'Další "
+">' níže.\n"
 "\n"
-"Některé projekty, jako World Community Grid, používají vícero výzkumných "
-"aplikací.\n"
-"Pokud si chcete vybrat které aplikace necháte běžet ve svém počítači,\n"
-"navštivte webovou stránku projektu a změňte tam své nastavení.\n"
+"Některé projekty, jako například  World Community Grid, zpracovávají více "
+"různých výzkumných aplikací.\n"
+"Pokud byste chtěli změnit to, které výzkumné aplikace mají být posílány na "
+"váš počítač, \n"
+"měli byste navštívit internetové stránky projektu a tam změnit vaše "
+"nastavení.\n"
 "\n"
-"Pro změnu výzkumných aplikací ve World Community Grid,\n"
-"které se budou počítat na vašem počítači, klikněte na následující tlačítko:"
-
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
-msgstr "&Stop using%s"
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-"Nyní odebereme tento počítač z %s. Odteď budete\n"
-"připojovat a odpojovat projekty přímo z tohoto počítače.\n"
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "Správce účtu"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"Nyní Vám pomůžeme připojit se ke správci účtu.\n"
-"\n"
-"\n"
-"Pokud se chcete připojit jen k jednomu projektu, klikněte na 'Zrušit'\n"
-"a použijte raději volbu 'Připojit k projektu...'"
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "Debug Flags (Příznaky Debug)"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "Chybné nastavení projektu"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr "Chyba v komunikaci s projektem"
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "Chybná adresa (URL) nastavení projektu"
+"Pokud chcete změnit které výzkumné aplikace vám budou posílány z World "
+"Community Grid, \n"
+"klikněte prosím na následující tlačítko:"
 
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "Není povoleno vytváření účtů"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "Není povoleno vytváření účtů"
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "Účet již existuje"
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "Projekt je již připojen"
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "Selhalo připojení k projektu"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
-msgstr "Chyba v komunikaci s výchozí stránkou"
-
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "Selhala detekce sítě"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr "Změnit výzkumné aplikace ve World Community Grid"
 
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "Pokračujte kliknutím na tlačítko 'Další >'"
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "Opravdu chcete operaci zrušit?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "Dotaz"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "&Další >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< ZpÄ›&t "
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "Dok&ončit"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
 msgid "New page inserted. Index = %i"
-msgstr "(* New page inserted. Index = %i )"
+msgstr "Vložena nová stránka. Index = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
 msgid "New page appended. Index = %i"
-msgstr "(* New page appended. Index = %i )"
+msgstr "Připojena nová stránka. Index = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
 msgid "Old Page Index = %i"
-msgstr "(* Old Page Index = %i )"
+msgstr "Index původní stránky = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
 msgid "OnDropTarget: index by HitTest = %i"
-msgstr "(* OnDropTarget: index by HitTest = %i )"
+msgstr "OnDropTarget: index by HitTest = %i"
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr "Legenda"
 
-#: clientgui/DlgAdvPreferences.h:29
-msgid "specify work start and stop hours in format HH:MM-HH:MM"
-msgstr "Časové rozmezí, kdy je možno provádět výpočty (formát HH:MM-HH:MM)"
-
-#: clientgui/DlgAdvPreferences.h:30
-msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
-msgstr "Časové rozmezí, kdy je možno využívat internet (formát HH:MM-HH:MM)"
-
-#~ msgid ""
-#~ "You can copy and paste the URL from your browser's\n"
-#~ "address bar."
-#~ msgstr ""
-#~ "Adresu můžete například zkopírovat z adresového řádku\n"
-#~ "Vašeho internetového prohlížeče. "
-
-#~ msgid "For a list of account managers go to:"
-#~ msgstr "Seznam 'Správců účtů' naleznete na: "
-
-#, fuzzy
-#~ msgid "&Simple View..."
-#~ msgstr "&Volitelný vzhled"
-
-#~ msgid "You are already attached to this project."
-#~ msgstr "K tomuto projektu jste již připojeni. "
-
-#~ msgid "CHARSET"
-#~ msgstr "utf-8"
-
-#~ msgid "Enter account key"
-#~ msgstr "Zadejte klíč (Account Key) "
-
-#~ msgid ""
-#~ "This project uses an \"account key\" to identify you.\n"
-#~ "\n"
-#~ "Go to the project's web site to create an account. Your account\n"
-#~ "key will be emailed to you."
-#~ msgstr ""
-#~ "Tento projekt využívá k vaší identifikaci Klíč (Account Key).\n"
-#~ "\n"
-#~ "Otevřete si webové stránky projektu a vytvořte si účet (account).\n"
-#~ "Klíč (Account Key) vám bude zaslán emailem."
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+"pro usnadnění přístupu vyberte režim pokročilého zobrazení v menu, nebo "
+"použijte zkratku Shift + A"
 
-#~ msgid "An account key looks like:"
-#~ msgstr "Typický klíč (Account Key) vypadá takto: "
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr "Tento panel obsahuje grafy ukazující výsledky uživatele v projektech"
 
-#~ msgid "82412313ac88e9a3638f66ea82186948"
-#~ msgstr "82412313ac88e9a3638f66ea82186948"
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr "prázdný"
 
-#~ msgid "Account key:"
-#~ msgstr "Klíč (Account Key): "
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr "seznam "
 
-#~ msgid "&Accessible View"
-#~ msgstr "&Volitelný vzhled"
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr " je prázdný"
 
-#~ msgid "Accessible views are compatible with accessibility aids such as screen readers."
-#~ msgstr "Volitelné vzhledy jsou kompatibilní s nástroji pro vzdálený přístup, jako jsou snímače obrazovky, apod."
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr "%d %d;"
 
-#~ msgid "Retry &communications"
-#~ msgstr "&Opakovat přenos"
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr "sloupec, podle kterého se třídí "
 
-#~ msgid "Retry all deferred network communication."
-#~ msgstr "Znovu spustit všechny odložené přenosy"
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr " sestupné pořadí "
 
-#, c-format
-#~ msgid ""
-#~ "%s is going to shutdown the core client it is currently connected to.\n"
-#~ "NOTE: Choosing 'OK' will cause the select new computer dialog to appear \n"
-#~ "so you can attach to a different core client."
-#~ msgstr ""
-#~ "%s ukončí klienta ke kterému je připojen.\n"
-#~ "Poznámka: Po kliknutí na <OK> se zobrazí dialog pro volbu počítače, ke kterému  \n"
-#~ "se má Správce BOINC připojit."
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr " vzestupné pořadí "
 
-#, c-format
-#~ msgid "BOINC Manager - Detach from %s"
-#~ msgstr "Správce BOINC - Odpojit z %s"
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr "sloupec "
 
-#, c-format
-#~ msgid ""
-#~ "BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
-#~ "(Error code %d)"
-#~ msgstr ""
-#~ "Přístupová práva BOINC nejsou správně nastavena. Přeinstalujte prosím BOINC.\n"
-#~ "(Chyba %d)"
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr "seznam je prázdný"
 
-#, c-format
-#~ msgid "%s is currently suspended...\n"
-#~ msgstr "%s je momentálně pozastaven... \n"
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr "vybrán "
 
-#, c-format
-#~ msgid "%s networking is currently suspended...\n"
-#~ msgstr "%s má momentálně pozastaven přístup k síti... \n"
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr "řádka %d "
 
-#, c-format
-#~ msgid "%s is currently reconnecting to a %s client...\n"
-#~ msgstr "%s se snaží navázat spojení s klientem %s ...\n"
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr " %d; "
 
-#, c-format
-#~ msgid "%s is not currently connected to a %s client...\n"
-#~ msgstr "%s není připojen k žádnému klientu %s ...\n"
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr "sloupec %d; "
 
-#~ msgid ""
-#~ "This dialog controls preferences on this computer only.\n"
-#~ "On Save - preferences will be stored locally.\n"
-#~ "If you would like to revert to web-based settings, click the Clear-Button."
-#~ msgstr ""
-#~ "Zde můžete změnit nastavení pouze pro tento počítač.\n"
-#~ "Při uložení bude nastavení uloženo pouze lokálně.\n"
-#~ "Pokud byste chtěli použít globální nastavení, klikněte na tlačítko <Vymazat>."
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr "seznam projektů nebo správců účtů"
 
-#~ msgid "do work"
-#~ msgstr "Provádět výpočty"
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr "sloupec %d %d; "
 
-#~ msgid "only if computer is idle for"
-#~ msgstr "            Po nečinnosti"
+#: clientgui/DlgAdvPreferences.h:29
+msgid "specify work start and stop hours in format HH:MM-HH:MM"
+msgstr "Časové rozmezí, kdy je povoleno provádět výpočty (formát HH:MM-HH:MM)"
 
-#~ msgid "work time restrictions"
-#~ msgstr "Časová omezení výpočtů"
+#: clientgui/DlgAdvPreferences.h:30
+msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
+msgstr "Časové rozmezí, kdy je povoleno využívat internet (formát HH:MM-HH:MM)"
 
-#~ msgid "every day between hour of"
-#~ msgstr "Každý den mezi"
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "Zavřít okno\tCTRL+W"
 
-#~ msgid "additional restrictions:"
-#~ msgstr "Další omezení:"
+#~ msgid "&News\tCtrl+Shift+N"
+#~ msgstr "&Novinky\tCtrl+Shift+N"
 
-#~ msgid "processors"
-#~ msgstr "procesorů"
+#~ msgid "Display news"
+#~ msgstr "Zobrazit novinky"
 
-#~ msgid "network usage restrictions"
-#~ msgstr "Omezení využití sítě"
+#~ msgid "&Projects\tCTRL+SHIFT+P"
+#~ msgstr "&Projekty\tCTRL+SHIFT+P"
 
-#~ msgid "Click here to disable displaying this message in the future."
-#~ msgstr "Tuto zprávu již nezobrazovat."
+#~ msgid "&Tasks\tCTRL+SHIFT+T"
+#~ msgstr "Úkoly\tCTRL+SHIFT+T"
 
-#~ msgid "Language Selection:"
-#~ msgstr "Volba jazyka:"
+#~ msgid "Trans&fers\tCTRL+SHIFT+X"
+#~ msgstr "Přenosy\tCTRL+SHIFT+X"
 
-#~ msgid "What language should the manager display by default."
-#~ msgstr "Který jazyk bude použit pro zobrazení."
+#~ msgid "&Messages\tCTRL+SHIFT+M"
+#~ msgstr "Zprávy\tCTRL+SHIFT+M"
 
-#~ msgid "Reminder Frequency:"
-#~ msgstr "Frekvence upozornění:"
+#~ msgid "&Statistics\tCTRL+SHIFT+S"
+#~ msgstr "&Statistiky\tCTRL+SHIFT+S"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
-#~ msgstr "Jak často (minuty) budete informováni o případných síťových událostech."
+#~ msgid "&Disk usage\tCTRL+SHIFT+D"
+#~ msgstr "Využití &disku\tCTRL+SHIFT+D"
 
-#~ msgid "Project Selection"
-#~ msgstr "Výběr projektu"
+#~ msgid "&News\tCTRL+SHIFT+N"
+#~ msgstr "&Novinky\tCTRL+SHIFT+N"
 
 #~ msgid ""
-#~ "Choose which project you would like to participate in by\n"
-#~ "clicking on its name, or type the project URL below."
+#~ "You currently are not authorized to manage the client.\n"
+#~ "Please contact your administrator to add you to the 'boinc_master' user "
+#~ "group."
 #~ msgstr ""
-#~ "Zvolte projekt, kterého se chcete zúčastnit.\n"
-#~ " Buď projekt označte kliknutím jeho jméno nebo přímo vložte\n"
-#~ " jeho adresu (URL) do kolonky dole."
-
-#~ msgid "  "
-#~ msgstr "  "
-
-#~ msgid "(web)"
-#~ msgstr "(web)"
-
-#~ msgid "BOINC Manager - Messages"
-#~ msgstr "Správce BOINC - Zprávy"
-
-#~ msgid "BOINC Manager - Preferences"
-#~ msgstr "Správce BOINC - Předvolby"
-
-#~ msgid "free disk space - "
-#~ msgstr "Volný prostor na disku - "
-
-#~ msgid "Project Comm Failure"
-#~ msgstr "Selhala komunikace s projektem"
-
-#~ msgid "Google Comm Failure"
-#~ msgstr "Selhala komunikace s Google"
-
-#~ msgid "Yahoo Comm Failure"
-#~ msgstr "Selhala komunikace s Yahoo"
+#~ "Momentálně nejste oprávněn spravovat tohoto klienta.\n"
+#~ "Kontaktujte prosím vašeho administrátora, aby vás přidal do lokální "
+#~ "uživatelské skupiny 'boinc_master'."
+
+# ############################################
+# FileID	: BOINC Manager.po, ver18860, 2008/08/20 07:05:10
+# Author	: Rom Walton
+# Language	: Czech
+# Translated by	: Spok
+# E-mail	: spok.3d at atlas.cz
+# ############################################
+#~ msgid "CHARSET"
+#~ msgstr "utf-8"
 
-#~ msgid "About BOINC Manager"
-#~ msgstr "O Správci BOINC..."
+#~ msgid "Close BOINC Manager Window."
+#~ msgstr "Zavřít okno Správce BOINC."
 
-#~ msgid "BOINC Manager - Options"
-#~ msgstr "Správce BOINC - Možnosti"
+#~ msgid "Exit the %s"
+#~ msgstr "Ukončit %s"
 
-#~ msgid "BOINC Manager - Select Computer"
-#~ msgstr "Správce BOINC - Zvolit počítač"
+#~ msgid ""
+#~ "Advanced views allow you to sort various columns and displays graphical "
+#~ "progress bars."
+#~ msgstr ""
+#~ "Pokročilé zobrazení umožňuje zobrazit více sloupců s údaji a grafickými "
+#~ "ukazateli průběhu."
+
+#~ msgid "Attach to a project or account manager"
+#~ msgstr "Připojit k projektu či správci účtů."
+
+#~ msgid "Write to disk at most every"
+#~ msgstr "Nezapisovat na disk častěji než jednou za "
+
+#~ msgid "Slot"
+#~ msgstr "Slot"
+
+# FileID	: BOINC Manager.po, ver17965, 2009/07/28 20:20:05
+# Author	: Rom Walton
+# Language	: Czech
+# Translated by	: Spok, Necroman
+# E-mail	: spok.3d at atlas.cz
+# ############################################
+#~ msgid "Account Manager URL"
+#~ msgstr "Adresa Správce účtu "
diff --git a/locale/cs/BOINC-Project-Generic.po b/locale/cs/BOINC-Project-Generic.po
index 739c0f5..afdad0f 100644
--- a/locale/cs/BOINC-Project-Generic.po
+++ b/locale/cs/BOINC-Project-Generic.po
@@ -1469,10 +1469,12 @@ msgstr ""
 #~ msgid "Really delete?"
 #~ msgstr "Opravdu smazat?"
 
-#~ msgid "Are you sure you want to delete the message with subject &quot;%1&quot; (sent by %2 on %3)?"
+#~ msgid ""
+#~ "Are you sure you want to delete the message with subject &quot;%1&quot; "
+#~ "(sent by %2 on %3)?"
 #~ msgstr ""
-#~ "Opravdu chcete smazat zprávu s předmětem &quot;%1&quot; (poslanou uživatelem "
-#~ "%2 v %3)?"
+#~ "Opravdu chcete smazat zprávu s předmětem &quot;%1&quot; (poslanou "
+#~ "uživatelem %2 v %3)?"
 
 #~ msgid "Yes, delete"
 #~ msgstr "Ano, smazat"
diff --git a/locale/cs/BOINC-Web.po b/locale/cs/BOINC-Web.po
index 98d2763..c955159 100644
--- a/locale/cs/BOINC-Web.po
+++ b/locale/cs/BOINC-Web.po
@@ -8,7 +8,7 @@ msgstr ""
 "Language-Team: \n"
 "Language: cs\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 "X-Generator: Pootle 1.2.1\n"
@@ -316,7 +316,7 @@ msgstr "Na týmových stránkách"
 msgid "Google or other search engines"
 msgstr "Na Google nebo jiných vyhledávačích"
 
-########################################
+# #######################################
 # download.php 2006/08/03 by je2bwm
 # ######################################
 #: download.php:40
@@ -439,6 +439,51 @@ msgstr ""
 "Pokud jste již dobrovolným pomocníkem: k úpravě svého nastavení %sklikněte "
 "zde%s."
 
+#: index.php:23
+msgid "Computing power"
+msgstr "Výpočetní síla"
+
+#: index.php:25
+msgid "Top 100 volunteers"
+msgstr "100 nejvýkonnějších dobrovolníků"
+
+#: index.php:26
+msgid "Statistics"
+msgstr "Statistiky"
+
+#: index.php:53
+msgid "Active:"
+msgstr "Aktivní:"
+
+#: index.php:53
+msgid "volunteers,"
+msgstr "dobrovolníků,"
+
+#: index.php:53
+msgid "computers.\n"
+msgstr "počítačů.\n"
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr "24 hodinový průměr:"
+
+#: index.php:54
+msgid "TeraFLOPS."
+msgstr "TeraFLOPů."
+
+#: index.php:66
+msgid "News"
+msgstr "Novinky"
+
+#: index.php:72
+msgid "... more"
+msgstr "... více"
+
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr "Novinky jsou dostupné jako %szprávy RSS%s"
+
 #: index.php:86
 msgid "Volunteer"
 msgstr "Staňte se dobrovolníkem"
@@ -474,6 +519,74 @@ msgstr ""
 "Případně, pokud používáte více projektů současně, vyzkoušejte některého ze "
 "%ssprávce účtů%s, jako jsou %sGridRepublic%s nebo %sBAM!%s."
 
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr "Počítejte s BOINCem"
+
+#: index.php:126
+msgid "Software updates"
+msgstr "Aktualizace softwaru"
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr "Projekt BOINC"
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr "Uvítáme výpomoc!"
+
+#: index.php:160
+msgid "Programming"
+msgstr "Programování"
+
+#: index.php:161
+msgid "Translation"
+msgstr "Překlad"
+
+#: index.php:162
+msgid "Testing"
+msgstr "Testování"
+
+#: index.php:165
+msgid "Software development"
+msgstr "Vývoj softwaru"
+
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr "API pro doplňkový software"
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr "Pracovníci a přispěvatelé"
+
+#: index.php:168
+msgid "Message boards"
+msgstr "Diskuzní fóra"
+
+#: index.php:169
+msgid "Email lists"
+msgstr "Emailové konference"
+
+#: index.php:170
+msgid "Events"
+msgstr "Události"
+
+#: index.php:171
+msgid "Conferences"
+msgstr "Konference"
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr "Dokumenty a přednášky"
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr "Loga a grafika"
+
+#: index.php:206
+msgid "Browser default"
+msgstr "Podle nastavení prohlížeče"
+
 #: index.php:250
 #, php-format
 msgid ""
@@ -576,15 +689,15 @@ msgstr ""
 "Zde jsou současné výsledky <a href=poll.php>BOINC dotazníku</a>, tato "
 "stránka se aktualizuje každou hodinu."
 
-##########################################
+# #########################################
 # Language: Czech
 # FileID  : $Id$
 # Author  : Martin Suchan
 # Email   : martin.suchan at email.cz
-##########################################
+# #########################################
 # For more information please see:
 # http://boinc.berkeley.edu/trac/wiki/TranslateIntro
-##########################################
+# #########################################
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 #~ msgid "CHARSET"
 #~ msgstr "UTF-8"
@@ -597,14 +710,25 @@ msgstr ""
 #~ msgid "LANG_NAME_INTERNATIONAL"
 #~ msgstr "Czech"
 
-########################################
+# #######################################
 # poll-related stuff
-########################################
+# #######################################
 #~ msgid "POLL_TITLE"
 #~ msgstr "BOINC dotazník"
 
 #~ msgid "POLL_INTRO"
-#~ msgstr "Mnoho dobrovolných výpočetních projektů, např. Climateprediction.net, Einstein at home a SETI at home, používá program nazývaný BOINC. Pokud se podílíte na některém z takovýchto projektů, rádi bychom Vás požádali o vyplnění následujícího dotazníku. Zodpovězení následujících otázek nám pomůže zlepšit jednotlivé projekty, získat více účastníku a také dosáhnout větších vědeckých výsledků.</p><p>Odpovězte prosím na tolik otázek, kolik chcete, poté jděte na konec stránky a klikněte na OK. Pokud jste již dotazník dříve vyplnili, ale vaše odpovědi se změnily, prosím, vyplňte jej znova - vaše staré odpovědi budou nahrazeny novými.</p><p>Současné výsledky BOINC dotazníku jsou k <a href=poll_results.php>vidění zde</a>.</p>"
+#~ msgstr ""
+#~ "Mnoho dobrovolných výpočetních projektů, např. Climateprediction.net, "
+#~ "Einstein at home a SETI at home, používá program nazývaný BOINC. Pokud se "
+#~ "podílíte na některém z takovýchto projektů, rádi bychom Vás požádali o "
+#~ "vyplnění následujícího dotazníku. Zodpovězení následujících otázek nám "
+#~ "pomůže zlepšit jednotlivé projekty, získat více účastníku a také "
+#~ "dosáhnout větších vědeckých výsledků.</p><p>Odpovězte prosím na tolik "
+#~ "otázek, kolik chcete, poté jděte na konec stránky a klikněte na OK. Pokud "
+#~ "jste již dotazník dříve vyplnili, ale vaše odpovědi se změnily, prosím, "
+#~ "vyplňte jej znova - vaše staré odpovědi budou nahrazeny novými.</"
+#~ "p><p>Současné výsledky BOINC dotazníku jsou k <a href=poll_results."
+#~ "php>vidění zde</a>.</p>"
 
 #~ msgid "POLL_RUN"
 #~ msgstr "Používáte BOINC?"
@@ -625,7 +749,9 @@ msgstr ""
 #~ msgstr "Komentáře"
 
 #~ msgid "POLL_COMMENTS_QUESTION"
-#~ msgstr "Zkuste prosím navrhnout, jakými způsoby by se daly vylepšit jednotlivé projekty, nebo samotný BOINC:"
+#~ msgstr ""
+#~ "Zkuste prosím navrhnout, jakými způsoby by se daly vylepšit jednotlivé "
+#~ "projekty, nebo samotný BOINC:"
 
 #~ msgid "POLL_OTHER"
 #~ msgstr "Další:"
@@ -769,7 +895,9 @@ msgstr ""
 #~ msgstr "Z jiných webových stránek"
 
 #~ msgid "POLL_FACTOR"
-#~ msgstr "Jaké jsou pro Vás nejdůležitější faktory, když se rozhodujete, do jakého BOINC projektu se zapojíte?"
+#~ msgstr ""
+#~ "Jaké jsou pro Vás nejdůležitější faktory, když se rozhodujete, do jakého "
+#~ "BOINC projektu se zapojíte?"
 
 #~ msgid "POLL_GRAPHICS"
 #~ msgstr "Hezky vypadající šetřič obrazovky"
@@ -829,7 +957,9 @@ msgstr ""
 #~ msgstr "žádné"
 
 #~ msgid "POLL_HELP"
-#~ msgstr "Kde získáváte informace o tom, jak řešit problémy s BOINC či BOINC projekty?"
+#~ msgstr ""
+#~ "Kde získáváte informace o tom, jak řešit problémy s BOINC či BOINC "
+#~ "projekty?"
 
 #~ msgid "POLL_HELP_PMB"
 #~ msgstr "Na diskuzním fóru projektu"
@@ -856,7 +986,9 @@ msgstr ""
 #~ msgstr "Chyba - výsledek se neuložil"
 
 #~ msgid "POLL_ERROR_TEXT"
-#~ msgstr "Vnitřní chyba bohužel znemožnila uložení vašeho BOINC dotazníku, zkuste to prosím později."
+#~ msgstr ""
+#~ "Vnitřní chyba bohužel znemožnila uložení vašeho BOINC dotazníku, zkuste "
+#~ "to prosím později."
 
 #~ msgid "POLL_RECORDED"
 #~ msgstr "Váš BOINC dotazník byl uložen"
@@ -868,7 +1000,9 @@ msgstr ""
 #~ msgstr "Výsledky BOINC dotazníku"
 
 #~ msgid "POLL_RESULTS_TEXT"
-#~ msgstr "Zde jsou současné výsledky <a href=poll.php>BOINC dotazníku</a>, tato stránka se aktualizuje každou hodinu."
+#~ msgstr ""
+#~ "Zde jsou současné výsledky <a href=poll.php>BOINC dotazníku</a>, tato "
+#~ "stránka se aktualizuje každou hodinu."
 
 #~ msgid "Other systems"
 #~ msgstr "Jiné systémy"
@@ -879,15 +1013,24 @@ msgstr ""
 #~ msgid "%s make your own client software %s or"
 #~ msgstr "%s vytvořit vlastní klientský program %s nebo si"
 
-#~ msgid "%s download executables from a third-party site %s (available for Solaris/Opteron, Linux/Opteron, Linux/PPC, HP-UX, and FreeBSD, and others)."
-#~ msgstr "%s stáhnout aplikaci od jiných autorů %s (dostupné pro Solaris/Opteron, Linux/Opteron, Linux/PPC, HP-UX, FreeBSD a další)."
+#~ msgid ""
+#~ "%s download executables from a third-party site %s (available for Solaris/"
+#~ "Opteron, Linux/Opteron, Linux/PPC, HP-UX, and FreeBSD, and others)."
+#~ msgstr ""
+#~ "%s stáhnout aplikaci od jiných autorů %s (dostupné pro Solaris/Opteron, "
+#~ "Linux/Opteron, Linux/PPC, HP-UX, FreeBSD a další)."
 
 #~ msgid "DL_MIRRORS"
-#~ msgstr "Poznámka, soubory jsou stahované z naších zrcadlových serverů na boinc.berkeley.edu, morel.mit.edu, einstein.aei.mpg.de, einstein.astro.gla.ac.uk, einstein.ligo.caltech.edu, a einstein.aset.psu.edu (děkujeme těmto institucím). Server je vždy vybírán náhodně - pokud se stahování nezdaří, obnovte stránku a zkuste to prosím znova. "
+#~ msgstr ""
+#~ "Poznámka, soubory jsou stahované z naších zrcadlových serverů na boinc."
+#~ "berkeley.edu, morel.mit.edu, einstein.aei.mpg.de, einstein.astro.gla.ac."
+#~ "uk, einstein.ligo.caltech.edu, a einstein.aset.psu.edu (děkujeme těmto "
+#~ "institucím). Server je vždy vybírán náhodně - pokud se stahování nezdaří, "
+#~ "obnovte stránku a zkuste to prosím znova. "
 
-##############################################
+# #############################################
 # help.php
-##############################################
+# #############################################
 #~ msgid "HELP_TITLE"
 #~ msgstr "Získejte pomoc k BOINC"
 
@@ -895,16 +1038,30 @@ msgstr ""
 #~ msgstr "Online pomoc"
 
 #~ msgid "HELP_P1_1"
-#~ msgstr "BOINC online pomoc Vám umoňuje hovořit se zkušenými uživateli systému BOINC, kteří vám mohou: %s odpovědět otázky o BOINC dobrovolnickém počítání %s provést Vás procesem instalace a nastavení programu BOINC %s vyřešit problémy, na které můžete narazit"
+#~ msgstr ""
+#~ "BOINC online pomoc Vám umoňuje hovořit se zkušenými uživateli systému "
+#~ "BOINC, kteří vám mohou: %s odpovědět otázky o BOINC dobrovolnickém "
+#~ "počítání %s provést Vás procesem instalace a nastavení programu BOINC %s "
+#~ "vyřešit problémy, na které můžete narazit"
 
 #~ msgid "HELP_P1_2"
-#~ msgstr "BOINC online pomoc je založena na programu %sSkype%s pro telefonování přes internet. Skype je zdarma (program i telefonování). Pokud Skype dosud nemáte, %sstáhněte si jej zde%s a potom se vraťte na tuto stránku."
+#~ msgstr ""
+#~ "BOINC online pomoc je založena na programu %sSkype%s pro telefonování "
+#~ "přes internet. Skype je zdarma (program i telefonování). Pokud Skype "
+#~ "dosud nemáte, %sstáhněte si jej zde%s a potom se vraťte na tuto stránku."
 
 #~ msgid "HELP_P1_3"
-#~ msgstr "Nejlepší způsob, jak získat pomoc, je pomocí hlasové komunikace, pro kterou budete potřebovat buď vestavěný mikrofon a sluchátka, nebo přenosný headset pro Váš počítač. Pro komunikaci s dobrovolnými pomocníky lze též použít textovového rozhovoru přes Skype, nebo klasický email (pokud nepoužíváte Skype)."
+#~ msgstr ""
+#~ "Nejlepší způsob, jak získat pomoc, je pomocí hlasové komunikace, pro "
+#~ "kterou budete potřebovat buď vestavěný mikrofon a sluchátka, nebo "
+#~ "přenosný headset pro Váš počítač. Pro komunikaci s dobrovolnými pomocníky "
+#~ "lze též použít textovového rozhovoru přes Skype, nebo klasický email "
+#~ "(pokud nepoužíváte Skype)."
 
 #~ msgid "HELP_P1_4"
-#~ msgstr "Jsou dostupní dobrovolní pomocníci mluvící mnoha jazyky. Vyberte si prosím Váš jazyk: "
+#~ msgstr ""
+#~ "Jsou dostupní dobrovolní pomocníci mluvící mnoha jazyky. Vyberte si "
+#~ "prosím Váš jazyk: "
 
 #~ msgid "HELP_HEADING2"
 #~ msgstr "Nápověda BOINC na webu"
@@ -928,14 +1085,19 @@ msgstr ""
 #~ msgstr "Staňte se dobrovolným pomocníkem"
 
 #~ msgid "HELP_P3_1"
-#~ msgstr "Pokud jste zkušeným uživatelem programu BOINC, byly bychom rádi, pokud byste se stal dobrovolným pomocníkem. Je to skvělý způsob, jak pomoci věci vědeckého výzkumu a dobrovolnickému počítání - a je to také zábava! "
+#~ msgstr ""
+#~ "Pokud jste zkušeným uživatelem programu BOINC, byly bychom rádi, pokud "
+#~ "byste se stal dobrovolným pomocníkem. Je to skvělý způsob, jak pomoci "
+#~ "věci vědeckého výzkumu a dobrovolnickému počítání - a je to také zábava! "
 
 #~ msgid "HELP_P3_2"
-#~ msgstr "Pokud jste již dobrovolným pomocníkem: k úpravě svého nastavení %sklikněte zde%s."
+#~ msgstr ""
+#~ "Pokud jste již dobrovolným pomocníkem: k úpravě svého nastavení %"
+#~ "sklikněte zde%s."
 
-##############################################
+# #############################################
 # index.php
-##############################################
+# #############################################
 #~ msgid "HOME_HEADING1"
 #~ msgstr "Staňte se dobrovolníkem"
 
@@ -944,14 +1106,18 @@ msgstr ""
 #~ "Využívejte volný čas Vašeho počítače (Windows, Mac, Linux) k hledání léků "
 #~ "proti nemocem, studování globální oteplování, k objevení pulsarů nebo k "
 #~ "mnohému jinému vědeckému výzkumu. Je to bezpečné a jednoduché: %sVyberte "
-#~ "si%s projekty %sStáhněte si%s a nainstalujte program BOINC %sVložte%s vaší "
-#~ "emailovou adresu a heslo k projektu."
+#~ "si%s projekty %sStáhněte si%s a nainstalujte program BOINC %sVložte%s "
+#~ "vaší emailovou adresu a heslo k projektu."
 
 #~ msgid "HOME_P2"
-#~ msgstr "Případně, pokud používáte více projektů současně, vyzkoušejte některého ze %ssprávce účtů%s, jako jsou %sGridRepublic%s nebo %sBAM!%s."
+#~ msgstr ""
+#~ "Případně, pokud používáte více projektů současně, vyzkoušejte některého "
+#~ "ze %ssprávce účtů%s, jako jsou %sGridRepublic%s nebo %sBAM!%s."
 
 #~ msgid "HOME_P3"
-#~ msgstr "Pokud máte nějaké dotazy, nebo potřebujete poradit, můžete se %szeptat dobrovolných pomocníků%s."
+#~ msgstr ""
+#~ "Pokud máte nějaké dotazy, nebo potřebujete poradit, můžete se %szeptat "
+#~ "dobrovolných pomocníků%s."
 
 #~ msgid "HOME_DOWNLOAD"
 #~ msgstr "Ke stažení"
@@ -968,7 +1134,7 @@ msgstr ""
 #~ msgid "HOME_BOINC"
 #~ msgstr "Berkeley Open Infrastructure for Network Computing"
 
-##########################################
+# #########################################
 # Language: Czech
 # FileID  : $Id$
 # Author  : Martin Suchan
@@ -978,123 +1144,11 @@ msgstr ""
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 # The name of this language in this language
 # The name of this language in an international language (English)
-########################################
+# #######################################
 # poll-related stuff
-##############################################
+# #############################################
 # help.php
 # index.php
 #~ msgid "HOME_BOINC_DESC"
-#~ msgstr "Open-source software pro %sdobrovolnické počítání%s a %sgrid computing%s."
-
-#: index.php:23
-msgid "Computing power"
-msgstr "Výpočetní síla"
-
-#: index.php:25
-msgid "Top 100 volunteers"
-msgstr "100 nejvýkonnějších dobrovolníků"
-
-#: index.php:26
-msgid "Statistics"
-msgstr "Statistiky"
-
-#: index.php:53
-msgid "Active:"
-msgstr "Aktivní:"
-
-#: index.php:53
-msgid "volunteers,"
-msgstr "dobrovolníků,"
-
-#: index.php:53
-msgid "computers.\n"
-msgstr "počítačů.\n"
-
-#: index.php:54
-msgid "24-hour average:"
-msgstr "24 hodinový průměr:"
-
-#: index.php:54
-msgid "TeraFLOPS."
-msgstr "TeraFLOPů."
-
-#: index.php:66
-msgid "News"
-msgstr "Novinky"
-
-#: index.php:72
-msgid "... more"
-msgstr "... více"
-
-#: index.php:76
-#, php-format
-msgid "News is available as an %sRSS feed%s"
-msgstr "Novinky jsou dostupné jako %szprávy RSS%s"
-
-#: index.php:123
-msgid "Compute with BOINC"
-msgstr "Počítejte s BOINCem"
-
-#: index.php:126
-msgid "Software updates"
-msgstr "Aktualizace softwaru"
-
-#: index.php:153
-msgid "The BOINC project"
-msgstr "Projekt BOINC"
-
-#: index.php:158
-msgid "Help wanted!"
-msgstr "Uvítáme výpomoc!"
-
-#: index.php:160
-msgid "Programming"
-msgstr "Programování"
-
-#: index.php:161
-msgid "Translation"
-msgstr "Překlad"
-
-#: index.php:162
-msgid "Testing"
-msgstr "Testování"
-
-#: index.php:165
-msgid "Software development"
-msgstr "Vývoj softwaru"
-
-#: index.php:166
-msgid "APIs for add-on software"
-msgstr "API pro doplňkový software"
-
-#: index.php:167
-msgid "Personnel and contributors"
-msgstr "Pracovníci a přispěvatelé"
-
-#: index.php:168
-msgid "Message boards"
-msgstr "Diskuzní fóra"
-
-#: index.php:169
-msgid "Email lists"
-msgstr "Emailové konference"
-
-#: index.php:170
-msgid "Events"
-msgstr "Události"
-
-#: index.php:171
-msgid "Conferences"
-msgstr "Konference"
-
-#: index.php:172
-msgid "Papers and talks"
-msgstr "Dokumenty a přednášky"
-
-#: index.php:173
-msgid "Logos and graphics"
-msgstr "Loga a grafika"
-
-#: index.php:206
-msgid "Browser default"
-msgstr "Podle nastavení prohlížeče"
+#~ msgstr ""
+#~ "Open-source software pro %sdobrovolnické počítání%s a %sgrid computing%s."
diff --git a/locale/cs/pootle-boincclient610-cs.prefs b/locale/cs/pootle-boincclient610-cs.prefs
new file mode 100644
index 0000000..4fad2ff
--- /dev/null
+++ b/locale/cs/pootle-boincclient610-cs.prefs
@@ -0,0 +1,10 @@
+# Pootle preferences for project boinctrunk, language cs
+
+rights:
+  Spok = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  Necroman = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  JensSeidler = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/cs/pootle-boinctrunk-cs.prefs b/locale/cs/pootle-boinctrunk-cs.prefs
deleted file mode 100644
index b41772b..0000000
--- a/locale/cs/pootle-boinctrunk-cs.prefs
+++ /dev/null
@@ -1,8 +0,0 @@
-# Pootle preferences for project boinctrunk, language cs
-
-rights:
-  Spok = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  default = u'view, suggest, archive, pocompile'
-  nobody = u'view'
-  Necroman = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  JensSeidler = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/cy/BOINC-Manager.mo b/locale/cy/BOINC-Manager.mo
new file mode 100644
index 0000000..ff500f4
Binary files /dev/null and b/locale/cy/BOINC-Manager.mo differ
diff --git a/locale/cy/BOINC-Manager.po b/locale/cy/BOINC-Manager.po
new file mode 100644
index 0000000..3622d2f
--- /dev/null
+++ b/locale/cy/BOINC-Manager.po
@@ -0,0 +1,3518 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2010-01-19 17:06-0700\n"
+"Last-Translator: Huw Waters <huwwaters at gmail.com>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: cy\n"
+"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
+"X-Generator: Pootle 1.2.1\n"
+"X-Poedit-SearchPath-0: clientgui\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
+"X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
+
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:382
+msgid ""
+"Please enter your account information\n"
+"(to create an account, visit the project's web site)"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:386
+msgid ""
+"This project is not currently accepting new accounts.\n"
+"You can attach only if you already have an account."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:390
+msgid "Are you already running this project?"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:394
+msgid "&No, new user"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:397
+msgid "&Yes, existing user"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:425 clientgui/AccountInfoPage.cpp:591
+msgid "&Password:"
+msgstr "Cyfrinair:"
+
+#: clientgui/AccountInfoPage.cpp:432 clientgui/AccountInfoPage.cpp:606
+msgid "Choose a &password:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:435
+msgid "C&onfirm password:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
+msgid "Are you already running %s?"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:459
+msgid "&Username:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:473
+msgid "&Email address:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
+msgid "minimum length %d"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:488
+msgid "Forgot your password?"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:530
+msgid "Attach to project"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:532
+msgid "Update account manager"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:534
+msgid "Attach to account manager"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
+msgid ""
+"The minimum password length for this project is %d. Please enter a different "
+"password."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
+msgid ""
+"The minimum password length for this account manager is %d. Please enter a "
+"different password."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:560
+msgid ""
+"The password and confirmation password do not match. Please type them again."
+msgstr ""
+
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr ""
+
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+
+#: clientgui/AccountManagerInfoPage.cpp:255
+msgid "Account Manager &URL:"
+msgstr ""
+
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
+msgid "Communicating with %s."
+msgstr ""
+
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
+msgid "Communicating with server."
+msgstr ""
+
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
+msgid "Please wait..."
+msgstr ""
+
+#: clientgui/AccountManagerProcessingPage.cpp:325
+msgid "An internal server error has occurred.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:93
+msgid "Connected"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:101
+msgid "Disconnected"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:324 clientgui/BOINCTaskBar.cpp:641
+msgid "E&xit"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
+msgid "&Synchronize with %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
+msgid "Get current settings from %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:432
+msgid "&Run always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:433
+msgid "Allow work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:437
+msgid "Run based on &preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:438
+msgid "Allow work according to your preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:442
+msgid "&Suspend"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:443
+msgid "Stop work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:503
+msgid "&Network activity always available"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:504
+msgid "Allow network activity regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:509
+msgid "Allow network activity according to your preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:514
+msgid "Stop BOINC network activity"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:521
+msgid "&Options..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:522
+msgid "Configure GUI options and proxy settings"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:526
+msgid "&Preferences..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:527
+msgid "Configure local preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
+msgid "Connect to another computer running %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:538
+msgid "Select computer..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:543
+msgid "Shut down connected client..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:544
+msgid "Shut down the currently connected core client"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:548
+msgid "Run CPU &benchmarks"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:549
+msgid "Runs BOINC CPU benchmarks"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:553
+msgid "Do network &communication"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:554
+msgid "Do all pending network communication."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:558
+msgid "Read config file"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:559
+msgid "Read configuration info from cc_config.xml."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:563
+msgid "Read local prefs file"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:564
+msgid "Read preferences from global_prefs_override.xml."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
+msgid "%s &help"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
+msgid "Show information about %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
+msgid "&%s help"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
+msgid "Show information about the %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
+msgid "%s &website"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
+msgid "Show information about BOINC and %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:628 clientgui/BOINCTaskBar.cpp:631
+#, c-format
+msgid "&About %s..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:634
+msgid "Licensing and copyright information."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:641
+#, fuzzy
+msgid "&File"
+msgstr "Ffeil"
+
+#: clientgui/AdvancedFrame.cpp:645
+msgid "&View"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:649
+msgid "&Tools"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:653
+msgid "&Activity"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:657
+msgid "A&dvanced"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:661
+msgid "&Help"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
+msgid "%s - Detach from %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1126
+#, 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 ""
+
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
+msgid "%s - Language Selection"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
+msgid ""
+"The %s's default language has been changed, in order for this change to take "
+"affect you must restart the %s."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
+msgid "%s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
+msgid "%s has successfully attached to %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
+msgid "%s - (%s)"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
+msgid "Connecting to %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
+msgid "Connected to %s (%s)"
+msgstr ""
+
+#: clientgui/AlreadyExistsPage.cpp:182
+msgid "Username already in use"
+msgstr ""
+
+#: clientgui/AlreadyExistsPage.cpp:185
+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 ""
+
+#: clientgui/AlreadyExistsPage.cpp:189
+msgid "Email address already in use"
+msgstr ""
+
+#: clientgui/AlreadyExistsPage.cpp:192
+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 ""
+
+#: clientgui/AsyncRPC.cpp:1207
+msgid "Communicating with BOINC client.  Please wait ..."
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
+msgid "%s - Connection Error"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:431
+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 ""
+
+#: clientgui/BOINCBaseFrame.cpp:440
+msgid ""
+"Authorization failed connecting to running client.\n"
+"Make sure you start this program in the same directory as the client."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:442
+msgid "Authorization failed connecting to running client."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:450
+msgid "The password you have provided is incorrect, please try again."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
+msgid "%s - Connection Failed"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
+msgid ""
+"%s is not able to connect to a %s client.\n"
+"Would you like to try to connect again?"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
+msgid "%s - Daemon Start Failed"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
+
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
+msgid ""
+"%s is not able to start a %s client.\n"
+"Please start the daemon and try again."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
+msgid "%s - Connection Status"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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 ""
+
+#: clientgui/BOINCBaseView.cpp:723
+msgid "Web sites"
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
+msgid "%s - Network Status"
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
+msgid "%s needs to connect to the Internet.  Please click to open %s."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
+msgid ""
+"%s is unable to communicate with a project and needs an Internet "
+"connection.\n"
+"Please connect to the Internet, then select the 'Do network communications' "
+"item from the Advanced menu."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
+msgid ""
+"%s needs to connect to the Internet.\n"
+"May it do so now?"
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
+msgid "%s is connecting to the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
+msgid ""
+"%s couldn't do Internet communication, and no default connection is "
+"selected.\n"
+"Please connect to the Internet, or select a default connection\n"
+"using Advanced/Options/Connections."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
+msgid "%s has successfully connected to the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
+msgid "%s failed to connect to the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
+msgid ""
+"%s has detected it is now connected to the Internet.\n"
+"Updating all projects and retrying all transfers."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
+msgid "%s has successfully disconnected from the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
+msgid "%s failed to disconnected from the Internet."
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall "
+"BOINC.\n"
+"(Error code %d)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:378
+msgid ""
+"A reboot is required in order for BOINC to run properly.\n"
+"Please reboot your computer and try again."
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:379
+msgid "BOINC Manager"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:526
+msgid "BOINC Manager was started by the operating system automatically"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:528
+msgid "Startup BOINC so only the system tray icon is visible"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
+msgid "Startup BOINC with these optional arguments"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:534
+msgid "disable BOINC security users and permissions"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:535
+msgid "set skin debugging mode to enable skin manager error messages"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:725
+msgid "(Automatic Detection)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:726
+msgid "(Unknown)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:727
+msgid "(User Defined)"
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:348
+msgid "Computation is suspended."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:356
+msgid "Network activity is suspended."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
+msgid "%s: %.2f%% completed."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
+msgid "%d tasks running."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:412
+msgid "Reconnecting to client."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:418
+msgid "Not connected to a client."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
+msgid "Open %s Web..."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
+msgid "Open %s..."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:623
+msgid "Snooze"
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
+msgid "Failed to attach to project"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:204
+msgid "Failed to update account manager"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:208
+msgid "Failed to remove account manager"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:212
+msgid "Failed to attach to account manager"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:221
+msgid ""
+"An error has occurred;\n"
+"check Messages for details.\n"
+"\n"
+"Click Finish to close."
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:225 clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246 clientgui/CompletionPage.cpp:295
+msgid "Click Finish to close."
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:234
+msgid "Messages from server:"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:208
+msgid "Attached to project"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:214
+msgid "You are now successfully attached to this project."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:219
+msgid ""
+"When you click Finish, your web browser will go to a page where\n"
+"you can set your account name and preferences."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:236
+#, c-format
+msgid "Update from %s completed."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:240
+msgid "Update completed."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:257
+#, c-format
+msgid "Attached to %s"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:261
+msgid "Attached to account manager"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:271
+#, c-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:285
+#, c-format
+msgid "You are now successfully attached to the %s system."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:289
+msgid "You are now successfully attached to this account manager."
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:98
+#, c-format
+msgid "About %s"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:155
+msgid "Version:"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:163
+msgid "wxWidgets Version:"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:171
+msgid "Copyright:"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:175
+msgid ""
+"(C) 2003-2010 University of California, Berkeley.\n"
+"All Rights Reserved."
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:179 clientgui/DlgAbout.cpp:183
+msgid "Berkeley Open Infrastructure for Network Computing"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:195 clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120 clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
+msgid "&OK"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:485
+msgid "invalid float"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:486
+msgid "invalid time, format is HH:MM"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:487
+msgid "invalid time interval, format is HH:MM-HH:MM"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:601
+msgid "invalid input value detected"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:603
+msgid "Validation Error"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:747
+msgid "Do you really want to clear all local preferences ?"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:748
+msgid "Confirmation"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
+msgid "%s - Preferences"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:49
+msgid ""
+"This dialog controls preferences for this computer only.\n"
+"Click OK to set preferences.\n"
+"Click Clear to restore web-based settings."
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:52
+msgid "Clear"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:53
+msgid "clear all local preferences and close the dialog"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:76
+msgid "Computing allowed"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:80
+msgid " While computer is on batteries"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:83
+msgid ""
+"check this if you want this computer to do work while it runs on batteries"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:89
+msgid " While computer is in use"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:92
+msgid ""
+"check this if you want this computer to do work even when you're using it"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:98
+msgid " Use GPU while computer is in use"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:101
+msgid ""
+"check this if you want your GPU to do work even when you're using the "
+"computer"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:113
+msgid "Only after computer has been idle for"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:123
+msgid ""
+"do work only after you haven't used the computer for this number of minutes"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
+msgid "minutes"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
+msgid "Every day between hours of"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:181
+msgid "start work at this time"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
+msgid "and"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:189
+msgid "stop work at this time"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
+msgid "(no restriction if equal)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
+msgid "Day-of-week override:"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
+msgid "check box to specify hours for this day of week"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
+msgid "Monday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
+msgid "Tuesday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
+msgid "Wednesday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
+msgid "Thursday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
+msgid "Friday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
+msgid "Saturday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
+msgid "Sunday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:272
+msgid "Other options"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:289
+msgid "On multiprocessor systems, use at most"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
+msgid "% of the processors"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
+msgid "Use at most"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
+msgid "% CPU time"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:316
+msgid "processor usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:324
+msgid "General options"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:331
+msgid "Maximum download rate"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
+msgid "KBytes/sec."
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:340
+msgid "Maximum upload rate"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:349
+msgid "Connect about every"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:353
+msgid ""
+"this computer is connected to the Internet about every X days\n"
+"(0 if it's always connected)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:357
+msgid "days"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:360
+msgid "Additional work buffer"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:366
+msgid "days (max. 10)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:369
+msgid " Skip image file verification"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:371
+msgid "check this if your Internet provider modifies image files"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:380
+msgid "Connect options"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:382
+msgid "Confirm before connecting to internet"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:384
+msgid ""
+"if checked, a confirmation dialog will be displayed before trying to connect "
+"to the Internet"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:388
+msgid "Disconnect when done"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:390
+msgid ""
+"if checked, BOINC hangs up when network usage is done\n"
+"(only relevant for dialup-connection)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:397
+msgid "Network usage allowed"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:406
+msgid "network usage start hour"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:414
+msgid "network usage stop hour"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:499
+msgid "network usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:507 clientgui/DlgItemProperties.cpp:213
+msgid "Disk usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:519
+msgid "the maximum disk space used by BOINC (in Gigabytes)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:523
+msgid "Gigabytes disk space"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:526
+msgid "Leave at least"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:530
+msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:534
+msgid "Gigabytes disk space free"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:541
+msgid "BOINC uses at most this percentage of total disk space"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
+msgid "% of total disk space"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:555
+msgid "seconds"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
+msgid "% of page file (swap space)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:573
+msgid "Memory usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
+msgid "% when computer is in use"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
+msgid "% when computer is idle"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:603
+msgid " Leave applications in memory while suspended"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:605
+msgid "if checked, suspended work units are left in memory"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:614
+msgid "disk and memory usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:627
+msgid "OK"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:628
+msgid "save all values and close the dialog"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:633
+msgid "close the dialog without saving"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:637 clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121 clientgui/Localization.cpp:139
+msgid "Help"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:638
+msgid "shows the preferences web page"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
+msgid "%s - Exit Confirmation"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
+msgid ""
+"You have requested to exit the %s,\n"
+"which allows you to view and manage\n"
+"the science applications running on your computer.\n"
+"\n"
+"If you also want to stop running the science applications when you\n"
+"exit the Manager, then choose from the following options:"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
+msgid ""
+"This will shut down %s and its tasks entirely until either the\n"
+"%s application 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 ""
+
+#: clientgui/DlgExitMessage.cpp:153
+msgid "Stop running science applications when exiting the Manager"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:164
+msgid "Remember this decision and do not show this dialog."
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:177 clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388 clientgui/DlgSelectComputer.cpp:152
+msgid "&Cancel"
+msgstr ""
+
+#: clientgui/DlgGenericMessage.cpp:112
+msgid "Don't show this dialog again."
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:63
+msgid "&Close"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:195
+msgid "Properties of project "
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:199 clientgui/DlgOptions.cpp:205
+msgid "General"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:200
+msgid "Master URL"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:201
+msgid "User name"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:202
+msgid "Team name"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:203
+msgid "Resource share"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:205
+msgid "Scheduler RPC deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
+msgid "Non CPU intensive"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215 clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217 clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219 clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "yes"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215 clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217 clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219 clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "no"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:216
+msgid "Suspended via GUI"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:217
+msgid "Don't request more work"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:218
+msgid "Scheduler call in progress"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:219
+msgid "Attached via account manager"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:220
+msgid "Detach when done"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:221
+msgid "Ended"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:222
+msgid "Credit"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:223
+msgid "User"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:230
+msgid "Host"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:239
+msgid "Scheduling"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:240
+msgid "CPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:241
+msgid "CPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:244
+msgid "CPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:245
+msgid "CPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
+msgid "NVIDIA GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:251
+msgid "NVIDIA GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:252
+msgid "NVIDIA GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
+msgid "Duration correction factor"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:272
+msgid "Properties of task "
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:276
+msgid "Application"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:277
+msgid "Workunit name"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:278
+msgid "State"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
+msgid "Report deadline"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:286
+msgid "Resources"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:289
+msgid "CPU time at last checkpoint"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:290 clientgui/DlgItemProperties.cpp:305
+msgid "CPU time"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:292 clientgui/DlgItemProperties.cpp:306
+msgid "Elapsed time"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:294
+msgid "Estimated time remaining"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:295
+msgid "Fraction done"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:296
+msgid "Virtual memory size"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:297
+msgid "Working set size"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:400
+msgid "New"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:404
+msgid "Download failed"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:406
+msgid "Downloading"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:411
+msgid "Project suspended by user"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:413
+msgid "Task suspended by user"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:415
+msgid "Suspended"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:417
+msgid " - on batteries"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:420
+msgid " - user active"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:423
+msgid " - computation suspended"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:426
+msgid " - time of day"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:429
+msgid " - CPU benchmarks"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:432
+msgid " - need disk space"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:436
+msgid "Waiting for memory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:438
+msgid "Waiting for shared memory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:441
+msgid "Running, high priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:443
+msgid "Running"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:446
+msgid "Waiting to run"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:448 clientgui/DlgItemProperties.cpp:451
+msgid "Ready to start"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:455
+msgid "Computation error"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:459
+msgid "Upload failed"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:461
+msgid "Uploading"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:467
+msgid "Aborted by user"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:470
+msgid "Aborted by project"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:473
+msgid "Aborted"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:478
+msgid "Acknowledged"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:480
+msgid "Ready to report"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
+msgid "Error: invalid state '%d'"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:119
+#, c-format
+msgid "%s - Options"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:157
+msgid "Language:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:164
+msgid "What language should the manager use?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:168
+msgid ""
+"Network reminder interval:\n"
+"(minutes)"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:180
+msgid ""
+"How often should the Manager remind you when a network connection is needed?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:185
+msgid "Run Manager at login?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:191
+msgid "Run the BOINC Manager when you log on."
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:196
+msgid "Enable Manager exit dialog?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:202
+msgid "Display the exit dialog when shutting down the Manager."
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:213
+msgid "Dial-up and Virtual Private Network settings"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:227
+msgid "&Set Default"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:232
+msgid "&Clear Default"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:239
+msgid "Default Connection:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:246
+msgid "Connections"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:255
+msgid "Connect via HTTP proxy server"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:259
+msgid "HTTP Proxy Server Configuration"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:267 clientgui/DlgOptions.cpp:331
+msgid "Address:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:275 clientgui/DlgOptions.cpp:339
+msgid "Port:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:283 clientgui/DlgOptions.cpp:347
+msgid "Don't use proxy for:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:290 clientgui/DlgOptions.cpp:354
+msgid "Leave these blank if not needed"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:296 clientgui/DlgOptions.cpp:360
+msgid "User Name:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:304 clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
+#, fuzzy
+msgid "Password:"
+msgstr "Cyfrinair:"
+
+#: clientgui/DlgOptions.cpp:311
+msgid "HTTP Proxy"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:319
+msgid "Connect via SOCKS proxy server"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:323
+msgid "SOCKS Proxy Server Configuration"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:375
+msgid "SOCKS Proxy"
+msgstr ""
+
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
+msgid "%s - Select Computer"
+msgstr ""
+
+#: clientgui/DlgSelectComputer.cpp:127
+msgid "Host name:"
+msgstr ""
+
+#: clientgui/hyperlink.cpp:181
+#, c-format
+msgid "%s - Can't find web browser"
+msgstr ""
+
+#: clientgui/hyperlink.cpp:192
+#, c-format
+msgid ""
+"%s tried to display the web page\n"
+"\t%s\n"
+"but couldn't find a web browser.\n"
+"To fix this, set the environment variable\n"
+"BROWSER to the path of your web browser,\n"
+"then restart the %s."
+msgstr ""
+
+#: clientgui/Localization.cpp:31 clientgui/Localization.cpp:69
+msgid "Message boards"
+msgstr ""
+
+#: clientgui/Localization.cpp:33
+msgid "Correspond with other users on the SETI at home message boards"
+msgstr ""
+
+#: clientgui/Localization.cpp:37
+msgid "Ask questions and report problems"
+msgstr ""
+
+#: clientgui/Localization.cpp:39 clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111 clientgui/Localization.cpp:129
+msgid "Your account"
+msgstr ""
+
+#: clientgui/Localization.cpp:41 clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
+msgid "View your account information and credit totals"
+msgstr ""
+
+#: clientgui/Localization.cpp:43
+msgid "Your preferences"
+msgstr ""
+
+#: clientgui/Localization.cpp:45
+msgid "View and modify your SETI at home account profile and preferences"
+msgstr ""
+
+#: clientgui/Localization.cpp:47 clientgui/Localization.cpp:89
+msgid "Your results"
+msgstr ""
+
+#: clientgui/Localization.cpp:49 clientgui/Localization.cpp:91
+msgid "View your last week (or more) of computational results and work"
+msgstr ""
+
+#: clientgui/Localization.cpp:51 clientgui/Localization.cpp:93
+msgid "Your computers"
+msgstr ""
+
+#: clientgui/Localization.cpp:53
+msgid "View a listing of all the computers on which you are running SETI at Home"
+msgstr ""
+
+#: clientgui/Localization.cpp:55 clientgui/Localization.cpp:97
+msgid "Your team"
+msgstr ""
+
+#: clientgui/Localization.cpp:57 clientgui/Localization.cpp:99
+msgid "View information about your team"
+msgstr ""
+
+#: clientgui/Localization.cpp:61
+msgid "Common questions"
+msgstr ""
+
+#: clientgui/Localization.cpp:63
+msgid "Read the Einstein at Home Frequently Asked Question list"
+msgstr ""
+
+#: clientgui/Localization.cpp:65
+msgid "Screensaver info"
+msgstr ""
+
+#: clientgui/Localization.cpp:67
+msgid "Read a detailed description of the Einstein at Home screensaver"
+msgstr ""
+
+#: clientgui/Localization.cpp:71
+msgid ""
+"Correspond with admins and other users on the Einstein at Home message boards"
+msgstr ""
+
+#: clientgui/Localization.cpp:73
+msgid "Einstein status"
+msgstr ""
+
+#: clientgui/Localization.cpp:75
+msgid "Current status of the Einstein at Home server"
+msgstr ""
+
+#: clientgui/Localization.cpp:77
+msgid "Report problems"
+msgstr ""
+
+#: clientgui/Localization.cpp:79
+msgid "A link to the Einstein at Home problems and bug reports message board"
+msgstr ""
+
+#: clientgui/Localization.cpp:83
+msgid "View and modify your Einstein at Home account profile and preferences"
+msgstr ""
+
+#: clientgui/Localization.cpp:85
+msgid "Account summary"
+msgstr ""
+
+#: clientgui/Localization.cpp:95
+msgid ""
+"View a listing of all the computers on which you are running Einstein at Home"
+msgstr ""
+
+#: clientgui/Localization.cpp:101
+msgid "LIGO project"
+msgstr ""
+
+#: clientgui/Localization.cpp:103
+msgid ""
+"The home page of the Laser Interferometer Gravitational-wave Observatory "
+"(LIGO) project"
+msgstr ""
+
+#: clientgui/Localization.cpp:105
+msgid "GEO-600 project"
+msgstr ""
+
+#: clientgui/Localization.cpp:107
+msgid "The home page of the GEO-600 project"
+msgstr ""
+
+#: clientgui/Localization.cpp:115 clientgui/Localization.cpp:133
+msgid "Team"
+msgstr ""
+
+#: clientgui/Localization.cpp:117
+msgid "Info about your Team"
+msgstr ""
+
+#: clientgui/Localization.cpp:123
+msgid "Get help for climateprediction.net"
+msgstr ""
+
+#: clientgui/Localization.cpp:125
+msgid "News"
+msgstr ""
+
+#: clientgui/Localization.cpp:127
+msgid "climateprediction.net News"
+msgstr ""
+
+#: clientgui/Localization.cpp:131
+msgid "View your account information, credits, and trickles"
+msgstr ""
+
+#: clientgui/Localization.cpp:135
+msgid "Info about your team"
+msgstr ""
+
+#: clientgui/Localization.cpp:141
+msgid "Search for help in our help system"
+msgstr ""
+
+#: clientgui/Localization.cpp:143
+msgid "Global Statistics"
+msgstr ""
+
+#: clientgui/Localization.cpp:145
+msgid "Summary statistics for World Community Grid"
+msgstr ""
+
+#: clientgui/Localization.cpp:147
+msgid "My Grid"
+msgstr ""
+
+#: clientgui/Localization.cpp:149
+msgid "Your statistics and settings"
+msgstr ""
+
+#: clientgui/Localization.cpp:151
+msgid "Device Profiles"
+msgstr ""
+
+#: clientgui/Localization.cpp:153
+msgid "Update your device settings"
+msgstr ""
+
+#: clientgui/Localization.cpp:155
+msgid "Research"
+msgstr ""
+
+#: clientgui/Localization.cpp:157
+msgid "Learn about the projects hosted at World Community Grid"
+msgstr ""
+
+#: clientgui/MainDocument.cpp:536
+msgid "Starting client services; please wait..."
+msgstr ""
+
+#: clientgui/MainDocument.cpp:1073
+msgid "Retrieving system state; please wait..."
+msgstr ""
+
+#: clientgui/MainDocument.cpp:1082
+msgid "Retrieving host information; please wait..."
+msgstr ""
+
+#: clientgui/NoInternetConnectionPage.cpp:179
+msgid "No Internet connection"
+msgstr ""
+
+#: clientgui/NoInternetConnectionPage.cpp:182
+msgid "Please connect to the Internet and try again."
+msgstr ""
+
+#: clientgui/NotDetectedPage.cpp:181
+msgid "Project not found"
+msgstr ""
+
+#: clientgui/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 ""
+
+#: clientgui/NotDetectedPage.cpp:188
+msgid "Account manager not found"
+msgstr ""
+
+#: clientgui/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 ""
+
+#: clientgui/NotFoundPage.cpp:181
+msgid "Login Failed."
+msgstr ""
+
+#: clientgui/NotFoundPage.cpp:185
+msgid "Check the username and password, and try again."
+msgstr ""
+
+#: clientgui/NotFoundPage.cpp:189
+msgid "Check the email address and password, and try again."
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:259
+msgid "Choose a project"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:262
+msgid "To choose a project, click its name or type its URL below."
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:265
+msgid "Project &URL:"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:393
+msgid ""
+"This project may not have work for your type of computer. Are you sure you "
+"wish to continue?"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:417
+msgid ""
+"You are already attached to this project. Please choose a different project."
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
+msgid ""
+"Communicating with project\n"
+"Please wait..."
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:498
+msgid ""
+"Required wizard file(s) are missing from the target server.\n"
+"(lookup_account.php/create_account.php)\n"
+msgstr ""
+
+#: clientgui/ProxyInfoPage.cpp:195
+msgid "Network communication failure"
+msgstr ""
+
+#: clientgui/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"
+"hen click Back to try again.\n"
+"\n"
+"3) You are using a proxy server.\n"
+"Click Next to configure BOINC's proxy settings."
+msgstr ""
+
+#: clientgui/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 ""
+
+#: clientgui/ProxyPage.cpp:331
+msgid "Proxy configuration"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:334
+msgid "HTTP proxy"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:337 clientgui/ProxyPage.cpp:357
+msgid "Server:"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:350
+msgid "Autodetect"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:354
+msgid "SOCKS proxy"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
+msgid "&%s"
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:288
+msgid "Retrieving current status."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:291
+msgid "You don't have any projects.  Please Add a Project."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:294
+msgid "Downloading work from the server."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:299
+msgid "Processing Suspended:  Running On Batteries."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:301
+msgid "Processing Suspended:  User Active."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:303
+msgid "Processing Suspended:  User paused processing."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:305
+msgid "Processing Suspended:  Time of Day."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:307
+msgid "Processing Suspended:  Benchmarks Running."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:309
+msgid "Processing Suspended."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:313
+msgid "Waiting to contact project servers."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
+msgid "Retrieving current status"
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:320
+msgid "No work available to process"
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:322
+msgid "Unable to connect to the core client"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:107
+msgid "Project"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:108
+msgid "Time"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:109
+msgid "Message"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:177 clientgui/sg_DlgMessages.cpp:181
+msgid "Copy all the messages to the clipboard."
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:202 clientgui/sg_DlgMessages.cpp:210
+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 ""
+
+#: clientgui/sg_DlgMessages.cpp:204 clientgui/sg_DlgMessages.cpp:212
+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 ""
+
+#: clientgui/sg_DlgMessages.cpp:252 clientgui/sg_DlgPreferences.cpp:509
+msgid "Get help with BOINC"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
+msgid "%s - Messages"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:95
+msgid "100 MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:96
+msgid "200 MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:97
+msgid "500 MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:98
+msgid "1 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:99
+msgid "2 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:100
+msgid "5 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:101
+msgid "10 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:102
+msgid "20 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:103
+msgid "50 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:104
+msgid "100 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:135
+msgid "10%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:136
+msgid "20%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:137
+msgid "30%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:138
+msgid "40%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:139
+msgid "50%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:140
+msgid "60%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:141
+msgid "70%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:142
+msgid "80%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:143
+msgid "90%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:144
+msgid "100%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:169
+msgid "1"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:170
+msgid "3"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:171
+msgid "5"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:172
+msgid "10"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:173
+msgid "15"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:174
+msgid "30"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:175
+msgid "60"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:284
+msgid "Skin"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:291
+msgid "Skin:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:307
+msgid "Preferences"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:324
+msgid "I want to customize my preferences for this computer only."
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:333
+msgid "Customized Preferences"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:349
+msgid "Do work only between:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:371
+msgid "Connect to internet only between:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:393 clientgui/sg_DlgPreferences.cpp:410
+msgid "Use no more than:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:406
+msgid "of disk space"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:423
+msgid "of the processor"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:427
+msgid "Do work while on battery?"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:440
+msgid "Do work after idle for:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:678 clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749 clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765 clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927 clientgui/sg_DlgPreferences.cpp:938
+msgid "Anytime"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
+msgid "%d MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
+msgid "%4.2f GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
+msgid "%d%%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:864
+msgid "0 (Run Always)"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
+msgid "%d"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:90
+msgid "Paused: Other work running"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:92
+msgid "Paused: User initiatied.  Click 'Resume' to continue"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:94
+msgid "Paused: User active"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:96
+msgid "Paused: Computer on battery"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:98
+msgid "Paused: Time of Day"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:100
+msgid "Paused: Benchmarks running"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:102
+msgid "Paused"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:104
+msgid "Paused: Application start delayed"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:132
+msgid "Click to show project graphics"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:106
+msgid "Attach to an additional project"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:123
+msgid "Synchronize projects with account manager system"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
+msgid "Open a window to view messages"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:223
+msgid "Stop all activity"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:235
+msgid "Resume activity"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:252
+msgid "Open a window to set your preferences"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:269
+msgid "Switch to the BOINC advanced view"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:296
+msgid "My Projects:"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
+msgid "%s. Work done by %s: %0.2f"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:154
+msgid "Remove Project"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:217 clientgui/ViewProjects.cpp:490
+#, c-format
+msgid "Are you sure you want to detach from project '%s'?"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:223 clientgui/ViewProjects.cpp:496
+msgid "Detach from Project"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:138 clientgui/sg_ViewTabPage.cpp:278
+#, c-format
+msgid "%.1lf"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
+msgid "%d hr %d min %d sec"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:421
+msgid "Are you sure you want to display graphics on a remote machine?"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:422
+msgid "Show graphics"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:444
+msgid "Application: "
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:447 clientgui/sg_ViewTabPage.cpp:451
+msgid "Time Remaining: "
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:450
+msgid "Elapsed Time: "
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:218
+msgid "Terms of Use"
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:222
+msgid "Please read the following terms of use:"
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:231
+msgid "I agree to the terms of use."
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:237
+msgid "I do not agree with the terms of use."
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:183
+msgid "Project temporarily unavailable"
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:186
+msgid ""
+"The project is temporarily unavailable.\n"
+"\n"
+"Please try again later."
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:190
+msgid "Account manager temporarily unavailable"
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:193
+msgid ""
+"The account manager is temporarily unavailable.\n"
+"\n"
+"Please try again later."
+msgstr ""
+
+#: clientgui/ValidateAccountKey.cpp:68
+msgid "Please specify an account key to continue."
+msgstr ""
+
+#: clientgui/ValidateAccountKey.cpp:71
+msgid "Invalid Account Key; please enter a valid Account Key"
+msgstr ""
+
+#: clientgui/ValidateAccountKey.cpp:82 clientgui/ValidateEmailAddress.cpp:86
+msgid "Validation conflict"
+msgstr ""
+
+#: clientgui/ValidateEmailAddress.cpp:72
+msgid "Please specify an email address"
+msgstr ""
+
+#: clientgui/ValidateEmailAddress.cpp:75
+msgid "Invalid email address; please enter a valid email address"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:69
+msgid "Missing URL"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:70
+msgid ""
+"Please specify a URL.\n"
+"For example:\n"
+"http://www.example.com/"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:83 clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91 clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107 clientgui/ValidateURL.cpp:110
+msgid "Invalid URL"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:84 clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
+msgid ""
+"Please specify a valid URL.\n"
+"For example:\n"
+"http://boincproject.example.com"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:104 clientgui/ValidateURL.cpp:108
+#, c-format
+msgid "'%s' does not contain a valid host name."
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:111
+#, c-format
+msgid "'%s' does not contain a valid path."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:84 clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
+msgid "Commands"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:88 clientgui/ViewMessagesGrid.cpp:101
+msgid "Copy all messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:95 clientgui/ViewMessagesGrid.cpp:108
+msgid "Copy selected messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:106 clientgui/ViewMessages.cpp:502
+msgid "Show only this project"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:107 clientgui/ViewMessages.cpp:503
+msgid "Show only the messages for the selected project."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:164 clientgui/ViewMessagesGrid.cpp:157
+msgid "Messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:187 clientgui/ViewMessagesGrid.cpp:179
+msgid "Copying all messages to the clipboard..."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:223
+msgid "Copying selected messages to the clipboard..."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:286
+msgid "Filtering messages..."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:494
+msgid "Show all messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:495
+msgid "Show messages for all projects."
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:128
+msgid "ID"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:128
+msgid "Priority"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:151
+msgid "MessagesGrid"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:209
+msgid "Copying selected messages to Clipboard..."
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:396
+msgid "Info"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:399
+msgid "Warning"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:403
+msgid "Error"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:76
+msgid "News Feeds"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:80
+msgid "BOINC"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:81
+msgid "Display the latest news about BOINC"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:87
+msgid "BOINC Website"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:88
+msgid "Display the latest news about BOINC from the BOINC website"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:173
+msgid "Update"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:174
+msgid ""
+"Report all completed tasks, get latest credit, get latest preferences, and "
+"possibly get more tasks."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:180 clientgui/ViewProjects.cpp:707
+msgid "Suspend"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:181 clientgui/ViewProjects.cpp:707
+msgid "Suspend tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:187 clientgui/ViewProjects.cpp:726
+msgid "No new tasks"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:188
+msgid "Don't get new tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:194
+msgid "Reset project"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:195
+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 ""
+
+#: clientgui/ViewProjects.cpp:201
+msgid "Detach"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:202
+msgid ""
+"Detach computer from this project.  Tasks in progress will be lost (use "
+"'Update' first to report any completed tasks)."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:208
+msgid "Properties"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:209
+msgid "Show project details."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:219
+msgid "Account"
+msgstr "Cyfrif"
+
+#: clientgui/ViewProjects.cpp:221
+msgid "Work done"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:222
+msgid "Avg. work done"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:224
+msgid "Status"
+msgstr "Statws"
+
+#: clientgui/ViewProjects.cpp:249
+msgid "Projects"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:296
+msgid "Updating project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:338
+msgid "Resuming project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:342
+msgid "Suspending project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:379
+msgid "Telling project to allow additional task downloads..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:383
+msgid "Telling project to not fetch any additional tasks..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:419
+msgid "Resetting project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:432
+#, c-format
+msgid "Are you sure you want to reset project '%s'?"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:438
+msgid "Reset Project"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:477
+msgid "Detaching from project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:537
+msgid "Launching browser..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:703
+msgid "Resume"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:703
+msgid "Resume tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:722
+msgid "Allow new tasks"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:722
+msgid "Allow fetching new tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:726
+msgid "Don't fetch new tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1052
+msgid "Suspended by user"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1055
+msgid "Won't get new tasks"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1058
+msgid "Project ended - OK to detach"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1061
+msgid "Will detach when tasks done"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1064
+msgid "Scheduler request pending"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1068
+msgid "Scheduler request in progress"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1074
+msgid "Communication deferred "
+msgstr ""
+
+#: clientgui/ViewProjectsGrid.cpp:193
+msgid "ProjectsGrid"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:61
+msgid "Total disk usage"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:82
+msgid "Disk usage by BOINC projects"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:117
+msgid "Disk"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:223
+msgid "not attached to any BOINC project: 0 bytes"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:260
+msgid "used by BOINC: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:270
+msgid "free, available to BOINC: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:280
+msgid "free, not available to BOINC: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:290
+msgid "free: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:300
+msgid "used by other programs: "
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1142
+msgid "User Total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1143
+msgid "User Average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1144
+msgid "Host Total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1145
+msgid "Host Average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
+msgid "Last update: %.0f days ago"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1745
+msgid "Show user total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1746
+msgid "Show total credit for user"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1752
+msgid "Show user average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1753
+msgid "Show average credit for user"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1759
+msgid "Show host total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1760
+msgid "Show total credit for host"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1766
+msgid "Show host average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1767
+msgid "Show average credit for host"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1776
+msgid "< &Previous project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1777
+msgid "Show chart for previous project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1782
+msgid "&Next project >"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1783
+msgid "Show chart for next project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1788
+msgid "Mode view"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1791
+msgid "All projects"
+msgstr "Pob prosiect"
+
+#: clientgui/ViewStatistics.cpp:1792
+msgid "Show all projects, one chart per project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1798
+msgid "One project"
+msgstr "Un prosiect"
+
+#: clientgui/ViewStatistics.cpp:1799
+msgid "Show one chart with selected project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1805
+msgid "All projects(sum)"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1806
+msgid "Show one chart with all projects"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1833
+msgid "Statistics"
+msgstr "Ystadegau"
+
+#: clientgui/ViewStatistics.cpp:1853 clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895 clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938 clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980 clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
+msgid "Updating charts..."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:163 clientgui/ViewTransfersGrid.cpp:106
+msgid "Retry Now"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:164 clientgui/ViewTransfersGrid.cpp:107
+msgid "Click 'Retry now' to transfer the file now"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:170 clientgui/ViewTransfersGrid.cpp:113
+msgid "Abort Transfer"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:171 clientgui/ViewTransfersGrid.cpp:114
+msgid ""
+"Click 'Abort transfer' to delete the file from the transfer queue. This will "
+"prevent you from being granted credit for this result."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:182 clientgui/ViewTransfersGrid.cpp:129
+msgid "File"
+msgstr "Ffeil"
+
+#: clientgui/ViewTransfers.cpp:183 clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226 clientgui/ViewWorkGrid.cpp:147
+msgid "Progress"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:184 clientgui/ViewTransfersGrid.cpp:129
+msgid "Size"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:185 clientgui/ViewTransfersGrid.cpp:130
+msgid "Elapsed Time"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:186 clientgui/ViewTransfersGrid.cpp:130
+msgid "Speed"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:212 clientgui/ViewTransfersGrid.cpp:167
+msgid "Transfers"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:271 clientgui/ViewTransfersGrid.cpp:190
+msgid "Retrying transfer now..."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:309
+msgid "Aborting transfer..."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:322
+#, 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 ""
+
+#: clientgui/ViewTransfers.cpp:328
+msgid "Abort File Transfer"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:751 clientgui/ViewTransfersGrid.cpp:419
+msgid "Retry in "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:763 clientgui/ViewTransfersGrid.cpp:431
+msgid "Upload pending"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:763 clientgui/ViewTransfersGrid.cpp:431
+msgid "Download pending"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
+msgid "TransfersGrid"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:228
+msgid "Aborting transfer(s)..."
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:230
+msgid ""
+"Are you sure you want to abort this file(s) transfer ?\n"
+"NOTE: Aborting a transfer will invalidate a task and you\n"
+"will not receive credit for it."
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:231
+msgid "Abort File Transfer(s)"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:184 clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185 clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192 clientgui/ViewWorkGrid.cpp:115
+msgid "Show application graphics in a window."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:199 clientgui/ViewWorkGrid.cpp:122
+msgid "Suspend work for this result."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:205 clientgui/ViewWorkGrid.cpp:128
+msgid "Abort"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:206 clientgui/ViewWorkGrid.cpp:129
+msgid "Abandon work on the result. You will get no credit for it."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:213
+msgid "Show task details."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:224 clientgui/ViewWorkGrid.cpp:146
+msgid "Name"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:225
+msgid "Elapsed"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:227 clientgui/ViewWorkGrid.cpp:147
+msgid "To completion"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:254 clientgui/ViewWorkGrid.cpp:190
+msgid "Tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:342 clientgui/ViewWorkGrid.cpp:220
+msgid "Resuming task..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:345 clientgui/ViewWorkGrid.cpp:223
+msgid "Suspending task..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:373 clientgui/ViewWorkGrid.cpp:251
+msgid "Showing graphics for task..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:426
+#, c-format
+msgid ""
+"Are you sure you want to abort this task '%s'?\n"
+"(Progress: %s, Status: %s)"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:437 clientgui/ViewWorkGrid.cpp:335
+msgid "Abort task"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:446 clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728 clientgui/ViewWorkGrid.cpp:445
+msgid "Resume work for this task."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:734 clientgui/ViewWorkGrid.cpp:451
+msgid "Suspend work for this task."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
+msgid " - an exclusive app is running"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1168 clientgui/ViewWorkGrid.cpp:822
+msgid " (non-CPU-intensive)"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
+msgid "TasksGrid"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
+msgid ""
+"Are you sure you want to abort this task '%s'?\n"
+"(Progress: %s %%, Status: %s)"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:264
+#, 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 ""
+
+#: clientgui/WelcomePage.cpp:277
+msgid ""
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:281
+msgid ""
+"You have selected to attach to a new BOINC project.  Attaching to a new\n"
+"project means that you will be connecting your computer to a new website\n"
+"and organization.  If this is what you wanted to do, then please click on\n"
+"the 'Next' button below.\n"
+"\n"
+"Some projects like World Community Grid run multiple research applications.\n"
+"If you want to change which research applications are sent to your computer\n"
+"to run, then you should visit the project's website and modify your\n"
+"preferences there.\n"
+"\n"
+"To change which research applications are sent to you from\n"
+"World Community Grid then please click on the following button:"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:301
+msgid "To continue, click Next."
+msgstr ""
+
+#: clientgui/WizardAttachProject.cpp:610
+msgid "Do you really want to cancel?"
+msgstr ""
+
+#: clientgui/WizardAttachProject.cpp:611
+msgid "Question"
+msgstr ""
+
+#: clientgui/wizardex.cpp:377 clientgui/wizardex.cpp:553
+msgid "&Next >"
+msgstr ""
+
+#: clientgui/wizardex.cpp:383
+msgid "< &Back"
+msgstr ""
+
+#: clientgui/wizardex.cpp:553
+msgid "&Finish"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
+msgid "New page inserted. Index = %i"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
+msgid "New page appended. Index = %i"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
+msgid "Old Page Index = %i"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
+msgid "OnDropTarget: index by HitTest = %i"
+msgstr ""
+
+#: clientgui/common/wxPieCtrl.cpp:66
+msgid "Pie Ctrl"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid ""
+"for accessibility support, please select advanced from the view menu or type "
+"command shift a"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:528 clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
+msgid "specify work start and stop hours in format HH:MM-HH:MM"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:30
+msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
+msgstr ""
diff --git a/locale/cy/BOINC-Project-Generic.po b/locale/cy/BOINC-Project-Generic.po
new file mode 100644
index 0000000..04d5cb7
--- /dev/null
+++ b/locale/cy/BOINC-Project-Generic.po
@@ -0,0 +1,1311 @@
+# 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: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: BOINC translation team <translate at boinc.berkeley.edu>\n"
+"POT-Creation-Date: 2009-05-09 21:36 PDT\n"
+"PO-Revision-Date: 2010-01-19 17:07-0700\n"
+"Last-Translator: Huw Waters <huwwaters at gmail.com>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: cy\n"
+"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
+"X-Generator: Pootle 1.2.1\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+msgid "Search for words in forum messages"
+msgstr ""
+
+msgid "Search forums"
+msgstr ""
+
+msgid "Advanced search"
+msgstr ""
+
+msgid "Private messages"
+msgstr ""
+
+msgid "Questions and Answers"
+msgstr ""
+
+msgid "Message boards"
+msgstr ""
+
+msgid "%1 message board"
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid "Thread"
+msgstr ""
+
+msgid "Posts"
+msgstr ""
+
+msgid "Author"
+msgstr ""
+
+msgid "Views"
+msgstr ""
+
+msgid "Last post"
+msgstr ""
+
+msgid "Mark all threads as read"
+msgstr ""
+
+msgid "Mark all threads in all message boards as 'read'."
+msgstr ""
+
+msgid "Inbox"
+msgstr ""
+
+msgid "Write"
+msgstr ""
+
+msgid "Send private message"
+msgstr ""
+
+msgid "Preview"
+msgstr ""
+
+msgid "To"
+msgstr ""
+
+msgid "User IDs or unique usernames, separated with commas"
+msgstr ""
+
+msgid "Subject"
+msgstr ""
+
+msgid "Message"
+msgstr ""
+
+msgid "Send message"
+msgstr ""
+
+msgid ""
+"You are not allowed to send privates messages so often. Please wait some "
+"time before sending more messages."
+msgstr ""
+
+msgid "unread"
+msgstr ""
+
+msgid "Edit your profile"
+msgstr ""
+
+msgid "Your feedback on this profile"
+msgstr ""
+
+msgid "Recommend this profile for User of the Day:"
+msgstr ""
+
+msgid "I %1like%2 this profile"
+msgstr ""
+
+msgid "Alert administrators to an offensive profile:"
+msgstr ""
+
+msgid "I %1do not like%2 this profile"
+msgstr ""
+
+msgid "Search criteria (use one or more)"
+msgstr ""
+
+msgid "Key words"
+msgstr ""
+
+msgid "Find teams with these words in their names or descriptions"
+msgstr ""
+
+msgid "Country"
+msgstr "Gwlad"
+
+msgid "Type of team"
+msgstr "Math o dîm"
+
+msgid "Show only active teams"
+msgstr ""
+
+msgid "Search"
+msgstr ""
+
+msgid "Requested by you, and founder response deadline has passed."
+msgstr ""
+
+msgid "Complete foundership transfer"
+msgstr ""
+
+msgid "Requested by you"
+msgstr ""
+
+msgid "founder response deadline is %1"
+msgstr ""
+
+msgid "None"
+msgstr ""
+
+msgid "Initiate request"
+msgstr ""
+
+msgid "Deferred"
+msgstr ""
+
+msgid "Team info"
+msgstr ""
+
+msgid "Description"
+msgstr ""
+
+msgid "Web site"
+msgstr ""
+
+msgid "Total credit"
+msgstr ""
+
+msgid "Recent average credit"
+msgstr ""
+
+msgid "Cross-project stats"
+msgstr ""
+
+msgid "Type"
+msgstr ""
+
+msgid "Message board"
+msgstr ""
+
+msgid "Threads"
+msgstr ""
+
+msgid "Join this team"
+msgstr ""
+
+msgid ""
+"Note: if 'OK to email' is set in your project preferences, joining a team "
+"gives its founder access to your email address."
+msgstr ""
+
+msgid "Not accepting new members"
+msgstr ""
+
+msgid "Foundership change requested"
+msgstr ""
+
+msgid "Respond by %1"
+msgstr ""
+
+msgid "Team foundership change"
+msgstr ""
+
+msgid "Members"
+msgstr ""
+
+msgid "Founder"
+msgstr ""
+
+msgid "Admins"
+msgstr ""
+
+msgid "New members in last day"
+msgstr ""
+
+msgid "Total members"
+msgstr ""
+
+msgid "view"
+msgstr ""
+
+msgid "Active members"
+msgstr ""
+
+msgid "Members with credit"
+msgstr ""
+
+msgid "Name"
+msgstr ""
+
+msgid "Admin"
+msgstr ""
+
+msgid "Last %1"
+msgstr ""
+
+msgid "Next %1"
+msgstr ""
+
+msgid "No such team."
+msgstr ""
+
+msgid "This operation requires foundership."
+msgstr ""
+
+msgid "This operation requires team admin privileges"
+msgstr ""
+
+msgid "Rank"
+msgstr ""
+
+msgid ""
+"%1Privacy note%2: if you create a team, your project preferences (resource "
+"share, graphics preferences) will be visible to the public."
+msgstr ""
+
+msgid "Team name, text version"
+msgstr ""
+
+msgid "Don't use HTML tags."
+msgstr ""
+
+msgid "Team name, HTML version"
+msgstr ""
+
+msgid "You may use %1limited HTML tags%2."
+msgstr ""
+
+msgid "If you don't know HTML, leave this box blank."
+msgstr ""
+
+msgid "URL of team web page, if any"
+msgstr ""
+
+msgid "without \"http://\""
+msgstr ""
+
+msgid "This URL will be linked to from the team's page on this site."
+msgstr ""
+
+msgid "Description of team"
+msgstr ""
+
+msgid "Projects in which you are participating"
+msgstr ""
+
+msgid "Projects in which %1 is participating"
+msgstr ""
+
+msgid "Project"
+msgstr ""
+
+msgid "Click for user page"
+msgstr ""
+
+msgid "Average credit"
+msgstr ""
+
+msgid "Since"
+msgstr ""
+
+msgid "Computing and credit"
+msgstr ""
+
+msgid "Pending credit"
+msgstr ""
+
+msgid "View"
+msgstr ""
+
+msgid "Computers on this account"
+msgstr ""
+
+msgid "Tasks"
+msgstr ""
+
+msgid "Cross-project ID"
+msgstr ""
+
+msgid "Cross-project statistics"
+msgstr ""
+
+msgid "Certificate"
+msgstr ""
+
+msgid "Stats on your cell phone"
+msgstr ""
+
+msgid "Account information"
+msgstr ""
+
+msgid "Email address"
+msgstr ""
+
+msgid "URL"
+msgstr ""
+
+msgid "Postal code"
+msgstr ""
+
+msgid "%1 member since"
+msgstr ""
+
+msgid "Change"
+msgstr ""
+
+msgid "email address"
+msgstr ""
+
+msgid "password"
+msgstr ""
+
+msgid "other account info"
+msgstr ""
+
+msgid "Log out"
+msgstr ""
+
+msgid "User ID"
+msgstr ""
+
+msgid "Used in community functions"
+msgstr ""
+
+msgid "Account key"
+msgstr ""
+
+msgid "Provides full access to your account"
+msgstr ""
+
+msgid "Weak account key"
+msgstr ""
+
+msgid "Provides %1limited access%2 to your account"
+msgstr ""
+
+msgid "Preferences"
+msgstr ""
+
+msgid "When and how BOINC uses your computer"
+msgstr ""
+
+msgid "Computing preferences"
+msgstr ""
+
+msgid "Message boards and private messages"
+msgstr ""
+
+msgid "Community preferences"
+msgstr ""
+
+msgid "Resource share and graphics"
+msgstr ""
+
+msgid "%1 preferences"
+msgstr ""
+
+msgid "Community"
+msgstr ""
+
+msgid "Delete"
+msgstr ""
+
+msgid "Create"
+msgstr ""
+
+msgid "Profile"
+msgstr ""
+
+msgid "%1 posts"
+msgstr ""
+
+msgid "Notifications"
+msgstr ""
+
+msgid "Quit team"
+msgstr ""
+
+msgid "Administer"
+msgstr ""
+
+msgid "(foundership change request pending)"
+msgstr ""
+
+msgid "Member of team"
+msgstr ""
+
+msgid "Team"
+msgstr ""
+
+msgid "find a team"
+msgstr ""
+
+msgid "Founder but not member of"
+msgstr ""
+
+msgid "Find friends"
+msgstr ""
+
+msgid "Friends"
+msgstr ""
+
+msgid "Computers"
+msgstr ""
+
+msgid "hidden"
+msgstr ""
+
+msgid "Donor"
+msgstr ""
+
+msgid "Contact"
+msgstr ""
+
+msgid "This person is a friend"
+msgstr ""
+
+msgid "Cancel friendship"
+msgstr ""
+
+msgid "Request pending"
+msgstr ""
+
+msgid "Add as friend"
+msgstr ""
+
+msgid "CHARSET"
+msgstr ""
+
+msgid "Use BBCode tags to format your text"
+msgstr ""
+
+msgid "Identifies you on our web site. Use your real name or a nickname."
+msgstr ""
+
+msgid "Select the country you want to represent, if any."
+msgstr ""
+
+msgid "Postal or ZIP Code"
+msgstr ""
+
+msgid "Optional"
+msgstr ""
+
+msgid "Applications"
+msgstr ""
+
+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 ""
+
+msgid "Platform"
+msgstr ""
+
+msgid "Version"
+msgstr ""
+
+msgid "Installation time"
+msgstr ""
+
+msgid "You must supply an invitation code to create an account."
+msgstr ""
+
+msgid "The invitation code you gave is not valid."
+msgstr ""
+
+msgid "Create an account"
+msgstr ""
+
+msgid "Account creation is disabled"
+msgstr ""
+
+msgid "Account creation is currently disabled. Please try again later."
+msgstr ""
+
+msgid ""
+"NOTE: If you use BOINC version 5.2+ with the BOINC Manager, don't use this "
+"form. Just run BOINC, select Attach Project, and enter an email address and "
+"password."
+msgstr ""
+
+msgid ""
+"This account will belong to the team %1 and will have the project "
+"preferences of its founder."
+msgstr ""
+
+msgid "Invitation Code"
+msgstr ""
+
+msgid "A valid invitation code is required to create an account."
+msgstr ""
+
+msgid "Email Address"
+msgstr ""
+
+msgid "Must be a valid address of the form 'name at domain'."
+msgstr ""
+
+msgid "Password"
+msgstr ""
+
+msgid "Must be at least %1 characters"
+msgstr ""
+
+msgid "Confirm password"
+msgstr ""
+
+msgid "Create account"
+msgstr ""
+
+msgid "ERROR: %1 does not exist!  Cannot create combo box.<br>"
+msgstr ""
+
+msgid "Picture"
+msgstr ""
+
+msgid "%1 Your profile picture is shown to the left."
+msgstr ""
+
+msgid ""
+"To replace it, click the \"Browse\" button and select a JPEG or PNG file (%1 "
+"or less)."
+msgstr ""
+
+msgid "To remove it from your profile, check this box:"
+msgstr ""
+
+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 ""
+
+msgid "Language"
+msgstr ""
+
+msgid "Select the language in which your profile is written:"
+msgstr ""
+
+msgid "Submit profile"
+msgstr ""
+
+msgid ""
+"To protect the project's webpages from spam, we kindly ask you to type in "
+"the two words shown in the image:<br>\n"
+msgstr ""
+
+msgid "Create/edit profile"
+msgstr ""
+
+msgid "The format of your uploaded image is not supported."
+msgstr ""
+
+msgid ""
+"Your %1profile%2 lets you share your opinions and background with the %3 "
+"community."
+msgstr ""
+
+msgid "Your ReCaptcha response was not correct.  Please try again."
+msgstr ""
+
+msgid ""
+"Your first response was flagged as spam by the Akismet anti-spam system.  "
+"Please modify your text and try again."
+msgstr ""
+
+msgid ""
+"Your second response was flagged as spam by the Akismet anti-spam system.  "
+"Please modify your text and try again."
+msgstr ""
+
+msgid "Your profile submission was empty."
+msgstr ""
+
+msgid "Could not update the profile: database error"
+msgstr ""
+
+msgid "Could not create the profile: database error"
+msgstr ""
+
+msgid "Profile saved"
+msgstr ""
+
+msgid ""
+"Congratulations! Your profile was successfully entered into our database."
+msgstr ""
+
+msgid "%1View your profile%2"
+msgstr ""
+
+msgid "Create a profile"
+msgstr ""
+
+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 ""
+
+msgid "Download BOINC add-on software"
+msgstr ""
+
+msgid "You can download applications in several categories."
+msgstr ""
+
+msgid ""
+"These applications are not endorsed by %1 and you use them at your own risk."
+msgstr ""
+
+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 ""
+
+msgid "Instructions for installing and running BOINC are %1here%2."
+msgstr ""
+
+msgid "This list is managed centrally at %1the BOINC website%2."
+msgstr ""
+
+msgid "fll"
+msgstr ""
+
+msgid "Title"
+msgstr ""
+
+msgid "Add my signature to this post"
+msgstr ""
+
+msgid "%1 Message boards"
+msgstr ""
+
+msgid ""
+"If you have a question or problem, please use the %1Questions & Answers%2 "
+"section of the message boards."
+msgstr ""
+
+msgid "Topic"
+msgstr ""
+
+msgid "Create a new thread"
+msgstr ""
+
+msgid "Post to thread"
+msgstr ""
+
+msgid "Forum search"
+msgstr ""
+
+msgid "Forum search results"
+msgstr ""
+
+msgid "No thread with id %1. Please check the link and try again."
+msgstr ""
+
+msgid "This forum is not visible to you."
+msgstr ""
+
+msgid "This thread has been hidden for administrative purposes"
+msgstr ""
+
+msgid "My question was answered"
+msgstr ""
+
+msgid ""
+"If your question has been adequately answered please click here to close it!"
+msgstr ""
+
+msgid "I've also got this question"
+msgstr ""
+
+msgid "Add a new message to this thread"
+msgstr ""
+
+msgid "Unsubscribe"
+msgstr ""
+
+msgid "You are subscribed to this thread.  Click here to unsubscribe."
+msgstr ""
+
+msgid "Subscribe"
+msgstr ""
+
+msgid "Click to get email when there are new posts in this thread"
+msgstr ""
+
+msgid "Unhide"
+msgstr ""
+
+msgid "Unhide this thread"
+msgstr ""
+
+msgid "Hide"
+msgstr ""
+
+msgid "Hide this thread"
+msgstr ""
+
+msgid "Make unsticky"
+msgstr ""
+
+msgid "Make this thread not sticky"
+msgstr ""
+
+msgid "Make sticky"
+msgstr ""
+
+msgid "Make this thread sticky"
+msgstr ""
+
+msgid "Unlock"
+msgstr ""
+
+msgid "Unlock this thread"
+msgstr ""
+
+msgid "Lock"
+msgstr ""
+
+msgid "Lock this thread"
+msgstr ""
+
+msgid "Move"
+msgstr ""
+
+msgid "Move this thread to a different forum"
+msgstr ""
+
+msgid "Edit title"
+msgstr ""
+
+msgid "Edit thread title"
+msgstr ""
+
+msgid "Sort"
+msgstr ""
+
+msgid "Already friends"
+msgstr ""
+
+msgid "You requested friendship with %1 on %2."
+msgstr ""
+
+msgid "This request is still pending confirmation."
+msgstr ""
+
+msgid "%1 is not accepting friendship requests from you"
+msgstr ""
+
+msgid "You can't be friends with yourself"
+msgstr ""
+
+msgid "No such user"
+msgstr ""
+
+msgid "Add friend"
+msgstr ""
+
+msgid ""
+"You have asked to add %1 as a friend. We will notify %2 and will ask him/her "
+"to confirm that you are friends."
+msgstr ""
+
+msgid "Add an optional message here:"
+msgstr ""
+
+msgid "Database error"
+msgstr ""
+
+msgid "Friend request sent"
+msgstr ""
+
+msgid "We have notified %1 of your request."
+msgstr ""
+
+msgid "Request not found"
+msgstr ""
+
+msgid "Friend request"
+msgstr ""
+
+msgid "%1 has added you as a friend."
+msgstr ""
+
+msgid "%1 says: %2"
+msgstr ""
+
+msgid "Accept friendship"
+msgstr ""
+
+msgid "Click accept if %1 is in fact a friend"
+msgstr ""
+
+msgid "Decline"
+msgstr ""
+
+msgid "Click decline if %1 is not a friend"
+msgstr ""
+
+msgid "No request"
+msgstr ""
+
+msgid "Friendship confirmed"
+msgstr ""
+
+msgid "Your friendship with %1 has been confirmed."
+msgstr ""
+
+msgid "Friendship declined"
+msgstr ""
+
+msgid "You have declined friendship with %1"
+msgstr ""
+
+msgid "Notification not found"
+msgstr ""
+
+msgid "Friend confirmed"
+msgstr ""
+
+msgid "You are now friends with %1."
+msgstr ""
+
+msgid "Cancel friendship?"
+msgstr ""
+
+msgid "Are you sure you want to cancel your friendship with %1?"
+msgstr ""
+
+msgid "Yes"
+msgstr ""
+
+msgid "No"
+msgstr ""
+
+msgid "Stay friends"
+msgstr ""
+
+msgid "Friendship cancelled"
+msgstr ""
+
+msgid "Your friendship with %1 has been cancelled."
+msgstr ""
+
+msgid "Unknown action"
+msgstr ""
+
+msgid "Welcome to %1"
+msgstr ""
+
+msgid "View and edit your account preferences using the links below."
+msgstr ""
+
+msgid "Your account"
+msgstr ""
+
+msgid "Read our rules and policies"
+msgstr ""
+
+msgid "Run %1 only on authorized computers"
+msgstr ""
+
+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 ""
+
+msgid "How %1 will use your computer"
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid "Privacy policy"
+msgstr ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+msgid "Is it safe to run %1?"
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid ""
+"%1 was developed by %2. BOINC was developed at the University of California."
+msgstr ""
+
+msgid "Liability"
+msgstr ""
+
+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 ""
+
+msgid "Other BOINC projects"
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid "LANG_NAME_INTERNATIONAL"
+msgstr ""
+
+msgid "LANG_NAME_NATIVE"
+msgstr ""
+
+msgid "Your message has been sent."
+msgstr ""
+
+msgid "You have no private messages."
+msgstr ""
+
+msgid "Sender and date"
+msgstr ""
+
+msgid "Reply"
+msgstr ""
+
+msgid "Delete selected messages"
+msgstr ""
+
+msgid "Sender"
+msgstr ""
+
+msgid "Date"
+msgstr ""
+
+msgid "You need to fill all fields to send a private message"
+msgstr ""
+
+msgid "Could not find user with id %1"
+msgstr ""
+
+msgid "Could not find user with username %1"
+msgstr ""
+
+msgid "%1 is not a unique username; you will have to use user ID"
+msgstr ""
+
+msgid "User %1 (ID: %2) is not accepting private messages from you."
+msgstr ""
+
+msgid "Really block %1?"
+msgstr ""
+
+msgid ""
+"Are you really sure you want to block user %1 from sending you private "
+"messages?"
+msgstr ""
+
+msgid "Please note that you can only block a limited amount of users."
+msgstr ""
+
+msgid ""
+"Once the user has been blocked you can unblock it using forum preferences "
+"page."
+msgstr ""
+
+msgid "Add user to filter"
+msgstr ""
+
+msgid "No, cancel"
+msgstr ""
+
+msgid "User %1 blocked"
+msgstr ""
+
+msgid "User %1 has been blocked from sending you private messages."
+msgstr ""
+
+msgid "To unblock, visit %1message board preferences%2"
+msgstr ""
+
+msgid "Profiles"
+msgstr ""
+
+msgid ""
+"%1Profiles%2 let individuals share backgrounds and opinions with the %3 "
+"community."
+msgstr ""
+
+msgid ""
+"Explore the diversity of your fellow volunteers, and contribute your own "
+"views for others to enjoy."
+msgstr ""
+
+msgid ""
+"If you haven't already, you can %1create your own user profile%2 for others "
+"to see!"
+msgstr ""
+
+msgid "User of the Day"
+msgstr ""
+
+msgid "User Profile Explorer"
+msgstr ""
+
+msgid "View the %1User Picture Gallery%2."
+msgstr ""
+
+msgid "Browse profiles %1by country%2."
+msgstr ""
+
+msgid ""
+"Browse profiles %1at random%2, %3at random with pictures%2, or %4at random "
+"without pictures%2."
+msgstr ""
+
+msgid "Alphabetical profile listings:"
+msgstr ""
+
+msgid "Search profile text"
+msgstr ""
+
+msgid "No profiles"
+msgstr ""
+
+msgid "No profiles matched your query."
+msgstr ""
+
+msgid "Invalid vote type:"
+msgstr ""
+
+msgid "Vote Recorded"
+msgstr ""
+
+msgid "Thank you"
+msgstr ""
+
+msgid "Your recommendation has been recorded."
+msgstr ""
+
+msgid "Your vote to reject this profile has been recorded."
+msgstr ""
+
+msgid "Return to profile."
+msgstr ""
+
+msgid "This feature is turned off temporarily"
+msgstr ""
+
+msgid "No computer with ID %1 found"
+msgstr ""
+
+msgid "Tasks for computer %1"
+msgstr ""
+
+msgid "No access"
+msgstr ""
+
+msgid "Missing user ID or host ID"
+msgstr ""
+
+msgid "User of the day"
+msgstr ""
+
+msgid "Account data for %1"
+msgstr ""
+
+msgid "Statistics and leaderboards"
+msgstr ""
+
+msgid "Statistics for %1"
+msgstr ""
+
+msgid "Top participants"
+msgstr ""
+
+msgid "Top computers"
+msgstr ""
+
+msgid "Top teams"
+msgstr ""
+
+msgid ""
+"More detailed statistics for %1 and other BOINC-based projects are available "
+"at several web sites:"
+msgstr ""
+
+msgid ""
+"You can also get your current statistics in the form of a \"signature image"
+"\":"
+msgstr ""
+
+msgid ""
+"Additionally you can get your individual statistics summed across all BOINC "
+"projects from several sites; see your %1home page%2."
+msgstr ""
+
+msgid "%1 participants may form %2teams%3"
+msgstr ""
+
+msgid ""
+"You may belong to only one team. You can join or quit a team at any time."
+msgstr ""
+
+msgid "Each team has a %1founder%2 who may:"
+msgstr ""
+
+msgid "access team members' email addresses"
+msgstr ""
+
+msgid "edit the team's name and description"
+msgstr ""
+
+msgid "remove members from the team"
+msgstr ""
+
+msgid "disband a team if it has no members"
+msgstr ""
+
+msgid "To join a team, visit its team page and click %1Join this team%2."
+msgstr ""
+
+msgid "Find a team"
+msgstr ""
+
+msgid "All teams"
+msgstr ""
+
+msgid "%1 teams"
+msgstr ""
+
+msgid "Create a new team"
+msgstr ""
+
+msgid ""
+"If you cannot find a team that is right for you, you can %1create a team%2."
+msgstr ""
+
+msgid "You must choose a non-blank team name"
+msgstr ""
+
+msgid "A team named %1 already exists - try another name"
+msgstr ""
+
+msgid "Could not create team - please try later."
+msgstr ""
+
+msgid "Create a team"
+msgstr ""
+
+msgid ""
+"You belong to %1. You must %2quit this team%3 before creating a new one."
+msgstr ""
+
+msgid "Top hosts"
+msgstr ""
+
+msgid "Top %1 teams"
+msgstr ""
+
+msgid "Participant since"
+msgstr ""
+
+msgid "This user has no profile"
+msgstr ""
+
+msgid "Account data"
+msgstr ""
+
+msgid ""
+"Your 'weak account key' lets you attach computers to your account on this "
+"project, without giving the ability to log in to your account or to change "
+"it in any way."
+msgstr ""
+
+msgid ""
+"This mechanism works only with projects that have upgraded their server "
+"software 7 Dec 2007 or later."
+msgstr ""
+
+msgid "Your weak account key for this project is:"
+msgstr ""
+
+msgid ""
+"To use your weak account key on a given host, find or create the 'account "
+"file' for this project. This file has a name of the form "
+"<b>account_PROJECT_URL.xml</b>. The account file for %1 is <b>%2</b>."
+msgstr ""
+
+msgid "Create this file if needed. Set its contents to:"
+msgstr ""
+
+msgid ""
+"Your weak account key is a function of your password. If you change your "
+"password, your weak account key changes, and your previous weak account key "
+"becomes invalid."
+msgstr ""
diff --git a/locale/cy/BOINC-Web.po b/locale/cy/BOINC-Web.po
new file mode 100644
index 0000000..07c63d4
--- /dev/null
+++ b/locale/cy/BOINC-Web.po
@@ -0,0 +1,635 @@
+# 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: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
+"PO-Revision-Date: 2010-01-19 11:30-0700\n"
+"Last-Translator: Huw Waters <huwwaters at gmail.com>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: cy\n"
+"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
+"X-Generator: Pootle 1.2.1\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+#: poll.inc:18
+msgid "[check all that apply]"
+msgstr "[dewis pob un perthnasol]"
+
+#: poll.inc:47
+msgid "Other:"
+msgstr "Arall:"
+
+#: poll_data.inc:19
+msgid "Yes - I have been running BOINC on my computer for..."
+msgstr "Ydw - Yr ydwyf yn rhedeg BOINC ar fy nghyfrifiadur am..."
+
+#: poll_data.inc:22
+msgid "less than a week"
+msgstr "lai nag wythnos"
+
+#: poll_data.inc:23
+msgid "less than a month"
+msgstr "llai na mis"
+
+#: poll_data.inc:24
+msgid "less than a year"
+msgstr "llai na blwyddyn"
+
+#: poll_data.inc:25
+msgid "more than a year"
+msgstr "mwy na blwyddyn"
+
+#: poll_data.inc:31
+msgid "No - I used to run BOINC, but..."
+msgstr "Na - Rhedais BOINC, ond..."
+
+#: poll_data.inc:34
+msgid "I lost interest"
+msgstr "collais ddiddordeb"
+
+#: poll_data.inc:35
+msgid "it was too complicated"
+msgstr "yr oedd yn rhy gymhleth"
+
+#: poll_data.inc:36
+msgid "I stopped it and forgot to start again"
+msgstr "stopiais ac anghofiais ei ail-gydio"
+
+#: poll_data.inc:37
+msgid "it caused problems on my computer"
+msgstr "achosodd problemau ar fy nghyfrifiadur"
+
+#: poll_data.inc:38
+msgid "it used too much electricity"
+msgstr "defnyddiodd gormod o drydan"
+
+#: poll_data.inc:39
+msgid "I switched to a non-BOINC computing project"
+msgstr "symudais i brosiect cyfrifiaduro di-BOINC"
+
+#: poll_data.inc:45
+msgid "No - I tried running BOINC, but..."
+msgstr "Na - Ceisiais redeg BOINC, ond"
+
+#: poll_data.inc:48
+msgid "the software didn't install correctly"
+msgstr "ni arsefydlodd y meddalwedd yn gywir"
+
+#: poll_data.inc:49
+msgid "I couldn't figure out how to use the software"
+msgstr "methais a datrys sut i ddefnyddio'r meddalwedd"
+
+#: poll_data.inc:50
+msgid "I had network communication problems"
+msgstr "cefais problemau cyfathrebu rhwydwaith"
+
+#: poll_data.inc:51
+msgid "I couldn't attach to a project"
+msgstr "methais ag atodi at brosiect"
+
+#: poll_data.inc:52
+msgid "I attached to a project, but never got any work"
+msgstr "atodais at brosiect, ond ni dderbyniais unrhyw waith"
+
+#: poll_data.inc:58
+msgid "No - I never tried running BOINC, because..."
+msgstr "Na - Ni cheisiais redeg BOINC, oherwydd..."
+
+#: poll_data.inc:61
+msgid "I was concerned about security"
+msgstr "pryderais ynghylch diogeledd"
+
+#: poll_data.inc:62
+msgid "I wasn't interested in any of the projects"
+msgstr ""
+
+#: poll_data.inc:63
+msgid "I don't have permission to run it on my computer"
+msgstr ""
+
+#: poll_data.inc:64
+msgid "No version was available for my computer"
+msgstr ""
+
+#: poll_data.inc:75
+msgid "What kind of computers do you have running BOINC?"
+msgstr ""
+
+#: poll_data.inc:85
+msgid "Where are they?"
+msgstr ""
+
+#: poll_data.inc:87
+msgid "Home"
+msgstr "Cartref"
+
+#: poll_data.inc:88
+msgid "Work"
+msgstr "Gwaith"
+
+#: poll_data.inc:89
+msgid "School"
+msgstr "Ysgol"
+
+#: poll_data.inc:96
+msgid "How many computers?"
+msgstr "Sawl cyfrifiadur?"
+
+#: poll_data.inc:107
+msgid "On average, how many hours per day are they powered on?"
+msgstr ""
+
+#: poll_data.inc:119
+msgid "Age"
+msgstr "Oed"
+
+#: poll_data.inc:129
+msgid "Sex"
+msgstr "Rhyw"
+
+#: poll_data.inc:131
+msgid "Male"
+msgstr "Gwryw"
+
+#: poll_data.inc:132
+msgid "Female"
+msgstr "Benyw"
+
+#: poll_data.inc:137
+msgid "Your level of computer expertise"
+msgstr ""
+
+#: poll_data.inc:139
+msgid "Beginner"
+msgstr ""
+
+#: poll_data.inc:140
+msgid "Intermediate"
+msgstr ""
+
+#: poll_data.inc:141
+msgid "Advanced"
+msgstr ""
+
+#: poll_data.inc:149
+msgid "Where did you learn about BOINC projects?"
+msgstr ""
+
+#: poll_data.inc:151
+msgid "TV/radio/newspaper"
+msgstr ""
+
+#: poll_data.inc:152
+msgid "From friends, relatives, or coworkers"
+msgstr ""
+
+#: poll_data.inc:153
+msgid "Team message boards or web sites"
+msgstr ""
+
+#: poll_data.inc:154 poll_data.inc:210
+msgid "The BOINC web site"
+msgstr "Gwefan BOINC"
+
+#: poll_data.inc:155
+msgid "Other web sites"
+msgstr "Gwefannau eraill"
+
+#: poll_data.inc:161
+msgid ""
+"Which are the most important factors when you decide whether to participate "
+"in a BOINC project?"
+msgstr ""
+
+#: poll_data.inc:163
+msgid "Nice-looking screensaver graphics"
+msgstr ""
+
+#: poll_data.inc:164
+msgid "Fair and quick granting of credit for work done"
+msgstr ""
+
+#: poll_data.inc:165
+msgid "Getting more credit from this project than from others"
+msgstr ""
+
+#: poll_data.inc:166
+msgid "Helpful and friendly message boards"
+msgstr ""
+
+#: poll_data.inc:167
+msgid "Participation by project staff on the message boards"
+msgstr ""
+
+#: poll_data.inc:168
+msgid "Informative project web site"
+msgstr ""
+
+#: poll_data.inc:169
+msgid "The science is important and beneficial"
+msgstr ""
+
+#: poll_data.inc:170
+msgid "Non-profit, and results are public"
+msgstr ""
+
+#: poll_data.inc:171
+msgid "Personal recognition if my computer finds something"
+msgstr ""
+
+#: poll_data.inc:172
+msgid "Publication by the project in scientific journals"
+msgstr ""
+
+#: poll_data.inc:173
+msgid "Periodic email newsletters from the project"
+msgstr ""
+
+#: poll_data.inc:180
+msgid "How many BOINC projects do you participate in?"
+msgstr ""
+
+#: poll_data.inc:190
+msgid "Do you run BOINC as a screensaver?"
+msgstr ""
+
+#: poll_data.inc:192
+msgid "Yes"
+msgstr ""
+
+#: poll_data.inc:193
+msgid "No"
+msgstr ""
+
+#: poll_data.inc:198
+msgid "Your usage of project messages boards:"
+msgstr ""
+
+#: poll_data.inc:200
+msgid "to read information"
+msgstr ""
+
+#: poll_data.inc:201
+msgid "to read and post information"
+msgstr ""
+
+#: poll_data.inc:202
+msgid "None"
+msgstr "Dim"
+
+#: poll_data.inc:206
+msgid ""
+"Where do you get information to help resolve problems with BOINC and/or "
+"BOINC projects?"
+msgstr ""
+
+#: poll_data.inc:208
+msgid "The project message boards"
+msgstr ""
+
+#: poll_data.inc:209
+msgid "The BOINC message boards"
+msgstr ""
+
+#: poll_data.inc:211
+msgid "BOINC mailing lists"
+msgstr ""
+
+#: poll_data.inc:212
+msgid "The Unofficial BOINC Wiki"
+msgstr ""
+
+#: poll_data.inc:213
+msgid "Team web sites"
+msgstr ""
+
+#: poll_data.inc:214
+msgid "Google or other search engines"
+msgstr ""
+
+#: download.php:40
+msgid "Download BOINC"
+msgstr "Lawrlwytho BOINC"
+
+#: download.php:42
+#, php-format
+msgid "%s for %s (%s MB)"
+msgstr ""
+
+#: download.php:89
+msgid ""
+"BOINC is a program that lets you donate your idle computer time to science "
+"projects like SETI at home, Climateprediction.net, Rosetta at home, World "
+"Community Grid, and many others. <p> After installing BOINC on your "
+"computer, you can connect it to as many of these projects as you like."
+msgstr ""
+
+#: download.php:114
+#, php-format
+msgid ""
+"Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
+"(GPU), you may be able to %suse it to compute faster%s"
+msgstr ""
+
+#: download.php:120
+msgid "System requirements"
+msgstr ""
+
+#: download.php:121
+msgid "Release notes"
+msgstr ""
+
+#: download.php:122 index.php:89
+msgid "Help"
+msgstr ""
+
+#: download.php:123
+msgid "All versions"
+msgstr ""
+
+#: download.php:141
+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 ""
+
+#: index.php:23
+msgid "Computing power"
+msgstr ""
+
+#: index.php:25
+msgid "Top 100 volunteers"
+msgstr ""
+
+#: index.php:26
+msgid "Statistics"
+msgstr "Ystadegau"
+
+#: index.php:53
+msgid "Active:"
+msgstr "Yn weithgar:"
+
+#: index.php:53
+msgid "volunteers,"
+msgstr "gwirfoddolwr,"
+
+#: index.php:53
+msgid "computers.\n"
+msgstr "cyfrifiadur. \n"
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
+msgstr ""
+
+#: index.php:66
+msgid "News"
+msgstr "Newyddion"
+
+#: index.php:72
+msgid "... more"
+msgstr "... mwy"
+
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr "Gwirfoddoli"
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr "Dogfennaeth"
+
+#: index.php:96
+#, php-format
+msgid ""
+" Use the idle time on your computer (Windows, Mac, or Linux) to cure "
+"diseases, study global warming, discover pulsars, and do many other types of "
+"scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %"
+"sDownload%s and run BOINC software  %sEnter%s an email address and password. "
+msgstr ""
+
+#: index.php:107
+#, php-format
+msgid ""
+"Or, if you run several projects, try an %saccount manager%s such as %"
+"sGridRepublic%s or %sBAM!%s. "
+msgstr ""
+
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr "Prosiect BOINC"
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr "Rhaglennu"
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr "Datblygiad meddalwedd"
+
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr "Cynadleddau"
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
+#, php-format
+msgid ""
+"Open-source software for %svolunteer computing%s and %sgrid computing%s."
+msgstr ""
+
+#: poll.php:9
+msgid "BOINC user survey"
+msgstr ""
+
+#: poll.php:19
+msgid ""
+"Several volunteer computing projects, including Climateprediction.net, "
+"Einstein at home, and SETI at home, use software called BOINC.  If you participate "
+"in projects like this, we request that you answer the following questions.  "
+"This will help BOINC-based projects increase participation and achieve "
+"greater scientific results. <p> Please answer as many questions as you want, "
+"then go to the bottom and click OK. If you previously completed the survey "
+"but your answers have changed, please complete it again - your new answers "
+"will replace the old ones. <p> The current results of the survey are <a "
+"href=poll_results.php>here</a>. "
+msgstr ""
+
+#: poll.php:25
+msgid "Do you run BOINC?"
+msgstr ""
+
+#: poll.php:30
+msgid "Your participation"
+msgstr ""
+
+#: poll.php:32
+msgid "Your computers"
+msgstr "Eich cyfrifiaduron"
+
+#: poll.php:34
+msgid "You"
+msgstr "Chi"
+
+#: poll.php:39
+msgid "Nationality"
+msgstr ""
+
+#: poll.php:44
+msgid "Comments"
+msgstr "Sylwadau"
+
+#: poll.php:46
+msgid ""
+"Please suggest ways that BOINC, and the projects that use it, could be "
+"improved:"
+msgstr ""
+
+#: poll.php:50
+msgid "When done click:"
+msgstr ""
+
+#: poll_action.php:9
+msgid "Error - results not recorded"
+msgstr ""
+
+#: poll_action.php:10
+msgid ""
+"An internal error has prevented us from recording your survey response.  "
+"Please try again later."
+msgstr ""
+
+#: poll_action.php:32
+msgid "Survey response recorded"
+msgstr ""
+
+#: poll_action.php:33
+msgid "Thank you for completing the BOINC user survey."
+msgstr "Diolch am gwblhau arolwg defnyddiwr BOINC."
+
+#: poll_results.php:195
+msgid "Survey results"
+msgstr "Canlyniadau arolwg"
+
+#: poll_results.php:196
+msgid ""
+"These are the current results of the <a href=poll.php>BOINC user survey</"
+"a>.  This page is updated every hour."
+msgstr ""
diff --git a/locale/cy/pootle-boincclient610-cy.prefs b/locale/cy/pootle-boincclient610-cy.prefs
new file mode 100644
index 0000000..728526e
--- /dev/null
+++ b/locale/cy/pootle-boincclient610-cy.prefs
@@ -0,0 +1,8 @@
+# Pootle preferences for project boincclient610, language cy
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  huwwaters = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/da/BOINC-Manager.mo b/locale/da/BOINC-Manager.mo
index e1a79e9..dc42f6f 100644
Binary files a/locale/da/BOINC-Manager.mo and b/locale/da/BOINC-Manager.mo differ
diff --git a/locale/da/BOINC-Manager.po b/locale/da/BOINC-Manager.po
index eb36ef0..4f350c6 100644
--- a/locale/da/BOINC-Manager.po
+++ b/locale/da/BOINC-Manager.po
@@ -1,27 +1,27 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 6.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
 "PO-Revision-Date: 2009-01-06 01:34-0500\n"
 "Last-Translator: Janus Kristensen <jbk at visualgroup.dk>\n"
 "Language-Team: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Translate Toolkit 1.2.1\n"
 "X-Poedit-Language: English\n"
 "X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: utf-8\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: UNITED STATES\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "Brugerinformation"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
@@ -29,7 +29,7 @@ msgstr ""
 "Indtast venligst din kontoinformation\n"
 "(for at oprette en konto kan du besøge projektets hjemmeside)"
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
@@ -37,422 +37,487 @@ msgstr ""
 "Dette projekt accepterer i øjeblikket ikke nye brugerkonti.\n"
 "Du kan kun tilmelde denne maskine hvis du allerede har en konto."
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "Kører du allerede dette projekt?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "&Nej, ny bruger"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "&Ja, eksisterende bruger"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "&Kodeord:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "Vælg et &kodeord:"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "&Bekræft kodeord:"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr "Kører du allerede %s?"
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr "%Brugernavn:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "&Emailadresse:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr "Minimal længde %d"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr "Har du glemt dit password?"
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "Tilmeld projekt"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "Opdater konto-manager"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "Tilmeld konto-manager"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr ""
 "Den minimale password-længde for dette projekt er %d. Indtast venligst et "
 "andet password."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
 "Den minimale længde på kodeordet til denne konto-manager er %d. Vælg "
 "venligst et andet kodeord."
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr ""
 "Kodeordet og gentagelsen af kodeordet stemmer ikke overens. Indtast dem "
 "venligst igen."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "Konto-manager URL"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Indtast URL'en på konto-managerens website."
+#: clientgui/AccountManagerInfoPage.cpp:252
+#, fuzzy
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"For at vælge et projekt skal du klikke på dets navn eller skrive dets URL "
+"herunder."
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "Konto-manager &URL:"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr "Kommunikerer med %s."
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr "Kommunikerer med server."
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "Vent venligst..."
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr "Der er opstået en intern server fejl.\n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Forbundet"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Afbrudt"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "&Luk vindue\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "Luk BOINC Manager vinduet"
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
-msgstr "Luk  %s"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "&Luk"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
 msgstr ""
-"Avanceret visning giver dig mulighed for at sortere tabeller og se grafisk "
-"status."
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "Brug simpel grafisk BOINC interface"
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:345
-#, fuzzy
-msgid "Attach to &project..."
-msgstr "Tilmeld &projekt"
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "Tilmeld et projekt"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "Tilmeld konto-manager"
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Tilmeld en Konto-manager"
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:372
+#, fuzzy
+msgid "Display the simple graphical interface."
+msgstr "Brug simpel grafisk BOINC interface"
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr "&Synkroniser med %s"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr "Hent nuværende indstillinger fra %s"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+#, fuzzy
+msgid "Attach to &project..."
+msgstr "Tilmeld &projekt"
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Tilmeld et projekt for at begynde at arbejde"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "&Stop med at bruge %s..."
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Fjern klient fra konto-manager-styring."
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "Kør &altid"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr "Tillad arbejde uanset indstillinger"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "Kør efter &indstillinger"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "Tillad arbejde i henhold til indstillinger"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "Sus&pender"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr "Suspenderer arbejde uanset indstillinger"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+#, fuzzy
+msgid "Allow GPU work regardless of preferences"
+msgstr "Tillad arbejde uanset indstillinger"
+
+#: clientgui/AdvancedFrame.cpp:473
+#, fuzzy
+msgid "Use GPU based on &preferences"
+msgstr "Kør efter &indstillinger"
+
+#: clientgui/AdvancedFrame.cpp:474
+#, fuzzy
+msgid "Allow GPU work according to your preferences"
+msgstr "Tillad arbejde i henhold til indstillinger"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+#, fuzzy
+msgid "Stop GPU work regardless of preferences"
+msgstr "Suspenderer arbejde uanset indstillinger"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "Netværksadgang er altid &tilgængelig"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr "Tillad netværksaktivitet uanset indstillinger"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+#, fuzzy
+msgid "Network activity based on pre&ferences"
 msgstr "Netværksadgang efter i&ndstillinger"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr "Tillad netværksaktivitet efter indstillinger"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+#, fuzzy
+msgid "Network activity s&uspended"
 msgstr "Netværksadgang er &suspenderet"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr "Stop BOINC netværksaktivitet"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "&Indstillinger"
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "Konfigurer GUI og PROXY indstillinger"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "&Computer konfiguration"
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr "Indstil lokale indstillinger"
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
 msgid "Connect to another computer running %s"
 msgstr "Forbind til en anden computer der kører %s"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "Vælg &computer..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr "Stop den forbundne klient"
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr "Stop kerneklienten som er forbundet iøjeblikket"
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "Kør CPU &Hastighedstest"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "Kører BOINC CPU hastighedstest"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr "Udfør netværkskommunikation"
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr "Udfør al ventende netværkskommunikation"
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr "Læs konfigurationsfilen"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr "Læs konfigurationsinformation fra cc_config.xml"
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "Læs lokal computerindstillingsfil"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr "Læs computerindstillingerne fra global_prefs_override.xml"
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr "&Stop med at bruge %s..."
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "Fjern klient fra konto-manager-styring."
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "Tilmeld &projekt"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "Tilmeld et projekt for at begynde at arbejde"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
 msgstr "%s &Hjælp"
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "Show information about %s"
 msgstr "Vis information om %s"
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr "&%s hjælp"
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr "Vis information om %s"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr "%s &website"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
 msgid "Show information about BOINC and %s"
 msgstr "Vis information om BOINC og  %s"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr "&Om %s..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "Licens- og copyrightinformation."
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "&Filer"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "%Vis"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "&Værktøjer"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "A&ktiviteter"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "&Avanceret"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "&Hjælp"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr "%s - Stop den nuværende klient..."
-
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
 msgstr ""
-"%s vil stoppe klienten der i øjeblikket er forbundet og\n"
-"vil derefter spørge efter en ny vært at forbinde til.\n"
 
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr "%s - Afmeld %s"
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -466,57 +531,65 @@ msgstr ""
 "\n"
 "Vil du afbryde fra %s?"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "Tilmelder projekt..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "Prøver kommunikation med projekt(er) igen..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr "%s - Sprogvalg:"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr ""
 "%s's sprog er ændret. For at dette kan træde i kraft skal du genstarte %s."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - Stop den nuværende klient..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s vil stoppe klienten der i øjeblikket er forbundet og\n"
+"vil derefter spørge efter en ny vært at forbinde til.\n"
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Prøver kommunikation med projekt(er) igen..."
+
+#: clientgui/AdvancedFrame.cpp:1725
 #, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr "%s har nu tilmeldt dig til %s"
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "Forbinder til %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
 msgid "Connected to %s (%s)"
 msgstr "Forbundet til %s (%s)"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "Brugernavnet er allerede i brug"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -528,11 +601,11 @@ msgstr ""
 "\n"
 "Besøg projektets hjemmeside og følg instruktionerne der."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "Emailadressen er allerede brugt"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -544,16 +617,31 @@ msgstr ""
 "\n"
 "Besøg projektets hjemmeside og følg instruktionerne der."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr "Kommunikerer med BOINC klienten. Vent venligst..."
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1229
+#, fuzzy
+msgid "Cancel"
+msgstr "&Annuller"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr "%s - Forbindelsesfejl"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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."
@@ -562,27 +650,27 @@ msgstr ""
 "Kontakt venligst din administrator for at tilføje dig til den lokale "
 "'boinc_user' brugergruppe."
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "Det angivne kodeord er ikke korrekt, prøv venligst igen."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - Forbindelsen mislykkedes"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
@@ -590,32 +678,32 @@ msgstr ""
 "%s kan ikke forbinde til en %s klient.\n"
 "Vil du prøve at forbinde igen?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr "%s - Forbindelsesstatus"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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"
@@ -626,26 +714,21 @@ msgstr ""
 "klient.\n"
 "For at forbinde til din lokale computer, brug 'localhost' som værtsnavn."
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Websites"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
 #, c-format
 msgid "%s - Network Status"
 msgstr "%s - Netværksstatus"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
 #, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr "%s har behov for at forbinde til internettet. Klik for at åbne %s."
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
 #, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
@@ -656,8 +739,7 @@ msgstr ""
 "Forbind til internettet, og vælg 'Prøv kommunikation igen'  under "
 "menupunktet Avanceret."
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
 #, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
@@ -666,14 +748,12 @@ msgstr ""
 "%s har behov for at forbinde til internettet.\n"
 "MÃ¥ det ske nu?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
 #, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s forbinder til internettet."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
 #, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
@@ -685,20 +765,17 @@ msgstr ""
 "Forbind til internettet eller vælg en standardforbindelse\n"
 "via menupunktet 'Avanceret/Indstillinger/Forbindelser'."
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
 #, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s har fået forbindelse til internettet."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
 #, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "%s kunne ikke forbinde til internettet."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
 #, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
@@ -707,19 +784,36 @@ msgstr ""
 "%s er nu forbundet til internettet.\n"
 "Opdaterer alle projekter og prøver at starte alle overførsler igen."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
 #, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s har afbrudt forbindelsen til internettet."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
 #, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s kunne ikke afbryde fra internettet."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
@@ -727,100 +821,111 @@ msgstr ""
 "En genstart er krævet for at BOINC kan køre ordentligt.\n"
 "Genstart venligst din computer og prøv igen."
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "BOINC Manager"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr "BOINC Manageren blev started automatisk af operativsystemet"
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr "Start BOINC minimeret i systembakken."
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr "Start BOINC med disse ekstra argumenter"
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr "deaktiver BOINCs sikkerhedsbrugere og tilladelser"
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Automatisk detektion)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Ukendt)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Brugerdefineret)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr "Arbejde er stoppet"
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr "Netværksaktivitet er suspenderet"
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr "%s: %.2f%% udført."
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr "%d jobs kører"
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr "Genforbinder til klienten."
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr "Ikke forbundet til en klient."
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr "Åbn %s Web..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr "Åbn %s..."
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "Pause"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "Kunne ikke tilmelde projekt"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr "Kunne ikke opdatere konto-manageren"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr "Kunne ikke fjerne konto-manageren"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "Kunne ikke forbinde til konto-manageren"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -828,27 +933,26 @@ msgid ""
 "Click Finish to close."
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "Klik på 'Afslut' for at lukke."
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "Beskeder fra server:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "Projektet er tilmeldt"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "Du er nu tilmeldt dette projekt."
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -856,127 +960,111 @@ msgstr ""
 "Når du klikker Afslut, vil din browser gå til en side, hvor du kan\n"
 "ændre dit brugernavn og dine indstillinger."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
 #, c-format
 msgid "Update from %s completed."
 msgstr "Opdatering fra %s fuldført."
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "Opdatering fuldført."
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-#, c-format
-msgid "Removal from %s completed."
-msgstr "Fjernet fra %s."
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "Det lykkedes at blive fjernet!"
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
 #, c-format
 msgid "Attached to %s"
 msgstr "Tilmeldt til %s"
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "Forbundet til konto-manager"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
 #, c-format
 msgid "Welcome to %s!"
 msgstr "Velkommen til %s"
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
 #, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "Du er nu tilmeldt %s system."
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "Du er nu tilmeldt til denne konto-manager."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
 #, c-format
 msgid "About %s"
 msgstr "Om %s"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "Version:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr "wxWidgets version"
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Copyright:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
+#, fuzzy
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
 "(C) 2003-2008 University of California, Berkeley.\n"
 "Alle rettigheder forbeholdes."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr "Berkeley Open Infrastructure for Network Computing"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "&OK"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr "ugyldig float-værdi"
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr "ugyldig tid, formatet er HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr "ugyldigt tidsinterval, formatet er HH:MM-HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr "ugyldig input-værdi"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr "Valideringsfejl"
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr "Er du sikker på at du vil slette alle lokale indstillinger"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr "Bekræftelse"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
 #, c-format
 msgid "%s - Preferences"
 msgstr "%s - Indstillinger"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
@@ -986,362 +1074,367 @@ msgstr ""
 "Klik OK for at sætte indstillingerne.\n"
 "Klik på Nulstil for at genskabe de web-baserede indstillinger."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr "Nulstil"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr "nulstil alle lokale indstillinger og luk denne dialogboks"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr "Udregninger tilladt"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr " Mens computeren kører på batterier"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr ""
 "sæt kryds hvis du ønsker at computeren skal arbejde mens den kører på "
 "batterier"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr " Mens computeren er i brug"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr ""
 "sæt kryds hvis du ønsker at computeren skal arbejde selv om du bruger den"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 "udfør kun arbejde efter at computeren ikke har været i brug I dette antal "
 "minutter"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr "minuter"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+#, fuzzy
+msgid "While processor usage is less than"
+msgstr "processor-brug"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr "Hver dag imellem"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr "start arbejde på dette tidspunkt"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr "og"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr "stop arbejde på dette tidspunkt"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr "(ingen begrænsning hvis de er ens)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr "marker feltet for at specificere timer for denne dag i ugen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr "Mandag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr "Tirsdag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr "Onsdag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr "Torsdag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr "Fredag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr "Lørdag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr "Søndag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr "Andre muligheder"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+#, fuzzy
+msgid "Switch between applications every"
 msgstr "Skift imellem projekter hver"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr "På multiprocessor systemer, brug højst"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
 msgid "% of the processors"
 msgstr "% af processorerne"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr "Brug højst"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
 msgid "% CPU time"
 msgstr "% CPU-tid"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr "processor-brug"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr "Generelle muligheder"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr "Maksimal download hastighed"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr "KBytes/sek"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr "Maksimal upload hastighed"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr "Tilslut omkring hver"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr "dage"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr "dage (max. 10)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr "marker dette fejl hvis din internetudbyder ændrer på billedfiler"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr "Forbindelsesindstillinger"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr "Bekræft før der tilsluttes internettet"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr ""
 "en dialogboks vil blive vist før forsøg på at forbinde til nettet hvis "
 "markeret"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr "Kobl af nettet når færdig"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr "Netværksforbrug tilladt"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr "netværksforbrug"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr "Brug af disk"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr "maksimal mængde diskplads brugt af BOINC (i gigabytes)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr "Gigabytes diskplads"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr "Frihold mindst"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr "BOINC efterlader mindst denne mængde diskplads fri (i gigabytes)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr "Gigabytes diskplads fri"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr "BOINC bruger højst denne procentdel af den samlede diskplads"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr "% af samlet diskplads"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
-msgstr "Skriv til disk højst hver"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr "sekunder"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr "% af sidefil (swap)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr "Hukkommelsesbrug"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr "% når computeren er i brug"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr "% når computeren ikke er i brug"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr "Midlertidigt stoppede jobs vil blive gemt I hukkomelsen hvis markeret"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr "disk- og hukkomelsesbrug"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr "OK"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr "gem alle værdier og luk dialogboksen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-#, fuzzy
-msgid "Cancel"
-msgstr "&Annuller"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr "luk dialogboksen uden at gemme"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "Hjælp"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr "viser ndstillingswebsiden"
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
 #, c-format
 msgid "%s - Exit Confirmation"
 msgstr "%s - Afslutningsbekræftelse"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1351,8 +1444,8 @@ msgid ""
 "exit the Manager, then choose from the following options:"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1362,541 +1455,494 @@ msgid ""
 "tasks at the times you selected in your preferences."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr "Hold op med at køre jobs når manageren afsluttes"
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr "Husk dette valg og vis ikke denne dialogboks fremover."
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "&Annuller"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr "Vis ikke denne dialogboks igen."
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr "&Luk"
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr "Egenskaber for projekt"
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "Generelt"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
 msgstr "Brugernavn:"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr "Holdnavn"
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Resourcefordeling"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr "Ikke CPU-intensiv"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr "ja"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr "nej"
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr "Suspenderet via GUI"
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr "Hent ikke mere arbejde"
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr "Scheduler opslag igang"
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
 msgstr "Forbundet via konto-manager"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr "Frameld efter endt arbejde"
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr "Afsluttet"
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr "Points"
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr "Bruger"
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr "Vært"
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr "Egenskaber for job"
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Program"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr "Tilstand"
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Rapporterings-frist"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr "Resourcer"
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr "CPU-tid ved sidste checkpoint"
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "CPU-tid"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 #, fuzzy
 msgid "Elapsed time"
 msgstr "Brugt tid"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr "Estimeret tid tilbage"
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Ny"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "Download fejlede"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "Henter"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "Projekt suspenderet af bruger"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr "Job midlertidigt standset af bruger"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Suspenderet"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr " - på batterier"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr " - bruger er aktiv"
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr " - tid på dagen"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr " - kører CPU-hastighedstest"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr " - mangler diskplads"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr "Venter på hukkommelse"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr "Venter på delt hukkomelse"
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr "Kører, høj prioritet"
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "Kører"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr "Venter på at køre"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr "Klar til at starte"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Beregningsfejl"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "Upload fejlede"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "Sender"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Afbrudt af bruger"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "Afbrudt af projektet"
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "Afbrudt"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Anerkendt"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "Klar til rapportering"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
 #, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Fejl: Ugydig tilstand '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
 #, c-format
 msgid "%s - Options"
 msgstr "%s - Indstillinger"
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr "Sprog:"
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr "Hvilket sprog skal manageren benytte?"
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 "Hvor ofte skal manageren påminde dig når den har brug for "
 "netværksforbindelse?"
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr "Kør manageren ved login"
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr "Kør BOINC manageren når du logger ind"
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr "Vis dialogboks under afslutning?"
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr "Viser afslutningsdialogboksen når manageren lukkes."
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "Opkaldsindstillinger og indstillinger for virtuelle private netværk"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "S&æt standard"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "S&let standard"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Standardforbindelse:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Forbindelser"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Forbind via HTTP proxy server"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "HTTP Proxy Server Konfiguration"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Adresse:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Port:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr "Brug ikke proxy til:"
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Lad disse være tomme hvis der ikke er brug for dem"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Brugernavn:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Kodeord:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "HTTP Proxy"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Forbind via SOCKS proxy server"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "SOCKS Proxy Server Konfiguration"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "SOCKS Proxy"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
 #, c-format
 msgid "%s - Select Computer"
 msgstr "%s - Vælg computer"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Værtsnavn:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
 #, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s - Kan ikke finde webbrowser"
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
 #, c-format
 msgid ""
 "%s tried to display the web page\n"
@@ -1913,230 +1959,225 @@ msgstr ""
 "BROWSER til stien af din webbrowser \n"
 "og genstarte %s."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "Forum"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "Snak med andre brugere af SETI at home's message boards"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "Stil spørgsmål og rapporter problemer"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "Din konto"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "Se dine kontoinformationer og pointstatistik"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "Dine indstillinger"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr "Se og ændre din SETI at home profil og indstillinger"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "Dine resultater"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr "Se resultater af denne uges arbejde (eller endnu tidligere)"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "Dine computere"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr "Se en liste af alle de computere, hvor du kører SETI at home"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "Dit hold"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "Se information om dit hold"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "Almindelige spørgsmål"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "Læs Einstein at Home's Ofte stillede spørgsmål (FAQ) liste"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "Pauseskærmsinfo"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "Læs en detaljeret beskrivelse af Einstein at Home pauseskærmen"
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr "Snak med administratorer og andre brugere på Einstein at Home's forum"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "Einstein status"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Nuværende status af Einstein at Home serveren"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "Rapporter problemer"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr "Et link til Einstein at Home problemer og fejl rapporterings besked tavle"
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr "Se og ændre din Einstein at Home konto profil og indstillinger"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "Kontooversigt"
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr "Se en list over alle de computere hvorpå du kører Einstein at Home"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "LIGO projekt"
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr ""
 "Hjemmesiden med Laser Interferometer Gravitational-wave Observatory (LIGO) "
 "projektet"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "GEO-600 projekt"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "Hjemmesiden med GEO-600 projektet"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Hold"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "Info om dit hold"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "Få hjælp til climateprediction.net"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "Nyheder"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "climateprediction.net nyheder"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr "Se dine kontoinformationer, points og trickles"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "Info om dit hold"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr "Søg efter hjælp i vores hjælpesystem"
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "Globale Statistikker"
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "Samlede statistikker for World Community Grid"
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr "Mit net"
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "Dine statistikker og indstillinger"
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr "Udstyrsprofiler"
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr "Opdater dine udstyrsindstillinger"
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr "Forskning"
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "Lær om projekter hos World Community Grid"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr "Starter klient services; vent venligst..."
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "Henter systemtilstand, vent venligst..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "Henter værtsinformation, vent venligst..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "Ingen internetforbindelse"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Forbind venligst til internettet og prøv igen."
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Projekt ikke fundet"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2146,11 +2187,11 @@ msgstr ""
 "\n"
 "Check URL'en og prøv igen"
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "Konto-manageren blev ikke fundet"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2161,52 +2202,62 @@ msgstr ""
 "\n"
 "Check URL'en og prøv igen"
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr "Login fejlede."
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr "Check dit brugernavn og kodeord, og prøv igen."
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr "Check emailadresse og kodeord, og prøv igen."
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr "Vælg et projekt"
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
 "For at vælge et projekt skal du klikke på dets navn eller skrive dets URL "
 "herunder."
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "Projekt &URL:"
 
-#: clientgui/ProjectInfoPage.cpp:320
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:321
-#, fuzzy
-msgid "Already Attached to Project"
-msgstr "Allerede tilmeldt til projekt"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
 msgstr ""
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
-msgstr "Klik her for at gå til %s's website."
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
@@ -2214,7 +2265,7 @@ msgstr ""
 "Kommunikerer med projekt\n"
 "Vent venligst..."
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
@@ -2222,11 +2273,12 @@ msgstr ""
 "Påkrævede wizard fil(er) mangler på serveren.\n"
 "(lookup_account.php/create_account.php)\n"
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "Netværkskommunikationsfejl"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
+#, fuzzy
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2237,13 +2289,24 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
+"BOINC kunne ikke kommunikere via internettet. De mest\n"
+"almindelige grunde er:\n"
+"\n"
+"1)Forbindelsesproblem. Check dit modem eller netværk og klik\n"
+"på Tilbage-knappen for at forsøge den forrige operation igen.\n"
+"2) Din personlige firewall blokerer BOINC. Du skal\n"
+"konfigurere din personlige firewall til at lade BOINC kommunikere\n"
+"på port 80. Når dette er gjort, klik på Tilbage for at prøve igen.\n"
+"\n"
+"3) Du bruger en Proxy-server, og BOINC skal indstilles til at benytte den."
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
+#, fuzzy
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2259,495 +2322,480 @@ msgid ""
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
+"BOINC kunne ikke kommunikere via internettet. De mest\n"
+"almindelige grunde er:\n"
+"\n"
+"1)Forbindelsesproblem. Check dit modem eller netværk og klik\n"
+"på Tilbage-knappen for at forsøge den forrige operation igen.\n"
+"2) Din personlige firewall blokerer BOINC. Du skal\n"
+"konfigurere din personlige firewall til at lade BOINC kommunikere\n"
+"på port 80. Når dette er gjort, klik på Tilbage for at prøve igen.\n"
+"\n"
+"3) Du bruger en Proxy-server, og BOINC skal indstilles til at benytte den."
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Proxy-konfiguration"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "HTTP proxy"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "Server:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "Autodetekter"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "SOCKS proxy"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr "Henter status."
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr "Du har ingen projekter. Tilføj venligst et projekt."
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr "Henter arbejde fra serveren."
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr "Henter status"
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr "Intet arbejde tilgængeligt"
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr "Kan ikke forbinde til kerneklienten"
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Projekt"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "Tid"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Besked"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Kopier alle beskeder til udklipsholder."
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 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 ""
 "Kopier de valgte beskeder til udklipsholderen. Du kan vælge flere beskeder "
 "ved at holde shift eller control/command knappen nede mens du vælger."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
 "Kopier de valgte beskeder til udklipsholderen. Du kan vælge flere beskeder "
 "ved at holde shift eller control-knappen nede mens du vælger."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr "Få hjælp til BOINC"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr "%s - Beskeder"
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr "100 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr "200 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr "500 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr "1 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr "2 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr "5 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr "10 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr "20 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr "50 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr "100 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr "10%"
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr "20%"
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr "30%"
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr "40%"
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr "50%"
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr "60%"
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr "70%"
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr "80%"
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr "90%"
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr "100%"
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr "1"
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr "3"
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr "5"
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr "10"
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr "15"
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr "30"
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr "60"
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr "Indstillinger"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr "Arbejd kun imellem"
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr "Forbind kun til internettet imellem"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr "Brug ikke mere end"
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr "af diskpladsen"
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 #, fuzzy
 msgid "of the processor"
 msgstr "% af processorerne"
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr "Udfør arbejde på batterier?"
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr "%d MB"
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr "0 (Kør altid)"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr "Pause: Andre jobs kører"
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr "Pause: pga. Bruger, klik 'Genoptag' for at fortsætte"
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr "Pause: Brugeren er aktiv"
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr "Pause: Computeren er på batterier"
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr "Pause: Tidspunkt på dagen"
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr "Pause: Tester CPU-hastighed"
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr "Pause"
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr "Pause: Start udskudt"
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr "Klik for at vise projekt-grafik"
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr "Tilmeld endnu et projekt"
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr "Synkroniser projekter med konto-manageren"
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr "Vis et vindue med beskeder"
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr "Stop al aktivitet"
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr "Genoptag aktivitet"
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr "Vis et vindue med indstillinger"
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr "Skift til BOINCs avancerede visning"
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr "Mine projekter"
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
 #, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr "%s. Arbejde af %s: %0.2f"
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr "Fjern projekt"
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
 #, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "Er du sikker på, at du vil afmelde projektet '%s'?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "Afmeld Projekt"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
 #, c-format
 msgid "%d hr %d min %d sec"
 msgstr "%d t %d min %d sek"
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr "Er du sikker på, at du ønsker at vise grafik på en anden maskine?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Vis Grafik"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
 msgstr "Program: "
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr "Tid tilbage: "
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
 msgstr "Brugt tid: "
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr "Regelsæt for brug af softwaren"
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr "Læs venligst følgende regelsæt for brug af softwaren"
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Projektet er midlertidigt utilgængeligt"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2757,11 +2805,11 @@ msgstr ""
 "\n"
 "Prøv venligst igen senere."
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "Konto-manager er midlertidig utilgængelig"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2771,32 +2819,32 @@ msgstr ""
 "\n"
 "Prøv venligst igen senere."
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "Angiv venligst en kontonøgle for at fortsætte."
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr "Ugyldig kontonøgle; Indtast venligst en gyldig kontonøgle"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Valideringskonflikt"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr "Angiv venligst en emailadresse"
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr "Ugyldig emailadresse; Indtast venligst en gyldig emailadresse"
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "Manglende URL"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2806,18 +2854,18 @@ msgstr ""
 "For eksempel:\n"
 "http://www.eksempel.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "Ugyldig URL"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2827,609 +2875,502 @@ msgstr ""
 "For eksempel:\n"
 "boincproject.eksempel.com"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
 #, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "'%s' indeholder ikke et gyldigt værtsnavn."
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
 #, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "'%s' indeholder ikke en gyldig sti."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "&Kommandoer"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Kopier alle beskeder"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Kopier valgte beskeder"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr "Vis kun dette projekt"
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr "Vis kun beskeder for det valgte projekt"
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Beskeder"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "Kopierer alle beskeder til udklipsholderen..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 #, fuzzy
 msgid "Copying selected messages to the clipboard..."
 msgstr "Kopierer alle beskeder til udklipsholderen..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr "Filterer beskeder..."
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 msgid "Show all messages"
 msgstr "Vis alle beskeder"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr "Vis beskeder fra alle projekter."
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr "ID"
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr "Prioritet"
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr "Kopierer valgte beskeder til udklipsholderen..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr "Info"
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr "Advarsel"
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr "Fejl"
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Opdater"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr ""
 "Rapporter alle færdige opgaver, hent pointstatistik, indstillinger, og hvis "
 "muligt, flere opgaver for dette projekt."
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Suspender kørsel"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr "Suspender opgaver for dette projekt."
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr "Hent ikke opgaver"
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr "Hent ikke nye opgaver for dette projekt."
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Nulstil projekt"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 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 ""
 "Sletter alle filer og opgaver tilhørende dette projekt og henter nye "
 "opgaver. Du kan opdatere projektet først for at rapportere eventuelle "
 "færdige opgaver."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Afmeld"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr ""
 "Framelder denne computer fra projektet. Igangværende opgaver vil blive tabt. "
 "(Brug 'Opdater' først for at rapportere eventuelle færdige opgaver)."
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr "Egenskaber"
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr "Vis projektdetajler"
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Konto"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "Udført arbejde"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr "Gennemsnit"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Status"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Projekter"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "Opdaterer projekt..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "Genoptager projekt..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "Suspenderer projekt..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr "Tillader projektet at sende flere opgaver..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "Beder projektet om ikke at sende flere opgaver..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "Nulstiller projekt..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
 #, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Er du sikker på, at du vil nulstille projektet '%s'?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Nulstil Projekt"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "Afmelder projekt..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "Starter browser..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Genoptag"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "Genoptag opgaver for dette projekt."
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "Tillad nye opgaver"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr "Tillader at hente nye opgaver for dette projekt."
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "Hent ikke nye opgaver for dette projekt."
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Suspenderet af bruger"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "Henter ikke nye opgaver"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr "Projektet er slut - det er OK af framelde"
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr "Afmelder når nuværende jobs er færdige"
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Scheduler-forespørgsel venter"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr "Scheduler-forespørgsel igang"
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "Kommunikation udsat "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr "Diskplads brugt ialt"
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr "Diskplads brugt af BOINC projekter"
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Disk"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr "ikke tilmeldt til noget BOINC-projekt: 0 bytes"
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr "brugt af BOINC: "
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr "fri, tilgængeligt for BOINC: "
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr "fri, ikke tilgængeligt for BOINC: "
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr "fri: "
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr "brugt af andre programmer: "
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Bruger ialt"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Brugergennemsnit"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Ialt for Vært"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Værtsgennemsnit"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
 #, c-format
 msgid "Last update: %.0f days ago"
 msgstr "Sidst opdateret for %.0f dage siden"
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Vis ialt for bruger"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr "Vis total antal points for bruger"
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "Vis brugergennemsnit"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr "Vis løbende gennemsnit for bruger"
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Vis ialt for vært"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr "Vis det totale antal points for vært"
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "Vis værtsgennemsnit"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr "Vis løbende gennemsnit for vært"
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< &Forrige projekt"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr "Vis graf for det forrige projekt"
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "&Næste projekt >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr "Vis graf for det næste projekt"
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "Tilstandsudseende"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "Alle projekter"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr "Vis alle projekter, en graf for hvert"
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "Et projekt"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr "Vis grak over valgt projekt"
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr "Alle projekter (sum)"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr "Vis graf med alle projekter"
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Statistik"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "Opdaterer grafer..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Prøv igen nu"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "Klik 'Prøv igen nu' for at overføre filen nu"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Afbryd overførsel"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr ""
 "Klik 'Afbryd overførsel' for at slette filen fra overførselskøen. Dette vil "
 "forhindre dig i at få points for dette resultat."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "Fil"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Udført"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Størrelse"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "Brugt tid"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Hastighed"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Overførsler"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "Prøver overførsel igen nu..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "Afbryder overførsel..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
 #, c-format
 msgid ""
 "Are you sure you want to abort this file transfer '%s'?\n"
@@ -3440,34 +3381,42 @@ msgstr ""
 "NOTE: Hvis du afbryder en overførsel vil opgaven fejle\n"
 "og du vil ikke få points for den."
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Afbryd filoverførsel"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "Prøver igen om "
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr "Upload venter"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "Download venter"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 msgid "Aborting transfer(s)..."
 msgstr "Afbryder overførsler..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
@@ -3477,76 +3426,81 @@ msgstr ""
 "NOTE: Afbrydelse af en overførsel vil gøre opgaven ugyldig\n"
 "og du vil ikke få points for den."
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 msgid "Abort File Transfer(s)"
 msgstr "Afbryd filoverførsel"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "Viser programgrafik i et vindue"
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "Suspender arbejde for dette resultat."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Afbryd"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr ""
 "Stopper permanent arbejdet på resultatet. Du vil ikke få points for det."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr "Vis detaljer for job"
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Navn"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "Resterende tid"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Opgaver"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "Genoptager opgave..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "Suspenderer opgave..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "Viser grafik for opgave..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Afbryder resultat..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
@@ -3554,36 +3508,61 @@ msgstr ""
 "Er du sikker på, at du vil afbryde denne opgave '%s'?\n"
 "(Udført: %s, Status: %s)"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "Afbryd opgave"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Afbryder resultat..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr "Genoptag arbejde for denne opgave."
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr "Suspender arbejde for denne opgave."
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr " - et solo-job kører"
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr " (ikke CPU-intensiv)"
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
 #, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
@@ -3592,12 +3571,11 @@ msgstr ""
 "Er du sikker på at du vil afbryde denne opgave '%s'?\n"
 "(Udført: %s %%, Status: %s)"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
 #, c-format
 msgid ""
 "If possible, add projects at the\n"
@@ -3611,14 +3589,13 @@ msgstr ""
 "Projekter tilføjet via denne guide vil ikke værei listen over projekter "
 "styret via %s."
 
-#: clientgui/WelcomePage.cpp:350
-#, fuzzy
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
-msgstr "Vi vil  nu guide dig gennem processen med at tilmelde et projekt."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3634,143 +3611,273 @@ msgid ""
 "World Community Grid then please click on the following button:"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-#, c-format
-#, fuzzy
-msgid "&Stop using%s"
-msgstr "&Stop med at bruge %s..."
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-"Computeren fjernes nu fra %s. I fremtiden skal\n"
-"projekter nu tilmeldes og frameldes direkte på denne computer\n"
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "Konto-manager"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"Vi vil nu guide dig igennem tilmeldingen til en\n"
-"konto-manager.\n"
-"\n"
-"Hvis du blot ville tilmelde dig til et enkelt projekt kan du klikke Afbryd,\n"
-"og så vælge 'Tilmeld projekt' istedet."
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "Fejlrettelses flag"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "Fejl i projekt-egenskaber"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr "Fejl under kommunikation med projekt"
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "Fejl i URL for projekt-egenskaber"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "Konto-oprettelse er lukket"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "Klient konto-oprettelse er lukket"
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "Konto findes allerede."
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "Projektet er allerede tilmeldt"
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "Fejl i projekttilmelding"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "Net detektionsfejl"
-
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "Klik Næste for at fortsætte."
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "Er du sikker på at du vil afbryde?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "Spørgsmål"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "&Næste >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< &Tilbage"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "&Afslut"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
 msgid "New page inserted. Index = %i"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
 msgid "New page appended. Index = %i"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
 msgid "Old Page Index = %i"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr ""
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr "angiv timetal for start og stop af arbejde I formatet HH:MM-HH:MM"
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr "angiv timetal for start og stop af netværksbrug I formatet HH:MM-HH:MM"
 
+#, fuzzy
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "&Luk vindue\tCTRL+W"
+
+#, fuzzy
+#~ msgid ""
+#~ "You currently are not authorized to manage the client.\n"
+#~ "Please contact your administrator to add you to the 'boinc_master' user "
+#~ "group."
+#~ msgstr ""
+#~ "Du er i øjeblikket ikke autoriseret til at styre klienten.\n"
+#~ "Kontakt venligst din administrator for at tilføje dig til den lokale "
+#~ "'boinc_user' brugergruppe."
+
+#~ msgid "User information"
+#~ msgstr "Brugerinformation"
+
+#~ msgid "Account Manager URL"
+#~ msgstr "Konto-manager URL"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "Indtast URL'en på konto-managerens website."
+
+#~ msgid "Close BOINC Manager Window."
+#~ msgstr "Luk BOINC Manager vinduet"
+
+#~ msgid "Exit the %s"
+#~ msgstr "Luk  %s"
+
+#~ msgid ""
+#~ "Advanced views allow you to sort various columns and displays graphical "
+#~ "progress bars."
+#~ msgstr ""
+#~ "Avanceret visning giver dig mulighed for at sortere tabeller og se "
+#~ "grafisk status."
+
+#~ msgid "Attach to a project"
+#~ msgstr "Tilmeld et projekt"
+
+#~ msgid "Attach to &account manager..."
+#~ msgstr "Tilmeld konto-manager"
+
+#~ msgid "Attach to an account manager"
+#~ msgstr "Tilmeld en Konto-manager"
+
+#~ msgid "Attach to &project"
+#~ msgstr "Tilmeld &projekt"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "Tilmelder projekt..."
+
+#~ msgid "Removal from %s completed."
+#~ msgstr "Fjernet fra %s."
+
+#~ msgid "Removal succeeded!"
+#~ msgstr "Det lykkedes at blive fjernet!"
+
+#~ msgid "Write to disk at most every"
+#~ msgstr "Skriv til disk højst hver"
+
+#, fuzzy
+#~ msgid "Already Attached to Project"
+#~ msgstr "Allerede tilmeldt til projekt"
+
+#~ msgid "Click here to go to %s's website."
+#~ msgstr "Klik her for at gå til %s's website."
+
+#, fuzzy
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr "Vi vil  nu guide dig gennem processen med at tilmelde et projekt."
+
+#, fuzzy
+#~ msgid "&Stop using%s"
+#~ msgstr "&Stop med at bruge %s..."
+
+#~ msgid ""
+#~ "We'll now remove this computer from %s.  From now on,\n"
+#~ "attach and detach projects directly from this computer.\n"
+#~ msgstr ""
+#~ "Computeren fjernes nu fra %s. I fremtiden skal\n"
+#~ "projekter nu tilmeldes og frameldes direkte på denne computer\n"
+
+#~ msgid "Account manager"
+#~ msgstr "Konto-manager"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to an account manager.\n"
+#~ "\n"
+#~ "If you want to attach to a single project, click Cancel,\n"
+#~ "then select the 'Attach to project' menu item instead."
+#~ msgstr ""
+#~ "Vi vil nu guide dig igennem tilmeldingen til en\n"
+#~ "konto-manager.\n"
+#~ "\n"
+#~ "Hvis du blot ville tilmelde dig til et enkelt projekt kan du klikke "
+#~ "Afbryd,\n"
+#~ "og så vælge 'Tilmeld projekt' istedet."
+
+#~ msgid "Debug Flags"
+#~ msgstr "Fejlrettelses flag"
+
+#~ msgid "Project Properties Failure"
+#~ msgstr "Fejl i projekt-egenskaber"
+
+#~ msgid "Project Communication Failure"
+#~ msgstr "Fejl under kommunikation med projekt"
+
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "Fejl i URL for projekt-egenskaber"
+
+#~ msgid "Account Creation Disabled"
+#~ msgstr "Konto-oprettelse er lukket"
+
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "Klient konto-oprettelse er lukket"
+
+#~ msgid "Account Already Exists"
+#~ msgstr "Konto findes allerede."
+
+#~ msgid "Project Already Attached"
+#~ msgstr "Projektet er allerede tilmeldt"
+
+#~ msgid "Project Attach Failure"
+#~ msgstr "Fejl i projekttilmelding"
+
+#~ msgid "Net Detection Failure"
+#~ msgstr "Net detektionsfejl"
+
 #~ msgid ""
 #~ "You can copy and paste the URL from your browser's\n"
 #~ "address bar."
@@ -3808,13 +3915,19 @@ msgstr "angiv timetal for start og stop af netværksbrug I formatet HH:MM-HH:MM"
 #~ "Indtast emailadressen og det kodeord\n"
 #~ "som du brugte på hjemmesiden."
 
-#, c-format
-#~ msgid "The minimum password length for this project is %d. Please choose a different password."
-#~ msgstr "Den minimale længde på kodeordet til dette projekt er %d. Vælg venligst et andet kodeord."
+#~ msgid ""
+#~ "The minimum password length for this project is %d. Please choose a "
+#~ "different password."
+#~ msgstr ""
+#~ "Den minimale længde på kodeordet til dette projekt er %d. Vælg venligst "
+#~ "et andet kodeord."
 
-#, c-format
-#~ msgid "The minimum password length for this account manager is %d. Please choose a different password."
-#~ msgstr "Den minimale længde på kodeordet til denne konto-manager er %d. Vælg venligst et andet kodeord."
+#~ msgid ""
+#~ "The minimum password length for this account manager is %d. Please choose "
+#~ "a different password."
+#~ msgstr ""
+#~ "Den minimale længde på kodeordet til denne konto-manager er %d. Vælg "
+#~ "venligst et andet kodeord."
 
 #~ msgid "Enter account key"
 #~ msgstr "Indtast kontonøgle"
@@ -3845,21 +3958,26 @@ msgstr "angiv timetal for start og stop af netværksbrug I formatet HH:MM-HH:MM"
 #~ msgid "For a list of BOINC-based account managers go to:"
 #~ msgstr "Se en liste af BOINC-baserede konto-managere ved at gå til:"
 
-#, c-format
 #~ msgid ""
-#~ "%s is unable to communicate with a project and needs an Internet connection.\n"
-#~ "Please connect to the Internet, then select the 'retry communications' item off the advanced menu."
+#~ "%s is unable to communicate with a project and needs an Internet "
+#~ "connection.\n"
+#~ "Please connect to the Internet, then select the 'retry communications' "
+#~ "item off the advanced menu."
 #~ msgstr ""
-#~ "%s kan ikke kommunikere med et projekt og har brug for en internetforbindelse.\n"
-#~ "Forbind til internettet og vælg 'Prøv kommunikation igen' i menuen 'Avanceret'."
+#~ "%s kan ikke kommunikere med et projekt og har brug for en "
+#~ "internetforbindelse.\n"
+#~ "Forbind til internettet og vælg 'Prøv kommunikation igen' i menuen "
+#~ "'Avanceret'."
 
 #~ msgid ""
 #~ "Please provide the email address and password you used to register\n"
 #~ "at GridRepublic. (if you have not yet created an account at\n"
 #~ "GridRepublic, please do so at http://www.gridrepublic.org)"
 #~ msgstr ""
-#~ "Angiv venligst den emailadresse og det kodeord som du brugte til at registrere\n"
-#~ "ved GridRepublic. (Hvis du endnu ikke har oprettet en konto hos GridRepublic\n"
+#~ "Angiv venligst den emailadresse og det kodeord som du brugte til at "
+#~ "registrere\n"
+#~ "ved GridRepublic. (Hvis du endnu ikke har oprettet en konto hos "
+#~ "GridRepublic\n"
 #~ "så gør det venligst på http://www.gridrepublic.org)"
 
 #~ msgid "Start Project"
@@ -3873,7 +3991,8 @@ msgstr "angiv timetal for start og stop af netværksbrug I formatet HH:MM-HH:MM"
 #~ "We will send you occasional emails. You can stop these at any time.\n"
 #~ "We will not pass your email address on to others."
 #~ msgstr ""
-#~ "Angiv venligst en emailadresse og et kodeord. Du har brug for din emailadresse,\n"
+#~ "Angiv venligst en emailadresse og et kodeord. Du har brug for din "
+#~ "emailadresse,\n"
 #~ "hvis du vil ændre dine kontoindstillinger eller bruge vores forum.\n"
 #~ "\n"
 #~ "Vi vil sende dig enkelte emails. Du kan framelde disse til enhver tid.\n"
@@ -3903,19 +4022,15 @@ msgstr "angiv timetal for start og stop af netværksbrug I formatet HH:MM-HH:MM"
 #~ "i henhold til dine indstillinger. Luk vinduet for at lukke manageren\n"
 #~ "uden at stoppe eksperimentet."
 
-#, c-format
 #~ msgid "%s is currently suspended...\n"
 #~ msgstr "%s er suspenderet for nuværende....\n"
 
-#, c-format
 #~ msgid "%s networking is currently suspended...\n"
 #~ msgstr "%s netværksadgang er suspenderet for nuværende....\n"
 
-#, c-format
 #~ msgid "%s is currently reconnecting to a %s client...\n"
 #~ msgstr "%s er ved at forbinde til en %s klient igen...\n"
 
-#, c-format
 #~ msgid "%s is not currently connected to a %s client...\n"
 #~ msgstr "%s er ikke forbundet til en %s klient lige nu...\n"
 
@@ -3925,11 +4040,11 @@ msgstr "angiv timetal for start og stop af netværksbrug I formatet HH:MM-HH:MM"
 #~ "\n"
 #~ "Click Finish to close."
 #~ msgstr ""
-#~ "Der er opstået en fejl, check venligst 'Besked' fanen for flere detaljer.\n"
+#~ "Der er opstået en fejl, check venligst 'Besked' fanen for flere "
+#~ "detaljer.\n"
 #~ "\n"
 #~ "Klik på 'Afslut' for at lukke."
 
-#, c-format
 #~ msgid ""
 #~ "You are now successfully attached to the %s system.\n"
 #~ "%s"
@@ -3944,8 +4059,12 @@ msgstr "angiv timetal for start og stop af netværksbrug I formatet HH:MM-HH:MM"
 #~ "(C) 2003-2006 University of California at Berkeley.\n"
 #~ "All Rights Reserved."
 
-#~ msgid "A software platform for distributed computing using volunteered computer resources"
-#~ msgstr "En software-platform til distribuerede computerudregninger ved hjælp af frivilligt donerede computerresourcer"
+#~ msgid ""
+#~ "A software platform for distributed computing using volunteered computer "
+#~ "resources"
+#~ msgstr ""
+#~ "En software-platform til distribuerede computerudregninger ved hjælp af "
+#~ "frivilligt donerede computerresourcer"
 
 #~ msgid "Username:"
 #~ msgstr "Brugernavn:"
@@ -3962,8 +4081,12 @@ msgstr "angiv timetal for start og stop af netværksbrug I formatet HH:MM-HH:MM"
 #~ msgid "Reminder Frequency:"
 #~ msgstr "PÃ¥mindelseshyppighed:"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
-#~ msgstr "Hvor ofte, i minutter, skal manageren minde dig om mulige forbindelsesforsøg."
+#~ msgid ""
+#~ "How often, in minutes, should the manager remind you of possible "
+#~ "connection events."
+#~ msgstr ""
+#~ "Hvor ofte, i minutter, skal manageren minde dig om mulige "
+#~ "forbindelsesforsøg."
 
 #~ msgid "&Account manager"
 #~ msgstr "&Konto-manager"
@@ -3974,14 +4097,16 @@ msgstr "angiv timetal for start og stop af netværksbrug I formatet HH:MM-HH:MM"
 #~ msgid "Retry &communications"
 #~ msgstr "Prøv &kommunikation igen"
 
-#~ msgid "Report completed work, get latest credit, get latest preferences, and possibly get more work."
-#~ msgstr "Rapporter færdigt arbejde, hent pointstatistik, hent indstillinger og hent muligvis mere arbejde."
+#~ msgid ""
+#~ "Report completed work, get latest credit, get latest preferences, and "
+#~ "possibly get more work."
+#~ msgstr ""
+#~ "Rapporter færdigt arbejde, hent pointstatistik, hent indstillinger og "
+#~ "hent muligvis mere arbejde."
 
-#, c-format
 #~ msgid "&Defect from %s"
 #~ msgstr "&Afbryd fra %s"
 
-#, c-format
 #~ msgid "&%s\tF1"
 #~ msgstr "&%s\tF1"
 
@@ -3997,11 +4122,9 @@ msgstr "angiv timetal for start og stop af netværksbrug I formatet HH:MM-HH:MM"
 #~ msgid "Close Confirmation"
 #~ msgstr "Bekræft Lukning"
 
-#, c-format
 #~ msgid "BOINC Manager - Detach from %s"
 #~ msgstr "BOINC Manager - Afmeld %s"
 
-#, c-format
 #~ msgid ""
 #~ "If you defect from %s,\n"
 #~ "you'll keep all your current projects,\n"
@@ -4015,19 +4138,21 @@ msgstr "angiv timetal for start og stop af netværksbrug I formatet HH:MM-HH:MM"
 #~ "\n"
 #~ "Vil du afbryde %s?"
 
-#, c-format
 #~ msgid "Connected to %s"
 #~ msgstr "Forbundet til %s"
 
-#, c-format
 #~ msgid ""
 #~ "%s is not currently connected to a %s client.\n"
-#~ "Please use the 'File\\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."
+#~ "Please use the 'File\\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 ""
 #~ "%s er ikke forbundet til en %s klient lige nu.\n"
-#~ "Brug 'Avanceret\\Vælg computer...'-menupunktet for at forbinde til en %s klient.\n"
-#~ "For at forbinde til din lokale computer kan 'localhost' bruges som værtsnavn."
+#~ "Brug 'Avanceret\\Vælg computer...'-menupunktet for at forbinde til en %s "
+#~ "klient.\n"
+#~ "For at forbinde til din lokale computer kan 'localhost' bruges som "
+#~ "værtsnavn."
 
 #~ msgid "Project URL"
 #~ msgstr "Projekt URL"
@@ -4038,32 +4163,6 @@ msgstr "angiv timetal for start og stop af netværksbrug I formatet HH:MM-HH:MM"
 #~ msgid "For a list of BOINC-based projects go to:"
 #~ msgstr "For en liste over BOINC-baserede projekter, gå til:"
 
-#~ msgid ""
-#~ "BOINC failed to communicate on the Internet. The most likely\n"
-#~ "reasons are:\n"
-#~ "\n"
-#~ "1) Connectivity problem.  Please check your network or modem\n"
-#~ "connection and hit the back button to retry the previous\n"
-#~ "operation.\n"
-#~ "\n"
-#~ "2) Personal firewall software is blocking BOINC. You must\n"
-#~ "configure your personal firewall to let BOINC communicate\n"
-#~ "on port 80. Once this is fixed, click Back to try again.\n"
-#~ "\n"
-#~ "3) You are using a proxy server and BOINC needs to know\n"
-#~ "about it."
-#~ msgstr ""
-#~ "BOINC kunne ikke kommunikere via internettet. De mest\n"
-#~ "almindelige grunde er:\n"
-#~ "\n"
-#~ "1)Forbindelsesproblem. Check dit modem eller netværk og klik\n"
-#~ "på Tilbage-knappen for at forsøge den forrige operation igen.\n"
-#~ "2) Din personlige firewall blokerer BOINC. Du skal\n"
-#~ "konfigurere din personlige firewall til at lade BOINC kommunikere\n"
-#~ "på port 80. Når dette er gjort, klik på Tilbage for at prøve igen.\n"
-#~ "\n"
-#~ "3) Du bruger en Proxy-server, og BOINC skal indstilles til at benytte den."
-
 #~ msgid "Click Next to configure BOINC's proxy settings."
 #~ msgstr "Klik Næste for at konfigurere BOINC's proxy indstillinger."
 
@@ -4085,7 +4184,6 @@ msgstr "angiv timetal for start og stop af netværksbrug I formatet HH:MM-HH:MM"
 #~ msgid "We'll now guide you through the process of attaching to a project."
 #~ msgstr "Vi vil nu guide dig igennem tilmeldelsen til et projekt."
 
-#, c-format
 #~ msgid ""
 #~ "We'll now remove this computer from %s.  You will\n"
 #~ "be responsible for managing the BOINC client software from\n"
@@ -4119,6 +4217,5 @@ msgstr "angiv timetal for start og stop af netværksbrug I formatet HH:MM-HH:MM"
 #~ msgid "BOINC Manager - Options"
 #~ msgstr "BOINC Manager - Indstillinger"
 
-#, c-format
 #~ msgid "BOINC Manager - Select Computer"
 #~ msgstr "BOINC Manager - Vælg computer"
diff --git a/locale/da/BOINC-Project-Generic.po b/locale/da/BOINC-Project-Generic.po
index 0782973..d6b5c5f 100644
--- a/locale/da/BOINC-Project-Generic.po
+++ b/locale/da/BOINC-Project-Generic.po
@@ -1366,8 +1366,9 @@ msgstr ""
 msgid "Could not create team - please try later."
 msgstr ""
 
+#, fuzzy
 msgid "Create a team"
-msgstr ""
+msgstr "Opret nyt emne"
 
 msgid ""
 "You belong to %1. You must %2quit this team%3 before creating a new one."
diff --git a/locale/da/BOINC-Web.po b/locale/da/BOINC-Web.po
index 360fefa..f910b54 100644
--- a/locale/da/BOINC-Web.po
+++ b/locale/da/BOINC-Web.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Web 6.x\n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
 "PO-Revision-Date: 2009-01-06 01:45-0500\n"
 "Last-Translator: Janus Kristensen <jbk at visualgroup.dk>\n"
 "Language-Team: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
@@ -18,386 +18,312 @@ msgstr ""
 "X-Poedit-Country: UNITED STATES\n"
 "X-Poedit-KeywordsList: tra\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
 msgstr ""
 
-"
-
+#: poll.inc:47
 msgid "Other:"
 msgstr ""
 
-"
-
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
 msgstr ""
 
-"
-
+#: poll_data.inc:22
 msgid "less than a week"
 msgstr ""
 
-"
-
+#: poll_data.inc:23
 msgid "less than a month"
 msgstr ""
 
-"
-
+#: poll_data.inc:24
 msgid "less than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:25
 msgid "more than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:34
 msgid "I lost interest"
 msgstr ""
 
-"
-
+#: poll_data.inc:35
 msgid "it was too complicated"
 msgstr ""
 
-"
-
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
 msgstr ""
 
-"
-
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:38
 msgid "it used too much electricity"
 msgstr ""
 
-"
-
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr ""
 
-"
-
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
 msgstr ""
 
-"
-
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
 msgstr ""
 
-"
-
+#: poll_data.inc:50
 msgid "I had network communication problems"
 msgstr ""
 
-"
-
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
 msgstr ""
 
-"
-
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr ""
 
-"
-
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
 msgstr ""
 
-"
-
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr ""
 
-"
-
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr ""
 
-"
-
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr ""
 
-"
-
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr ""
 
-"
-
+#: poll_data.inc:87
 msgid "Home"
 msgstr ""
 
-"
-
+#: poll_data.inc:88
 msgid "Work"
 msgstr ""
 
-"
-
+#: poll_data.inc:89
 msgid "School"
 msgstr ""
 
-"
-
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr ""
 
-"
-
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr ""
 
-"
-
+#: poll_data.inc:119
 msgid "Age"
 msgstr ""
 
-"
-
+#: poll_data.inc:129
 msgid "Sex"
 msgstr ""
 
-"
-
+#: poll_data.inc:131
 msgid "Male"
 msgstr ""
 
-"
-
+#: poll_data.inc:132
 msgid "Female"
 msgstr ""
 
-"
-
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr ""
 
-"
-
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr ""
 
-"
-
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr ""
 
-"
-
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr ""
 
-"
-
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr ""
 
-"
-
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr ""
 
-"
-
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
 msgstr ""
 
-"
-
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr ""
 
-"
-
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr ""
 
-"
-
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr ""
 
-"
-
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr ""
 
-"
-
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr ""
 
-"
-
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr ""
 
-"
-
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr ""
 
-"
-
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr ""
 
-"
-
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr ""
 
-"
-
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr ""
 
-"
-
+#: poll_data.inc:192
 msgid "Yes"
 msgstr ""
 
-"
-
+#: poll_data.inc:193
 msgid "No"
 msgstr ""
 
-"
-
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr ""
 
-"
-
+#: poll_data.inc:200
 msgid "to read information"
 msgstr ""
 
-"
-
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr ""
 
-"
-
+#: poll_data.inc:202
 msgid "None"
 msgstr ""
 
-"
-
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr ""
 
-"
-
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr ""
 
-"
-
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr ""
 
-"
-
+#: download.php:40
 msgid "Download BOINC"
 msgstr ""
 
-"
-
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr ""
 
-"
-
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -405,41 +331,34 @@ msgid ""
 "computer, you can connect it to as many of these projects as you like."
 msgstr ""
 
-"
-
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
 "(GPU), you may be able to %suse it to compute faster%s"
 msgstr ""
 
-"
-
+#: download.php:120
 msgid "System requirements"
 msgstr ""
 
-"
-
+#: download.php:121
 msgid "Release notes"
 msgstr ""
 
-"
-
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr ""
 
-"
-
+#: download.php:123
 msgid "All versions"
 msgstr ""
 
-"
-
+#: download.php:141
 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 "
@@ -448,8 +367,7 @@ msgid ""
 "problems you might have."
 msgstr ""
 
-"
-
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -458,8 +376,7 @@ msgid ""
 "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 "
@@ -467,20 +384,17 @@ msgid ""
 "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 "
@@ -488,30 +402,70 @@ msgid ""
 "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 ""
 
-"
+#: index.php:23
+msgid "Computing power"
+msgstr ""
 
-msgid "Volunteer"
+#: index.php:25
+msgid "Top 100 volunteers"
 msgstr ""
 
-"
+#: index.php:26
+msgid "Statistics"
+msgstr ""
 
-msgid "Download"
+#: index.php:53
+msgid "Active:"
 msgstr ""
 
-"
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
 
-msgid "Documentation"
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
 msgstr ""
 
-"
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
 
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -520,28 +474,92 @@ msgid ""
 "sDownload%s and run BOINC software  %sEnter%s an email address and password. "
 msgstr ""
 
-"
-
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
 "sGridRepublic%s or %sBAM!%s. "
 msgstr ""
 
-"
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
 
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
 
-"
-
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr ""
 
-"
-
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -554,84 +572,68 @@ msgid ""
 "href=poll_results.php>here</a>. "
 msgstr ""
 
-"
-
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr ""
 
-"
-
+#: poll.php:30
 msgid "Your participation"
 msgstr ""
 
-"
-
+#: poll.php:32
 msgid "Your computers"
 msgstr ""
 
-"
-
+#: poll.php:34
 msgid "You"
 msgstr ""
 
-"
-
+#: poll.php:39
 msgid "Nationality"
 msgstr ""
 
-"
-
+#: poll.php:44
 msgid "Comments"
 msgstr ""
 
-"
-
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
 msgstr ""
 
-"
-
+#: poll.php:50
 msgid "When done click:"
 msgstr ""
 
-"
-
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
 msgstr ""
 
-"
-
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr ""
 
-"
-
+#: poll_results.php:195
 msgid "Survey results"
 msgstr ""
 
-"
-
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
 msgstr ""
 
-"
-
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 #~ msgid "CHARSET"
 #~ msgstr "UTF-8"
diff --git a/locale/da/pootle-boincclient610-da.prefs b/locale/da/pootle-boincclient610-da.prefs
new file mode 100644
index 0000000..7a9cdbe
--- /dev/null
+++ b/locale/da/pootle-boincclient610-da.prefs
@@ -0,0 +1,8 @@
+# Pootle preferences for project boinctrunk, language da
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  jbk = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/da/pootle-boinctrunk-da.prefs b/locale/da/pootle-boinctrunk-da.prefs
deleted file mode 100644
index 30f5de2..0000000
--- a/locale/da/pootle-boinctrunk-da.prefs
+++ /dev/null
@@ -1,6 +0,0 @@
-# Pootle preferences for project boinctrunk, language da
-
-rights:
-  default = u'view, suggest, archive, pocompile'
-  jbk = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  nobody = u'view'
diff --git a/locale/de/BOINC-Manager.mo b/locale/de/BOINC-Manager.mo
index 49af3dc..c5d2184 100644
Binary files a/locale/de/BOINC-Manager.mo and b/locale/de/BOINC-Manager.mo differ
diff --git a/locale/de/BOINC-Manager.po b/locale/de/BOINC-Manager.po
index 9974b1a..4208558 100644
--- a/locale/de/BOINC-Manager.po
+++ b/locale/de/BOINC-Manager.po
@@ -1,36 +1,38 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 6.4x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
-"PO-Revision-Date: 2009-06-28 06:29-0700\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2010-03-23 10:54-0700\n"
 "Last-Translator: Christian Beer <djangofett at gmx.net>\n"
 "Language-Team: BOINC.DE Team <webmaster at boinc.de>\n"
 "Language: de\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 1.2.1\n"
 "X-Poedit-Language: German\n"
+"X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: UTF-8\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: GERMANY\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "Teilnehmerinformation"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr "Kontoinformationen eingeben "
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
 msgstr ""
 "Bitte geben Sie Ihre Kontoinformationen ein.\n"
-"(Bitte besuchen sie die Projektwebseite\n"
+"(Bitte besuchen sie die Projektwebseite, \n"
 "um ein Teilnehmerkonto einzurichten.)"
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
@@ -39,425 +41,501 @@ msgstr ""
 "Sie können sich nur anmelden, wenn Sie bereits über ein\n"
 "Teilnehmerkonto verfügen."
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "Nehmen Sie bereits an diesem Projekt teil?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
-msgstr "&Nein, neues Teilnehmerkonto"
+msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "&Ja, existierendes Teilnehmerkonto"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+"Die Kontoinformationen konnten nicht ermittelt werden. \n"
+"\n"
+"Bitte benutzen Sie den Link \"Kontoinformationen suchen\", \n"
+"um die richtigen Eingaben für die E-Mail-Adresse und \n"
+"das Passwort zu finden."
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr "Kontoinformationen suchen"
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "&Passwort:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "Passwort &auswählen:"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "Passwort &bestätigen:"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr "Läuft %s bereits?"
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr "Benutzername:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
-msgstr "Emailadresse:"
+msgstr "E-Mail-Adresse:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr "minimale Länge %d"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr "Passwort vergessen?"
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+"Bevor Sie fortfahren, müssen Sie bereits ein Konto\n"
+"bei dieser Kontoverwaltung besitzen. Klicken Sie auf\n"
+"den folgenden Link, um sich zu registrieren oder ein\n"
+"neues Passwort anzufordern."
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr "Webseite der Kontoverwaltung"
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "Projekt anmelden"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "Kontoverwaltung aktualisieren"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "Bei einer Kontoverwaltung anmelden"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr ""
 "Die minimale Passwortlänge für dieses Projekt ist %d. Bitte wählen Sie ein "
 "anderes Passwort."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
 "Die minimale Passwortlänge für diese Kontoverwaltung ist %d. Bitte wählen "
 "Sie ein anderes Passwort."
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr ""
 "Das Passwort und die Bestätigung weichen voneinander ab. Bitte wiederholen "
 "sie die Eingabe."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "Kontoverwaltung URL:"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr "Wählen Sie eine Kontoverwaltung"
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Geben Sie die URL für die Webseite der Kontoverwaltung ein."
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"Um ein Projekt zu wählen, klicken Sie auf den Namen oder geben Sie die "
+"Projektadresse ein."
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "Kontoverwaltung &URL:"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
-msgstr "Kommunikation mit %s"
+msgstr "Kommunikation mit %s."
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr "Kommunikation mit dem Server "
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
-msgstr "Bitte warten"
+msgstr "Bitte warten..."
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr "Ein interner Server Fehler ist aufgetreten.\n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Verbunden"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Verbindung getrennt"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "&Fenster schließen\tStrg+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr "Das %s Fenster schließen."
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "BOINC-Manager-Fenster schließen."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr "&Fenster schließen"
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
-msgstr "%s verlassen"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr "Beende %s"
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "&Beenden"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
-msgstr "&Erweiterte AnsichtSTRG+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr "&Projekte\tCtrl+Shift+P"
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
-msgstr ""
-"Tabellenansichten erlauben das Sortieren verschiedener Spalten und die "
-"Darstellung von Fortschrittsbalken."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr "Projekte anzeigen"
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
-msgstr "&Einfache AnsichtSTRG+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr "&Aufgaben\tCtrl+Shift+A"
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "Schaltet auf die vereinfachte BOINC-Grafikoberfläche um."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr "Aufgaben anzeigen"
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "Projekt &anmelden ..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr "Ü&bertragungen\tCtrl+Shift+B"
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr " Ein Projekt anmelden"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr "Ãœbertragungen anzeigen"
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "Bei einer Kontoverwaltung an&melden ..."
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr "&Meldungen\tCtrl+Shift+M"
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Bei einer Kontoverwaltung anmelden"
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr "Meldungen anzeigen"
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr "Statistiken\tCtrl+Shift+S"
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr "Statistiken anzeigen"
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr "&Festplatte\tCtrl+Shift+F"
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr "Festplattennutzung anzeigen"
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "&Einfache Ansicht...\tCtrl+Shift+E"
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr "Schaltet auf die vereinfachte BOINC-Grafikoberfläche um."
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr "Bei einem &Projekt oder einer Kontoverwaltung anmelden..."
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+"Bei einem Projekt oder einer Kontoverwaltung anmelden um mit der Berechnung "
+"zu beginnen"
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr "&Synchronisiere mit %s"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr "Hole die aktuellen Einstellungen von %s"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "Projekt &anmelden..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr ""
+"Sie müssen ein Projekt an diesem Rechner anmelden um mit der Arbeit zu "
+"beginnen."
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "&Stoppe die Nutzung von %s..."
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Trennt diesen Client von der Kontoverwaltung."
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "&Immer ausführen"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr ""
 "BOINC arbeitet permanent. Andere Einstellungen, ausgenommen zum "
 "Netzwerkzugriff, werden übersteuert."
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "Ausführen nach &Voreinstellung"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "BOINC arbeitet entsprechend der Einstellungen."
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "&Anhalten"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr ""
 "BOINC unterbricht alle Arbeiten. Andere Einstellungen werden übersteuert."
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr "GPU immer nutzen"
+
+#: clientgui/AdvancedFrame.cpp:469
+#, fuzzy
+msgid "Allow GPU work regardless of preferences"
+msgstr ""
+"BOINC arbeitet permanent. Andere Einstellungen, ausgenommen zum "
+"Netzwerkzugriff, werden übersteuert."
+
+#: clientgui/AdvancedFrame.cpp:473
+#, fuzzy
+msgid "Use GPU based on &preferences"
+msgstr "Ausführen nach &Voreinstellung"
+
+#: clientgui/AdvancedFrame.cpp:474
+#, fuzzy
+msgid "Allow GPU work according to your preferences"
+msgstr "BOINC nutzt die GPU entsprechend der Einstellungen."
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr "GPU nie nutzen"
+
+#: clientgui/AdvancedFrame.cpp:479
+#, fuzzy
+msgid "Stop GPU work regardless of preferences"
+msgstr ""
+"BOINC unterbricht alle Arbeiten. Andere Einstellungen werden übersteuert."
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "Netzwerkzugriff immer a&usführen"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr "Erlaubt BOINC immer auf das Internet zuzugreifen."
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
 msgstr "Netzwerkaktivität nach V&oreinstellung"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr "Erlaubt BOINC den Internetzugriff entsprechend der Einstellungen."
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
 msgstr "Netzwerkzugriff a&bgeschaltet"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr "Verhindert das BOINC auf das Internet zugreift."
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
-msgstr "&Optionen ..."
+msgstr "&Optionen..."
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr ""
 "Das Aussehen des BOINC Mangers und die Proxy Einstellungen konfigurieren."
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "&Einstellungen..."
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr "Die lokalen Einstellungen konfigurieren."
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
 msgid "Connect to another computer running %s"
 msgstr "Verbindet mit einem anderen Computer auf dem %s läuft."
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
-msgstr "&Computer auswählen"
+msgstr "&Computer auswählen..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr "Beenden des aktuell verbundenen Client..."
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr "Beendet den aktuell verbundenen Client."
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "Bench&marks ausführen"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "Startet die BOINC CPU Benchmarks."
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr "Netzwerk-&Kommunikation ausführen"
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr "Ausstehende Netzwerk-Kommunikation ausführen."
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr "Konfigurationsdatei lesen"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr "Konfiguration aus cc-config.xml lesen."
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "Lokale Einstellungsdatei lesen"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr "Einstellungen aus global_prefs_override.xml lesen."
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr "&Stoppe die Nutzung von %s..."
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "Trennt diesen Client von der Kontoverwaltung."
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "Projekt &anmelden"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr ""
-"Sie müssen ein Projekt an diesem Rechner anmelden um mit der Arbeit zu "
-"beginnen."
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
 msgstr "%s &Hilfe"
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
 msgid "Show information about %s"
 msgstr "Zeigt Informationen über %s"
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr "&%s Hilfe"
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr "Zeigt Informationen über %s"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr "%s &Webseite"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
 msgid "Show information about BOINC and %s"
 msgstr "Zeigt Informationen über BOINC und %s"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr "&Ãœber %s..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
-msgstr "Lizenz- und Copyright-Informationen"
+msgstr "Lizenz- und Urheberrechts-Informationen."
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "&Datei"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "&Ansicht"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
-msgstr "&Assistenten"
+msgstr "Ass&istenten"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "&Steuerung"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "&Extras"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "&Hilfe"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr "%s - Beende den aktuellen Client..."
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr "Anmeldung bei einem Projekt oder einer Kontoverwaltung..."
 
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-"%s - beendet den aktuell verbundenen Client,und fragt nach einem anderen "
-"Rechner zum Verbinden."
-
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr "%s - Von %s abmelden"
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -471,57 +549,66 @@ msgstr ""
 "\n"
 "Wollen Sie mit der Abmeldung von %s forfahren?"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "Projekt wird angemeldet"
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "Wiederhole die Kommunikation für Projekt ..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr "Sprachauswahl: %s"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr ""
 "Die voreingestellte Sprache (%s) wurde geändert.\n"
 "Damit dies wirksam wird muss der %s neu gestartet werden."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - Beende den aktuellen Client..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s - beendet den aktuell verbundenen Client,und fragt nach einem anderen "
+"Rechner zum Verbinden."
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Wiederhole die Kommunikation für Projekt..."
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr "%s wurde erfolgreich mit %s verbunden."
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "Verbinden mit %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
 msgid "Connected to %s (%s)"
 msgstr "Verbunden mit %s (%s)"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "Der Teilnehmername wird bereits verwendet!"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -532,32 +619,46 @@ msgstr ""
 "anderes Passwort als Sie eingegeben haben.Bitte besuchen Sie die "
 "Projektwebseite und folgen Sie dort den Anweisungen."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
-msgstr "Die Emailadresse wird bereits benutzt!"
+msgstr "Diese E-Mail-Adresse wird bereits benutzt!"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 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 ""
-"Ein Konto mit dieser Emailadresse existiert bereits und verwendet\n"
+"Ein Konto mit dieser E-Mail-Adresse existiert bereits und verwendet\n"
 "ein anderes Passwort als Sie eingegeben haben.\n"
 "\n"
 "Bitte besuchen Sie die Projektwebseite und folgen Sie dort den Anweisungen."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr "Kommuniziere mit dem BOINC Client. Bitte warten ..."
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr "&Schließe %s"
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr "B&eende %s"
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "&Abbrechen"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr "%s - Verbindungsfehler"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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."
@@ -566,7 +667,7 @@ msgstr ""
 "Bitte fragen Sie Ihren Administrator, ob er sie zu der lokalen Nutzergruppe "
 "'boinc_users' hinzufügen kann."
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
@@ -576,23 +677,23 @@ msgstr ""
 "Überprüfen Sie, ob das Programm im selben Verzeichnis wie der Client "
 "gestartet wurde."
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr ""
 "Autorisation fehlgeschlagen beim Versuch mit dem laufenden Client zu "
 "verbinden."
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "Das eingegebene Passwort ist falsch. Bitte erneut versuchen."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - Verbindung fehlgeschlagen"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
@@ -600,13 +701,13 @@ msgstr ""
 "%s kann sich nicht mit einem %s Client verbinden.\n"
 "Wollen Sie es erneut versuchen?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr "Start des %s - Dienstes fehlgeschlagen."
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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."
@@ -615,8 +716,8 @@ msgstr ""
 "Bitte öffnen Sie die Systemsteuerung->Verwaltung->Dienste und starten Sie "
 "den BOINC Dienst."
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
@@ -624,52 +725,51 @@ msgstr ""
 "%s ist nicht in der Lage einen %s Client zu starten.\n"
 "Bitte starten Sie den Dienst und versuchen Sie es erneut."
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr "%s - Verbindungsstatus"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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 ""
-"%s ist augenblicklich nicht mit mit dem %s Clientverbunden. Bitte benutzen "
+"%s ist augenblicklich nicht mit mit dem %s Client verbunden. Bitte benutzen "
 "Sie die 'Datei\\Computer auswählen ...'Menüoption um die Verbindung mit einem "
-"%s Client neu aufzubauen.Wenn Sie keinen anderen Computer fernsteuern "
-"wollen, dann lassenSie die Felder 'Computername und Passwort leer, oder "
-"benutzen Sie'localhost' als Computername.."
+"%s Client neu aufzubauen.Wenn Sie keinen anderen Computer fern-steuern "
+"wollen, dann lassen Sie die Felder 'Computername und Passwort leer, oder "
+"benutzen Sie 'localhost' als Computername."
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Webseiten"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr "%s - Netzwerkstatus"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr "%s benötigt eine Verbindung zum Internet. Mausklick um %s zu öffnen."
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
 "Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
 msgstr ""
 "%s kann nicht mit einem Projekt kommunizieren und benötigt eine "
-"Internetverbindung.Bitte verbinden Sie sich mit dem Internet und wählen sie "
-"anschließend \"Netzwerk-Kommunikation ausführen\" im Menü \"Extras\"."
+"Internetverbindung.\n"
+"Bitte verbinden Sie sich mit dem Internet und wählen sie anschließend "
+"\"Netzwerk-Kommunikation ausführen\" im Menü \"Extras\"."
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
@@ -677,13 +777,13 @@ msgstr ""
 "%s benötigt eine Verbindung zum Netzwerk.\n"
 "Darf es sich jetzt einwählen?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s verbindet sich mit dem Internet."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
 "Please connect to the Internet, or select a default connection\n"
@@ -694,18 +794,18 @@ msgstr ""
 "im Registerblatt \"Verbindungen\"  im Dialog \"Optionen\" im Menü \"Extras\" eine "
 "Standardverbindung fest."
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s konnte sich erfolgreich mit dem Internet verbinden."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "%s konnte sich nicht mit dem Internet verbinden."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
@@ -713,17 +813,47 @@ msgstr ""
 "%s ist jetzt mit dem Internet verbunden. Alle Projekte werden aktualisiert "
 "und alle Ãœbertragungen fortgesetzt."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s hat die Internetverbindung erfolgreich beendet."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s konnte die Internetverbindung nicht beenden."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+"Sie sind momentan nicht berechtigt diesen BOINC Client zu verwalten.\n"
+"\n"
+"Um BOINC mit diesem Benutzer zu nutzen müssen Sie:\n"
+"  - BOINC erneut installieren und \"Ja\" bei der Frage nach eingeschränkten "
+"Benutzern auswählen\n"
+" oder\n"
+"  - Ihren Administrator bitten Sie der \"boinc_master\" Benutzergruppe "
+"hinzuzufügen."
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"BOINC Eigentümer- und/oder Zugriffsrechte sind nicht richtig gesetzt. Bitte "
+"BOINC neu installieren.\n"
+"(Fehlercode: %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
@@ -732,102 +862,113 @@ msgstr ""
 " funktioniert. Bitte starten sie den Computer neu und\n"
 "versuchen es erneut."
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "BOINC-Manager"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr "Der BOINC-Manager wurde automatisch vom Betriebssystem gestartet."
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr ""
 "Starte BOINC so, dass nur das Symbol im Infobereich der Taskleiste sichtbar "
 "ist."
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr "Verzeichnis der BOINC-Client Programmdateien"
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr "Datenverzeichnis des BOINC-Client"
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr "Starte BOINC mit diesen optionalen Argumenten"
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr "BOINC Sicherheit Benutzer und Rechte abschalten"
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
-msgstr ""
+msgstr "Skin-Debugmodus einschalten um Skin-Manager Fehlermeldungen zu sehen"
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Automatische Erkennung)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Unbekannt)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Benutzerauswahl)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr "Berechnung wurde angehalten."
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr "Netzwerkzugriff ist abgeschaltet."
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr "%s: %.2f%% fertig."
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr "%d aktive Aufgaben."
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr "Wiederherstellen der Verbindung zu einem Client."
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr "Nicht mit einem Client verbunden."
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr "Öffne %s Web..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr "Öffne %s..."
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "BOINC anhalten"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "Anmeldung fehlgeschlagen!"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr "Aktualisieren der Kontoverwaltung fehlgeschlagen!"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr "Entfernen der Kontoverwaltung fehlgeschlagen!"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "Anmelden bei der Kontoverwaltung fehlgeschlagen!"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -839,27 +980,26 @@ msgstr ""
 "\n"
 "Drücken sie [Beenden] zum Schließen."
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "Klicke [Beenden] zum Schließen."
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "Nachricht vom Server:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "Beim Projekt angemeldet."
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "Sie wurden erfolgreich mit dem Projekt verbunden."
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -867,312 +1007,314 @@ msgstr ""
 "Wenn Sie auf [Beenden] klicken wird Ihr Webbrowser zu\n"
 "einer Webseite geführt, wo sie Kontoname und Einstellungen anpassen können."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr "Aktualisierung von %s abgeschlossen."
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "Aktualisierung abgeschlossen."
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr "Entfernen von %s abgeschlossen."
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "Entfernen erfolgreich!"
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr "Verbunden mit %s."
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "Bei einer Kontoverwaltung anmelden"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
-msgstr "Willkommen bei %s"
+msgstr "Willkommen bei %s!"
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
+#, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "Sie sind nun erfolgreich mit dem %s System verbunden."
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "Sie sind nun erfolgreich mit einer Kontoverwaltung verbunden."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr "Ãœber %s"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "Version:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr "wxWidgets Version:"
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Copyright:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
-"(C) 2003-2008 University of California, Berkeley.Alle Rechte vorbehalten."
+"(C) 2003-2010 University of California, Berkeley. Alle Rechte vorbehalten."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr "Berkeley Open Infrastructure for Network Computing"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "&Bestätigen"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr "Ungültige Fließkommazahl"
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr "Ungültige Zeitangabe, Format ist HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr "Ungültige Zeitangabe, Format ist HH:MM-HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr "Ungültiger Eingabewert entdeckt"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr "Gültigkeitsproblem"
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr "Wollen Sie wirklich alle lokalen Einstellungen löschen?"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr "Bestätigung"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
 #, c-format
 msgid "%s - Preferences"
 msgstr "%s - Einstellungen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
 "Click Clear to restore web-based settings."
 msgstr ""
-"Dieser Dialog regelt die Einstellungen nur für diesen Rechner. Klick auf OK "
-"zum Übernehmen der Einstellungen.Klick auf Löschen zum Wiederherstellen der "
-"webbasierten Einstellungen."
+"Dieser Dialog regelt die Einstellungen nur für diesen Rechner.Klicken Sie "
+"auf OK zum Übernehmen der Einstellungen.Klicken Sie auf Löschen zum "
+"Wiederherstellen der webbasierten Einstellungen."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr "Löschen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr "alle lokalen Einstellungen löschen und den Dialog schließen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr "Rechnen erlaubt"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr " Wenn der Computer im Batteriebetrieb ist"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr ""
 "aktiviere diese Option, wenn der Computer im Batteriebetrieb rechnen soll"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr " Wenn der Computer benutzt wird"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr ""
 "aktiviere diese Option, wenn der Computer rechnen soll, selbst wenn er "
 "benutzt wird"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
-msgstr ""
+msgstr " Grafikkarte benutzen wenn der Computer benutzt wird"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
+"aktiviere diese Option, wenn die Grafikkarte rechnen soll, selbst wenn der "
+"Computer benutzt wird"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr "Nur wenn der Computer nicht beschäftigt war seit"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 "rechnet nur, wenn der Computer seit dieser Anzahl von Minuten nicht in "
 "Benutzung war"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr "Minuten"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+#, fuzzy
+msgid "While processor usage is less than"
+msgstr "Nutzung des Prozessors"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr "Jeden Tag in der Zeit zwischen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr "beginne Arbeit zu dieser Zeit"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr "und"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr "beende Arbeit zu dieser Zeit"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr "(keine Einschränkungen, wenn gleich)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr "Ausnahmen für Wochentage:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr ""
 "markiere Kontrollkästchen, um die Stunden für diesen Wochentag festzulegen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr "Montag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr "Dienstag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr "Mittwoch"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr "Donnerstag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr "Freitag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr "Sonnabend"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr "Sonntag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr "Andere Optionen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+#, fuzzy
+msgid "Switch between applications every"
 msgstr "Wechsel zwischen den Anwendungen alle"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr "Auf Multiprozessorsystemen nutze höchstens"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
 msgid "% of the processors"
 msgstr "% der Prozessoren"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr "Nutze höchstens"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
 msgid "% CPU time"
 msgstr "% Prozessor-Zeit"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr "Nutzung des Prozessors"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr "Allgemeine Einstellungen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr "Maximale Download-Rate"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr "KByte/Sek."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr "Maximale Upload-Rate"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr "verbinde etwa alle"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
@@ -1180,47 +1322,47 @@ msgstr ""
 "Dieser Computer wird etwa alle X Tage mit dem Internet verbunden\n"
 "(0 wenn ständig verbunden)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr "Tage"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr "Zusätzlicher Arbeitspuffer"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr "Tage (max. 10)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr "Image-Dateien nicht überprüfen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr ""
 "aktiviere diese Option, wenn die Image-Dateien durch den Internetprovider "
 "verändert werden"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr "Verbindungseinstellungen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr "Bestätigen, bevor mit dem Internet verbunden wird."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr ""
 "wenn aktiviert, wird ein Abfragedialog eingeblendet, bevor eine "
 "Internetverbindung versucht wird"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr "Verbindung trennen, wenn fertig"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
@@ -1229,129 +1371,125 @@ msgstr ""
 "benötigt wird\n"
 "(nur von Bedeutung bei Nutzung von Einwählverbindungen)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr "Nutzung des Netzwerks erlaubt"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr "Anfang der Netzwerknutzung"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr "Ende der Netzwerknutzung"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr "Nutzung des Netzwerks"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr "Nutzung der Festplatte"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr "der maximal von BOINC benutzte Festplattenplatz (in GByte)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr "GByte Festplattenplatz"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr "Lasse mindestens"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr "BOINC läßt dieses Minimum an Festplattenplatz frei (in GByte)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr "GByte Festplattenplatz frei"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr "BOINC nutzt höchstens diesen Anteil in % vom gesamten Festplattenplatz"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr "% des gesamten Festplattenplatzes"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
 msgstr "Schreibe auf Festplatte höchstens alle"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr "Sekunden"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr "% der Auslagerungsdatei (des Swap-Speichers)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr "Nutzung des Speichers"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr "%, wenn der Rechner benutzt wird"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr "%, wenn der Rechner nicht beschäftigt ist"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr " Lasse Anwendung im Speicher, wenn sie pausiert"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr "wenn aktiviert, verbleiben unterbrochene Arbeitseinheiten im Speicher"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr "Nutzung von Festplatte und Speicher"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr "&Bestätigen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr "speichert alle Änderungen und schließt den Dialog"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr "&Abbrechen"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr "schließt den Dialog ohne die Änderungen zu speichern"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "Hilfe"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr "zeigt die Einstellungen-Webseite"
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
 msgstr "%s - Bestätigung schließen"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1361,14 +1499,14 @@ msgid ""
 "exit the Manager, then choose from the following options:"
 msgstr ""
 "Sie wollen den %s verlassen, der Ihnen erlaubt\n"
-"die auf Ihrem PC laufenden wissenschaftlichenAnwendungen\n"
+"die auf Ihrem PC laufenden wissenschaftlichen Anwendungen\n"
 "zu überwachen und zu verwalten.\n"
 "\n"
 "Wenn Sie diese Anwendungen ebenfalls beenden\n"
 "wollen, wählen Sie die eine der folgenden Optionen:"
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1377,7 +1515,7 @@ msgid ""
 "rather than to exit the application; that will allow %s to run its\n"
 "tasks at the times you selected in your preferences."
 msgstr ""
-"Dies wird %s und seine Aufgaben ausser Betrieb nehmen, bis entweder\n"
+"Dies wird %s und seine Aufgaben außer Betrieb nehmen, bis entweder\n"
 "die %s-Anwendung oder der %s-Bildschirmschoner wieder\n"
 "laufen.\n"
 "\n"
@@ -1386,412 +1524,377 @@ msgstr ""
 "seine Aufgaben zu den Zeiten auszuführen die Sie in den Einstellungen\n"
 "vorgegeben haben."
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr "Wissenschaftliche Anwendungen zusammen mit dem BOINC Manager beenden."
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr "Diese Einstellung merken und den Dialog nicht wieder anzeigen."
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "&Abbrechen"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr "Diesen Dialog nicht wieder anzeigen."
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr "Schließen"
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr "Projekteigenschaften"
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "Allgemein"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr "Master URL"
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
 msgstr "Benutzername"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr "Teamname"
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Ressourcenaufteilung"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
-msgstr ""
+msgstr "Scheduleranfrage verzögert für"
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr "Dateidownloads verzögert für"
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr "Dateiuploads verzögert für"
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr "Computer ID"
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr "Nicht CPU intensiv"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr "Ja"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr "Nein"
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr "Über das Menü angehalten"
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr "Keine weiteren Aufgaben anfordern"
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr "Laufende Scheduleranfrage"
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
 msgstr "Ãœber eine Kontoverwaltung angemeldet"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr "Abmelden wenn fertig"
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr "Beendet"
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr "Guthaben"
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr "Teilnehmer"
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr "Rechner"
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr "Planung"
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
-msgstr ""
+msgstr "CPU Zeitplanungspriorität"
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
-msgstr ""
+msgstr "CPU Arbeitsabrufpriorität"
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
-msgstr ""
+msgstr "CPU Arbeitsabruf verzögert für"
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
-msgstr ""
+msgstr "Verzögerungsintervall für CPU Arbeitsabruf"
+
+#: clientgui/DlgItemProperties.cpp:247
+#, fuzzy
+msgid "NVIDIA GPU scheduling priority"
+msgstr "ATI GPU Zeitplanungspriorität"
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
-msgstr ""
+msgstr "NVIDIA GPU Arbeitsabrufpriorität"
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
-msgstr ""
+msgstr "NVIDIA GPU Arbeitsabruf verzögert für"
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
-msgstr ""
+msgstr "Verzögerungsintervall für NVIDIA GPU Arbeitsabruf"
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr "ATI GPU Zeitplanungspriorität"
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr "ATI GPU Arbeitsabrufpriorität"
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr "ATI GPU Arbeitsabruf verzögert für"
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr "Verzögerungsintervall für ATI GPU Arbeitsabruf"
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr "Duration correction factor"
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr "Eigenschaften der Aufgabe"
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Anwendung"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr "Paketname"
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr "Status"
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr "Erhalten"
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Ablaufdatum"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr "Ressourcen"
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr "Prozessor-Zeit beim letzten Checkpoint"
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "Prozessor-Zeit"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 msgid "Elapsed time"
 msgstr "Verbrauchte Zeit"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr "Geschätzte verbleibende Zeit"
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr "Fortschritt"
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr "Größe des Virtuellen Speichers"
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr "Größe des Arbeitspakets"
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
-msgstr ""
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr "Ordner"
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr "Prozess-Nr."
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Neu"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "Herunterladen fehlgeschlagen"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "Am herunterladen"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "Projekt angehalten durch Benutzer"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr "Angehalten durch Benutzer"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Angehalten"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr "- Batteriebetrieb"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr "- Benutzer ist aktiv"
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr "- Berechnung angehalten"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr "- Tageszeit"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr "- CPU Benchmarks"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr "- nicht genug Speicherplatz"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr "Warten auf Speicher"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr "Warten auf geteilten Speicher"
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr "Aktiv, hohe Priorität"
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "Aktiv"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr "Verdrängt"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr "Zur Ausführung bereit"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Berechnungsfehler"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "Hochladen fehlgeschlagen"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "Am hochladen"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Abgebrochen durch Benutzer"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "Abgebrochen durch das Projekt"
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "Abgebrochen"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Bestätigt"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "Hochgeladen, meldebereit"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Fehler: Ungültiger Status '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
 msgstr "%s - Einstellungen"
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr "Sprache:"
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr "Welche Sprache soll der Manager verwenden?"
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
@@ -1799,126 +1902,118 @@ msgstr ""
 "Intervall der Netzwerk-Erinnerung\n"
 "(Minuten)"
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 "Wie oft soll der Manager Sie erinnern wenn eine Netzwerkverbindung benötigt "
 "wird?"
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr "Manager bei der Anmeldung starten?"
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr "Startet den BOINC-Manager when Sie sich anmelden."
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr "Ende-Dialog anzeigen?"
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr "Zeigt den Ende-Dialog beim Verlassen des BOINC-Managers an."
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "&Wähl- und Virtual Private Network Einstellungen"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "Standard &festlegen"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "Standard &löschen"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Standardverbindung:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Verbindungen"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Ãœber HTTP Proxyserver verbinden"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "HTTP Proxyserver Konfiguration"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Adresse:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Port:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr "Keinen Proxy benutzen für:"
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Leer lassen, wenn nicht benötigt."
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Benutzername:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Passwort:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "HTTP Proxy"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Ãœber SOCKS Proxyserver verbinden"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "SOCKS Proxyserver Konfiguration"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "SOCKS Proxy"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
 msgid "%s - Select Computer"
 msgstr "%s - wähle Rechner"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Rechnername:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
 #, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s - Webbrowser nicht gefunden!"
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
 #, c-format
 msgid ""
 "%s tried to display the web page\n"
@@ -1937,242 +2032,237 @@ msgstr ""
 "Pfad zu Ihrem Browser belegen und\n"
 "dann %s neu starten."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "Foren"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "Korrespondieren Sie mit anderen Benutzern in den SETI at home Foren"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "Stellen Sie Fragen und berichten Sie über Probleme"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "Ihr Konto"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "Anzeigen von Kontoinformationen und Punktestand"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "Ihre Einstellungen"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr ""
 "Anzeigen und Ändern des SETI at home Teilnehmerprofils und der Einstellungen"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "Ihre Resultate"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr ""
-"Anzeige der Ergebnissse und Berechnungen der letzten Woche (oder länger). "
+"Anzeige der Ergebnisse und Berechnungen der letzten Woche (oder länger). "
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "Ihre Computer"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr ""
 "Rufen Sie eine Liste aller Computer ab auf denen Sie SETI at home ablaufen "
 "lassen."
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "Ihr Team"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "Sehen sie Informationen über Ihr Team"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "Allgemeine Fragen"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "Die Einstein at home \"Häufig gestellte Fragen\" Liste."
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "Bildschirmschoner Info"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr ""
 "Lesen Sie eine detailliere Beschreibung des Einstein at home "
 "Bildschirmschoners."
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr ""
 "Korrespondieren Sie mit Administratoren und anderen Benutzern in den "
 "Einstein at home Foren"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "Einstein Status"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Aktueller Status der Einstein at home Server"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "Probleme berichten"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr "Ein Link zu den Einstein at home \"Probleme und Fehlerberichte\" Foren"
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr ""
 "Anzeigen und Ändern des Einstein at home Teilnehmerprofils und der "
 "Einstellungen"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "Kontoübersicht"
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr ""
-"Rufen Sie eine Liste aller Komputer ab auf denen Sie Einstein at home ablaufen "
+"Rufen Sie eine Liste aller Computer ab auf denen Sie Einstein at home ablaufen "
 "lassen."
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "LIGO Projekt"
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr ""
 "Die Homepage des \"Laser Interferometer Gravitationswellen Observatorium\" "
 "(LIGO) Projektes"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "GEO-600 Projekt"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "Die Homepage des GEO-600 Projektes"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Team"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "Sehen sie Informationen über Ihr Team"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "Hilfe für climateprediction.net"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "Neuigkeiten"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "Neues von climateprediction.net"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr "Anzeigen von Kontoinformationen und Punktestand"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "Sehen sie Informationen über Ihr Team"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr "Suchen Sie nach Hilfe in unserem Hilfesystem"
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "Globale Statistiken"
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "Projektstatistiken für World Community Grid"
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr "Mein Grid"
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "Ihre Statistiken und Einstellungen"
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr "Geräteprofile"
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr "Aktualisieren Sie Ihre Geräteeinstellungen"
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr "Forschung"
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "Erfahren Sie mehr über die auf World Community Grid gehosteten Projekte"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
-msgstr "Starte Client-Dienste; bitte warten ..."
+msgstr "Starte Client-Dienste; bitte warten..."
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
-msgstr "Ermittlung des BOINC-Systemstatus. Bitte etwas Geduld ..."
+msgstr "Ermittlung des BOINC-Systemstatus. Bitte etwas Geduld..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
-msgstr "Ermittlung der BOINC-Rechner-Informationen. Bitte etwas Geduld ..."
+msgstr "Ermittlung der BOINC-Rechner-Informationen. Bitte etwas Geduld..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "Keine Internetverbindung!"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Bitte starten sie Ihre Internetverbindung und versuchen es erneut!"
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Projekt nicht gefunden!"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2182,11 +2272,11 @@ msgstr ""
 "\n"
 "Bitte prüfen Sie die URL und versuchen Sie es erneut."
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "Kontoverwaltung nicht gefunden!"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2197,61 +2287,76 @@ msgstr ""
 "\n"
 "Bitte prüfen Sie die URL und versuchen Sie es erneut."
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr "Anmeldung fehlgeschlagen."
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr "Überprüfen Sie Kontoname und Passwort und versuchen es dann erneut."
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr ""
-"Bitte überprüfen Sie Emailadresse und Passwort und versuchen es dann erneut."
+"Bitte überprüfen Sie die E-Mail-Adresse und das Passwort und versuchen es "
+"dann erneut."
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr "Wähle ein Projekt"
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
 "Um ein Projekt zu wählen, klicke auf seinen Namen oder gebe die "
 "Projektadresse ein."
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "&Projektadresse:"
 
-#: clientgui/ProjectInfoPage.cpp:320
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+"Das Projekt scheint keine Aufgaben für diesen Computertyp zu haben. Wirklich "
+"fortsetzen?"
+
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr ""
+"Du bist bereits mit diesem Projekt verbunden. Bitte wähle ein anderes "
+"Projekt."
 
-#: clientgui/ProjectInfoPage.cpp:321
-#, fuzzy
-msgid "Already Attached to Project"
-msgstr "Sie sind bereits mit dem Projekt verbunden"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr "Klick"
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
 msgstr ""
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
-msgstr "Klicke hier, um auf die Webseite von %s zu gelangen."
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
 msgstr ""
 "Kommunikation mit dem Projekt\n"
-"Bitte warten ..."
+"Bitte warten..."
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
@@ -2259,11 +2364,12 @@ msgstr ""
 "Vom Assistenten benötigte Dateien fehlen auf dem Zielserver.\n"
 "(lookup_account.php/create_account.php)\n"
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "Netzwerkfehler"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
+#, fuzzy
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2274,12 +2380,12 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
-"Die World Community Grit - BOINC Software konnte keine Verbindung über das "
+"Die World Community Grid - BOINC Software konnte keine Verbindung über das "
 "Internet herstellen.\n"
 "Die wahrscheinlichsten Gründe sind:\n"
 "\n"
@@ -2288,14 +2394,14 @@ msgstr ""
 "vorherige Operation zu wiederholen.\n"
 "2) Eine Personal-Firewall Software blockiert BOINC. Um\n"
 "dies zu beheben muss BOINC die Kommunikation über\n"
-"Port 80 und Port 443 erlaubt werden. Klicken Sie anschliessend auf\n"
+"Port 80 und Port 443 erlaubt werden. Klicken Sie anschließend auf\n"
 "[Zurück] um es erneut zu versuchen.\n"
 "\n"
 "3) Sie benutzen einen Proxyserver.\n"
 "Klicken Sie auf [Weiter] um die BOINC Proxyeinstellungen\n"
 "zu konfigurieren."
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2319,504 +2425,482 @@ msgstr ""
 "vorherige Operation zu wiederholen.\n"
 "2) Eine Personal-Firewall Software blockiert BOINC. Um\n"
 "dies zu beheben muss BOINC die Kommunikation über\n"
-"Port 80 erlaubt werden. Klicken Sie anschliessend auf\n"
+"Port 80 erlaubt werden. Klicken Sie anschließend auf\n"
 "[Zurück] um es erneut zu versuchen.\n"
 "\n"
 "3) Sie benutzen einen Proxyserver.\n"
 "Klicken Sie auf [Weiter] um die BOINC Proxyeinstellungen\n"
 "zu konfigurieren."
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Proxykonfiguration"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "HTTP Proxy"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "Server:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "Automatische Erkennung"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "SOCKS Proxy"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr "Erweiterte &Ansicht...\tCtrl+Shift+A"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr "Zeigt die erweiterte (accessible) grafische Benutzeroberfläche an."
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr "&%s"
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr "Aktueller Status wird ermittelt."
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr "Sie haben kein Projekt eingetragen. Bitte fügen Sie ein Projekt hinzu."
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr "Lade neue Aufgaben vom Server."
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr "Berechnungen angehalten: Batteriebetrieb."
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr "Berechnungen angehalten: Benutzer ist aktiv."
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr "Berechnungen angehalten: Angehalten durch Benutzer."
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr "Berechnungen angehalten: Zeitbegrenzung."
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr "Berechnungen angehalten: Benchmarks laufen."
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr "Berechnungen angehalten."
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr "Warte auf Kontakt zum Projektserver."
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr "Ermittle den aktuellen Status."
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr "Keine Aufgaben zu bearbeiten."
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr "Verbindung mit dem Basisclient nicht möglich."
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Projekt"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "Zeit"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Meldung"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Kopiert alle Meldungen in die Zwischenablage."
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 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 ""
 "Kopiert alle ausgewählten (markierten) Meldungen in die Zwischenablage.\n"
 "Durch Drücken und Halten der Umschalt- oder Strg-Taste können Sie \n"
 "mehrere Meldungen gleichzeitig markieren."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
 "Kopiert alle ausgewählten (markierten) Meldungen in die Zwischenablage.\n"
 "Durch Drücken und Halten der Umschalt- oder Strg-Taste können Sie \n"
 "mehrere Meldungen gleichzeitig markieren."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr "Hilfe für BOINC erhalten"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr "%s - Meldungen"
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr "100 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr "200 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr "500 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr "1 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr "2 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr "5 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr "10 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr "20 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr "50 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr "100 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr "10%"
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr "20%"
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr "30%"
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr "40%"
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr "50%"
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr "60%"
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr "70%"
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr "80%"
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr "90%"
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr "100%"
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr "1"
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr "3"
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr "5"
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr "10"
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr "15"
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr "30"
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr "60"
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr "Skin"
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr "Skin:"
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr "Einstellungen"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr ""
 "Ich möchte diesen Computer unabhängig von der Projektwebseite konfigurieren."
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr "Aktuelle Konfiguration:"
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr "Arbeite nur zwischen:"
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr "Verbinde mit dem Internet nur zwischen:"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr "Nutze nicht mehr als:"
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr "Festplattenplatz"
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr "Prozessorleistung"
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr "Arbeiten im Batteriebetrieb?"
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr "Arbeiten beginnen nach Leerlauf von:"
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr "Jederzeit"
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr "%d MB"
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr "%4.2f GB"
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr "%d%%"
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr "0 (Immer ausführen)"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr "%d"
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr "Angehalten: andere Aufgabe aktiv"
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr ""
 "Angehalten: vom Nutzer veranlaßt. Klick 'Wiederaufnehmen' zum Fortsetzen"
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr "Angehalten: Nutzer aktiv"
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr "Angehalten: Batteriebetrieb"
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr "Angehalten: Tageszeitbegrenzung"
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr "Angehalten: Benchmark läuft"
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr "Angehalten"
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr "Angehalten: Anwendungsstart verzögert"
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr "Klicken zur Anzeige der Projektgraphik"
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr "Bei einem weiteren Projekt anmelden."
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr "Synchronisiere Projekt mit der Kontoverwaltung"
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr ""
 "Öffnet ein Fenster um Nachrichten der Anwendungen und des BOINC Clients "
 "anzuzeigen."
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr "Alle Aktivitäten anhalten."
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr "Aktivitäten wieder aufnehmen."
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr "Öffnet ein Fenster um Ihre Einstellungen zu zeigen oder zu ändern."
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr "Schaltet auf die erweiterte BOINC-Grafikoberfläche um."
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr "Meine Projekte:"
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr "%s. Guthaben für %s: %0.2f"
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr "Projekt entfernen"
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "Wollen Sie dieses Projekt '%s' wirklich von diesem Rechner entfernen?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "Abmelden"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr "%.1lf"
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr "%d Std %d Min %d Sek"
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr ""
 "Wollen Sie wirklich die Grafikanzeige auf einem entfernten Rechner starten?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Grafik anzeigen"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
 msgstr "Anwendung:"
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr "Verbleibende Zeit:"
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
 msgstr "Vergangene Zeit:"
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr "Nutzungsbedingungen"
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr "Bitte lesen Sie die folgenden Nutzungsbedingungen:"
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr "Ich stimme den Nutzungsbedingungen zu."
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr "Ich stimme den Nutzungsbedingungen nicht zu."
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Projekt ist vorübergehend nicht erreichbar"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2826,11 +2910,11 @@ msgstr ""
 "\n"
 "Bitte versuchen Sie es später nochmal."
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "Die Kontoverwaltung ist vorübergehend nicht zu erreichen."
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2840,35 +2924,35 @@ msgstr ""
 "\n"
 "Bitte versuchen Sie es später nochmal."
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "Bitte geben Sie einen Kontoschlüssel ein um fortzufahren."
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr ""
 "Unzulässiger oder fehlender Kontoschlüssel (Account Key); bitte geben Sie "
 "einen gültigen Schlüssel ein."
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Überprüfungskonflikt"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
-msgstr "Bitte geben Sie eine Emailadresse ein."
+msgstr "Bitte geben Sie eine E-Mail-Adresse ein."
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr ""
-"Unzulässige Emailadresse; bitte geben Sie eine gültige Emailadresse ein."
+"Unzulässige E-Mail-Adresse; bitte geben Sie eine gültige E-Mail-Adresse ein."
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "Fehlende URL"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2878,18 +2962,18 @@ msgstr ""
 "Zum Beispiel:\n"
 "http://example.com"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "Falsche URL"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2899,187 +2983,155 @@ msgstr ""
 "Zum Beispiel:\n"
 "http://boincproject.example.com"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "'%s' Enthält keinen zulässigen Rechnernamen."
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "'%s' enhält keine zulässige Pfadangabe."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "Befehle"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Alles kopieren"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Auswahl kopieren"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr "Zeige nur dieses Projekt"
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr "Zeigt nur die Meldungen für dieses Projekt."
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Meldungen"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
-msgstr "Kopiert alle Meldungen in die Zwischenablage."
+msgstr "Kopiert alle Meldungen in die Zwischenablage..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 msgid "Copying selected messages to the clipboard..."
-msgstr "Kopiere ausgewählte Meldungen in die Zwischenablage ..."
+msgstr "Kopiere ausgewählte Meldungen in die Zwischenablage..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
-msgstr "Filtere Meldungen ..."
+msgstr "Filtere Meldungen..."
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 msgid "Show all messages"
 msgstr "Zeige alle Meldungen"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr "Zeige Meldungen für alle Projekte."
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr "Id"
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr "Priorität:"
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr "Meldungsgitter"
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr "Kopiere ausgewählte Meldungen in die Zwischenablage..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr "Info"
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr "Warnung"
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr "Fehler"
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
-msgstr ""
+msgstr "Nachrichten Kanäle"
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
-msgstr ""
+msgstr "BOINC"
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
-msgstr ""
+msgstr "Zeige die neusten Nachrichten über BOINC"
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
-msgstr ""
+msgstr "BOINC Webseite"
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
-msgstr ""
+msgstr "Zeige die neusten Nachrichten von der BOINC Webseite"
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Aktualisieren"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr ""
 "Berichtet über alle fertig gestellten Aufgaben des ausgewählten (markierten) "
-"Projekts, holt die letzten Statistiken und erhält eventuell mehr Aufgaben."
-
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+"Projekts, holt die letzten Statistiken und Einstellungen und erhält "
+"eventuell mehr Aufgaben."
+
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Anhalten"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr ""
 "Unterbricht zeitweilig die Arbeit an dem ausgewählten (markierten) Projekt."
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr "Keine neue Aufgabe"
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr ""
 "Fordert keine neuen Aufgaben für das ausgewählte (markierte) Projekt mehr "
 "an."
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Zurücksetzen"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 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 ""
 "Entfernt alle Arbeitspakete und Anwendungen des ausgewählten\n"
@@ -3087,428 +3139,359 @@ msgstr ""
 "vorher aktualisieren um alle erledigten Aufgaben dem Server zu\n"
 "melden."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Abmelden"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr ""
 "Entfernt das ausgewählte (markierte) Projekt von diesem Computer. Sie\n"
 "sollten vorher das Projekt aktualisieren um alle erledigten Aufgaben\n"
 "dem Server zu melden."
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr "Eigenschaften"
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr "Zeige Projekt-Details."
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Konto"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "Arbeit getan"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr "Durchschn. geleistete Arbeit"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Status"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Projekte"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
-msgstr "Projekt wird aktualisiert ..."
+msgstr "Projekt wird aktualisiert..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
-msgstr "Projekt wird fortgesetzt ..."
+msgstr "Projekt wird fortgesetzt..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
-msgstr "Projekt wird angehalten"
+msgstr "Projekt wird angehalten..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
-msgstr "Erlaubt dem Projekt neue Aufgaben anzufordern."
+msgstr "Erlaubt dem Projekt neue Aufgaben anzufordern..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
-msgstr "Verbietet dem Projekt neue Aufgaben anzufordern."
+msgstr "Verbietet dem Projekt neue Aufgaben anzufordern..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
-msgstr "Projekt wird zurückgesetzt ..."
+msgstr "Projekt wird zurückgesetzt..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Wollen Sie dieses Projekt '%s' wirklich zurücksetzen?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Projekt zurücksetzen"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
-msgstr "Projekt wird abgemeldet ..."
+msgstr "Projekt wird abgemeldet..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
-msgstr "Webbrowser wird gestartet ..."
+msgstr "Webbrowser wird gestartet..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Fortsetzen"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr ""
 "Setzt die unterbrochene Arbeit an dem ausgewählten (markierten) Projekt "
 "fort."
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "Neue Aufgaben zulassen"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr ""
 "Erlaubt das Anfordern von neuen Aufgaben für das ausgewählte (markierte) "
 "Projekt."
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr ""
 "Fordert keine neuen Aufgaben für das ausgewählte (markierte) Projekt mehr "
 "an."
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Angehalten durch Benutzer"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "Erhält keine neue Aufgaben"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr "Projekt beendet - OK für Abmelden"
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr "Abmelden, sobald Aufgaben erledigt sind"
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Wartende Scheduleranfrage"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr "Laufende Scheduleranfrage"
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "Kommunikation verzögert um "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr "Projektgitter"
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr "Festplattennutzung gesamt"
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr "Festplattennutzung durch BOINC-Projekte"
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Festplatte"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr "Nicht mit einem BOINC-Projekt verbunden - 0 Bytes."
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr "Von BOINC belegt: "
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr "Frei, für BOINC verfügbar:"
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr "Frei, nicht für BOINC verfügbar:"
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr "Frei:"
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr "Anderweitig belegt: "
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Benutzer Gesamt"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Benutzer Durchschnitt"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Rechner Gesamt"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Rechner Durchschnitt"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
 msgstr "Letztes Update: Vor %.0f Tagen."
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Benutzer Gesamt"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr "Gesamtpunktzahl des Teilnehmers anzeigen"
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "Benutzer Durchschnitt"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr "Durchschnittliche Punktzahl des Teilnehmers Anzeigen"
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Rechner Gesamt"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr "Gesamtpunktzahl für den Computer anzeigen"
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "Rechner Durchschnitt"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr "Durchschnittliche Punktzahl für den Computer anzeigen"
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< &Vorheriges Projekt"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr "Zeige Grafik für das vorherige Projekt"
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "&Nächstes Projekt >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr "Grafik für das nächste Projekt anzeigen"
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "Ansicht"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "Alle Projekte"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr "Alle Projekte anzeigen, eine Grafik je Projekt"
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "Ein Projekt"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr "Eine Grafik mit dem ausgewählten Projekt anzeigen"
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr "Alle Projekte (Summe)"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr "Eine Grafik mit allen Projekten anzeigen"
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
-msgstr "Statistik"
-
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+msgstr "Statistiken"
+
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
-msgstr "Charts werden aktualisiert"
+msgstr "Grafiken werden aktualisiert..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Jetzt nochmal versuchen"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
-msgstr "Startet die Übertragung der ausgewählte (markierte) Datei erneut."
+msgstr "Startet die Übertragung der ausgewählten (markierten) Datei erneut."
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Abbrechen"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr ""
 "Entfernt die ausgewählte (markierte) Übertragung (dauerhaft) aus der "
 "Auftragsliste. Dies verhindert dass Sie für dies Resultat Cobblestones "
 "angerechnet bekommen."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "Datei"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Fortschritt"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
-msgstr "Grösse"
+msgstr "Größe"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "Vergangene Zeit"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Geschwindigkeit"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Ãœbertragung"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
-msgstr "Ãœbertragung wird jetzt wiederholt ..."
+msgstr "Ãœbertragung wird jetzt wiederholt..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
-msgstr "Ãœbertragung wird abgebrochen ..."
+msgstr "Ãœbertragung wird abgebrochen..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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"
@@ -3518,34 +3501,42 @@ msgstr ""
 "Achtung: Das Abbrechen der Übertragung macht diese ungültig\n"
 "und Sie werden keine Punkte dafür bekommen."
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Dateiübertragug abbrechen"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "Wiederhole in"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr "Hochladen pausiert"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "Herunterladen pausiert"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr " (Projektverzögerung: "
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ")"
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr "Ãœbertragungsgitter"
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 msgid "Aborting transfer(s)..."
-msgstr "Ãœbertragung wird abgebrochen ..."
+msgstr "Ãœbertragung wird abgebrochen..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
@@ -3555,80 +3546,85 @@ msgstr ""
 "Achtung: Das Abbrechen der Übertragung macht die Aufgabe ungültig\n"
 "und Sie werden keine Punkte dafür bekommen."
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 msgid "Abort File Transfer(s)"
 msgstr "Dateiübertragug abbrechen"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr "Zeige aktive Aufgaben"
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr "Zeigt nur aktive Aufgaben an."
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr ""
 "Zeigt die Anwendungsgrafik der ausgewählten (markierten), aktiven Berechnung "
 "in einem Fenster."
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "Unterbricht die Arbeit an der ausgewählten (markierten) Berechnung."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Abbrechen"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr ""
 "Bricht die Arbeit an der ausgewählten (markierten) Berechnung dauerhaft ab. "
 "Diese zählt dann auch nicht mehr für die Statistik. Das kann nicht "
 "rückgängig gemacht werden. "
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr "Zeige Aufgabendetails."
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Name"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr "Vergangen"
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "Verbleibende Zeit"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Aufgaben"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
-msgstr "Aufgabe wird fortgesetzt ..."
+msgstr "Aufgabe wird fortgesetzt..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
-msgstr "Aufgabe wird angehalten ..."
+msgstr "Aufgabe wird angehalten..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
-msgstr "Zeigt die Grafik für Aufgabe ..."
+msgstr "Zeigt die Grafik für Aufgabe..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Berechnung wird abgebrochen ..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
@@ -3636,36 +3632,62 @@ msgstr ""
 "Wollen Sie die Aufgabe '%s' wirklich abbrechen?\n"
 "(Fortscshritt: %s, Status: %s)"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "Wollen Sie diese %d Aufgaben wirklich abbrechen?"
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "Abbrechen"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Berechnung wird abgebrochen..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr "Zeige alle Aufgaben"
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr " Zeige alle Aufgaben."
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr "Berechnung für diese Auffgabe wiederaufnehmen."
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr "Unterbricht die Arbeit an der ausgewählten (markierte) Aufgabe."
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr "GPU fehlt,"
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
-msgstr "- Eine Anwendung läuft exklusiv."
+msgstr " - Eine Anwendung läuft exklusiv."
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr "(nicht CPU-intensiv)"
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr "Aufgabengitter"
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
@@ -3673,12 +3695,12 @@ msgstr ""
 "Wollen Sie die Aufgabe '%s' wirklich abbrechen?\n"
 "(Fortscshritt: %s %%, Status: %s)"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
-msgstr "Wissenschaftliche Anwendungen bei World Community Grid umstellen."
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr "Mit einem Projekt oder Kontomanager verbinden."
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3692,13 +3714,15 @@ msgstr ""
 "Projekte, die mit diesem Assistenten aufgenommen werden, werden nicht\n"
 "gelistet von oder verwaltet mittels %s."
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
-msgstr "Sie werden nun durch den Prozess der Projektanmeldung geführt."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
+"Wir assistieren Ihnen bei der Anbindung an ein Projekt oder eine "
+"Kontoverwaltung."
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3725,152 +3749,316 @@ msgstr ""
 "Um zu ändern, welche wissenschaftlichen Anwendungen Ihnen von World "
 "Community Grid gesendet werden klicken Sie bitte den folgenden Knopf:"
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
-msgstr "&Stoppe Nutzung von %s"
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-"Dieser Computer wird nun von %s entfernt. Von nun an,\n"
-"werden Projekte direkt von diesem Computer an- und abgemeldet.\n"
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "Kontoverwaltung"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"Sie werden nun durch die Anmeldung bei einem\n"
-"Kontomanger geführt.\n"
-"\n"
-"Wenn Sie sich bei einem einzelnen Projekt anmelden\n"
-"wollen, klicken Sie auf [Abbrechen] und wählen Sie\n"
-"\"Projekt anmelden ...\""
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "Debug-Flags"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "Fehler bei Projekt-Eigenschaften"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr "Fehler bei Projektkommunikation"
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "Fehler bei Projekt-Eigenschaften-URL"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "Die Kontoeröffnung ist abgeschaltet!"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "Die Client-Kontoeröffnung ist abgeschaltet."
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "Konto existiert bereits"
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "Projekt ist bereits auf diesem Client eingerichtet."
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "Projekt Verbindungsfehler!"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
-msgstr "Fehler beim Aufruf der Referenzseite"
-
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "Fehler bei der Netzwerkerkennung."
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr "Wissenschaftliche Anwendungen bei World Community Grid umstellen."
 
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "Um fortzufahren auf [Weiter >] klicken."
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "Wollen Sie wirklich abbrechen?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "Frage"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "&Weiter >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< &Zurück"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "&Beenden"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
 #, c-format
 msgid "New page inserted. Index = %i"
 msgstr "Neue Seite eingefügt. Index = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
 #, c-format
 msgid "New page appended. Index = %i"
 msgstr "Neue Seite angehängt. Index = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
 #, c-format
 msgid "Old Page Index = %i"
 msgstr "Alter Seitenindex = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
 #, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr "OnDropTarget: index by HitTest = %i"
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr "Diagrammsteuerung"
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr "gebe Anfangs- und Endzeit für das Rechnen im Format HH:MM-HH:MM ein"
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
-msgstr "gebe Anfangs- und Endzeit der Netzwerknutzung im Format HH:MM-HH:MM ein"
+msgstr ""
+"geben Sie die Anfangs- und Endzeiten der Netzwerknutzung im Format HH:MM-"
+"HH:MM ein"
+
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "&Fenster schließen\tCtrl+F"
+
+#~ msgid "&News\tCtrl+Shift+N"
+#~ msgstr "&Nachrichten\tCtrl+Shift+N"
+
+#~ msgid "Display news"
+#~ msgstr "Nachrichten anzeigen"
+
+#~ msgid "&Projects\tCTRL+SHIFT+P"
+#~ msgstr "&Projekte\tSTRG+UMSCH+P"
+
+#~ msgid "&Tasks\tCTRL+SHIFT+T"
+#~ msgstr "&Aufgaben\tSTRG+UMSCH+A"
+
+#~ msgid "Trans&fers\tCTRL+SHIFT+X"
+#~ msgstr "Ü&bertragungen\tSTRG+UMSCH+B"
+
+#~ msgid "&Messages\tCTRL+SHIFT+M"
+#~ msgstr "&Meldungen\tSTRG+UMSCH+M"
+
+#~ msgid "&Statistics\tCTRL+SHIFT+S"
+#~ msgstr "&Statistik\tSTRG+UMSCH+S"
+
+#~ msgid "&Disk usage\tCTRL+SHIFT+D"
+#~ msgstr "&Festplatte\tSTRG+UMSCH+F"
+
+#~ msgid "&News\tCTRL+SHIFT+N"
+#~ msgstr "&Nachrichten\tSTRG+UMSCH+N"
+
+#~ msgid ""
+#~ "You currently are not authorized to manage the client.\n"
+#~ "Please contact your administrator to add you to the 'boinc_master' user "
+#~ "group."
+#~ msgstr ""
+#~ "Sie sind nicht autorisiert diesen Client zu verwalten.Bitte fragen Sie "
+#~ "Ihren Administrator, ob er sie zu der lokalen Nutzergruppe 'boinc_master' "
+#~ "hinzufügen kann."
+
+#~ msgid ""
+#~ "BOINC ownership or permissions are not set properly; please reinstall "
+#~ "BOINC.\n"
+#~ "(Error code %d)\n"
+#~ msgstr ""
+#~ "BOINC Eigentümer- und/oder Zugriffsrechte sind nicht richtig gesetzt. "
+#~ "Bitte BOINC neu installieren.\n"
+#~ "(Fehlercode: %d)"
+
+#~ msgid "User information"
+#~ msgstr "Teilnehmerinformation"
+
+#~ msgid "Account Manager URL"
+#~ msgstr "Kontoverwaltung URL:"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "Geben Sie die URL für die Webseite der Kontoverwaltung ein."
+
+#~ msgid "Close BOINC Manager Window."
+#~ msgstr "BOINC-Manager-Fenster schließen."
+
+#~ msgid "Exit the %s"
+#~ msgstr "%s verlassen"
+
+#~ msgid ""
+#~ "Advanced views allow you to sort various columns and displays graphical "
+#~ "progress bars."
+#~ msgstr ""
+#~ "Tabellenansichten erlauben das Sortieren verschiedener Spalten und die "
+#~ "Darstellung von Fortschrittsbalken."
+
+#~ msgid "Attach to a project"
+#~ msgstr " Ein Projekt anmelden"
+
+#~ msgid "Attach to &account manager..."
+#~ msgstr "Bei einer Kontoverwaltung an&melden ..."
+
+#~ msgid "Attach to an account manager"
+#~ msgstr "Bei einer Kontoverwaltung anmelden"
+
+#~ msgid "Attach to &project"
+#~ msgstr "Projekt &anmelden"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "Projekt wird angemeldet"
+
+#~ msgid "Removal from %s completed."
+#~ msgstr "Entfernen von %s abgeschlossen."
+
+#~ msgid "Removal succeeded!"
+#~ msgstr "Entfernen erfolgreich!"
+
+#~ msgid "Write to disk at most every"
+#~ msgstr "Schreibe auf Festplatte höchstens alle"
+
+#, fuzzy
+#~ msgid "Already Attached to Project"
+#~ msgstr "Sie sind bereits mit dem Projekt verbunden"
+
+#~ msgid "Click here to go to %s's website."
+#~ msgstr "Klicke hier, um auf die Webseite von %s zu gelangen."
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr "Sie werden nun durch den Prozess der Projektanmeldung geführt."
+
+#~ msgid "&Stop using%s"
+#~ msgstr "&Stoppe Nutzung von %s"
+
+#~ msgid ""
+#~ "We'll now remove this computer from %s.  From now on,\n"
+#~ "attach and detach projects directly from this computer.\n"
+#~ msgstr ""
+#~ "Dieser Computer wird nun von %s entfernt. Von nun an,\n"
+#~ "werden Projekte direkt von diesem Computer an- und abgemeldet.\n"
+
+#~ msgid "Account manager"
+#~ msgstr "Kontoverwaltung"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to an account manager.\n"
+#~ "\n"
+#~ "If you want to attach to a single project, click Cancel,\n"
+#~ "then select the 'Attach to project' menu item instead."
+#~ msgstr ""
+#~ "Sie werden nun durch die Anmeldung bei einem\n"
+#~ "Kontomanger geführt.\n"
+#~ "\n"
+#~ "Wenn Sie sich bei einem einzelnen Projekt anmelden\n"
+#~ "wollen, klicken Sie auf [Abbrechen] und wählen Sie\n"
+#~ "\"Projekt anmelden ...\""
+
+#~ msgid "Debug Flags"
+#~ msgstr "Debug-Flags"
+
+#~ msgid "Project Properties Failure"
+#~ msgstr "Fehler bei Projekt-Eigenschaften"
+
+#~ msgid "Project Communication Failure"
+#~ msgstr "Fehler bei Projektkommunikation"
+
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "Fehler bei Projekt-Eigenschaften-URL"
+
+#~ msgid "Account Creation Disabled"
+#~ msgstr "Die Kontoeröffnung ist abgeschaltet!"
+
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "Die Client-Kontoeröffnung ist abgeschaltet."
+
+#~ msgid "Account Already Exists"
+#~ msgstr "Konto existiert bereits"
+
+#~ msgid "Project Already Attached"
+#~ msgstr "Projekt ist bereits auf diesem Client eingerichtet."
+
+#~ msgid "Project Attach Failure"
+#~ msgstr "Projekt Verbindungsfehler!"
+
+#~ msgid "Failure Communicating with Reference Site"
+#~ msgstr "Fehler beim Aufruf der Referenzseite"
+
+#~ msgid "Net Detection Failure"
+#~ msgstr "Fehler bei der Netzwerkerkennung."
 
 #~ msgid ""
 #~ "You can copy and paste the URL from your browser's\n"
 #~ "address bar."
 #~ msgstr ""
-#~ "Sie können die URL aus der Adresszeile ihres Internetbrowsers mit \"Kopieren "
-#~ "und Einfügen\" übertragen."
+#~ "Sie können die URL aus der Adresszeile ihres Internetbrowsers mit "
+#~ "\"Kopieren und Einfügen\" übertragen."
 
 #~ msgid "For a list of account managers go to:"
 #~ msgstr "Für eine Liste von Kontoverwaltungen besuchen sie:"
@@ -3908,7 +4096,8 @@ msgstr "gebe Anfangs- und Endzeit der Netzwerknutzung im Format HH:MM-HH:MM ein"
 #~ "Go to the project's web site to create an account. Your account\n"
 #~ "key will be emailed to you."
 #~ msgstr ""
-#~ "Dieses Projekt benutzt einen \"Kontoschlüssel\" um Sie zu identifizieren. Besuchen sie die Projektwebseite um eine Teilnehmerkonto anzulegen.\n"
+#~ "Dieses Projekt benutzt einen \"Kontoschlüssel\" um Sie zu identifizieren. "
+#~ "Besuchen sie die Projektwebseite um eine Teilnehmerkonto anzulegen.\n"
 #~ "Ihr Kontoschlüssel geht Ihnen per Mail zu."
 
 #~ msgid "An account key looks like:"
@@ -3923,8 +4112,12 @@ msgstr "gebe Anfangs- und Endzeit der Netzwerknutzung im Format HH:MM-HH:MM ein"
 #~ msgid "&Accessible View"
 #~ msgstr "&Barrierefreie Ansicht"
 
-#~ msgid "Accessible views are compatible with accessibility aids such as screen readers."
-#~ msgstr "Barrierefreie Ansichten sind kompatibel mit Zugangshilfen wie etwa Bildschirmleseprogrammen."
+#~ msgid ""
+#~ "Accessible views are compatible with accessibility aids such as screen "
+#~ "readers."
+#~ msgstr ""
+#~ "Barrierefreie Ansichten sind kompatibel mit Zugangshilfen wie etwa "
+#~ "Bildschirmleseprogrammen."
 
 #~ msgid "&Grid View"
 #~ msgstr "&Tabellenansicht"
@@ -3935,31 +4128,26 @@ msgstr "gebe Anfangs- und Endzeit der Netzwerknutzung im Format HH:MM-HH:MM ein"
 #~ msgid "Retry all deferred network communication."
 #~ msgstr "Verzögerte Netzwerk-Kommunikation wiederholen."
 
-#, c-format
 #~ msgid ""
 #~ "%s is going to shutdown the core client it is currently connected to.\n"
 #~ "NOTE: Choosing 'OK' will cause the select new computer dialog to appear \n"
 #~ "so you can attach to a different core client."
 #~ msgstr ""
 #~ "%s wird den derzeit verbundenen Basis Client herunterfahren.\n"
-#~ "HINWEIS: Auswahl von 'OK' wird den Dialog zur Auswahl eines neuen Computers anzeigen,\n"
+#~ "HINWEIS: Auswahl von 'OK' wird den Dialog zur Auswahl eines neuen "
+#~ "Computers anzeigen,\n"
 #~ " so daß mit einem neuen Basis Client verbunden werden kann."
 
-#, c-format
-#~ msgid ""
-#~ "%s is unable to communicate with a project and needs an Internet connection.\n"
-#~ "Please connect to the Internet, then select the 'retry communications' item off the advanced menu."
-#~ msgstr ""
-#~ "%s kann nicht mit einem Projekt kommunizieren und benötigt eine Internetverbindung.\n"
-#~ "Bitte verbinden Sie sich mit dem Internet und wählen sie anschließend \"Kommunikation wiederholen\" im Menü \"Extras\"."
-
-#, c-format
 #~ msgid ""
-#~ "BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
-#~ "(Error code %d)"
+#~ "%s is unable to communicate with a project and needs an Internet "
+#~ "connection.\n"
+#~ "Please connect to the Internet, then select the 'retry communications' "
+#~ "item off the advanced menu."
 #~ msgstr ""
-#~ "BOINC Eigentümer- und/oder Zugriffsrechte sind nicht richtig gesetzt. Bitte BOINC neu installieren.\n"
-#~ "(Fehlercode: %d)"
+#~ "%s kann nicht mit einem Projekt kommunizieren und benötigt eine "
+#~ "Internetverbindung.\n"
+#~ "Bitte verbinden Sie sich mit dem Internet und wählen sie anschließend "
+#~ "\"Kommunikation wiederholen\" im Menü \"Extras\"."
 
 #~ msgid "processors"
 #~ msgstr "Prozessoren"
@@ -3979,8 +4167,12 @@ msgstr "gebe Anfangs- und Endzeit der Netzwerknutzung im Format HH:MM-HH:MM ein"
 #~ msgid "Reminder Frequency:"
 #~ msgstr "Erinnerungshäufigkeit:"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
-#~ msgstr "In welchen Abständen (in Minuten) soll der Manager Sie an mögliche Verbindungsereignisse erinnern?"
+#~ msgid ""
+#~ "How often, in minutes, should the manager remind you of possible "
+#~ "connection events."
+#~ msgstr ""
+#~ "In welchen Abständen (in Minuten) soll der Manager Sie an mögliche "
+#~ "Verbindungsereignisse erinnern?"
 
 #~ msgid "free disk space - "
 #~ msgstr "Freier Festplattenplatz - "
@@ -3991,6 +4183,5 @@ msgstr "gebe Anfangs- und Endzeit der Netzwerknutzung im Format HH:MM-HH:MM ein"
 #~ msgid "Google Comm Failure"
 #~ msgstr "Google Kommunikationsfehler"
 
-#, c-format
 #~ msgid "Yahoo Comm Failure"
 #~ msgstr "Yahoo Kommunikationsfehler"
diff --git a/locale/de/BOINC-Project-Generic.po b/locale/de/BOINC-Project-Generic.po
index 675ffde..80a9ba7 100644
--- a/locale/de/BOINC-Project-Generic.po
+++ b/locale/de/BOINC-Project-Generic.po
@@ -8,7 +8,7 @@ msgstr ""
 "Language-Team: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
 "Language: de\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 1.2.1\n"
@@ -1560,7 +1560,9 @@ msgstr ""
 #~ msgid "Really delete?"
 #~ msgstr "Wirklich löschen?"
 
-#~ msgid "Are you sure you want to delete the message with subject &quot;%1&quot; (sent by %2 on %3)?"
+#~ msgid ""
+#~ "Are you sure you want to delete the message with subject &quot;%1&quot; "
+#~ "(sent by %2 on %3)?"
 #~ msgstr ""
 #~ "Möchten Sie die Nachricht mit dem Betreff &quot;%1&quot; wirklich löschen "
 #~ "(gesendet von %2 am %3)?"
@@ -1571,8 +1573,11 @@ msgstr ""
 #~ msgid "No such message."
 #~ msgstr "Keine entsprechende Nachricht gefunden."
 
-#~ msgid "Account creation is disabled for %1 at the moment. Please try again later."
-#~ msgstr "Zur Zeit ist es nicht möglich, Konten bei %1 zu erstellen. Bitte versuchen Sie es später wieder."
+#~ msgid ""
+#~ "Account creation is disabled for %1 at the moment. Please try again later."
+#~ msgstr ""
+#~ "Zur Zeit ist es nicht möglich, Konten bei %1 zu erstellen. Bitte "
+#~ "versuchen Sie es später wieder."
 
 #~ msgid "Titles containing '%1'"
 #~ msgstr "Ãœberschriften, die '%1' enthalten"
@@ -1593,7 +1598,9 @@ msgstr ""
 #~ msgstr "Neue Nachricht"
 
 #~ msgid "If you have not already done so, %1download BOINC client software%2."
-#~ msgstr "Laden Sie die %1BOINC-Clientsoftware%2 herunter, wenn Sie das nicht bereits getan haben."
+#~ msgstr ""
+#~ "Laden Sie die %1BOINC-Clientsoftware%2 herunter, wenn Sie das nicht "
+#~ "bereits getan haben."
 
 #~ msgid "Teams"
 #~ msgstr "Teams"
diff --git a/locale/de/BOINC-Web.po b/locale/de/BOINC-Web.po
index 67255f3..1b638cb 100644
--- a/locale/de/BOINC-Web.po
+++ b/locale/de/BOINC-Web.po
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
 "PO-Revision-Date: 2009-06-28 06:26-0700\n"
 "Last-Translator: Christian Beer <djangofett at gmx.net>\n"
 "Language-Team: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
@@ -15,145 +15,192 @@ msgstr ""
 "X-Generator: Pootle 1.2.1\n"
 "X-Poedit-SourceCharset: utf-8\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
 msgstr "[zutreffendes auswählen]"
 
+#: poll.inc:47
 msgid "Other:"
 msgstr "Andere:"
 
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
 msgstr "Ja - Ich benutze BOINC auf meinem Rechner schon für..."
 
+#: poll_data.inc:22
 msgid "less than a week"
 msgstr "weniger als 1 Woche"
 
+#: poll_data.inc:23
 msgid "less than a month"
 msgstr "weniger als 1 Monat"
 
+#: poll_data.inc:24
 msgid "less than a year"
 msgstr "weniger als 1 Jahr"
 
+#: poll_data.inc:25
 msgid "more than a year"
 msgstr "mehr als 1 Jahr"
 
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
 msgstr "Nein - Ich habe BOINC benutzt, aber..."
 
+#: poll_data.inc:34
 msgid "I lost interest"
 msgstr "das Interesse verloren"
 
+#: poll_data.inc:35
 msgid "it was too complicated"
 msgstr "es war zu kompliziert"
 
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
 msgstr "Ich hatte es gestoppt und vergessen wieder zu starten"
 
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
 msgstr "es hat Probleme mit meinem Rechner gegeben"
 
+#: poll_data.inc:38
 msgid "it used too much electricity"
 msgstr "es hat zu viel Strom verbraucht"
 
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr "ich bin zu einem nicht-BOINC Projekt gewechselt"
 
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
 msgstr "Nein - ich habe versucht BOINC zu nutzen, aber..."
 
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
 msgstr "die Software hat sich nicht richtig installiert"
 
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
 msgstr "ich konnte nicht herausfinden wie man die Software benutzt"
 
+#: poll_data.inc:50
 msgid "I had network communication problems"
 msgstr "ich hatte Probleme mit der Netzwerkkommunikation"
 
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
 msgstr "ich konnte keinem Projekt beitreten"
 
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr "ich bin einem Projekt beigetreten, habe aber nie Arbeitspakete bekommen"
 
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
 msgstr "Nein - ich habe nicht versucht BOINC zu nutzen, weil..."
 
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr "Ich hatte Sicherheitsbedenken"
 
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr "ich an keinem der Projekte Interesse hatte"
 
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr "ich keine Genehmigung habe BOINC auf meinem Rechner zu installieren"
 
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr "für meinen Rechner keine entsprechende Version verfügbar war"
 
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr "Welche Art von Computern nutzen sie für BOINC?"
 
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr "Wo befinden sich diese?"
 
+#: poll_data.inc:87
 msgid "Home"
 msgstr "zu Hause"
 
+#: poll_data.inc:88
 msgid "Work"
 msgstr "auf Arbeit"
 
+#: poll_data.inc:89
 msgid "School"
 msgstr "in der Schule"
 
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr "Wie viele Rechner?"
 
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr ""
 "Wie viele Stunden pro Tag sind die Rechner, im Durchschnitt, eingeschalten?"
 
+#: poll_data.inc:119
 msgid "Age"
 msgstr "Alter"
 
+#: poll_data.inc:129
 msgid "Sex"
 msgstr "Geschlecht"
 
+#: poll_data.inc:131
 msgid "Male"
 msgstr "Mann"
 
+#: poll_data.inc:132
 msgid "Female"
 msgstr "Frau"
 
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr "Ihre Stufe von Fachwissen über Computer"
 
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr "Anfänger"
 
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr "fortgeschrittener Anfänger"
 
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr "Fortgeschritten"
 
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr "Woher haben Sie von BOINC Projekten erfahren?"
 
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr "Fernsehen/Radio/Zeitungen"
 
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr "von Freunden, Verwandten oder Arbeitskollegen"
 
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr "Diskussionsforen oder Webseiten"
 
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr "der BOINC Webseite"
 
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr "anderen Webseiten"
 
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
@@ -161,99 +208,128 @@ msgstr ""
 "Was sind die für Sie entscheidenden Faktoren bei einem BOINC Projekt "
 "teilzunehmen?"
 
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr "schön anzusehende Bildschirmschoner"
 
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr ""
 "eine faire und schnelle Vergabe von Guthaben nachdem die Arbeit erledigt "
 "wurde"
 
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr "mehr Guthaben von diesem Projekt als von anderen zu bekommen"
 
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr "hilfreiche und freundliche Diskussionsforen"
 
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr "Beteiligung der Projektmitarbeiter in den Diskussionsforen"
 
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr "eine informative Projektwebseite"
 
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr "die Wissenschaft ist wichtig und nutzbringend"
 
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr "Gemeinnützigkeit und die Offenlegung der Ergebnisse"
 
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr "persönliche Anerkennung wenn mein Rechner etwas gefunden hat"
 
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr "Veröffentlichungen des Projekts in wissenschaftlichen Magazinen"
 
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr "regelmäßige Newsletter des Projektes per E-Mail"
 
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr "Bei wie vielen BOINC Projekten beteiligen Sie sich?"
 
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr "Nutzen Sie BOINC als Bildschirmschoner?"
 
+#: poll_data.inc:192
 msgid "Yes"
 msgstr "Ja"
 
+#: poll_data.inc:193
 msgid "No"
 msgstr "Nein"
 
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr "Sie nutzen die Diskussionsforen um:"
 
+#: poll_data.inc:200
 msgid "to read information"
 msgstr "Informationen zu erhalten"
 
+#: poll_data.inc:201
 #, fuzzy
 msgid "to read and post information"
 msgstr "Informationen zu erhalten und abzugeben"
 
+#: poll_data.inc:202
 msgid "None"
 msgstr "gar nicht"
 
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr "Wo finden Sie Hilfe zu Problemen mit BOINC oder BOINC-Projekten?"
 
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr "Den Diskussionsforen der Projekte"
 
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr "Den BOINC Diskussionsforen"
 
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr "Den BOINC E-Mail Listen"
 
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr "Dem inoffiziellen BOINC-Wiki"
 
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr "Der Webseite eines Teams"
 
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr "Von Google oder einer anderen Suchmaschine"
 
 # #######################################<br />
 # download.php<br />
 # #######################################
+#: download.php:40
 msgid "Download BOINC"
 msgstr "BOINC herunterladen"
 
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr "%s für %s (%s MB)"
 
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -266,6 +342,7 @@ msgstr ""
 "stellen. <p> Nach der Installation von BOINC auf Ihrem Computer, können Sie "
 "diesen mit so vielen Projekten verbinden wie sie wollen."
 
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
@@ -274,21 +351,27 @@ msgstr ""
 "Hinweis: Wenn Ihr Computer mit einer NVIDIA Grafikkarte ausgestattet ist "
 "(GPU), könnten Sie damit %sdie Berechnung beschleunigen%s."
 
+#: download.php:120
 msgid "System requirements"
 msgstr "Systemanforderungen"
 
+#: download.php:121
 msgid "Release notes"
 msgstr "Versionshinweise"
 
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr "Hilfe"
 
+#: download.php:123
 msgid "All versions"
 msgstr "Alle Versionen"
 
+#: download.php:141
 msgid "BOINC: compute for science"
 msgstr "BOINC: Rechenkraft für die Wissenschaft"
 
+#: help.php:12
 #, php-format
 msgid ""
 "BOINC Online Help lets you talk one-on-one with experienced BOINC users, who "
@@ -301,6 +384,7 @@ msgstr ""
 "bei der Installation und Benutzung von BOINC unterstützen, %s eventuelle "
 "Probleme untersuchen und Hilfestellungen geben."
 
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -313,6 +397,7 @@ msgstr ""
 "nicht bereits Skype installiert haben, dann laden Sie es bitte herunter "
 "(%sSkype herunterladen%s) und kommen dann wieder zu dieser Seite zurück."
 
+#: 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 "
@@ -325,6 +410,7 @@ msgstr ""
 "System oder eine einfache E-Mail (falls sie kein Skype besitzen) nutzen um "
 "anderen zu helfen."
 
+#: help.php:31
 msgid ""
 "Volunteers speaking several languages are available. Please select a "
 "language:"
@@ -332,9 +418,11 @@ msgstr ""
 "Freiwillige in verschiedenen Sprachen stehen zur Verfügung. Bitte wählen sie "
 "eine Sprache:"
 
+#: help.php:47
 msgid "Be a Help Volunteer"
 msgstr "Seien sie ein freiwilliger Helfer"
 
+#: help.php:50
 #, php-format
 msgid ""
 "If you're an experienced BOINC user, we encourage you to %sbecome a Help "
@@ -345,6 +433,7 @@ msgstr ""
 "Helfer zu werden%s. Es ist eine tolle Möglichkeit der wissenschaftlichen "
 "Forschung und dem verteilten Rechnen zu helfen - und es macht Spaß!"
 
+#: help.php:56
 #, php-format
 msgid ""
 "If you're already a Help Volunteer: to edit your settings, %sclick here%s."
@@ -352,15 +441,64 @@ msgstr ""
 "Wenn sie bereits ein freiwilliger Helfer sind, können Sie hier Ihre "
 "%sEinstellungen ändern%s."
 
+#: index.php:23
+msgid "Computing power"
+msgstr ""
+
+#: index.php:25
+msgid "Top 100 volunteers"
+msgstr ""
+
+#: index.php:26
+msgid "Statistics"
+msgstr ""
+
+#: index.php:53
+msgid "Active:"
+msgstr ""
+
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
+
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
+msgstr ""
+
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
+
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
 msgid "Volunteer"
 msgstr "Helfer"
 
+#: index.php:88
 msgid "Download"
 msgstr "Herunterladen"
 
+#: index.php:90 index.php:125 index.php:163
 msgid "Documentation"
 msgstr "Dokumentation"
 
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -375,6 +513,7 @@ msgstr ""
 "%sBOINC Software herunterladen%s und ausführen. %sEintragen von%s E-Mail-"
 "Adresse und Passwort."
 
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
@@ -383,17 +522,88 @@ msgstr ""
 "Oder, wenn sie an verschiedenen Projekte teilnehmen, probieren sie einen "
 "%sKontomanager%s wie z.B. %sGridrepublic%s oder %sBAM!%s."
 
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
+
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
 # Gesucht: kurze und einfache Ãœbersetzungen um den Unterschied zwischen volunteer und grid darzustellen.
+#: index.php:250
 #, php-format
-#, fuzzy
+#, fuzzy, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
 "Open-Source Software für %sVolunteer Computing%s und %sGrid Computing%s."
 
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr "Boinc-Nutzer Umfrage"
 
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -415,24 +625,31 @@ msgstr ""
 "Antworten überschreiben die alten. <p> Die <a "
 "href=poll_results.php>aktuellen Ergebnisse</a> sind ebenfalls online."
 
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr "Benutzen Sie BOINC?"
 
+#: poll.php:30
 msgid "Your participation"
 msgstr "Ihre Beteiligung"
 
+#: poll.php:32
 msgid "Your computers"
 msgstr "Ihre Computer"
 
+#: poll.php:34
 msgid "You"
 msgstr "Sie"
 
+#: poll.php:39
 msgid "Nationality"
 msgstr "Nationalität"
 
+#: poll.php:44
 msgid "Comments"
 msgstr "Kommentare"
 
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
@@ -440,12 +657,15 @@ msgstr ""
 "Bitte teilen sie uns mit, wie BOINC und die Projekte, die es nutzen, "
 "verbessert werden könnten:"
 
+#: poll.php:50
 msgid "When done click:"
 msgstr "Wenn sie fertig sind, hier klicken:"
 
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr "Fehler - Ergebnisse konnten nicht gespeichert werden"
 
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
@@ -453,11 +673,20 @@ msgstr ""
 "Ein interner Fehler hat uns daran gehindert, ihre Umfrageergebnisse zu "
 "speichern. Bitte versuchen sie es später noch einmal."
 
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr "Umfrageergebnis gespeichert"
 
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr "Vielen Dank, dass sie bei der BOINC-Nutzerumfrage mitgemacht haben."
 
+#: poll_results.php:195
 msgid "Survey results"
 msgstr "Umfrageergebnisse"
+
+#: poll_results.php:196
+msgid ""
+"These are the current results of the <a href=poll.php>BOINC user survey</"
+"a>.  This page is updated every hour."
+msgstr ""
diff --git a/locale/de/pootle-boincclient610-de.prefs b/locale/de/pootle-boincclient610-de.prefs
new file mode 100644
index 0000000..6907b83
--- /dev/null
+++ b/locale/de/pootle-boincclient610-de.prefs
@@ -0,0 +1,9 @@
+# Pootle preferences for project boinctrunk, language de
+
+rights:
+  JensSeidler = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  ChristianB = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/de/pootle-boinctrunk-de.prefs b/locale/de/pootle-boinctrunk-de.prefs
deleted file mode 100644
index e5d123d..0000000
--- a/locale/de/pootle-boinctrunk-de.prefs
+++ /dev/null
@@ -1,9 +0,0 @@
-# Pootle preferences for project boinctrunk, language de
-
-rights:
-  JensSeidler = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  default = u'view, suggest, archive, pocompile'
-  nobody = u'view'
-  ChristianB = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/el/BOINC-Manager.mo b/locale/el/BOINC-Manager.mo
index 2e5e6d5..acf3f57 100644
Binary files a/locale/el/BOINC-Manager.mo and b/locale/el/BOINC-Manager.mo differ
diff --git a/locale/el/BOINC-Manager.po b/locale/el/BOINC-Manager.po
index 3c44c9e..8ef48fa 100644
--- a/locale/el/BOINC-Manager.po
+++ b/locale/el/BOINC-Manager.po
@@ -1,467 +1,529 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 4.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
-"PO-Revision-Date: 2005-11-09 07:38+0100\n"
-"Last-Translator: Jens Seidler <webmaster at boinc.de>\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2009-12-14 13:46-0700\n"
+"Last-Translator: Nick Liolios <anarchist_jesus at hotmail.com>\n"
 "Language-Team: BOINC Development Team <rwalton at ssl.berkeley.edu>\n"
+"Language: el\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.2.1\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 1.2.1\n"
 "X-Poedit-Language: English\n"
 "X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: iso-8859-1\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: UNITED STATES\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "Κωδικός:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "Επιβεβαίωση Κωδικού:"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 #, fuzzy
 msgid "&Username:"
 msgstr "Όνομα Χρήστη:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "Διεύθυνση email:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "Σύνδεση σε πρόγραμμα"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
-msgstr ""
+msgstr "Ενημέρωση του προγράμματος διαχείρισης λογαριασμού"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
-msgstr "Σύνδεση στο πρόγραμμα διαχείρησης λογαριασμού"
+msgstr "Σύνδεση στο πρόγραμμα διαχείρισης λογαριασμού"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
 #, c-format
-#, fuzzy
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr ""
-"Το ελάχιστο μήκος κωδικού για αυτό το πρόγραμμα είναι %d χαρακτήρες. "
-"Παρακαλούμε επιλέξτε άλλο κωδικο."
+"Το ελάχιστο μήκος κωδικού για αυτό το έργο είναι %d χαρακτήρες. Παρακαλούμε "
+"επιλέξτε άλλον κωδικο."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
 #, c-format
-#, fuzzy
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
-"Το ελάχιστο μήκος κωδικού για αυτό το πρόγραμμα διαχείρησης λογαριασμού "
-"είναι %d χαρακτήρες. Παρακαλούμε επιλέξτε άλλο κωδικο."
+"Το ελάχιστο μήκος κωδικού για αυτό το πρόγραμμα διαχείρισης λογαριασμού "
+"είναι %d χαρακτήρες. Παρακαλούμε επιλέξτε άλλον κωδικο."
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr ""
 "Ο κωδικός δεν συμφωνεί με τον κωδικό επιβεβαίωσης. Παρακαλούμε "
 "επαναπληκτρολογήστε τους."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "Διεύθυνση διαχειριστή λογαριασμού"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr "Επιλογή ενός προγράμματος διαχείρισης λογαριασμού"
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Εισάγετε την διεύθυνση της ιστοσελίδας του διαχειριστή λογαριασμού."
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"Για να επιλέξετε ένα πρόγραμμα διαχείρισης λογαριασμού, πατήστε το όνομά του "
+"ή πληκτρολογήστε τη διεύθυνσή του παρακάτω."
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
-msgstr "Διεύθυνση ιστοσελίδας διαχειρηστή λογαριασμού:"
+msgstr "Διεύθυνση ιστοσελίδας διαχειριστή λογαριασμού:"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
+#, fuzzy, c-format
 msgid "Communicating with %s."
-msgstr ""
+msgstr "Γίνεται επικοινωνία με τον εξυπηρετητή (server)."
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
-msgstr ""
+msgstr "Γίνεται επικοινωνία με τον εξυπηρετητή (server)."
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
-msgstr ""
+msgstr "Παρακαλούμε περιμένετε..."
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Σύνδεση"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Αποσύνδεση"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "Έξοδος"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:345
-#, fuzzy
-msgid "Attach to &project..."
-msgstr "Σύνδεση σε πρόγραμμα..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:346
-#, fuzzy
-msgid "Attach to a project"
-msgstr "Σύνδεση σε πρόγραμμα"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:350
-#, fuzzy
-msgid "Attach to &account manager..."
-msgstr "Σύνδεση στο πρόγραμμα διαχείρησης λογαριασμού"
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Σύνδεση σε ένα διαχειριστή λογαριασμού"
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+#, fuzzy
+msgid "Attach to &project..."
+msgstr "Σύνδεση σε πρόγραμμα..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Σύνδεση σε ένα πρόγραμμα για έναρξη εκτέλεσης εργασιών"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "Διαρκής εκτέλεση"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 #, fuzzy
 msgid "Allow work regardless of preferences"
 msgstr "Εκτελεί εργασίες ανεξαρτήτως των προτιμήσεών σας"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "Εκτέλεση βάση προτιμήσεων"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 #, fuzzy
 msgid "Allow work according to your preferences"
 msgstr "Εκτελεί εργασίες σύμφωνα με τις προτιμήσεις σας"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "Προσωρινή παύση"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 #, fuzzy
 msgid "Stop work regardless of preferences"
 msgstr "Σταματάει την εκτέλεση εργασιών ανεξαρτήτων των προτιμήσεών σας"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+#, fuzzy
+msgid "Allow GPU work regardless of preferences"
+msgstr "Εκτελεί εργασίες ανεξαρτήτως των προτιμήσεών σας"
+
+#: clientgui/AdvancedFrame.cpp:473
+#, fuzzy
+msgid "Use GPU based on &preferences"
+msgstr "Εκτέλεση βάση προτιμήσεων"
+
+#: clientgui/AdvancedFrame.cpp:474
+#, fuzzy
+msgid "Allow GPU work according to your preferences"
+msgstr "Εκτελεί εργασίες σύμφωνα με τις προτιμήσεις σας"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+#, fuzzy
+msgid "Stop GPU work regardless of preferences"
+msgstr "Σταματάει την εκτέλεση εργασιών ανεξαρτήτων των προτιμήσεών σας"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "Συνεχής πρόβαση στο δίκτυο"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 #, fuzzy
 msgid "Allow network activity regardless of preferences"
 msgstr "Συνδέεται στο δίκτυο ανεξαρτήτως των προτιμήσεών σας"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+#, fuzzy
+msgid "Network activity based on pre&ferences"
 msgstr "Πρόσβαση στο δίκτυο βάση προτιμήσεων"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 #, fuzzy
 msgid "Allow network activity according to your preferences"
 msgstr "Συνδέεται στο δίκτυο σύμφωνα με τις προτιμήσεις σας"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+#, fuzzy
+msgid "Network activity s&uspended"
 msgstr "Προσωρινή παύση πρόσβασης στο δίκτυο"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 #, fuzzy
 msgid "Stop BOINC network activity"
 msgstr "Σταματάει τη σύνδεση στο δίκτυο του BOINC"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "Παραμετροποίηση επιλογών GUI και ρυθμίσεων proxy"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "Connect to another computer running %s"
 msgstr "Σύνδεση σε κάποιο άλλο υπολογιστή ο οποίο τρέχει το BOINC"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "Επιλογή Υπολογιστή..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 #, fuzzy
 msgid "Run CPU &benchmarks"
 msgstr "Εκτέλεση μετρήσεων"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "Εκτέλεση μετρήσεων υπολογιστικής ισχύως επεξεργαστή για το BOINC"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:483
-#, fuzzy
-msgid "Attach to &project"
-msgstr "Σύνδεση στο πρόγραμμα"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "Σύνδεση σε ένα πρόγραμμα για έναρξη εκτέλεσης εργασιών"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
 msgid "Show information about %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "Show information about BOINC and %s"
 msgstr "Εμφάνιση πληροφοριών για το BOINC Manager"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "Πληροφορίες άδειας χρήσης και copyright."
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "Αρχείο"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "Βοήθεια"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -470,61 +532,66 @@ msgid ""
 "Do you want to stop using %s?"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "Σύνδεση σε πρόγραμμα..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "Επανάληψη επικοινωνίας για το(τα) πρόγραμμα(τα)"
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr ""
 "Η εξ' ορισμού γλώσσα του BOINC Manager έχει αλλάξει. Ούτως ώστε αυτή η "
 "αλλαγή να τεθεί σε εφαρμογή πρέπει να επανεκκινήσετε το διαχειριστή."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Επανάληψη επικοινωνίας για το(τα) πρόγραμμα(τα)"
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "Σύνδεση στο %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "Connected to %s (%s)"
 msgstr "Συνδέθηκε στο %s"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr ""
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 #, fuzzy
 msgid ""
 "An account with that username already exists and has a\n"
@@ -538,11 +605,11 @@ msgstr ""
 "Παρακαλούμε επισκεφθείτε την ιστοσελίδα του προγράμματος και ακολουθήστε τις "
 "οδηγίες εκεί."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "Αυτή η διεύθυνση email χρησιμοποείται ήδη"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -555,106 +622,118 @@ msgstr ""
 "Παρακαλούμε επισκεφθείτε την ιστοσελίδα του προγράμματος και ακολουθήστε τις "
 "οδηγίες εκεί."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1229
+#, fuzzy
+msgid "Cancel"
+msgstr "Ακύρωση"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "Ο κωδικός που εισάγατε είναι λανθασμένος, παρακαλούμε ξαναδοκιμάστε"
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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 ""
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Ιστοσελίδες"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
 "Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
@@ -662,39 +741,35 @@ msgstr ""
 "Το BOINC χρειάζεται να συνδεθεί στο δίκτυο.\n"
 "Να το επιχειρήσει τώρα;"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s is connecting to the Internet."
 msgstr "Το BOINC συνδέεται στο διαδίκτυο."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
 "Please connect to the Internet, or select a default connection\n"
 "using Advanced/Options/Connections."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "Το BOINC συνθέθηκε επιτυχώς στο διαδίκτυο"
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "Το BOINC απέτυχε να συνδεθεί στο διαδίκτυο."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
@@ -702,124 +777,152 @@ msgstr ""
 "Το BOINC εντόπισε ότι είναι συνδεδεμένο στο διαδίκτυο. Ανανέωση όλων των "
 "προγραμμάτων και επανάληψη όλων των μεταφορών."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "Το BOINC αποσυνδέθηκε επιτυχώς από το διαδίκτυο."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "Το BOINC απέτυχε να αποσυνδεθεί από το διαδίκτυο."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "BOINC Manager"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr ""
 "Εκίννηση του BOINC ούτως ώστε μόνο το εικονίδιο στη μπάρα να είναι ορατό"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Αυτόματη Αναγνώριση)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Άγνωστο)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Καθορισμός από το Χρήστη)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 #, fuzzy
 msgid "Network activity is suspended."
 msgstr "Προσωρινή παύση πρόσβασης στο δίκτυο"
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "Αποτυχία σύνδεσης σε πρόγραμμα"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 #, fuzzy
 msgid "Failed to update account manager"
 msgstr "Αποτυχία σύνδεσης στο διαχειριστή λογαριασμού"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 #, fuzzy
 msgid "Failed to remove account manager"
 msgstr "Αποτυχία σύνδεσης στο διαχειριστή λογαριασμού"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "Αποτυχία σύνδεσης στο διαχειριστή λογαριασμού"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -827,27 +930,26 @@ msgid ""
 "Click Finish to close."
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "Πατήστε Τέλος για να κλείσετε"
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "Μηνύματα από το διακομιστή:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "Σύνδεση σε πρόγραμμα"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "Επιτυχημένη σύνδεση στο πρόγραμμα."
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -856,479 +958,471 @@ msgstr ""
 "όπου\n"
 "μπορείτε να καθορίσετε το όνομα του λογαριασμού σας και τις προτιμήσεις σας."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr ""
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr ""
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "Σύνδεση στο διαχειριστή λογαριασμού"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "Επιτυχημένη σύνδεση στο πρόγραμμα."
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "Επιτυχημένη σύνδεση στο διαχειριστή λογαριασμού."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "Έκδοση:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Copyright:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 #, fuzzy
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
 "(C) 2005 University of California at Berkeley.\n"
 "All Rights Reserved."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr "Berkeley Open Infrastructure for Network Computing"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "Εντάξει"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
 "Click Clear to restore web-based settings."
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
 msgid "% of the processors"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
 #, no-c-format
-#, fuzzy
+#, fuzzy, no-c-format
 msgid "% CPU time"
 msgstr "Χρόνος Επεξεργαστή"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-#, fuzzy
-msgid "Cancel"
-msgstr "Ακύρωση"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "Βοήθεια"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1338,8 +1432,8 @@ msgid ""
 "exit the Manager, then choose from the following options:"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1349,540 +1443,497 @@ msgid ""
 "tasks at the times you selected in your preferences."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "Ακύρωση"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "Γενικά"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 #, fuzzy
 msgid "User name"
 msgstr "Όνομα Χρήστη"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Μερίδα πόρων"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 #, fuzzy
 msgid "Attached via account manager"
 msgstr "Σύνδεση στο διαχειριστή λογαριασμού"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Εφαρμογή"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Προθεσμία αναφοράς"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "Χρόνος Επεξεργαστή"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 #, fuzzy
 msgid "Elapsed time"
 msgstr "Χρόνος που περάσει"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Νέο"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "Αποτυχία κατεβάσματος"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "Κατέβασμα"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Παύθηκε"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 #, fuzzy
 msgid " - CPU benchmarks"
 msgstr "Εκτέλεση μετρήσεων"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "Εκτελείται"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Λάθος Υπολογισμών"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "Αποτυχία ανεβάσματος"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "Ανέβασμα"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Εγκαταλείφθηκε από το χρήστη"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Αναγνώριση"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "Έτοιμο για αναφορά"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Σφάλμα: μη έγκυρη κατάσταση '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "Ρυθμίσεις σύνδεσης μέσω τηλεφώνου και Ιδιωτικού Εικονικού Δικτύου"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "Καθορισμός Εξ' ορισμού"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "Καθάρισμα Εξ' ορισμού"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Εξ' ορισμού Σύνδεση:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Συνδέσεις"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Σύνδεση μέσω διακομιστή HTTP proxy"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "Ρυθμίσεις διακομιστή HTTP Proxy"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Διεύθυνση:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Πόρτα:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Αφήστε τα κενά εάν δεν χρειάζονται"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Όνομα Χρήστη"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Κωδικός:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "HTTP Proxy"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Σύνδεση μέσω διακομιστή SOCKS proxy"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "Ρυθμίσεις διακομιστή SOCKS Proxy"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "SOCKS Proxy"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s - Select Computer"
 msgstr "Επιλογή Υπολογιστή"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Όνομα host:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
 msgstr ""
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
+#, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1892,254 +1943,249 @@ msgid ""
 "then restart the %s."
 msgstr ""
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "Ομάδες Συζητήσεων"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "Επικοινωνήστε με άλλους χρήστες στις ομάδες συζητήσεων του SETI at Home"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "Υποβάλετε ερωτήσεις να αναφέρετε προβλήματα"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "Ο Λογαριασμός σας"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr ""
 "Εμφάνιση πληροφοριών σχετικών με το λογαριασμό σας και το σύνολο των βαθμών "
 "σας"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "Οι Προτιμήσεις σας"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr ""
 "Εμφάνιση και επεξεργασία του προφίλ λογαριασμού σας στο SETI at Home και των "
 "προτιμήσεών σας."
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "Τα Αποτελέσματά σας"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr ""
 "Εμφάνιση των αποτελεσμάτων και εργασιών της τελευταιας εβδομάδας (ή "
 "παραπάνω)"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "Οι Υπολογιστές σας"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr ""
 "Εμφάνιση λίστας με όλους τους υπολογιστές στους οποίους εκτελείτε στο "
 "SETI at Home"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "Η Ομάδα σας"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "Πληροφορίες σχετικά με την ομάδα σας"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr ""
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr ""
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr ""
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr ""
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr ""
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr ""
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr ""
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr ""
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr ""
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 #, fuzzy
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr ""
 "Εμφάνιση και επεξεργασία του προφίλ λογαριασμού σας στο SETI at Home και των "
 "προτιμήσεών σας."
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr ""
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 #, fuzzy
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr ""
 "Εμφάνιση λίστας με όλους τους υπολογιστές στους οποίους εκτελείτε στο "
 "SETI at Home"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr ""
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr ""
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr ""
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr ""
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Ομάδα"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr ""
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr ""
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 #, fuzzy
 msgid "News"
 msgstr "Νέο"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr ""
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr ""
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr ""
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr ""
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr ""
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr ""
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr ""
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr ""
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr ""
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr ""
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr ""
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr ""
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr ""
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "Ανάκτηση κατάστασης συστήματος: παρακαλούμε περιμένετε..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "Ανάκτηση πληροφοριών υπολογιστή: παρακαλούμε περιμένετε..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "Δεν υπάρχει σύνδεση στο διαδίκτυο"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Παρακαλούμε συνδεθείτε στο διαδίκτυο και ξαναδοκιμάστε."
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Δεν βρέθηκε το πρόγραμμα"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/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 ""
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "Δεν βρέθηκε ο διαχειριστής λογαριασμού"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2147,50 +2193,63 @@ msgid ""
 "Please check the URL and try again."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
+#, fuzzy
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
+"Για να επιλέξετε ένα πρόγραμμα διαχείρισης λογαριασμού, πατήστε το όνομά του "
+"ή πληκτρολογήστε τη διεύθυνσή του παρακάτω."
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "Διεύθυνση προγράμματος:"
 
-#: clientgui/ProjectInfoPage.cpp:320
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:321
-#, fuzzy
-msgid "Already Attached to Project"
-msgstr "Έχετε ήδη συνδεθεί σε αυτό το πρόγραμμα"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
 msgstr ""
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
 msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 #, fuzzy
 msgid ""
 "Communicating with project\n"
@@ -2199,17 +2258,17 @@ msgstr ""
 "Επικοινωνία με το πρόγραμμα \n"
 "Παρακαλούμε περιμένετε..."
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
 msgstr ""
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr ""
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2220,13 +2279,13 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2243,123 +2302,112 @@ msgid ""
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Ρυθμίσεις proxy"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "HTTP proxy"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "Διακομιστής:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "Αυτόματος εντοπισμός"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "SOCKS proxy"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Πρόγραμμα"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "Χρόνος"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Μήνυμα"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Αντιγραφή όλων των μηνυμάτων στο clipboard"
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 #, fuzzy
 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 ""
@@ -2367,374 +2415,363 @@ msgstr ""
 "πολλαπλά μηνύματα κρατώντας πατημένο το κουμπί shift ή control όταν κάνετε "
 "κλίκ στα μηνύματα."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
 "Αντιγραφή επιλεγμένων μηνυμάτων στο clipboard. Μπορείτε να επιλέξετε "
 "πολλαπλά μηνύματα κρατώντας πατημένο το κουμπί shift ή control όταν κάνετε "
 "κλίκ στα μηνύματα."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "Είστε σίγουρος ότι θέλετε να αποχωρήσετε από το '%s';"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "Αποχώρηση από το Πρόγραμμα"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 #, fuzzy
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr ""
 "Είστε σίγουρος ότι επιθυμείτε να εμφανίσετε γραφικά σε ένα απομακρυσμένο "
 "υπολογιστή;"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Εμφάνιση γραφικών"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 #, fuzzy
 msgid "Application: "
 msgstr "Εφαρμογή"
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 #, fuzzy
 msgid "Elapsed Time: "
 msgstr "Χρόνος που περάσει"
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Το πρόγραμμα είναι προσωρινά μη διαθέσιμο"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2744,11 +2781,11 @@ msgstr ""
 "\n"
 "Παρακαλούμε δοκιμάστε αργότερα."
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "Ο διαχειριστής λογαριασμού είναι προσωρινά μη διαθέσιμος"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2758,34 +2795,34 @@ msgstr ""
 "\n"
 "Παρακαλούμε δοκιμάστε αργότερα."
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "Παρακαλούμε καθορίστε ένα κλειδί λογαριασμού για να συνεχίσετε."
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr ""
 "Μη έγκυρο κλειδί λογαριασμού: Παρακαλούμε εισάγετε ένα έγκυρο κλειδί "
 "λογαριασμού"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Αντίθεση κατά την επικύρωση"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr ""
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "Δεν βρέθηκε διεύθυνση"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2795,18 +2832,18 @@ msgstr ""
 "Για παράδειγμα:\n"
 "http:///www.example.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "Μη έγκυση διεύθυνση"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 #, fuzzy
 msgid ""
 "Please specify a valid URL.\n"
@@ -2817,192 +2854,159 @@ msgstr ""
 "Για παράδειγμα:\n"
 "boincproject.example.com"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "Το '%s' δεν περιέχει ένα έκγυρο όνομα υπολογιστή"
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "Το '%s' δεν περιέχει μια έγκυρη διαδρομή."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 #, fuzzy
 msgid "Commands"
 msgstr "Εντολές"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Αντιγραφή όλων των μηνυμάτων"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Αντιγραφή επιλεγμένων μηνυμάτων"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Μηνύματα"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "Αντιγραφή όλων των μηνυμάτων στο clipboard"
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 #, fuzzy
 msgid "Copying selected messages to the clipboard..."
 msgstr "Αντιγραφή όλων των μηνυμάτων στο clipboard"
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 #, fuzzy
 msgid "Show all messages"
 msgstr "Αντιγραφή όλων των μηνυμάτων"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 #, fuzzy
 msgid "Copying selected messages to Clipboard..."
 msgstr "Αντιγραφή όλων των μηνυμάτων στο clipboard"
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 #, fuzzy
 msgid "BOINC Website"
 msgstr "Ιστοσελίδα BOINC"
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Ανανέωση"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 #, fuzzy
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr ""
 "Αναφορά ολοκληρωμένων εργασιών, ανάκτηση βαθμολογίας, ανάκτηση προτιμήσεων "
 "και πιθανών νέων εργασιών."
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Παύση"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 #, fuzzy
 msgid "Suspend tasks for this project."
 msgstr "Παύση εργασιών για αυτό το πρόγραμμα."
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 #, fuzzy
 msgid "Don't get new tasks for this project."
 msgstr "Δεν λαμβάνει νέες εργασίες για αυτό το πρόγραμμα."
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Επανεκκίνηση προγράμματος"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 #, fuzzy
 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 ""
@@ -3010,15 +3014,11 @@ msgstr ""
 "πρόγραμμα και ανακτά νέες εργασίες. Μπορείτε να κάνετε ανανέωση του "
 "προγράμματος πρώτα ώστε να αναφέρεται τυχών ολοκληρωμένες εργασίες."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Αποσύνδεση"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 #, fuzzy
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr ""
@@ -3026,575 +3026,550 @@ msgstr ""
 "ολοκληρωθεί θα χαθούν (χρησιμοποιήστε την 'Ανανέωση' πρώτα για να αναφέρετε "
 "τυχών ολοκληρωμένες εργασίες)"
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Λογαριασμός"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Κατάσταση"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Προγράμματα"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "Ανανέωση εκτέλεσης προγράμματος..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "Επανέναρξη εκτέλεσης προγράμματος..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "Παύση εκτέλεσης προγράμματος..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 #, fuzzy
 msgid "Telling project to allow additional task downloads..."
 msgstr "Ορίζει στο πρόγραμμα να δέχεται επιπλέον εργασίες..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 #, fuzzy
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "Απαγορεύει στο πρόγραμμμα να δέχεται επιπλέον εργασίες..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "Επανεκκίνηση προγράμματος..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Είστε σίγουρος ότι θέλετε να επανεκκινήσετε το πρόγραμμα '%s';"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Επανεκκίνηση Προγράμματος"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "Αποχώρηση από το πρόγραμμα..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "Άνοιγμα φυλλομετρητή..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Συνέχεια μετά από παύση"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 #, fuzzy
 msgid "Resume tasks for this project."
 msgstr "Συνέχεια εργασιών για αυτό το πρόγραμμα."
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 #, fuzzy
 msgid "Allow fetching new tasks for this project."
 msgstr "Επιτρέπει την ανάκτηση νέων εργασιών για αυτό το πρόγραμμα."
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 #, fuzzy
 msgid "Don't fetch new tasks for this project."
 msgstr "Δεν ανακτά νέες εργασίες για αυτό το πρόγραμμα."
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Παύση από το χρήστη"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 #, fuzzy
 msgid "Won't get new tasks"
 msgstr "Δεν δέχεται νέες εργασίες"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Αναμονή αίτησης χρονοδιαγράμματος"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "Η επικοινωνία αναβλήθηκε"
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Δίσκος"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Σύνολο χρήστη"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Μέσος Όρος Χρήστη"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Σύνολο Υπολογιστή"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Μέσος Όρος Υπολογιστή"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Εμφάνιση συνόλου χρήστη"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "Εμφάνιση μέσου όρου χρήστη"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Εμφάνιση συνόλου υπολογιστή"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "Εμφάνιση μέσου όρου υπολογιστή"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Στατιστικά"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "Ανανέωση γραφημάτων..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Επανάληψη Τώρα"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "Πατήστε 'Επανάληψη Τώρα' για να μεταφέρετε το αρχείο τώρα"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Ακύρωση Μεταφοράς"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr ""
 "Πατήστε την 'Ακύρωση Μεταφοράς' για να διαγράψετε το αρχείο από την ουρά "
 "μεταφορών. Αυτό θα αποτρέψει την απόδωση βαθμών για το συγκεκριμένο "
 "αποτέλεσμα."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "Αρχείο"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Πρόοδος"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Μέγεθος"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "Χρόνος που περάσει"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Ταχύτητα"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Μεταφορές"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "Επανάληψη μεταφοράς τώρα..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "Ακύρωση μεταφοράς..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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 ""
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Ακύρωση Μεταφοράς Αρχείου"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "Επανάληψη σε"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 #, fuzzy
 msgid "Aborting transfer(s)..."
 msgstr "Ακύρωση μεταφοράς..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
 "will not receive credit for it."
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 #, fuzzy
 msgid "Abort File Transfer(s)"
 msgstr "Ακύρωση Μεταφοράς Αρχείου"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "Εμφάνιση γραφικών εφαρμογής σε παράθυρο"
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "Παύση εργασίας για αυτό το αποτέλεσμα."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Ακύρωση"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr ""
 "Εγκατάλειψη εργασίας για αυτό το αποτέλεσμα. Δεν θα λάβετε βαθμούς για αυτό."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Όνομα"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "Ολοκλήρωση σε"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Εργασίες"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 #, fuzzy
 msgid "Suspending task..."
 msgstr "Παύση επεξεργασίας αποτελέσματος..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 #, fuzzy
 msgid "Showing graphics for task..."
 msgstr "Εμφάνιση γραφικών για το αποτέλεσμα..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Ακύρωση επεξεργασίας αποτελέσματος..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+#, fuzzy, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "Είστε σίγουρος ότι θέλετε να εγκαταλείψετε το αποτέλεσμα '%s';"
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Ακύρωση επεξεργασίας αποτελέσματος..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 #, fuzzy
 msgid "Resume work for this task."
 msgstr "Συνέχεια εργασίας για αυτό το αποτέλεσμα."
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 #, fuzzy
 msgid "Suspend work for this task."
 msgstr "Παύση εργασίας για αυτό το αποτέλεσμα."
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3603,14 +3578,16 @@ msgid ""
 "listed on or managed via %s."
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 #, fuzzy
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
-msgstr "Τώρα θα σας καθοδηγήσουμε ώστε να συνδεθείτε σε ένα πρόγραμμα."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
+"Τώρα θα σας καθοδηγήσουμε ώστε να συνδεθείτε σε ένα\n"
+"διαχειριστή λογαριασμού."
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3626,135 +3603,207 @@ msgid ""
 "World Community Grid then please click on the following button:"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:380
-#, fuzzy
-msgid "Account manager"
-msgstr "Διαχειριστής Λογαριασμού"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "Σημαίες Αποσφαλμάτωσης"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "Αποτυχία Ιδιότήτων Προγράμματος"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "Αποτυχία Διεύθυνσης Ιδιοτήτων Προγράμματος"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "Η Δημιουργία Λογαριασμών είναι Απενεργοποιημένη"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "Η Δημιουργία Λογαριασμών Χρηστών είναι Απενεργοποιημένη"
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "Ο Λογαριασμός Υπάρχει Ήδη"
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "Έχετε ήδη Συνδεθεί στο Πρόγραμμα"
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "Αποτυχία Σύνδεσης στο Ππρόγραμμα"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "Αποτυχία Εντοπισμού Δικτίου"
-
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "Για συνέχεια πατήστε στο Επόμενο."
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "Είστε σίγουρος ότι θέλετε να ακυρώστε;"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "Ερώτηση"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "Επόμενο >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< Προηγούμενο"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "Τέλος"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
 msgid "New page inserted. Index = %i"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
 msgid "New page appended. Index = %i"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
 msgid "Old Page Index = %i"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr ""
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 
+#~ msgid "Account Manager URL"
+#~ msgstr "Διεύθυνση διαχειριστή λογαριασμού"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "Εισάγετε την διεύθυνση της ιστοσελίδας του διαχειριστή λογαριασμού."
+
+#, fuzzy
+#~ msgid "Attach to a project"
+#~ msgstr "Σύνδεση σε πρόγραμμα"
+
+#, fuzzy
+#~ msgid "Attach to &account manager..."
+#~ msgstr "Σύνδεση στο πρόγραμμα διαχείρησης λογαριασμού"
+
+#~ msgid "Attach to an account manager"
+#~ msgstr "Σύνδεση σε ένα διαχειριστή λογαριασμού"
+
+#, fuzzy
+#~ msgid "Attach to &project"
+#~ msgstr "Σύνδεση στο πρόγραμμα"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "Σύνδεση σε πρόγραμμα..."
+
+#, fuzzy
+#~ msgid "Already Attached to Project"
+#~ msgstr "Έχετε ήδη συνδεθεί σε αυτό το πρόγραμμα"
+
+#, fuzzy
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr "Τώρα θα σας καθοδηγήσουμε ώστε να συνδεθείτε σε ένα πρόγραμμα."
+
+#, fuzzy
+#~ msgid "Account manager"
+#~ msgstr "Διαχειριστής Λογαριασμού"
+
+#~ msgid "Debug Flags"
+#~ msgstr "Σημαίες Αποσφαλμάτωσης"
+
+#~ msgid "Project Properties Failure"
+#~ msgstr "Αποτυχία Ιδιότήτων Προγράμματος"
+
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "Αποτυχία Διεύθυνσης Ιδιοτήτων Προγράμματος"
+
+#~ msgid "Account Creation Disabled"
+#~ msgstr "Η Δημιουργία Λογαριασμών είναι Απενεργοποιημένη"
+
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "Η Δημιουργία Λογαριασμών Χρηστών είναι Απενεργοποιημένη"
+
+#~ msgid "Account Already Exists"
+#~ msgstr "Ο Λογαριασμός Υπάρχει Ήδη"
+
+#~ msgid "Project Already Attached"
+#~ msgstr "Έχετε ήδη Συνδεθεί στο Πρόγραμμα"
+
+#~ msgid "Project Attach Failure"
+#~ msgstr "Αποτυχία Σύνδεσης στο Ππρόγραμμα"
+
+#~ msgid "Net Detection Failure"
+#~ msgstr "Αποτυχία Εντοπισμού Δικτίου"
+
 #, fuzzy
 #~ msgid ""
 #~ "You can copy and paste the URL from your browser's\n"
@@ -3765,7 +3814,8 @@ msgstr ""
 
 #, fuzzy
 #~ msgid "For a list of account managers go to:"
-#~ msgstr "Για μια λίστα με προγράμματα που στηρίζονται στο BOINC πηγαίνετε στο:"
+#~ msgstr ""
+#~ "Για μια λίστα με προγράμματα που στηρίζονται στο BOINC πηγαίνετε στο:"
 
 #~ msgid "You are already attached to this project."
 #~ msgstr "Έχετε ήδη συνδεθεί σε αυτό το πρόγραμμα"
@@ -3774,14 +3824,17 @@ msgstr ""
 #~ msgstr "Πληροφορίες Λογαριασμού"
 
 #~ msgid "Do you wish to use an existing account or create a new one?"
-#~ msgstr "Θέλετε να χρησιμοποποιήσετε κάποιο λογαριασμό η να δημιουργήσετε ένα νέο;"
+#~ msgstr ""
+#~ "Θέλετε να χρησιμοποποιήσετε κάποιο λογαριασμό η να δημιουργήσετε ένα νέο;"
 
 #~ msgid ""
 #~ "Transition Note: Account keys are used as passwords for accounts created\n"
 #~ "before BOINC migrated to a username and password authentication scheme."
 #~ msgstr ""
-#~ "Σημείωση Αλλαγών: Τα κλειδιά λογαριασμών χρησιμοποιούνται σαν κωδικοί για λογαριασμούς οι οποίοι\n"
-#~ " δημιουργήθηκαν πριν την απόφαση στο BOINC να χρησιμοποιείται ένα σύστημα πιστοποίησης που χρησιμοποιεί\n"
+#~ "Σημείωση Αλλαγών: Τα κλειδιά λογαριασμών χρησιμοποιούνται σαν κωδικοί για "
+#~ "λογαριασμούς οι οποίοι\n"
+#~ " δημιουργήθηκαν πριν την απόφαση στο BOINC να χρησιμοποιείται ένα σύστημα "
+#~ "πιστοποίησης που χρησιμοποιεί\n"
 #~ " όνομα χρήστη και ξεχωριστό κωδικό πρόσβασης"
 
 #~ msgid "Create new &account"
@@ -3797,13 +3850,16 @@ msgstr ""
 #~ msgstr "Εισάγετε το κλειδί λογαριασμού"
 
 #~ msgid "This project uses an \"account key\" to identify you."
-#~ msgstr "Αυτό το πρόγραμμα χρησιμοποιεί ένα \"account key\" για να σας πιστοποιήσει."
+#~ msgstr ""
+#~ "Αυτό το πρόγραμμα χρησιμοποιεί ένα \"account key\" για να σας "
+#~ "πιστοποιήσει."
 
 #~ msgid ""
 #~ "Go to the project's web site to create an account. Your account\n"
 #~ "key will be emailed to you."
 #~ msgstr ""
-#~ "Πηγαίνετε στην ιστοσελίδα του προγράμματος για να δημιουργήσετε ένα λογαριασμό.\n"
+#~ "Πηγαίνετε στην ιστοσελίδα του προγράμματος για να δημιουργήσετε ένα "
+#~ "λογαριασμό.\n"
 #~ " Το κλειδί λογαριασμού θα σας σταλεί μέσω email."
 
 #~ msgid "An account key looks like:"
@@ -3841,8 +3897,12 @@ msgstr ""
 #~ msgid "&About BOINC Manager..."
 #~ msgstr "Σχετικά με το BOINC Manager"
 
-#~ msgid "A software platform for distributed computing using volunteered computer resources"
-#~ msgstr "Μια πλατφόρμα λογισμικού για κατανεμημένους υπολογισμούς χρησιμοποιώντας εθελοντικούς πορους υπολογιστών"
+#~ msgid ""
+#~ "A software platform for distributed computing using volunteered computer "
+#~ "resources"
+#~ msgstr ""
+#~ "Μια πλατφόρμα λογισμικού για κατανεμημένους υπολογισμούς χρησιμοποιώντας "
+#~ "εθελοντικούς πορους υπολογιστών"
 
 #~ msgid "Your current account manager is:"
 #~ msgstr "Ο τρέχον διαχειριστής λογαριασμού σας είναι:"
@@ -3871,8 +3931,12 @@ msgstr ""
 #~ msgid "Reminder Frequency:"
 #~ msgstr "Συχνότητα υπενθύμισης:"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
-#~ msgstr "Πόσο συχνά, σε λεπτά, θα σας υπενθυμίζει ο διαχειρστής σχετικά με πιθανά θέματα σύνδεσης."
+#~ msgid ""
+#~ "How often, in minutes, should the manager remind you of possible "
+#~ "connection events."
+#~ msgstr ""
+#~ "Πόσο συχνά, σε λεπτά, θα σας υπενθυμίζει ο διαχειρστής σχετικά με πιθανά "
+#~ "θέματα σύνδεσης."
 
 #~ msgid "&Automatically detect network connection settings"
 #~ msgstr "Αυτόματη αναγνώριση ρυθμίσεων σύνδεσης δικτύου"
@@ -3881,15 +3945,16 @@ msgstr ""
 #~ msgstr "Χρησιμοποίηση σύνδεσης Δικτύου Τοπικής Πρόσβασης (LAN)"
 
 #~ msgid "Use my &Dial-up and Virtual Private Network connection"
-#~ msgstr "Χρησιμοποίηση σύνδεσης μέσω τηλεφώνου και Ιδιωτικού Εικονικού Δικτύου"
+#~ msgstr ""
+#~ "Χρησιμοποίηση σύνδεσης μέσω τηλεφώνου και Ιδιωτικού Εικονικού Δικτύου"
 
 #~ msgid "&Prompt for username and password"
 #~ msgstr "Ερώτηση για όνομα χρήστη και κωδικό πρόβασης"
 
 #~ msgid "Failed to create wxStaticText, needed by wxHyperLink!"
-#~ msgstr "Αποτυχία δημιουργίας wxStaticText, που χρειάζεται από το wxHyperLink!"
+#~ msgstr ""
+#~ "Αποτυχία δημιουργίας wxStaticText, που χρειάζεται από το wxHyperLink!"
 
-#, c-format
 #~ msgid ""
 #~ "BOINC could not determine what your default browser is.\n"
 #~ "Please verify that you have either the 'mailcap' package installed or\n"
@@ -3900,11 +3965,16 @@ msgstr ""
 #~ "\n"
 #~ "%s"
 #~ msgstr ""
-#~ "Το BOINC δεν κατάφερε να εξακριβώσει ποιος είναι ο εξ' ορισμού φυλλομετρητής σας.\n"
+#~ "Το BOINC δεν κατάφερε να εξακριβώσει ποιος είναι ο εξ' ορισμού "
+#~ "φυλλομετρητής σας.\n"
 #~ "Παρακαλούμε επιβεβαιώστε ότι έχετε το 'mailcap' πακέτο εγκατεστημένο ή\n"
-#~ "το 'mime' πακέτο έχει εγκατασταθεί, και ότι το 'text/html' mime τύπος είναι\n"
-#~ "καθορισμένος για χρήση από τον αγαπημένο σας φυλλομετρητή. Ένας άλλος τρόπος είναι να καθορίσετε το\n"
-#~ "τύπο μεταβλητής περιβάλλοντος BROWSER να δείχνει σε οποιοσδήποτε είναι ο αγαπημένος σας φυλλομετρητής. Παρακαλούμε ανοίξτε ένα παράθυρο φυλλομετρητή στην ακόλουθη διεύθυνση:\n"
+#~ "το 'mime' πακέτο έχει εγκατασταθεί, και ότι το 'text/html' mime τύπος "
+#~ "είναι\n"
+#~ "καθορισμένος για χρήση από τον αγαπημένο σας φυλλομετρητή. Ένας άλλος "
+#~ "τρόπος είναι να καθορίσετε το\n"
+#~ "τύπο μεταβλητής περιβάλλοντος BROWSER να δείχνει σε οποιοσδήποτε είναι ο "
+#~ "αγαπημένος σας φυλλομετρητής. Παρακαλούμε ανοίξτε ένα παράθυρο "
+#~ "φυλλομετρητή στην ακόλουθη διεύθυνση:\n"
 #~ "\n"
 #~ "%s"
 
@@ -3929,8 +3999,12 @@ msgstr ""
 #~ msgid "Retry &communications"
 #~ msgstr "Επανάληψη επικοινωνίας"
 
-#~ msgid "Report completed work, get latest credit, get latest preferences, and possibly get more work."
-#~ msgstr "Αναφορά ολοκληρωμένων εργασιών, ανάκτηση βαθμολογίας, ανάκτηση προτιμήσεων και πιθανών νέων εργασιών."
+#~ msgid ""
+#~ "Report completed work, get latest credit, get latest preferences, and "
+#~ "possibly get more work."
+#~ msgstr ""
+#~ "Αναφορά ολοκληρωμένων εργασιών, ανάκτηση βαθμολογίας, ανάκτηση "
+#~ "προτιμήσεων και πιθανών νέων εργασιών."
 
 #~ msgid "&Options"
 #~ msgstr "Ρυθμίσεις"
@@ -3950,11 +4024,18 @@ msgstr ""
 #~ msgid "BOINC Manager - Network Status"
 #~ msgstr "BOINC Manager - Κατάσταση Δικτύου"
 
-#~ msgid "BOINC needs a connection to the Internet to perform some maintenance, open the BOINC Manager to connect up and perform the needed work."
-#~ msgstr "Το BOINC χρειάζεται σύνδεση στο Διαδίκτυο για να εκτελέσει ορισμένες εργασίες συντήρησης. Ανοίξτε το BOINC Manager για να συνδεθείτε και να εκτελέσει τις απαιτούμενες εργασίες."
+#~ msgid ""
+#~ "BOINC needs a connection to the Internet to perform some maintenance, "
+#~ "open the BOINC Manager to connect up and perform the needed work."
+#~ msgstr ""
+#~ "Το BOINC χρειάζεται σύνδεση στο Διαδίκτυο για να εκτελέσει ορισμένες "
+#~ "εργασίες συντήρησης. Ανοίξτε το BOINC Manager για να συνδεθείτε και να "
+#~ "εκτελέσει τις απαιτούμενες εργασίες."
 
 #~ msgid "The URL you supplied is not that of a BOINC-based project."
-#~ msgstr "Η διεύθυνση που εισάγατε δεν είναι αυτή ενός προγράμματος βασισμένο στο BOINC."
+#~ msgstr ""
+#~ "Η διεύθυνση που εισάγατε δεν είναι αυτή ενός προγράμματος βασισμένο στο "
+#~ "BOINC."
 
 #~ msgid "Please check the URL and try again."
 #~ msgstr "Παρακαλούμε ελέξτε τη διεύθυνση και ξαναδοκιμάστε."
@@ -3970,7 +4051,9 @@ msgstr ""
 #~ msgstr "Δεν βρέθηκε ο λογαριασμός"
 
 #~ msgid "Verify your account name and password are correct and try again."
-#~ msgstr "Επιβεβαιώστε ότι το όνομα λογαριασμού και ο κωδικός είναι σωστοί και ξαναδοκιμάστε."
+#~ msgstr ""
+#~ "Επιβεβαιώστε ότι το όνομα λογαριασμού και ο κωδικός είναι σωστοί και "
+#~ "ξαναδοκιμάστε."
 
 #~ msgid "Project URL"
 #~ msgstr "Διεύθυνση προγράμματος"
@@ -3996,9 +4079,9 @@ msgstr ""
 #~ msgid "Disk Space"
 #~ msgstr "Χώρος στο δίσκο"
 
-#, c-format
 #~ msgid "Are you sure you want to abort this file transfer '%s'?"
-#~ msgstr "Είστε σίγουρος ότι θέλετε να ακυρώσετε τη μεταφορά του αρχείου '%s';"
+#~ msgstr ""
+#~ "Είστε σίγουρος ότι θέλετε να ακυρώσετε τη μεταφορά του αρχείου '%s';"
 
 #~ msgid "Work"
 #~ msgstr "Εργασία"
@@ -4006,10 +4089,6 @@ msgstr ""
 #~ msgid "Resuming result..."
 #~ msgstr "Επανέναρξη επεξεργασίας αποτελέσματος..."
 
-#, c-format
-#~ msgid "Are you sure you want to abort this result '%s'?"
-#~ msgstr "Είστε σίγουρος ότι θέλετε να εγκαταλείψετε το αποτέλεσμα '%s';"
-
 #~ msgid "Abort result"
 #~ msgstr "Ακύρωση αποτελέσματος"
 
@@ -4025,13 +4104,6 @@ msgstr ""
 #~ msgid "Activities suspended by user"
 #~ msgstr "Αναστολή εργασιών από το χρήστη"
 
-#~ msgid ""
-#~ "We'll now guide you through the process of attaching to an\n"
-#~ "account manager."
-#~ msgstr ""
-#~ "Τώρα θα σας καθοδηγήσουμε ώστε να συνδεθείτε σε ένα\n"
-#~ "διαχειριστή λογαριασμού."
-
 #~ msgid "Project Comm Failure"
 #~ msgstr "Αποτυχία Επικοινωνίας με το Πρόγραμμα"
 
diff --git a/locale/el/BOINC-Web.po b/locale/el/BOINC-Web.po
index 9b0134c..6d9ecaa 100644
--- a/locale/el/BOINC-Web.po
+++ b/locale/el/BOINC-Web.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -18,386 +18,312 @@ msgstr ""
 "X-Poedit-Country: UNITED STATES\n"
 "X-Poedit-KeywordsList: tra\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
 msgstr ""
 
-"
-
+#: poll.inc:47
 msgid "Other:"
 msgstr ""
 
-"
-
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
 msgstr ""
 
-"
-
+#: poll_data.inc:22
 msgid "less than a week"
 msgstr ""
 
-"
-
+#: poll_data.inc:23
 msgid "less than a month"
 msgstr ""
 
-"
-
+#: poll_data.inc:24
 msgid "less than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:25
 msgid "more than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:34
 msgid "I lost interest"
 msgstr ""
 
-"
-
+#: poll_data.inc:35
 msgid "it was too complicated"
 msgstr ""
 
-"
-
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
 msgstr ""
 
-"
-
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:38
 msgid "it used too much electricity"
 msgstr ""
 
-"
-
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr ""
 
-"
-
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
 msgstr ""
 
-"
-
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
 msgstr ""
 
-"
-
+#: poll_data.inc:50
 msgid "I had network communication problems"
 msgstr ""
 
-"
-
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
 msgstr ""
 
-"
-
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr ""
 
-"
-
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
 msgstr ""
 
-"
-
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr ""
 
-"
-
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr ""
 
-"
-
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr ""
 
-"
-
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr ""
 
-"
-
+#: poll_data.inc:87
 msgid "Home"
 msgstr ""
 
-"
-
+#: poll_data.inc:88
 msgid "Work"
 msgstr ""
 
-"
-
+#: poll_data.inc:89
 msgid "School"
 msgstr ""
 
-"
-
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr ""
 
-"
-
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr ""
 
-"
-
+#: poll_data.inc:119
 msgid "Age"
 msgstr ""
 
-"
-
+#: poll_data.inc:129
 msgid "Sex"
 msgstr ""
 
-"
-
+#: poll_data.inc:131
 msgid "Male"
 msgstr ""
 
-"
-
+#: poll_data.inc:132
 msgid "Female"
 msgstr ""
 
-"
-
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr ""
 
-"
-
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr ""
 
-"
-
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr ""
 
-"
-
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr ""
 
-"
-
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr ""
 
-"
-
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr ""
 
-"
-
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
 msgstr ""
 
-"
-
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr ""
 
-"
-
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr ""
 
-"
-
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr ""
 
-"
-
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr ""
 
-"
-
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr ""
 
-"
-
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr ""
 
-"
-
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr ""
 
-"
-
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr ""
 
-"
-
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr ""
 
-"
-
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr ""
 
-"
-
+#: poll_data.inc:192
 msgid "Yes"
 msgstr ""
 
-"
-
+#: poll_data.inc:193
 msgid "No"
 msgstr ""
 
-"
-
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr ""
 
-"
-
+#: poll_data.inc:200
 msgid "to read information"
 msgstr ""
 
-"
-
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr ""
 
-"
-
+#: poll_data.inc:202
 msgid "None"
 msgstr ""
 
-"
-
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr ""
 
-"
-
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr ""
 
-"
-
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr ""
 
-"
-
+#: download.php:40
 msgid "Download BOINC"
 msgstr ""
 
-"
-
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr ""
 
-"
-
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -405,41 +331,34 @@ msgid ""
 "computer, you can connect it to as many of these projects as you like."
 msgstr ""
 
-"
-
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
 "(GPU), you may be able to %suse it to compute faster%s"
 msgstr ""
 
-"
-
+#: download.php:120
 msgid "System requirements"
 msgstr ""
 
-"
-
+#: download.php:121
 msgid "Release notes"
 msgstr ""
 
-"
-
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr ""
 
-"
-
+#: download.php:123
 msgid "All versions"
 msgstr ""
 
-"
-
+#: download.php:141
 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 "
@@ -448,8 +367,7 @@ msgid ""
 "problems you might have."
 msgstr ""
 
-"
-
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -458,8 +376,7 @@ msgid ""
 "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 "
@@ -467,20 +384,17 @@ msgid ""
 "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 "
@@ -488,30 +402,70 @@ msgid ""
 "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 ""
 
-"
+#: index.php:23
+msgid "Computing power"
+msgstr ""
 
-msgid "Volunteer"
+#: index.php:25
+msgid "Top 100 volunteers"
 msgstr ""
 
-"
+#: index.php:26
+msgid "Statistics"
+msgstr ""
 
-msgid "Download"
+#: index.php:53
+msgid "Active:"
 msgstr ""
 
-"
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
 
-msgid "Documentation"
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
 msgstr ""
 
-"
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
 
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -520,28 +474,92 @@ msgid ""
 "sDownload%s and run BOINC software  %sEnter%s an email address and password. "
 msgstr ""
 
-"
-
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
 "sGridRepublic%s or %sBAM!%s. "
 msgstr ""
 
-"
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
 
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
 
-"
-
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr ""
 
-"
-
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -554,84 +572,68 @@ msgid ""
 "href=poll_results.php>here</a>. "
 msgstr ""
 
-"
-
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr ""
 
-"
-
+#: poll.php:30
 msgid "Your participation"
 msgstr ""
 
-"
-
+#: poll.php:32
 msgid "Your computers"
 msgstr ""
 
-"
-
+#: poll.php:34
 msgid "You"
 msgstr ""
 
-"
-
+#: poll.php:39
 msgid "Nationality"
 msgstr ""
 
-"
-
+#: poll.php:44
 msgid "Comments"
 msgstr ""
 
-"
-
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
 msgstr ""
 
-"
-
+#: poll.php:50
 msgid "When done click:"
 msgstr ""
 
-"
-
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
 msgstr ""
 
-"
-
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr ""
 
-"
-
+#: poll_results.php:195
 msgid "Survey results"
 msgstr ""
 
-"
-
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
 msgstr ""
 
-"
-
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 #~ msgid "CHARSET"
 #~ msgstr "UTF-8"
diff --git a/locale/el/pootle-boincclient610-el.prefs b/locale/el/pootle-boincclient610-el.prefs
new file mode 100644
index 0000000..f04cebe
--- /dev/null
+++ b/locale/el/pootle-boincclient610-el.prefs
@@ -0,0 +1,8 @@
+# Pootle preferences for project boinctrunk, language el
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  Anark = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/el/pootle-boinctrunk-el.prefs b/locale/el/pootle-boinctrunk-el.prefs
deleted file mode 100644
index 8ee5942..0000000
--- a/locale/el/pootle-boinctrunk-el.prefs
+++ /dev/null
@@ -1,2 +0,0 @@
-# Pootle preferences for project boinctrunk, language el
-
diff --git a/locale/es/BOINC-Manager.mo b/locale/es/BOINC-Manager.mo
index 6107a07..cfa954a 100644
Binary files a/locale/es/BOINC-Manager.mo and b/locale/es/BOINC-Manager.mo differ
diff --git a/locale/es/BOINC-Manager.po b/locale/es/BOINC-Manager.po
index 927b288..451d828 100644
--- a/locale/es/BOINC-Manager.po
+++ b/locale/es/BOINC-Manager.po
@@ -1,10 +1,10 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 4.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
-"PO-Revision-Date: 2009-05-29 07:52-0700\n"
-"Last-Translator: David M <davidcomp at telefonica dot net>\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2010-04-01 05:24-0700\n"
+"Last-Translator: David M <davidcomp2 at telefonica dot net>\n"
 "Language-Team: BOINC Development Team <rwalton at ssl.berkeley.edu>\n"
 "Language: es\n"
 "MIME-Version: 1.0\n"
@@ -15,15 +15,15 @@ msgstr ""
 "X-Poedit-Language: English\n"
 "X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: iso-8859-1\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: UNITED STATES\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "Información de usuario"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr "Identifique su cuenta "
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
@@ -31,427 +31,501 @@ msgstr ""
 "Por favor introduzca la información de su cuenta\n"
 "(para crear una cuenta, visite la página del proyecto)"
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
 msgstr ""
 "Este proyecto no acepta actualmente nuevas cuentas.\n"
-"Usted puede unirse sólo si ya tiene una cuenta."
+"Usted puede unirse sólo si tiene una cuenta creada anteriormente."
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
-msgstr "¿Ha ejecutando este proyecto antes?"
+msgstr "¿Ha ejecutando este proyecto anteriormente?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "&No, nuevo usuario"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "Sí, usuario &existente"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+"No se ha podido establecer la información de su cuenta\n"
+"de forma automática.\n"
+"\n"
+"Por favor, pulse en el vínculo inferior 'Buscar información de acceso'\n"
+"para encontrar que poner en los campos dirección de correo y\n"
+"contraseña."
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr "Buscar información de acceso"
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "C&lave:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "Escoja una c&lave:"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "C&onfirmar clave:"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
-msgstr "¿Está usted ejecutando ya %s?"
+msgstr "¿Está usted ya ejecutando %s?"
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
-msgstr "&Nombre  de usuario:"
+msgstr "&Nombre de usuario:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
-msgstr "&Dirección de correo:"
+msgstr "&Correo Electrónico:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr "longitud mínima %d"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
-msgstr "¿Olvidó su clave?"
+msgstr "¿Ha olvidado su clave?"
+
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+"Si no se ha registrado todavía en este administrador de cuentas,\r\n"
+"por favor, hágalo antes de continuar.  Pulse en el vínculo inferior\r\n"
+"para registrarse o recuperar una contraseña olvidada."
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr "Sitio web del administrador de cuentas"
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "Unirse a un pro&yecto"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "Actualizar el administrador de cuentas"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "Unirse a un administrador de cuentas"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
-msgid "The minimum password length for this project is %d. Please enter a different password."
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
+msgid ""
+"The minimum password length for this project is %d. Please enter a different "
+"password."
 msgstr ""
-"La longitud mínima de clave para este proyecto es %d. Por favor introduzca "
-"una clave diferente."
+"Para este proyecto, la clave debe tener una longitud mínima de %d "
+"caracteres. Por favor, introduzca una clave distinta."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
-msgid "The minimum password length for this account manager is %d. Please enter a different password."
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
+msgid ""
+"The minimum password length for this account manager is %d. Please enter a "
+"different password."
 msgstr ""
-"La longitud mínima de clave para este administrador de cuentas es %d. Por "
-"favor introduzca una clave diferente."
+"Para este administrador de cuentas la longitud mínima de la clave es %d "
+"caracteres. Por favor, introduzca una clave distinta."
 
-#: clientgui/AccountInfoPage.cpp:506
-msgid "The password and confirmation password do not match. Please type them again."
+#: clientgui/AccountInfoPage.cpp:560
+msgid ""
+"The password and confirmation password do not match. Please type them again."
 msgstr ""
-"La clave y la confirmación de clave no concuerdan. Por favor tecléelas de "
-"nuevo."
+"La clave y la confirmación de clave no concuerdan. Por favor, introdúzcalas "
+"de nuevo."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "URL del Administrador de Cuentas"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr "Elija un administrador de cuentas"
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Introduzca la URL de la página web del administrador de cuentas."
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"Para elegir un administrador de cuentas, pulse sobre su nombre o \n"
+"introduzca su URL debajo."
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "U&RL del Administrador de Cuentas:"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
-msgstr "Comunicándose con %s."
+msgstr "Comunicando con %s."
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
-msgstr "Comunicándose con el servidor."
+msgstr "Comunicando con el servidor."
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
-msgstr "Por favor espere..."
+msgstr "Por favor, espere..."
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
-msgstr "Ha ocurrido un error interno en el servidor.\n"
+msgstr "Se ha producido un error interno en el servidor.\n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Conectado"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Desconectado"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "&Cerrar Ventana\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr "Cerrar ventana %s"
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "Cerrar la ventana del Administrador BOINC."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr "&Cerrar Ventana"
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
 msgstr "Salir de %s"
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "&Salir"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
-msgstr "Vista &Avanzada\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr "&Proyectos\tCrtl+Shift+P"
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
-msgstr ""
-"La vista avanzada le permite ordenar diferentes columnas y visualiza barras "
-"de progreso."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr "Visualizar los proyectos"
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
-msgstr "Vista &Simple...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr "&Tareas\tCtrl+Shift+T"
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "Muestra el interfaz gráfico BOINC simple."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr "Visualizar las tareas"
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "&Unirse a un proyecto..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr "Trans&ferencias\tCtrl+Shift+F"
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "Unirse a un proyecto"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr "Visualizar las transferencias"
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "Unirse a un &administrador de cuentas..."
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr "&Mensajes\tCtrl+Shift+M"
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Unirse a un administrador de cuentas"
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr "Visualizar los mensajes"
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr "&Estadísticas\tCtrl+Shift+E"
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr "Visualizar las estadísticas"
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr "&Disco\tCtrl+Shift+D"
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr "Visualizar uso del disco"
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "&Vista Simple...\tCtrl+Shift+V"
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr "Muestra el interfaz gráfico simple de BOINC."
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr "Unirse a un &proyecto o administrador de cuentas..."
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+"Unirse a un proyecto o administrador de cuentas para comenzar a procesar "
+"trabajo"
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr "&Sincronizar con %s"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr "Obtener las preferencias actuales de %s"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "&Unirse a un proyecto..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Únase a un proyecto para empezar a procesar trabajo"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "&Parar de u&sar %s"
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Elimina el control del cliente por el administrador de cuentas."
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "&Ejecutar siempre"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr "Hace el trabajo sin tener en cuenta sus preferencias"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "Ejecutar según &preferencias"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "Hace el trabajo de acuerdo con sus preferencias"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "S&uspender"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr "Detiene el trabajo sin tener en cuenta sus preferencias"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr "Usar la GPU siempre"
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr "Permitir trabajar a la GPU sin tener en cuenta las preferencias"
+
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr "Usar GPU según las &preferencias"
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr "Permitir el trabajo de la GPU de acuerdo con sus preferencias"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr "Nunca usar la GPU"
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr "Detiene el trabajo de la GPU sin considerar sus preferencias"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "Actividad de red siempre &disponible"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr "Actividad de red sin tener en cuenta sus preferencias"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
 msgstr "Actividad de red &basada en sus preferencias"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr "Actividad de red de acuerdo con sus preferencias"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
 msgstr "Actividad de red &suspendida"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr "Detiene la actividad de red de BOINC"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "&Opciones..."
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "Configura las opciones del interfaz de usuario y los valores del proxy"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "&Preferencias..."
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr "Configurar preferencias locales"
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
 msgid "Connect to another computer running %s"
 msgstr "Conecta a otro ordenador ejecutando %s"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "Seleccionar orde&nador..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr "Cerrar c&liente conectado..."
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr "Cerrar el cliente núcleo actualmente conectado"
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "&Ejecutar pruebas de rendimiento"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "Ejecuta las pruebas de rendimiento de BOINC"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr "Ejecutar &comunicaciones de red"
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr "Ejecutar todas las comunicaciones de red aplazadas."
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr "Leer &fichero de configuración"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr "Leer información de configuración de cc_config.xml."
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "Leer a&rchivo local de preferencias"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr "Leer preferencias de global_prefs_override.xml."
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr "&Parar de u&sar %s"
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "Elimina el control del cliente por el administrador de cuentas."
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "&Unirse a un proyecto"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "Únase a un proyecto para empezar a procesar trabajo"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
 msgstr "A&yuda %s"
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
 msgid "Show information about %s"
 msgstr "Muestra información acerca de  %s"
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr "Ayuda &%s"
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr "Muestra información acerca de %s"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr "Página &web de %s"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
 msgid "Show information about BOINC and %s"
 msgstr "Muestra información acerca de BOINC y %s"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr "A&cerca de %s..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "Información de licencia y copyright"
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "&Archivo"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "&Ver"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "&Herramientas"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "Ac&tividad"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "Avan&zado"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "A&yuda"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr "%s - Cerrar el cliente actual"
-
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-"%s cerrá el cliente conectado actualmente,\n"
-" y le pedirá otro ordenador al que conectarse (host).\n"
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr "Conectando a proyecto o administrador de cuentas..."
 
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr "%s - Separarse de %s"
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -465,57 +539,69 @@ msgstr ""
 "\n"
 "¿Quiere dejar de usar %s?"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "Uniéndose a un proyecto..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "Reintentando la comunicación con el(los) proyecto(s)..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr "%s - Selección de Idioma"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
-msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
+msgid ""
+"The %s's default language has been changed, in order for this change to take "
+"affect you must restart the %s."
 msgstr ""
 "Se ha cambiado el idioma por defecto de %s, para que este cambio tenga "
 "efecto debe reiniciar %s."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - Cerrar el cliente actual..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s cerrá el cliente actualmente conectado, y le pedirá\n"
+"otro ordenador al que conectarse (host).\n"
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Reintentando la comunicación con el(los) proyecto(s)..."
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr "%s se ha unido con éxito a %s"
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "Conectando a %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
 msgid "Connected to %s (%s)"
 msgstr "Conectado a %s (%s)"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "Nombre de usuario ya en uso."
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -527,11 +613,11 @@ msgstr ""
 "\n"
 "Por favor visite la página web del proyecto y siga allí las instrucciones."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "Dirección de correo ya en uso."
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -543,25 +629,40 @@ msgstr ""
 "\n"
 "Por favor visite la página web del proyecto y siga allí las instrucciones."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr "Comunicando con cliente BOINC._ Por favor, espere ..."
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr "&Cerrar %s"
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr "&Salir de %s"
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr "%s - Error de Conexión"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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."
+"Please contact your administrator to add you to the 'boinc_users' local user "
+"group."
 msgstr ""
 "Usted no está autorizado actualmente a administrar el cliente.\n"
 "Por favor, contacte con su administrador para que le añada al grupo de "
 "usuarios locales 'boinc_users'."
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
@@ -569,21 +670,22 @@ msgstr ""
 "Fallo en la autorización para conectarse a un cliente en ejecución.\n"
 "Asegúrese de que inicia este programa en el mismo directorio que el cliente."
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr "Falló la autorización la conectar a cliente en ejecución."
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
-msgstr "La clave que ha introducido no es válida, por favor inténtelo de nuevo."
+msgstr ""
+"La clave que ha introducido no es válida, por favor inténtelo de nuevo."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - Conexión Fallida"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
@@ -591,23 +693,24 @@ msgstr ""
 "%s no ha podido conectar con un cliente %s.\n"
 "¿Le gustaría intentarlo de nuevo?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr "%s - Inicio de Servicio Fallido"
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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."
+"Please launch the Control Panel->Administative Tools->Services applet and "
+"start the BOINC service."
 msgstr ""
 "%s no puede iniciar un cliente %s.\n"
 "Por favor, vaya a Panel de Control->Herramientas Administrativas->Servicios "
 "e inicie el servicio BOINC."
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
@@ -615,16 +718,17 @@ msgstr ""
 "%s no puede iniciar un cliente %s.\n"
 "Por favor inicie el servicio e inténtelo de nuevo"
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr "%s - Estado de la Conexión"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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"
+"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 ""
 "%s no está actualmente conectado a un cliente %s.\n"
@@ -633,35 +737,35 @@ msgstr ""
 "Para conectar a su ordenador local por favor utilice 'localhost' como nombre "
 "del ordenador."
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Páginas web"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr "%s - Estado de la Red"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr "%s necesita conectar a Internet. Por favor haga clic para abrir %s."
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
 msgid ""
-"%s is unable to communicate with a project and needs an Internet connection.\n"
-"Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
+"%s is unable to communicate with a project and needs an Internet "
+"connection.\n"
+"Please connect to the Internet, then select the 'Do network communications' "
+"item from the Advanced menu."
 msgstr ""
 "%s es incapaz de comunicarse con un proyecto y necesita una conexión a  "
 "Internet.\n"
 "Por favor, conéctese a Internet, y entonces seleccione la opción 'Ejecutar "
 "comunicaciones de red' dentro del menú Avanzado."
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
@@ -669,15 +773,16 @@ msgstr ""
 "%s necesita conectar a Internet.\n"
 "¿Puede hacerlo ahora?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s está conectando a Internet."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
-"%s couldn't do Internet communication, and no default connection is selected.\n"
+"%s couldn't do Internet communication, and no default connection is "
+"selected.\n"
 "Please connect to the Internet, or select a default connection\n"
 "using Advanced/Options/Connections."
 msgstr ""
@@ -686,18 +791,18 @@ msgstr ""
 "Por favor conéctese a Internet, o especifique una conexión por defecto\n"
 "en Avanzado/Opciones/Conexiones."
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s se ha conectado a Internet con éxito."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "%s falló al conectarse a Internet."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
@@ -705,17 +810,48 @@ msgstr ""
 "%s ha detectado que ahora está conectado a Internet.\n"
 "Actualizando todos los proyectos y reintentando todas las transferencias."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s se ha desconectado de Internet con éxito."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s falló al desconectarse de Internet."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+"Usted actualmente no está autorizado para administrar el cliente.\n"
+"\n"
+"Para ejecutar BOINC con este usuario, por favor:\n"
+"    - reinstale BOINC respondiendo \"Yes\" a la pregunta acerca de\n"
+"           usuarios no administradores\n"
+"  o\n"
+"    - contacte con su administrador para que le añada al\n"
+"           grupo de usuarios 'boinc_master'."
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall "
+"BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"Los permisos o las propiedades de BOINC no están configurados "
+"apropiadamente; por favor reinstale BOINC\n"
+"(código de error %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
@@ -723,106 +859,117 @@ msgstr ""
 "Es necesario reiniciar para que BOINC funcione correctamente.\n"
 "Por favor, reinicie su ordenador e inténtelo de nuevo."
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "Administrador BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr ""
 "El Administrador BOINC ha sido iniciado por el sistema operativo "
 "automáticamente"
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr ""
 "Inicia BOINC de forma que sólo sea visible el icono en el área de "
 "notificación"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr "Carpeta que contiene el ejecutable del Cliente BOINC"
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr "Carpeta con los datos de BOINC"
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr "Arrancar BOINC con estos argumentos opcionales"
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr "desactiva la seguridad de usuarios y permisos en BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 "activar modo depuración de pieles (skin) para permitir los mensajes de error "
 "del administrador de pieles"
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Detección Automática)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Desconocido)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Definido por el Usuario)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr "Computación suspendida."
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr "Actividad de red suspendida."
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr "%s: %.2f%% completado."
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr "%d tareas ejecutándose."
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr "Reconectando a cliente."
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr "No conectado a un cliente."
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr "Abrir la web %s..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr "Abrir %s..."
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "Dormitar"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr "Dormitar la GPU"
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "Fallo al unirse a un proyecto"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr "Fallo al actualizar el administrador de cuentas"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr "Fallo al borrar el administrador de cuentas"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "Fallo al unirse al administrador de cuentas"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -834,27 +981,26 @@ msgstr ""
 "\n"
 "Haga Clic en Finalizar para cerrar."
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "Haga clic en Finalizar para cerrar."
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "Mensajes del servidor:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "Unido a un proyecto"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "Usted se ha unido con éxito a este proyecto."
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -862,120 +1008,110 @@ msgstr ""
 "Cuando haga clic en Finalizar, su navegador irá a la página donde\n"
 "usted pueda establecer su nombre de cuenta y preferencias."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr "Actualización desde %s completada."
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "Actualización completada."
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr "Eliminación de %s completada."
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "¡Eliminación con éxito!"
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr "Unido a %s"
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "Unido al administrador de cuentas"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
 msgstr "¡Bienvenido a %s!"
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
+#, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "Usted ahora se ha unido con éxito al sistema %s."
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "Usted se ha unido con éxito a este administrador de cuentas."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr "Acerca de %s"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "Versión:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr "Versión de wxWidgets"
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Copyright:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
-"(C) 2003-2008 Universidad de California, Berkeley.\n"
+"(C) 2003-2010 Universidad de California, Berkeley.\n"
 "Reservados Todos los Derechos."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr "Infraestructura Abierta de Berkeley para Computación en Red"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "&Aceptar"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr "número inválido"
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr "hora inválida, el format es HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr "intervalo de tiempo inválido, el formato es HH:MM-HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr "detectada introducción de valor inválido"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr "Error de Validación"
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr "¿Realmente desea restaurar todas las preferencias locales?"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr "Confirmación"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
 msgstr "%s - Preferencias"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
@@ -985,194 +1121,206 @@ msgstr ""
 "Pulse Aceptar para guardar las preferencias.\n"
 "Pulse Restablecer para restaurar las preferencias basadas en web."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr "Restablecer"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr "restaurar todas las preferencias locales y cerrar la ventana"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr "Computación permitida"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr "Cuando el ordenador funcione con baterías"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
-msgid "check this if you want this computer to do work while it runs on batteries"
+#: clientgui/DlgAdvPreferencesBase.cpp:83
+msgid ""
+"check this if you want this computer to do work while it runs on batteries"
 msgstr ""
 "márquela si quiere que este ordenador trabaje mientras está funcionando con "
 "baterías"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr "Cuando el ordenador está en uso"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
-msgid "check this if you want this computer to do work even when you're using it"
+#: clientgui/DlgAdvPreferencesBase.cpp:92
+msgid ""
+"check this if you want this computer to do work even when you're using it"
 msgstr ""
 "márquela si quiere que este ordenador trabaje incluso cuando usted lo está "
 "usando"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr "Usar la GPU cuando el ordenador está en uso"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
-msgid "check this if you want your GPU to do work even when you're using the computer"
+#: clientgui/DlgAdvPreferencesBase.cpp:101
+msgid ""
+"check this if you want your GPU to do work even when you're using the "
+"computer"
 msgstr ""
 "márquela si quiere que su GPU ejecute tareas incluso cuando usted esté "
 "usando su ordenador"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr "Sólo si el ordenador ha estado inactivo durante"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
-msgid "do work only after you haven't used the computer for this number of minutes"
+#: clientgui/DlgAdvPreferencesBase.cpp:123
+msgid ""
+"do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 "hacer trabajo sólo cuando no se haya usado el ordenador durante este número "
 "de minutos"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr "minutos"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr "Mientras el uso del procesador sea menor del"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr "suspender los trabajos si el uso del procesador excede este nivel"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr "por ciento (0 significa sin limitación)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr "Cada día entre las horas"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr "empezar el trabajo a esta hora"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr "y"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr "suspender el trabajo a esta hora"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr "(sin restricciones si son iguales)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr "Inactividad por día de la semana:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr ""
 "seleccione el cuadro para especificar las horas para este día de la semana"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr "Lunes"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr "Martes"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr "Miércoles"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr "Jueves"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr "Viernes"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr "Sábado"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr "Domingo"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr "Otras opciones"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
-msgstr "Cambiar entre aplicaciones cada"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
+msgstr "Cambio entre aplicaciones cada"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr "En sistemas multiprocesador, utilizar como máximo"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
 #, no-c-format
-#, c-format
 msgid "% of the processors"
 msgstr "% de los procesadores"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr "Utilizar como  máximo"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
 msgid "% CPU time"
 msgstr "% del tiempo de la CPU"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr "uso del procesador"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr "Opciones generales"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr "Velocidad máxima de descarga"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr "KB/s"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr "Velocidad máxima de envío"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr "Conectar cada"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
@@ -1180,44 +1328,46 @@ msgstr ""
 "este ordenador se conecta a Internet aproximadamente cada X días\n"
 "(0 si está siempre conectado)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr "días"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr "Buffer de trabajo adicional"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr "días(máx.10)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr "No verificar archivos de imagen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr "márquela si su proveedor de Internet modifica los archivos de imágenes"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr "Opciones de conexión"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr "Confirmar antes de conectar a Internet"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
-msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
+#: clientgui/DlgAdvPreferencesBase.cpp:384
+msgid ""
+"if checked, a confirmation dialog will be displayed before trying to connect "
+"to the Internet"
 msgstr ""
 "si está marcada, una venta aparecerá antes de intentar conectar a Internet"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr "Desconectar cuando finalice"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
@@ -1225,134 +1375,127 @@ msgstr ""
 "si está marcada, BOINC cuelga cuando ha terminado de usar la red\n"
 "( sólo para conexiones  a través de módem) "
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr "Uso de la red permitido"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr "hora de comienzo de uso de la red"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr "hora de finalización de uso de la red"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr "uso de la red"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr "Uso del disco"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr "el espacio máximo de disco usado por BOINC (en gigabytes)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr "gigabytes de espacio en disco"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr "Dejar como mínimo"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr ""
-"BOINC deja como mínimo esta cantidad de espacio de disco libre (en "
-"gigabytes)"
+"BOINC deja como mínimo esta cantidad de espacio de disco libre (en gigabytes)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr "gigabytes de espacio libre en disco"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr "BOINC usa como máximo este porcentaje del espacio total del disco"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr "% del espacio total de disco"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
-msgstr "Escribir al disco como máximo cada"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr "Las tareas vuelcan al disco al menos cada"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr "segundos"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr "% del archivo de paginación (espacio de intercambio)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr "Uso de memoria"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
 #, no-c-format
 msgid "% when computer is in use"
 msgstr "% cuando el ordenador se usa"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
 #, no-c-format
 msgid "% when computer is idle"
 msgstr "% cuando el ordenador esta inactivo"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr "Dejar las aplicaciones en memoria mientras están suspendidas"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr ""
 "si está marcada, las unidades de trabajo suspendidas son dejadas en memoria"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr "uso de disco y memoria"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr "Aceptar"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr "grabar todos los valores y cerrar la ventana"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr "cerrar la ventana sin grabar"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "Ayuda"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr "muestra la página web de preferencias"
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
 msgstr "%s - Confirmación de Salir"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1368,8 +1511,8 @@ msgstr ""
 "Si también desea parar de ejecutar los programas científicos cuando usted\n"
 "salga del Administrador, entonces escoja entre las siguientes opciones:"
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1386,413 +1529,377 @@ msgstr ""
 "antes que salir de la aplicación, eso le permitirá a %s ejecutar sus\n"
 "tareas a las horas que usted seleccionó en sus preferencias."
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr ""
 "Parar de ejecutar las aplicaciones científicas al salir del Administrador"
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr "Recordar esta opción y no volver a mostrar este mensaje."
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "&Cancelar"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr "No mostrar este mensaje de nuevo."
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr "&Cerrar"
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr "Propiedades del proyecto "
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "General"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr "URL principal"
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
 msgstr "Nombre de usuario:"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr "Nombre del equipo"
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Asignación de recursos"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr "Petición (RPC) del planificador aplazada"
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr "Descargas de archivos aplazada durante"
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr "Envíos de archivos aplazados durante"
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr "ID del ordenador"
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr "Uso no intensivo de CPU"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr "si"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr "no"
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr "Suspendido mediante interfaz gráfica (GUI)"
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr "No solicitar más trabajo"
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr "Llamada al planificador en progreso"
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
 msgstr "Unido mediante administrador de cuentas"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr "Separarse cuando termine"
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr "Finalizado"
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr "Crédito"
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr "Usuario"
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr "Ordenador"
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr "Planificando"
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr "Planificación de CPU prioritaria"
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr "Búsqueda de trabajo para la CPU prioritaria"
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr "Búsqueda de trabajo para la CPU aplazada"
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr "Intervalo de búsqueda de trabajo para la CPU"
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr "Planificación de GPU NVIDIA prioritaria"
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr "Búsqueda de trabajo para la GPU NVIDIA prioritaria"
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr "Búsqueda de trabajo para la GPU NVIDIA aplazada"
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr "Intervalo de búsqueda de trabajo para la GPU NVIDIA"
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr "Planificación de GPU ATI prioritaria"
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr "Búsqueda de trabajo para la GPU ATI prioritaria"
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr "Búsqueda de trabajo para la GPU ATI aplazada"
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr "Intervalo de búsqueda de trabajo para la GPU ATI"
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr "Factor de corrección de duración"
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr "Propiedades de la tarea "
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Programa"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr "Nombre unidad trabajo"
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr "Estado"
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr "Recibido"
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Límite para informar"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr "Recursos"
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr "Tiempo de CPU en el último chequeo"
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "Tiempo de CPU"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 msgid "Elapsed time"
 msgstr "Tiempo transcurrido"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr "Tiempo restante aproximado"
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr "Parte hecha"
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr "Tamaño de la memoria virtual"
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr "Tamaño conjunto trabajo"
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
-msgstr "Espacio (slot)"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr "Carpeta"
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr "ID de proceso"
+
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Nuevo"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "Descarga fallida"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "Descargando"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "Proyecto suspendido por el usuario"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr "Tarea suspendida por el usuario"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Suspendido"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr "- con baterías"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr "- usuario activo"
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr "- computación suspendida"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr "- hora del día"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr "- pruebas de CPU"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr "- necesita espacio en disco"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr "Esperando memoria"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr "Esperando memoria compartida"
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr "Ejecutando, alta prioridad"
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "Ejecutando"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr "Esperando para ejecutar"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr "Listo para comenzar"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Error de cálculo"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "Envío fallido"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "Enviando"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Abortado por el usuario"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "Abortado por el proyecto"
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "Abortado"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Aceptado"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "Listo para informar"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Error: estado inválido '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
 msgstr "%s - Opciones"
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr "Idioma:"
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr "¿Qué idioma debe usar el administrador?"
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
@@ -1800,125 +1907,120 @@ msgstr ""
 "Intervalo de recordatorio de conexión:\n"
 "(minutos)"
 
-#: clientgui/DlgOptions.cpp:180
-msgid "How often should the Manager remind you when a network connection is needed?"
+#: clientgui/DlgOptions.cpp:180
+msgid ""
+"How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 "¿Con qué frecuencia debe el Administrador recordarle que necesita una "
 "conexión de red?"
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr "¿Ejecutar el Administrador al iniciar la sesión?"
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr "Ejecutar el Administrador BOINC cuando inicie la sesión."
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr "¿Habilitar el mensaje de salida del Administrador?"
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr "Visualizar el mensaje de salida cuando cierre el Administrador."
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "Configuración de Módem de Acceso Telefónico y Red Privada Virtual"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "&Establecer como Predeterminada"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "&Borrar como Predeterminada"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Conexión por Defecto:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Conexiones"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Conectar vía servidor proxy HTTP"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "Configuración Servidor Proxy HTTP"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Dirección:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Puerto:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr "No usar proxy para:"
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Dejarlos en blanco si no se necesitan"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Nombre de usuario:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Clave:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "Proxy HTTP"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Conectar vía servidor proxy SOCKS"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "Configuración Servidor Proxy SOCKS"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "Proxy SOCKS"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
 msgid "%s - Select Computer"
 msgstr "%s - Seleccionar ordenador"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Nombre del ordenador:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s - No puede encontrar un navegador web"
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
+#, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1934,236 +2036,236 @@ msgstr ""
 "BROWSER con la ruta hacia su navegador,\n"
 "y entonces reinicie %s."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "Foros"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "Escríbase con otros usuarios en los foros de SETI at home"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "Haga preguntas e informe de problemas"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "Su cuenta"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "Vea información de su cuenta y sus créditos totales"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "Sus preferencias"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr "Vea y modifique su perfil y preferencias de su cuenta SETI at home"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "Sus resultados"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr "Vea el trabajo y resultados de su última semana (o más)"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "Sus ordenadores"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr ""
 "Vea una lista de todos los ordenadores en los que usted está ejecutando "
 "SETI at home"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "Su equipo"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "Vea información acerca de su equipo"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "Preguntas más frecuentes"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "Lea la lista de Preguntas Más Frecuentes en Einstein at Home"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "Información del salvapantallas"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "Lea la descripción detallada del salvapantallas de Einstein at Home"
 
-#: clientgui/Localization.cpp:71
-msgid "Correspond with admins and other users on the Einstein at Home message boards"
+#: clientgui/Localization.cpp:71
+msgid ""
+"Correspond with admins and other users on the Einstein at Home message boards"
 msgstr ""
 "Escríbase con lo administradores y otros usuarios en los foros de "
 "Einstein at Home"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "Estado de Einstein"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Estado actual del servidor de Einstein at Home"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "Informe de problemas"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
-msgstr "Un enlace a los foros de informe de problemas y fallos en Einstein at Home"
+msgstr ""
+"Un enlace a los foros de informe de problemas y fallos en Einstein at Home"
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr "Vea y modifique su perfil y preferencias de su cuenta Einstein at Home"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "Sumario de cuentas"
 
-#: clientgui/Localization.cpp:95
-msgid "View a listing of all the computers on which you are running Einstein at Home"
+#: clientgui/Localization.cpp:95
+msgid ""
+"View a listing of all the computers on which you are running Einstein at Home"
 msgstr ""
 "Vea una lista de todos los ordenadores en los que usted está ejecutando "
 "Einstein at Home"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "Proyecto LIGO"
 
-#: clientgui/Localization.cpp:103
-msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
+#: clientgui/Localization.cpp:103
+msgid ""
+"The home page of the Laser Interferometer Gravitational-wave Observatory "
+"(LIGO) project"
 msgstr ""
 "La página de inicio del proyecto LIGO (Observatorio de Ondas Gravitacionales "
 "por Interferometría Laser)"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "Proyecto GEO-600"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "La página de inicio del proyecto GEO-600"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Equipo"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "Información acerca de su Equipo"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "Consiga ayuda para climateprediction.net"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "Noticias"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "Noticias de climateprediction.net"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr "Vea la información de su cuenta, créditos totales y progresos"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "Información acerca de su equipo"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr "Buscar ayuda en nuestro sistema de ayuda"
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "Estadísticas Globales"
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "Sumario de las estadísticas de World Community Grid"
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr "Mis datos"
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "Sus estadísticas y configuración"
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr "Perfiles de Dispositivo"
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr "Actualiza la configuración de su dispositivo"
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr "Investigación"
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "Aprenda acerca de los proyectos albergados en World Community Grid"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr "Iniciando servicios cliente; por favor espere..."
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "Recuperando estado del sistema; por favor espere..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "Recuperando información del ordenador; por favor espere..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "Sin conexión a Internet"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Por favor conecte a Internet e inténtelo de nuevo."
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Proyecto no encontrado"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2173,11 +2275,11 @@ msgstr ""
 "\n"
 "Por favor compruebe la dirección e inténtelo de nuevo."
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "Administrador de cuentas no encontrado"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2189,50 +2291,66 @@ msgstr ""
 "\n"
 "Por favor compruebe la dirección e inténtelo de nuevo."
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr "Identificación Fallida."
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr "Verifique su nombre de usuario y clave e inténtelo de nuevo."
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr "Verifique que su dirección de correo y clave e inténtelo de nuevo."
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr "Elegir un proyecto"
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
 "Para elegir un proyecto, pulse sobre su nombre o introduzca su URL debajo."
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "URL del &Proyecto:"
 
-#: clientgui/ProjectInfoPage.cpp:320
-msgid "You are already attached to this project. Please choose a different project."
+#: clientgui/ProjectInfoPage.cpp:393
+msgid ""
+"This project may not have work for your type of computer. Are you sure you "
+"wish to continue?"
+msgstr ""
+"Este proyecto puede que no tenga trabajo para su tipo de ordenador. ¿Está "
+"seguro de desear continuar?"
+
+#: clientgui/ProjectInfoPage.cpp:417
+msgid ""
+"You are already attached to this project. Please choose a different project."
 msgstr "Usted ya está unido a este proyecto. Por favor, elija otro proyecto."
 
-#: clientgui/ProjectInfoPage.cpp:321
-msgid "Already Attached to Project"
-msgstr "Unido ya al Proyecto"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr "Pulsar"
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
-msgstr "Este proyecto podría no tener trabajo para su tipo de ordenador."
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr "CPU multinúcleo soportada"
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
-msgstr "Pulse aquí para ir al sitio web de %s."
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr "GPU Nvidia soportada"
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr "GPU ATI soportada"
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr "Sitio Web del proyecto"
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
@@ -2240,7 +2358,7 @@ msgstr ""
 "Comunicando con el proyecto\n"
 "Por favor espere..."
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
@@ -2249,11 +2367,11 @@ msgstr ""
 "señalado.\n"
 "(lookup_account.php/create_account.php)\n"
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "Fallo en comunicación de red"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2264,7 +2382,7 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
@@ -2275,15 +2393,15 @@ msgstr ""
 "1) Problema de conexión.  Compruebe su conexión de red o módem\n"
 "y haga clic en Anterior para intentarlo de nuevo.\n"
 "\n"
-"2) Un cortafuegos personal está bloqueando el programa World Community Grid "
-"- BOINC.  Configure su cortafuegos personal para dejar\n"
+"2) Un cortafuegos personal está bloqueando el programa World Community\n"
+" Grid - BOINC.  Configure su cortafuegos personal para dejar\n"
 "que BOINC y el Admnistrador BOINC se comuniquen con el puerto 80 y el 443, \n"
 "entonces haga clic en Anterior para intentarlo de nuevo.\n"
 "\n"
 "2) Usted está utilizando un servidor proxy.\n"
 "Haga clic en Siguiente para configurar los parámetros proxy de BOINC."
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2313,492 +2431,474 @@ msgstr ""
 "2) Usted está utilizando un servidor proxy.\n"
 "Haga clic en Siguiente para configurar los parámetros proxy de BOINC."
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Configuración proxy"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "Proxy HTTP"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "Servidor:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "Autodetección"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "Proxy SOCKS"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr "Vista Avanzada\tCtrl+Shift+A"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr "Cambiar al interfaz gráfico avanzado (accesible)."
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr "&%s"
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr "Recuperando estado actual."
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr "Usted no tiene ningún proyecto. Por favor únase a uno."
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr "Descargando trabajo del servidor."
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr "Procesamiento Suspendido: Funcionando con Baterías."
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr "Procesamiento Suspendido: Usuario Activo."
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr "Procesamiento Suspendido: Usuario suspendió actividad."
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr "Procesamiento Suspendido: Hora del Día."
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr "Procesamiento Suspendido: Ejecutando Pruebas Rendimiento."
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr "Procesamiento Suspendido."
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr "Esperando a contactar con los servidores del proyecto."
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr "Recuperando estado actual"
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr "No hay trabajo disponible para procesar"
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr "No se puede conectar al cliente núcleo"
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Proyecto"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "Hora"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Mensaje"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Copia todos los mensajes al portapapeles"
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
-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."
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
+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 ""
 "Copia los mensajes seleccionados al portapapeles. Puede seleccionar "
 "múltiples mensajes manteniendo pulsadas las teclas Shift o Control mientras "
 "hace clic en los mensajes."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
-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."
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
+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 ""
 "Copia los mensajes seleccionados al portapapeles. Puede seleccionar "
 "múltiples mensajes manteniendo pulsadas las teclas Shift y/o Control "
 "mientras hace clic en los mensajes."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr "Consiga ayuda con BOINC"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr "%s - Mensajes"
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr "100 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr "200 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr "500 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr "1 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr "2 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr "5 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr "10 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr "20 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr "50 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr "100 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr "10%"
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr "20%"
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr "30%"
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr "40%"
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr "50%"
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr "60%"
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr "70%"
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr "80%"
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr "90%"
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr "100%"
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr "1"
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr "3"
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr "5"
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr "10"
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr "15"
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr "30"
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr "60"
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr "Piel"
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr "Piel:"
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr "Preferencias"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr "Quiero personalizar mis preferencias sólo para este ordenador."
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr "Preferencias Personalizadas"
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr "Trabajar sólo entre:"
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr "Conectar a Internet sólo entre:"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr "No usar más de:"
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr "de espacio en disco"
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr "del procesador"
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr "¿Trabajar cuando use baterías?"
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr "Trabajar después de estar inactivo durante:"
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr "En cualquier momento"
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr "%d MB"
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr "%4.2f GB"
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr "%d%%"
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr "0 (Ejecutar siempre)"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr "%d"
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr "Detenido: Otro trabajo ejecutándose"
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr "Detenido: Usuario iniciado. Pulse 'Reanudar' para continuar"
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr "Detenido: Usuario activo"
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr "Detenido: Ordenador funcionando con batería"
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr "Detenido: Hora del Día."
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr "Detenido: Ejecutando pruebas de rendimiento."
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr "Detenido"
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr "En pausa: Inicio del programa aplazado"
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr "Pulse para mostrar los gráficos del proyecto"
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr "Unirse a un proyecto adicional"
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr "Sincronizar los proyectos con el sistema de administrador de cuentas"
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr "Abrir una ventana para ver los mensajes"
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr "Detener toda actividad"
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr "Continuar actividad"
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr "Abre una ventana para establecer sus preferencias"
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr "Cambiar a la vista avanzada de BOINC"
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr "Mis proyectos:"
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr "%s. Trabajo hecho por %s: %0.2f"
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr "Eliminar Proyecto"
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "¿Está seguro de que quiere separarse del proyecto '%s'?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "Separarse del proyecto"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr "%.1lf"
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr "%d hr %d min %d seg"
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr "¿Está seguro que desea mostrar los gráficos en un ordenador remoto?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Mostrar gráficos"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
 msgstr "Aplicación:"
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr "Tiempo Restante:"
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
 msgstr "Tiempo transcurrido:"
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr "Terminos de Uso"
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr "Por favor, lea los siguientes términos de uso:"
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr "Acepto los términos de uso."
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr "No acepto los términos de uso:"
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Proyecto temporalmente no disponible"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2808,11 +2908,11 @@ msgstr ""
 "\n"
 "Por favor inténtelo más tarde."
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "Administrador de cuentas temporalmente no disponible"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2822,32 +2922,33 @@ msgstr ""
 "\n"
 "Por favor inténtelo más tarde."
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "Por favor especifique una clave de cuenta para continuar."
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr "Clave de Cuenta inválida; por favor introduzca una clave válida"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Error de validación"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr "Por favor especifique una dirección de correo"
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
-msgstr "Dirección de correo inválida; por favor introduzca una dirección válida"
+msgstr ""
+"Dirección de correo inválida; por favor introduzca una dirección válida"
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "URL no introducida"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2857,18 +2958,18 @@ msgstr ""
 "Por ejemplo:\n"
 "http://www.ejemplo.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "URL inválida"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2878,604 +2979,510 @@ msgstr ""
 "Por ejemplo:\n"
 "http://proyectoboinc.ejemplo.com"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "'%s' no contiene un nombre válido de ordenador."
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "'%s' no contiene una ruta válida."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "Comandos"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Copiar todos los mensajes"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Copiar los mensajes seleccionados"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr "Mostrar sólo este proyecto"
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr "Mostrar sólo los mensajes del proyecto seleccionado."
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Mensajes"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "Copiando todos los mensajes al portapapeles..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 msgid "Copying selected messages to the clipboard..."
 msgstr "Copiando los mensajes seleccionados al portapapeles..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr "Filtrando mensajes..."
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 msgid "Show all messages"
 msgstr "Mostrar todos los mensajes"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr "Mostar los mensajes de todos los proyectos."
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr "ID"
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr "Prioridad"
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr "Mensajes"
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr "Copiando los mensajes seleccionados al portapapeles..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr "Información"
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr "Advertencia"
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr "Error"
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr "Fuentes de noticias"
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr "BOINC"
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr "Mostrar las últimas noticias sobre BOINC"
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
 msgstr "Sitio web de BOINC"
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr "Mostrar las últimas noticias sobre BOINC desde el sitio web de BOINC"
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Actualizar"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
-msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
+#: clientgui/ViewProjects.cpp:174
+msgid ""
+"Report all completed tasks, get latest credit, get latest preferences, and "
+"possibly get more tasks."
 msgstr ""
 "Enviar todas las tareas completadas, actualizar los créditos, actualizar sus "
 "preferencias y posiblemente descargar más tareas."
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Suspender"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr "Suspender las tareas de este proyecto."
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr "No pedir nuevas tareas"
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr "No pedir más tareas para este proyecto."
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Reiniciar proyecto"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
-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."
+#: clientgui/ViewProjects.cpp:195
+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 ""
 "Borrar todos los archivos y tareas asociadas a este proyecto, y pedir nuevas "
 "tareas. Puede actualizar antes el proyecto para enviar cualquier tarea "
 "completada."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Separarse"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
-msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
+#: clientgui/ViewProjects.cpp:202
+msgid ""
+"Detach computer from this project.  Tasks in progress will be lost (use "
+"'Update' first to report any completed tasks)."
 msgstr ""
 "Separar el ordenador de este proyecto. Las tareas en progreso se perderán "
 "(use 'Actualizar' antes para enviar todas las tareas completadas)."
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr "Propiedades"
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr "Mostrar los detalles del proyecto."
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Cuenta"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "Trabajo finalizado"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr "Promedio trabajo realizado"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Estado"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Proyectos"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "Actualizando proyecto..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "Reanudando proyecto..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "Suspendiendo proyecto..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr "Solicitando al proyecto que permita la descarga de más tareas..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "Solicitando al proyecto que no consiga más tareas..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "Reiniciando proyecto..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "¿Está seguro de que quiere reiniciar el proyecto '%s'?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Reiniciar Proyecto"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "Separándose del proyecto..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "Lanzando navegador..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Reanudar"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "Reanudar las tareas para este proyecto"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "Permitir nuevas tareas"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr "Permitir conseguir nuevas tareas para este proyecto."
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "No pedir más tareas para este proyecto."
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Suspendido por el usuario"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "No se descargarán nuevas tareas"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr "Proyecto finalizado - Aceptar para separarse"
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr "Se desconectará cuando las tareas estén terminadas"
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Pendiente petición al Planificador"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr "Petición al planificador en progreso"
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "Comunicación aplazada "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr "Proyectos"
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr "Total de disco utilizado"
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr "Disco utilizado por los proyectos BOINC"
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Disco"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr "no unido a ningún proyecto BOINC: 0 bytes"
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr "utilizado por BOINC:  "
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr "libre, disponible para BOINC: "
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr "libre, no disponible para BOINC: "
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr "libre: "
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr "utilizado por otros programas:  "
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Total Usuario"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Promedio Usuario"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Total Ordenador"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Promedio Ordenador"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
 msgstr "Última actualización: hace %.0f días"
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Mostrar totales del usuario"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr "Muestra el crédito total del usuario"
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "Mostrar promedios del usuario"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr "Muestra el crédito promedio del usuario"
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Mostrar totales del ordenador"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr "Muestra el crédito total del ordenador"
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "Mostrar promedios del ordenador"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr "Muestra el crédito promedio del ordenador"
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< Proyecto &anterior"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr "Muestra el gráfico del proyecto anterior"
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "&Siguiente proyecto >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr "Muestra el gráfico del siguiente proyecto"
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "Modo de presentación"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "Todos los proyectos"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr "Muestra todos los proyectos, un gráfico por proyecto"
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "Un proyecto"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr "Muestra un gráfico del proyecto seleccionado"
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr "Todos los proyectos (juntos)"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr "Muestra un gráfico con todos los proyectos"
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Estadísticas"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "Actualizando gráficas..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Reintentar Ahora"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "Haga clic en 'Reintentar Ahora' para tranferir ahora el archivo"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Abortar Transferencia"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
-msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
+msgid ""
+"Click 'Abort transfer' to delete the file from the transfer queue. This will "
+"prevent you from being granted credit for this result."
 msgstr ""
 "Haga clic en 'Abortar Transferencia' para eliminar el archivo de la cola de "
 "transferencias. Esto le impedirá conseguir los créditos por este resultado."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "Archivo"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Progreso"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Tamaño"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "Tiempo transcurrido"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Velocidad"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Transferencias"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "Reintentando transferencia ahora..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "Cancelando la transferencia..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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"
@@ -3485,113 +3492,126 @@ msgstr ""
 "NOTA: Abortar una transferencia invalidará la tarea y usted\n"
 "no recibirá créditos por ella."
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Cancelar Transferencia de Archivo"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "Reintentar en "
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr "Envío pendiente"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "Descarga pendiente"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr "  (proyecto parado:_"
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ")"
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr "Transferencias"
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 msgid "Aborting transfer(s)..."
 msgstr "Cancelando transferencia(s)..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
 "will not receive credit for it."
 msgstr ""
-"¿Está seguro de que quiere cancelar la transferencia de este(estos) "
-"fichero(s)?\n"
+"¿Está seguro de que quiere cancelar la transferencia de este(estos) fichero"
+"(s)?\n"
 "NOTA: Cancelar una transferencia invalidará la tarea y usted\n"
 "no recibirá créditos por ella."
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 msgid "Abort File Transfer(s)"
 msgstr "Cancelar Transferencia(s) de Archivo(s)"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr "Mostrar tareas activas"
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr "Mostrar sólo tareas activas."
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "Mostrar los gráficos de la aplicación en una ventana."
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "Suspender el trabajo para este resultado."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Cancelar"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr "Abandonar el trabajo con el resultado. No conseguirá crédito por él."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr "Mostrar detalles de la tarea."
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Nombre"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr "Transcurrido"
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "Tiempo restante"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Tareas"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "Reanudando tareas..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "Suspendiendo tareas..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "Mostrando gráficos para la tarea..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Cancelando resultado..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
@@ -3599,36 +3619,62 @@ msgstr ""
 "¿Está seguro de querer cancelar esta tarea '%s'?\n"
 "(Progreso: %s, Estado: %s)"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "¿Está seguro de querer abortar estas %d tareas?"
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "Cancelar tarea"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Cancelando resultado..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr "Mostrar todas las tareas"
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr "Mostrar todas las tareas."
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr "Reanudar el trabajo para esta tarea."
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr "Suspender el trabajo para esta tarea."
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr "falta GPU,  "
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr " - una aplicación se está ejecuntando en exclusiva"
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr "(no-CPU-intensivo)"
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr "Abortado: no iniciado por el límite de tiempo"
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr "Tareas"
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
@@ -3636,12 +3682,12 @@ msgstr ""
 "¿Está seguro de querer cancelar esta tarea '%s'?\n"
 "(Progreso: %s % %, Estado: %s)"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
-msgstr "Cambiar Programas de Investigación en World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr "Unirse a proyecto o administrador de cuentas"
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3655,15 +3701,15 @@ msgstr ""
 "Los proyectos que son añadidos a través de esta opción no serán\n"
 "listados o administrados a través de %s."
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
 msgstr ""
-"Nosotros ahora le guiaremos a través del proceso de unión\n"
-"a un proyecto."
+"Le guiaremos a través del proceso de unirse\n"
+"a un proyecto o administrador de cuentas."
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3685,7 +3731,8 @@ msgstr ""
 "\n"
 "Algunos proyectos como World Community Grid ejecutan varios programas de "
 "investigación.\n"
-"Si quiere cambiar qué programas de investigación son enviados a su ordenador\n"
+"Si quiere cambiar qué programas de investigación son enviados a su "
+"ordenador\n"
 "para ser ejecutados, entonces debe visitar el sitio web de los proyectos y "
 "modificar allí\n"
 "sus preferencias.\n"
@@ -3693,311 +3740,173 @@ msgstr ""
 "Para cambiar qué programas de investigación se le envían desde\n"
 "World Community Grid por favor pulse en el botón siguiente: "
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
-msgstr "&Dejar de usar%s"
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-"Nosotros ahora eliminaremos este ordenador de %s. A partir de ahora,\n"
-" únase y sepárese de los proyectos directamente desde este ordenador.\n"
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "Administrador de cuentas"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"Le guiaremos ahora a través del proceso de unión\n"
-"a un administrador de cuentas.\n"
-"\n"
-"Si quiere unirse a un único proyecto, haga clic en Cancelar,\n"
-"y después seleccione la opción de Menú \"Unirse a un proyecto\"."
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "Marcas de depuración"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "Fallo en Propiedades del Proyecto"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr "Fallo de Comunicaciones del Proyecto"
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "Fallo en la URL de Propiedades del Proyecto"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "Creación de Cuentas Desactivada"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "Desactivada la Creación de Cuenta de Cliente"
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "Cuenta ya Existente"
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "Ya está unido a este proyecto"
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "Fallo en Unión al Proyecto"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
-msgstr "Fallo en la Comunicación con el Servidor de Referencia"
-
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "Fallo en Detección de Red"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr "Cambiar Programas de Investigación en World Community Grid"
 
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "Para continuar, haga clic en Siguiente."
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "¿Realmente desea cancelar?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "Pregunta"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "&Siguiente >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< &Anterior"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "&Finalizar"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
 msgid "New page inserted. Index = %i"
 msgstr "Nueva página insertada. Índice = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
 msgid "New page appended. Index = %i"
 msgstr "Nueva página añadida. Índice = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
 msgid "Old Page Index = %i"
 msgstr "Índice de Páginas Viejas = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr "AlSoltarObjetivo: índice por HitTest = %i"
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr "Control de Gráficas"
 
-#: clientgui/DlgAdvPreferences.h:29
-msgid "specify work start and stop hours in format HH:MM-HH:MM"
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid ""
+"for accessibility support, please select advanced from the view menu or type "
+"command shift a"
 msgstr ""
-"especificar horas de comienzo y final del trabajo en el formato HH:MM-HH:MM"
+"para soporte para accesibilidad, por favor seleccione avanzada en el menú "
+"ver o pulse ctrl shift a"
 
-#: clientgui/DlgAdvPreferences.h:30
-msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
 msgstr ""
-"especificar horas de comienzo y final de uso de la red en el formato HH:MM-"
-"HH:MM"
+"Este panel contiene gráficos que muestran los totales del usuario para los "
+"proyectos"
 
-#~ msgid ""
-#~ "You can copy and paste the URL from your browser's\n"
-#~ "address bar."
-#~ msgstr ""
-#~ "Usted puede copiar y pegar la URL desde la barra\n"
-#~ "de direcciones de su navegador."
-
-#~ msgid "For a list of account managers go to:"
-#~ msgstr "Para una lista de administradores de cuentas vaya a:"
-
-#~ msgid "&Advanced View"
-#~ msgstr "Vista &Avanzada"
-
-#~ msgid "&Simple View..."
-#~ msgstr "Vista &Simple"
-
-#~ msgid "Already attached to project"
-#~ msgstr "Unido ya a proyecto"
-
-#~ msgid "You are already attached to this project."
-#~ msgstr "Usted ya está unido a este proyecto."
-
-#~ msgid "Static text"
-#~ msgstr "Texto estático"
-
-#~ msgid "Radiobutton"
-#~ msgstr "Botón de selección"
-
-#~ msgid "Short term debt"
-#~ msgstr "Planificación de CPU prioritaria"
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr "en blanco"
 
-#~ msgid "Long term debt"
-#~ msgstr "Búsqueda de trabajo prioritaria"
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr "lista de  "
 
-#~ msgid "Test"
-#~ msgstr "Prueba"
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr " está vacío"
 
-#~ msgid "Enter account key"
-#~ msgstr "Introduzca la clave de cuenta"
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr "%d de %d; "
 
-#~ msgid ""
-#~ "This project uses an \"account key\" to identify you.\n"
-#~ "\n"
-#~ "Go to the project's web site to create an account. Your account\n"
-#~ "key will be emailed to you."
-#~ msgstr ""
-#~ "Este proyecto utiliza una \"clave de cuenta\" para identificarle.\n"
-#~ "\n"
-#~ "Vaya al la página web del proyecto para crear una cuenta. Su clave\n"
-#~ "de cuenta le será enviada por correo electrónico."
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr "columna de orden actual "
 
-#~ msgid "An account key looks like:"
-#~ msgstr "La clave de cuenta se parece a esto:"
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr " orden descendente "
 
-#~ msgid "82412313ac88e9a3638f66ea82186948"
-#~ msgstr "82412313ac88e9a3638f66ea82186948"
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr " orden ascendente "
 
-#~ msgid "Account key:"
-#~ msgstr "Clave de cuenta:"
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr "columna "
 
-#~ msgid "For a list of BOINC-based account managers go to:"
-#~ msgstr "Para una lista de los administradores de cuenta basados en BOINC vaya a:"
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr "la lista está vacía"
 
-#~ msgid "&Accessible View"
-#~ msgstr "Vista &Accesible"
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr "seleccionada "
 
-#~ msgid "Accessible views are compatible with accessibility aids such as screen readers."
-#~ msgstr "Las Vistas accesibles son compatibles con ayudas para accesibilidad tales como lectores de pantalla."
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr "fila %d "
 
-#~ msgid "&Grid View"
-#~ msgstr "Vista &Gráfica"
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr "de %d; "
 
-#~ msgid "Grid views allow you to sort various columns and displays graphical progress bars."
-#~ msgstr "Las Vistas gráficas le permiten ordenar varias columnas y visualiza barras de progreso."
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr "columna %d; "
 
-#~ msgid ":"
-#~ msgstr ":"
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr "lista de proyectos o administradores de cuenta"
 
-#, c-format
-#~ msgid ""
-#~ "%s is going to shutdown the core client it is currently connected to.\n"
-#~ "NOTE: Choosing 'OK' will cause the select new computer dialog to appear \n"
-#~ "so you can attach to a different core client."
-#~ msgstr ""
-#~ "%s va a cerrar el cliente núcleo al que está actualmente conectado.\n"
-#~ "NOTA: Si elige 'Aceptar' provocará que aparezca el diálogo para seleccionar un nuevo ordenador\n"
-#~ "de forma que pueda unirse a un nuevo cliente núcleo."
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr "fila %d de %d; "
 
-#, c-format
-#~ msgid ""
-#~ "BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
-#~ "(Error code %d)"
-#~ msgstr ""
-#~ "Los permisos o las propiedades de BOINC no están configurados apropiadamente; por favor reinstale BOINC\n"
-#~ "(código de error %d)"
+#: clientgui/DlgAdvPreferences.h:29
+msgid "specify work start and stop hours in format HH:MM-HH:MM"
+msgstr ""
+"especificar horas de comienzo y final del trabajo en el formato HH:MM-HH:MM"
 
-#~ msgid "BOINC leaves at least this amount of disk space free (in Gigagytes)"
-#~ msgstr "BOINC deja como mínimo esta cantidad de espacio de disco libre (en gigabytes)"
+#: clientgui/DlgAdvPreferences.h:30
+msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
+msgstr ""
+"especificar horas de comienzo y final de uso de la red en el formato HH:MM-"
+"HH:MM"
 
-#~ msgid "Click here to disable displaying this message in the future."
-#~ msgstr "Haga Clic aquí para desactivar este mensaje en el futuro."
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "&Cerrar Ventana\tCtrl+W"
 
-#~ msgid "Language Selection:"
-#~ msgstr "Selección de Idioma:"
+#~ msgid "&News\tCtrl+Shift+N"
+#~ msgstr "&Noticias\tCtrl+Shift+N"
 
-#~ msgid "What language should the manager display by default."
-#~ msgstr "Qué idioma debe el administrador mostrar por defecto."
+#~ msgid "Display news"
+#~ msgstr "Visualizar las noticias"
 
-#~ msgid "Reminder Frequency:"
-#~ msgstr ""
-#~ "Frecuencia de Recordatorio:\n"
-#~ "(para eventos de conexión)"
+#, fuzzy
+#~ msgid "&Projects\tCTRL+SHIFT+P"
+#~ msgstr "&Proyectos\tCrtl+Shift+P"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
-#~ msgstr "Cada cuánto, en minutos, debe recordarle el administrador de posibles eventos de conexión."
+#, fuzzy
+#~ msgid "&Tasks\tCTRL+SHIFT+T"
+#~ msgstr "&Tareas\tCtrl+Shift+T"
 
 #~ msgid ""
-#~ "BOINC failed to communicate on the Internet. The most likely\n"
-#~ "reasons are:\n"
-#~ "\n"
-#~ "1) Connectivity problem.  Check your network\n"
-#~ "or modem connection and click Back to try again.\n"
-#~ "\n"
-#~ "2) Personal firewall software is blocking BOINC.\n"
-#~ "Configure your personal firewall to let BOINC\n"
-#~ "communicate on port 80, then click Back to try again.\n"
-#~ "\n"
-#~ "3) You are using a proxy server.\n"
-#~ "Click Next to configure BOINC's proxy settings."
+#~ "You currently are not authorized to manage the client.\n"
+#~ "Please contact your administrator to add you to the 'boinc_master' user "
+#~ "group."
 #~ msgstr ""
-#~ "BOINC no ha podido establecer conexión con Internet. Las razones más\n"
-#~ "comunes son:\n"
-#~ "\n"
-#~ "1) Problema de conexión. Compruebe su conexión\n"
-#~ "de red o módem y haga clic en Anterior para intentarlo de nuevo.\n"
-#~ "\n"
-#~ "2) Algún cortafuegos personal está bloqueando BOINC.\n"
-#~ "Configure su cortafuegos personal para dejar que BOINC\n"
-#~ "se comunique con el puerto 80, entonces haga clic en Anterior para intentarlo de nuevo.\n"
-#~ "\n"
-#~ "2) Usted está utilizando un servidor proxy.\n"
-#~ "Haga clic en Siguiente para configurar los parámetros proxy en BOINC."
-
-#~ msgid "total disk usage"
-#~ msgstr "uso total del disco"
-
-#~ msgid "disk usage by BOINC projects"
-#~ msgstr "uso del disco por los proyectos BOINC"
-
-#~ msgid "not attached to any BOINC project - 0 bytes"
-#~ msgstr "no unido a ningún proyecto BOINC - 0 bytes"
-
-#~ msgid "free disk space - "
-#~ msgstr "espacio libre en disco - "
-
-#~ msgid "used by BOINC - "
-#~ msgstr "utilizado por BOINC - "
-
-#~ msgid "used by other programs - "
-#~ msgstr "utilizado por otros programas - "
-
-#~ msgid "Project Comm Failure"
-#~ msgstr "Fallo en Comunicación con Proyecto"
-
-#~ msgid "Google Comm Failure"
-#~ msgstr "Fallo de Comunicación con Google"
-
-#, c-format
-#~ msgid "Yahoo Comm Failure"
-#~ msgstr "Fallo de Comunicación con Yahoo"
+#~ "Usted no está autorizado actualmente a administrar el cliente.\n"
+#~ "Por favor, contacte con su administrador para que le añada al grupo de "
+#~ "usuarios locales 'boinc_users'."
diff --git a/locale/es/BOINC-Project-Generic.po b/locale/es/BOINC-Project-Generic.po
index 2c551b0..bf1ffab 100644
--- a/locale/es/BOINC-Project-Generic.po
+++ b/locale/es/BOINC-Project-Generic.po
@@ -3,12 +3,12 @@ msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: BOINC translation team <translate at boinc.berkeley.edu>\n"
 "POT-Creation-Date: 2009-05-09 21:36 PDT\n"
-"PO-Revision-Date: 2009-07-30 12:24-0700\n"
-"Last-Translator: David M <davidcomp at telefonica dot net>\n"
+"PO-Revision-Date: 2010-04-01 05:27-0700\n"
+"Last-Translator: David M <davidcomp2 at telefonica dot net>\n"
 "Language-Team: \n"
 "Language: es\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 1.2.1\n"
@@ -26,7 +26,7 @@ msgid "Search forums"
 msgstr "Buscar en los foros"
 
 msgid "Advanced search"
-msgstr "Busqueda avanzada"
+msgstr "Búsqueda avanzada"
 
 # ########################################
 # Private messages
@@ -166,8 +166,7 @@ msgstr "Buscar"
 
 msgid "Requested by you, and founder response deadline has passed."
 msgstr ""
-"Solicitado por usted, y el tiempo límite de repuesta del fundador ha "
-"acabado."
+"Solicitado por usted, y el tiempo límite de repuesta del fundador ha acabado."
 
 msgid "Complete foundership transfer"
 msgstr "Completar la transferencia de fundador"
@@ -525,7 +524,8 @@ msgid "Use BBCode tags to format your text"
 msgstr "Use etiquetas BBCode para formatear su texto"
 
 msgid "Identifies you on our web site. Use your real name or a nickname."
-msgstr "Le identifica en nuestra página web. Utilice su nombre real o un apodo."
+msgstr ""
+"Le identifica en nuestra página web. Utilice su nombre real o un apodo."
 
 msgid "Select the country you want to represent, if any."
 msgstr "Seleccione el país que quiere representar, si lo hay."
@@ -646,8 +646,8 @@ 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 ""
-"Si desea incluir una imagen en su perfil, haga clic en el botón \"Explorar\" y "
-"seleccione un archivo JPEG o PNG. Por favor seleccione imágenes de %1 o "
+"Si desea incluir una imagen en su perfil, haga clic en el botón \"Explorar\" "
+"y seleccione un archivo JPEG o PNG. Por favor seleccione imágenes de %1 o "
 "menos."
 
 msgid "Language"
@@ -687,15 +687,15 @@ msgid ""
 "Your first response was flagged as spam by the Akismet anti-spam system.  "
 "Please modify your text and try again."
 msgstr ""
-"Su primera respuesta fue marcada como spam por el sistema anti-spam Akismet. "
-" Por favor, modifique su texto e inténtelo de nuevo."
+"Su primera respuesta fue marcada como spam por el sistema anti-spam "
+"Akismet.  Por favor, modifique su texto e inténtelo de nuevo."
 
 msgid ""
 "Your second response was flagged as spam by the Akismet anti-spam system.  "
 "Please modify your text and try again."
 msgstr ""
-"Su segunda respuesta fue marcada como spam por el sistema anti-spam Akismet. "
-" Por favor, modifique su texto e inténtelo de nuevo."
+"Su segunda respuesta fue marcada como spam por el sistema anti-spam "
+"Akismet.  Por favor, modifique su texto e inténtelo de nuevo."
 
 msgid "Your profile submission was empty."
 msgstr "El envío de su perfil estaba vacío."
@@ -795,7 +795,8 @@ msgid "Forum search results"
 msgstr "Resultados de la búsqueda en el foro"
 
 msgid "No thread with id %1. Please check the link and try again."
-msgstr "No hay hilo con id %1. Por favor, pulse en el enlace y pruebe de nuevo."
+msgstr ""
+"No hay hilo con id %1. Por favor, pulse en el enlace y pruebe de nuevo."
 
 msgid "This forum is not visible to you."
 msgstr "Este foro no es visible para usted."
@@ -1035,8 +1036,8 @@ msgid ""
 "resources are used by %1, and when it uses them."
 msgstr ""
 "Cuando ejecute %1 en su ordenador, utilizará parte de la potencia de su CPU, "
-"espacio en disco, y ancho de banda de red. Usted puede controlar la "
-"cantidad de recursos que usa %1, y cuándo son utilizados."
+"espacio en disco, y ancho de banda de red. Usted puede controlar la cantidad "
+"de recursos que usa %1, y cuándo son utilizados."
 
 msgid ""
 "The work done by your computer contributes to the goals of %1, as described "
@@ -1275,8 +1276,8 @@ msgid ""
 "If you haven't already, you can %1create your own user profile%2 for others "
 "to see!"
 msgstr ""
-"¡Si no lo ha hecho todavía, usted puede %1crear su propio perfil de "
-"usuario%2 para que otros lo vean!"
+"¡Si no lo ha hecho todavía, usted puede %1crear su propio perfil de usuario%"
+"2 para que otros lo vean!"
 
 msgid "User of the Day"
 msgstr "Usuario del Día"
@@ -1294,8 +1295,8 @@ msgid ""
 "Browse profiles %1at random%2, %3at random with pictures%2, or %4at random "
 "without pictures%2."
 msgstr ""
-"Ver perfiles %1al azar%2, %3al azar con imágenes%2, o %4al azar sin "
-"imágenes%2."
+"Ver perfiles %1al azar%2, %3al azar con imágenes%2, o %4al azar sin imágenes%"
+"2."
 
 msgid "Alphabetical profile listings:"
 msgstr "Listado alfabético de perfiles:"
@@ -1310,10 +1311,10 @@ msgid "No profiles matched your query."
 msgstr "No hay perfiles que correspondan a su búsqueda."
 
 msgid "Invalid vote type:"
-msgstr ""
+msgstr "Tipo de voto no válido:"
 
 msgid "Vote Recorded"
-msgstr ""
+msgstr "Voto Registrado"
 
 msgid "Thank you"
 msgstr "Gracias"
@@ -1495,8 +1496,8 @@ msgid ""
 msgstr ""
 "Para usar su clave débil en cierta computadora, busque o cree el 'archivo de "
 "cuenta' para este proyecto. El nombre de este archivo está en la forma "
-"<b>cuenta_URL_DEL_PROYECTO.xml</b>. El archivo de cuenta para %1 es "
-"<b>%2</b>."
+"<b>cuenta_URL_DEL_PROYECTO.xml</b>. El archivo de cuenta para %1 es <b>%2</"
+"b>."
 
 msgid "Create this file if needed. Set its contents to:"
 msgstr "Cree este archivo si es necesario. Ponga en él lo siguiente:"
@@ -1542,7 +1543,9 @@ msgstr ""
 #~ msgid "Really delete?"
 #~ msgstr "¿Desea borrarlo?"
 
-#~ msgid "Are you sure you want to delete the message with subject &quot;%1&quot; (sent by %2 on %3)?"
+#~ msgid ""
+#~ "Are you sure you want to delete the message with subject &quot;%1&quot; "
+#~ "(sent by %2 on %3)?"
 #~ msgstr ""
 #~ "¿Está seguro de que quiere borrar el mensaje con asunto &quot;%1&quot; "
 #~ "(enviado por %2 el %3)?"
diff --git a/locale/es/BOINC-Web.po b/locale/es/BOINC-Web.po
index 485a6f8..6ce4358 100644
--- a/locale/es/BOINC-Web.po
+++ b/locale/es/BOINC-Web.po
@@ -6,10 +6,10 @@ msgstr ""
 "PO-Revision-Date: 2009-07-29 11:46-0700\n"
 "Last-Translator: David M <davidcomp at telefonica dot net>\n"
 "Language-Team: \n"
-"Language: es\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: es\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 1.2.1\n"
 "X-Poedit-Language: English\n"
@@ -293,8 +293,8 @@ msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr ""
-"¿Dónde obtiene información de ayuda para resolver los problemas con BOINC "
-"y/o sus proyectos?"
+"¿Dónde obtiene información de ayuda para resolver los problemas con BOINC y/"
+"o sus proyectos?"
 
 #: poll_data.inc:208
 msgid "The project message boards"
@@ -388,8 +388,8 @@ msgid ""
 msgstr ""
 "La ayuda Online de BOINC le permite hablar directamente con usuarios BOINC "
 "con experiencia, que pueden: %s contestar preguntas sobre BOINC y "
-"computación voluntaria; %s guiarle en el proceso de instalar y usar BOINC; "
-"%s resolver cualquier problema que pudiera tener."
+"computación voluntaria; %s guiarle en el proceso de instalar y usar BOINC; %"
+"s resolver cualquier problema que pudiera tener."
 
 #: help.php:21
 #, php-format
@@ -444,8 +444,8 @@ msgstr ""
 msgid ""
 "If you're already a Help Volunteer: to edit your settings, %sclick here%s."
 msgstr ""
-"Si usted es ya un Voluntario para Ayuda: para editar sus preferencias, "
-"%spulse aquí%s. "
+"Si usted es ya un Voluntario para Ayuda: para editar sus preferencias, %"
+"spulse aquí%s. "
 
 #: index.php:23
 msgid "Computing power"
@@ -522,8 +522,8 @@ msgstr ""
 " Use el tiempo de inactividad de su ordenador (Windows, Mac, o Linux) para "
 "curar enfermedades, estudiar el calentamiento global, descubrir pulsares, y "
 "haga muchos otros tipos de investigación científica. Es seguro, estable, y "
-"fácil: %sElija%s proyectos %sDescargue%s y ejecute el programa BOINC "
-"%sIntroduzca%s una dirección de correo electrónico y una contraseña."
+"fácil: %sElija%s proyectos %sDescargue%s y ejecute el programa BOINC %"
+"sIntroduzca%s una dirección de correo electrónico y una contraseña."
 
 #: index.php:107
 #, php-format
diff --git a/locale/es/pootle-boincclient610-es.prefs b/locale/es/pootle-boincclient610-es.prefs
new file mode 100644
index 0000000..5b779ef
--- /dev/null
+++ b/locale/es/pootle-boincclient610-es.prefs
@@ -0,0 +1,8 @@
+# Pootle preferences for project boinctrunk, language es
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  JensSeidler = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  DavidM = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/es/pootle-boinctrunk-es.prefs b/locale/es/pootle-boinctrunk-es.prefs
deleted file mode 100644
index a728280..0000000
--- a/locale/es/pootle-boinctrunk-es.prefs
+++ /dev/null
@@ -1,8 +0,0 @@
-# Pootle preferences for project boinctrunk, language es
-
-rights:
-  default = u'view, suggest, archive, pocompile'
-  nobody = u'view'
-  JensSeidler = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  DavidM = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/fa/BOINC-Manager.mo b/locale/fa/BOINC-Manager.mo
new file mode 100644
index 0000000..c5de9f0
Binary files /dev/null and b/locale/fa/BOINC-Manager.mo differ
diff --git a/locale/fa/BOINC-Manager.po b/locale/fa/BOINC-Manager.po
new file mode 100644
index 0000000..dca5bd6
--- /dev/null
+++ b/locale/fa/BOINC-Manager.po
@@ -0,0 +1,3580 @@
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.2.1\n"
+"X-Poedit-SearchPath-0: clientgui\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
+"X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
+
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:382
+msgid ""
+"Please enter your account information\n"
+"(to create an account, visit the project's web site)"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:386
+msgid ""
+"This project is not currently accepting new accounts.\n"
+"You can attach only if you already have an account."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:390
+msgid "Are you already running this project?"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:394
+msgid "&No, new user"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:397
+msgid "&Yes, existing user"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
+msgid "&Password:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
+msgid "Choose a &password:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:435
+msgid "C&onfirm password:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
+msgid "Are you already running %s?"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:459
+msgid "&Username:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:473
+msgid "&Email address:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
+msgid "minimum length %d"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:488
+msgid "Forgot your password?"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:530
+msgid "Attach to project"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:532
+msgid "Update account manager"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:534
+msgid "Attach to account manager"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
+msgid "The minimum password length for this project is %d. Please enter a different password."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
+msgid "The minimum password length for this account manager is %d. Please enter a different password."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:560
+msgid "The password and confirmation password do not match. Please type them again."
+msgstr ""
+
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr ""
+
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+
+#: clientgui/AccountManagerInfoPage.cpp:255
+msgid "Account Manager &URL:"
+msgstr ""
+
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
+msgid "Communicating with %s."
+msgstr ""
+
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
+msgid "Communicating with server."
+msgstr ""
+
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
+msgid "Please wait..."
+msgstr ""
+
+#: clientgui/AccountManagerProcessingPage.cpp:325
+msgid "An internal server error has occurred.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:93
+msgid "Connected"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:101
+msgid "Disconnected"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
+msgid "E&xit"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
+msgid "&Synchronize with %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
+msgid "Get current settings from %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:432
+msgid "&Run always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:433
+msgid "Allow work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:437
+msgid "Run based on &preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:438
+msgid "Allow work according to your preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:442
+msgid "&Suspend"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:443
+msgid "Stop work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:503
+msgid "&Network activity always available"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:504
+msgid "Allow network activity regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:509
+msgid "Allow network activity according to your preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:514
+msgid "Stop BOINC network activity"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:521
+msgid "&Options..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:522
+msgid "Configure GUI options and proxy settings"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:526
+msgid "&Preferences..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:527
+msgid "Configure local preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
+msgid "Connect to another computer running %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:538
+msgid "Select computer..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:543
+msgid "Shut down connected client..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:544
+msgid "Shut down the currently connected core client"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:548
+msgid "Run CPU &benchmarks"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:549
+msgid "Runs BOINC CPU benchmarks"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:553
+msgid "Do network &communication"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:554
+msgid "Do all pending network communication."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:558
+msgid "Read config file"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:559
+msgid "Read configuration info from cc_config.xml."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:563
+msgid "Read local prefs file"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:564
+msgid "Read preferences from global_prefs_override.xml."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
+msgid "%s &help"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
+msgid "Show information about %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
+msgid "&%s help"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
+msgid "Show information about the %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
+msgid "%s &website"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
+msgid "Show information about BOINC and %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
+msgid "&About %s..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:634
+msgid "Licensing and copyright information."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:641
+msgid "&File"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:645
+msgid "&View"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:649
+msgid "&Tools"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:653
+msgid "&Activity"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:657
+msgid "A&dvanced"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:661
+msgid "&Help"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
+msgid "%s - Detach from %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1126
+#, 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 ""
+
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
+msgid "%s - Language Selection"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
+msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
+msgid "%s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
+msgid "%s has successfully attached to %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
+msgid "%s - (%s)"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
+msgid "Connecting to %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
+msgid "Connected to %s (%s)"
+msgstr ""
+
+#: clientgui/AlreadyExistsPage.cpp:182
+msgid "Username already in use"
+msgstr ""
+
+#: clientgui/AlreadyExistsPage.cpp:185
+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 ""
+
+#: clientgui/AlreadyExistsPage.cpp:189
+msgid "Email address already in use"
+msgstr ""
+
+#: clientgui/AlreadyExistsPage.cpp:192
+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 ""
+
+#: clientgui/AsyncRPC.cpp:1207
+msgid "Communicating with BOINC client.  Please wait ..."
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
+msgid "%s - Connection Error"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:431
+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 ""
+
+#: clientgui/BOINCBaseFrame.cpp:440
+msgid ""
+"Authorization failed connecting to running client.\n"
+"Make sure you start this program in the same directory as the client."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:442
+msgid "Authorization failed connecting to running client."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:450
+msgid "The password you have provided is incorrect, please try again."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
+msgid "%s - Connection Failed"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
+msgid ""
+"%s is not able to connect to a %s client.\n"
+"Would you like to try to connect again?"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
+msgid "%s - Daemon Start Failed"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
+
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
+msgid ""
+"%s is not able to start a %s client.\n"
+"Please start the daemon and try again."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
+msgid "%s - Connection Status"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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 ""
+
+#: clientgui/BOINCBaseView.cpp:723
+msgid "Web sites"
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
+msgid "%s - Network Status"
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
+msgid "%s needs to connect to the Internet.  Please click to open %s."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
+msgid ""
+"%s is unable to communicate with a project and needs an Internet connection.\n"
+"Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
+msgid ""
+"%s needs to connect to the Internet.\n"
+"May it do so now?"
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
+msgid "%s is connecting to the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
+msgid ""
+"%s couldn't do Internet communication, and no default connection is selected.\n"
+"Please connect to the Internet, or select a default connection\n"
+"using Advanced/Options/Connections."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
+msgid "%s has successfully connected to the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
+msgid "%s failed to connect to the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
+msgid ""
+"%s has detected it is now connected to the Internet.\n"
+"Updating all projects and retrying all transfers."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
+msgid "%s has successfully disconnected from the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
+msgid "%s failed to disconnected from the Internet."
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:378
+msgid ""
+"A reboot is required in order for BOINC to run properly.\n"
+"Please reboot your computer and try again."
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:379
+msgid "BOINC Manager"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:526
+msgid "BOINC Manager was started by the operating system automatically"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:528
+msgid "Startup BOINC so only the system tray icon is visible"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
+msgid "Startup BOINC with these optional arguments"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:534
+msgid "disable BOINC security users and permissions"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:535
+msgid "set skin debugging mode to enable skin manager error messages"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:725
+msgid "(Automatic Detection)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:726
+msgid "(Unknown)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:727
+msgid "(User Defined)"
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:348
+msgid "Computation is suspended."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:356
+msgid "Network activity is suspended."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
+msgid "%s: %.2f%% completed."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
+msgid "%d tasks running."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:412
+msgid "Reconnecting to client."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:418
+msgid "Not connected to a client."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
+msgid "Open %s Web..."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
+msgid "Open %s..."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:623
+msgid "Snooze"
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
+msgid "Failed to attach to project"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:204
+msgid "Failed to update account manager"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:208
+msgid "Failed to remove account manager"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:212
+msgid "Failed to attach to account manager"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:221
+msgid ""
+"An error has occurred;\n"
+"check Messages for details.\n"
+"\n"
+"Click Finish to close."
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
+msgid "Click Finish to close."
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:234
+msgid "Messages from server:"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:208
+msgid "Attached to project"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:214
+msgid "You are now successfully attached to this project."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:219
+msgid ""
+"When you click Finish, your web browser will go to a page where\n"
+"you can set your account name and preferences."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:236
+#, c-format
+msgid "Update from %s completed."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:240
+msgid "Update completed."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:257
+#, c-format
+msgid "Attached to %s"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:261
+msgid "Attached to account manager"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:271
+#, c-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:285
+#, c-format
+msgid "You are now successfully attached to the %s system."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:289
+msgid "You are now successfully attached to this account manager."
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:98
+#, c-format
+msgid "About %s"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:155
+msgid "Version:"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:163
+msgid "wxWidgets Version:"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:171
+msgid "Copyright:"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:175
+msgid ""
+"(C) 2003-2010 University of California, Berkeley.\n"
+"All Rights Reserved."
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
+msgid "Berkeley Open Infrastructure for Network Computing"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
+msgid "&OK"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:485
+msgid "invalid float"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:486
+msgid "invalid time, format is HH:MM"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:487
+msgid "invalid time interval, format is HH:MM-HH:MM"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:601
+msgid "invalid input value detected"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:603
+msgid "Validation Error"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:747
+msgid "Do you really want to clear all local preferences ?"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:748
+msgid "Confirmation"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
+msgid "%s - Preferences"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:49
+msgid ""
+"This dialog controls preferences for this computer only.\n"
+"Click OK to set preferences.\n"
+"Click Clear to restore web-based settings."
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:52
+msgid "Clear"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:53
+msgid "clear all local preferences and close the dialog"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:76
+msgid "Computing allowed"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:80
+msgid " While computer is on batteries"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:83
+msgid "check this if you want this computer to do work while it runs on batteries"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:89
+msgid " While computer is in use"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:92
+msgid "check this if you want this computer to do work even when you're using it"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:98
+msgid " Use GPU while computer is in use"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:101
+msgid "check this if you want your GPU to do work even when you're using the computer"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:113
+msgid "Only after computer has been idle for"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:123
+msgid "do work only after you haven't used the computer for this number of minutes"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
+msgid "minutes"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
+msgid "Every day between hours of"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:181
+msgid "start work at this time"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
+msgid "and"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:189
+msgid "stop work at this time"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
+msgid "(no restriction if equal)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
+msgid "Day-of-week override:"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
+msgid "check box to specify hours for this day of week"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
+msgid "Monday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
+msgid "Tuesday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
+msgid "Wednesday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
+msgid "Thursday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
+msgid "Friday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
+msgid "Saturday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
+msgid "Sunday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:272
+msgid "Other options"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:289
+msgid "On multiprocessor systems, use at most"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
+msgid "% of the processors"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
+msgid "Use at most"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
+msgid "% CPU time"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:316
+msgid "processor usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:324
+msgid "General options"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:331
+msgid "Maximum download rate"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
+msgid "KBytes/sec."
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:340
+msgid "Maximum upload rate"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:349
+msgid "Connect about every"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:353
+msgid ""
+"this computer is connected to the Internet about every X days\n"
+"(0 if it's always connected)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:357
+msgid "days"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:360
+msgid "Additional work buffer"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:366
+msgid "days (max. 10)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:369
+msgid " Skip image file verification"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:371
+msgid "check this if your Internet provider modifies image files"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:380
+msgid "Connect options"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:382
+msgid "Confirm before connecting to internet"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:384
+msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:388
+msgid "Disconnect when done"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:390
+msgid ""
+"if checked, BOINC hangs up when network usage is done\n"
+"(only relevant for dialup-connection)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:397
+msgid "Network usage allowed"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:406
+msgid "network usage start hour"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:414
+msgid "network usage stop hour"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:499
+msgid "network usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
+msgid "Disk usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:519
+msgid "the maximum disk space used by BOINC (in Gigabytes)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:523
+msgid "Gigabytes disk space"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:526
+msgid "Leave at least"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:530
+msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:534
+msgid "Gigabytes disk space free"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:541
+msgid "BOINC uses at most this percentage of total disk space"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
+msgid "% of total disk space"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:555
+msgid "seconds"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
+msgid "% of page file (swap space)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:573
+msgid "Memory usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
+msgid "% when computer is in use"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
+msgid "% when computer is idle"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:603
+msgid " Leave applications in memory while suspended"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:605
+msgid "if checked, suspended work units are left in memory"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:614
+msgid "disk and memory usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:627
+msgid "OK"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:628
+msgid "save all values and close the dialog"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:633
+msgid "close the dialog without saving"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
+msgid "Help"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:638
+msgid "shows the preferences web page"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
+msgid "%s - Exit Confirmation"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
+msgid ""
+"You have requested to exit the %s,\n"
+"which allows you to view and manage\n"
+"the science applications running on your computer.\n"
+"\n"
+"If you also want to stop running the science applications when you\n"
+"exit the Manager, then choose from the following options:"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
+msgid ""
+"This will shut down %s and its tasks entirely until either the\n"
+"%s application 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 ""
+
+#: clientgui/DlgExitMessage.cpp:153
+msgid "Stop running science applications when exiting the Manager"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:164
+msgid "Remember this decision and do not show this dialog."
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
+msgid "&Cancel"
+msgstr ""
+
+#: clientgui/DlgGenericMessage.cpp:112
+msgid "Don't show this dialog again."
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:63
+msgid "&Close"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:195
+msgid "Properties of project "
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
+msgid "General"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:200
+msgid "Master URL"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:201
+msgid "User name"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:202
+msgid "Team name"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:203
+msgid "Resource share"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:205
+msgid "Scheduler RPC deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
+msgid "Non CPU intensive"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "yes"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "no"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:216
+msgid "Suspended via GUI"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:217
+msgid "Don't request more work"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:218
+msgid "Scheduler call in progress"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:219
+msgid "Attached via account manager"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:220
+msgid "Detach when done"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:221
+msgid "Ended"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:222
+msgid "Credit"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:223
+msgid "User"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:230
+msgid "Host"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:239
+msgid "Scheduling"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:240
+msgid "CPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:241
+msgid "CPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:244
+msgid "CPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:245
+msgid "CPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
+msgid "NVIDIA GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:251
+msgid "NVIDIA GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:252
+msgid "NVIDIA GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
+msgid "Duration correction factor"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:272
+msgid "Properties of task "
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:276
+msgid "Application"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:277
+msgid "Workunit name"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:278
+msgid "State"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
+msgid "Report deadline"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:286
+msgid "Resources"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:289
+msgid "CPU time at last checkpoint"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
+msgid "CPU time"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
+msgid "Elapsed time"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:294
+msgid "Estimated time remaining"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:295
+msgid "Fraction done"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:296
+msgid "Virtual memory size"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:297
+msgid "Working set size"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:400
+msgid "New"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:404
+msgid "Download failed"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:406
+msgid "Downloading"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:411
+msgid "Project suspended by user"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:413
+msgid "Task suspended by user"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:415
+msgid "Suspended"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:417
+msgid " - on batteries"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:420
+msgid " - user active"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:423
+msgid " - computation suspended"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:426
+msgid " - time of day"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:429
+msgid " - CPU benchmarks"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:432
+msgid " - need disk space"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:436
+msgid "Waiting for memory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:438
+msgid "Waiting for shared memory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:441
+msgid "Running, high priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:443
+msgid "Running"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:446
+msgid "Waiting to run"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
+msgid "Ready to start"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:455
+msgid "Computation error"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:459
+msgid "Upload failed"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:461
+msgid "Uploading"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:467
+msgid "Aborted by user"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:470
+msgid "Aborted by project"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:473
+msgid "Aborted"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:478
+msgid "Acknowledged"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:480
+msgid "Ready to report"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
+msgid "Error: invalid state '%d'"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:119
+#, c-format
+msgid "%s - Options"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:157
+msgid "Language:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:164
+msgid "What language should the manager use?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:168
+msgid ""
+"Network reminder interval:\n"
+"(minutes)"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:180
+msgid "How often should the Manager remind you when a network connection is needed?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:185
+msgid "Run Manager at login?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:191
+msgid "Run the BOINC Manager when you log on."
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:196
+msgid "Enable Manager exit dialog?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:202
+msgid "Display the exit dialog when shutting down the Manager."
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:213
+msgid "Dial-up and Virtual Private Network settings"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:227
+msgid "&Set Default"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:232
+msgid "&Clear Default"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:239
+msgid "Default Connection:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:246
+msgid "Connections"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:255
+msgid "Connect via HTTP proxy server"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:259
+msgid "HTTP Proxy Server Configuration"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
+msgid "Address:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
+msgid "Port:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
+msgid "Don't use proxy for:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
+msgid "Leave these blank if not needed"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
+msgid "User Name:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
+msgid "Password:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:311
+msgid "HTTP Proxy"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:319
+msgid "Connect via SOCKS proxy server"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:323
+msgid "SOCKS Proxy Server Configuration"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:375
+msgid "SOCKS Proxy"
+msgstr ""
+
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
+msgid "%s - Select Computer"
+msgstr ""
+
+#: clientgui/DlgSelectComputer.cpp:127
+msgid "Host name:"
+msgstr ""
+
+#: clientgui/hyperlink.cpp:181
+#, c-format
+msgid "%s - Can't find web browser"
+msgstr ""
+
+#: clientgui/hyperlink.cpp:192
+#, c-format
+msgid ""
+"%s tried to display the web page\n"
+"\t%s\n"
+"but couldn't find a web browser.\n"
+"To fix this, set the environment variable\n"
+"BROWSER to the path of your web browser,\n"
+"then restart the %s."
+msgstr ""
+
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
+msgid "Message boards"
+msgstr ""
+
+#: clientgui/Localization.cpp:33
+msgid "Correspond with other users on the SETI at home message boards"
+msgstr ""
+
+#: clientgui/Localization.cpp:37
+msgid "Ask questions and report problems"
+msgstr ""
+
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
+msgid "Your account"
+msgstr ""
+
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
+msgid "View your account information and credit totals"
+msgstr ""
+
+#: clientgui/Localization.cpp:43
+msgid "Your preferences"
+msgstr ""
+
+#: clientgui/Localization.cpp:45
+msgid "View and modify your SETI at home account profile and preferences"
+msgstr ""
+
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
+msgid "Your results"
+msgstr ""
+
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
+msgid "View your last week (or more) of computational results and work"
+msgstr ""
+
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
+msgid "Your computers"
+msgstr ""
+
+#: clientgui/Localization.cpp:53
+msgid "View a listing of all the computers on which you are running SETI at Home"
+msgstr ""
+
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
+msgid "Your team"
+msgstr ""
+
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
+msgid "View information about your team"
+msgstr ""
+
+#: clientgui/Localization.cpp:61
+msgid "Common questions"
+msgstr ""
+
+#: clientgui/Localization.cpp:63
+msgid "Read the Einstein at Home Frequently Asked Question list"
+msgstr ""
+
+#: clientgui/Localization.cpp:65
+msgid "Screensaver info"
+msgstr ""
+
+#: clientgui/Localization.cpp:67
+msgid "Read a detailed description of the Einstein at Home screensaver"
+msgstr ""
+
+#: clientgui/Localization.cpp:71
+msgid "Correspond with admins and other users on the Einstein at Home message boards"
+msgstr ""
+
+#: clientgui/Localization.cpp:73
+msgid "Einstein status"
+msgstr ""
+
+#: clientgui/Localization.cpp:75
+msgid "Current status of the Einstein at Home server"
+msgstr ""
+
+#: clientgui/Localization.cpp:77
+msgid "Report problems"
+msgstr ""
+
+#: clientgui/Localization.cpp:79
+msgid "A link to the Einstein at Home problems and bug reports message board"
+msgstr ""
+
+#: clientgui/Localization.cpp:83
+msgid "View and modify your Einstein at Home account profile and preferences"
+msgstr ""
+
+#: clientgui/Localization.cpp:85
+msgid "Account summary"
+msgstr ""
+
+#: clientgui/Localization.cpp:95
+msgid "View a listing of all the computers on which you are running Einstein at Home"
+msgstr ""
+
+#: clientgui/Localization.cpp:101
+msgid "LIGO project"
+msgstr ""
+
+#: clientgui/Localization.cpp:103
+msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
+msgstr ""
+
+#: clientgui/Localization.cpp:105
+msgid "GEO-600 project"
+msgstr ""
+
+#: clientgui/Localization.cpp:107
+msgid "The home page of the GEO-600 project"
+msgstr ""
+
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
+msgid "Team"
+msgstr ""
+
+#: clientgui/Localization.cpp:117
+msgid "Info about your Team"
+msgstr ""
+
+#: clientgui/Localization.cpp:123
+msgid "Get help for climateprediction.net"
+msgstr ""
+
+#: clientgui/Localization.cpp:125
+msgid "News"
+msgstr ""
+
+#: clientgui/Localization.cpp:127
+msgid "climateprediction.net News"
+msgstr ""
+
+#: clientgui/Localization.cpp:131
+msgid "View your account information, credits, and trickles"
+msgstr ""
+
+#: clientgui/Localization.cpp:135
+msgid "Info about your team"
+msgstr ""
+
+#: clientgui/Localization.cpp:141
+msgid "Search for help in our help system"
+msgstr ""
+
+#: clientgui/Localization.cpp:143
+msgid "Global Statistics"
+msgstr ""
+
+#: clientgui/Localization.cpp:145
+msgid "Summary statistics for World Community Grid"
+msgstr ""
+
+#: clientgui/Localization.cpp:147
+msgid "My Grid"
+msgstr ""
+
+#: clientgui/Localization.cpp:149
+msgid "Your statistics and settings"
+msgstr ""
+
+#: clientgui/Localization.cpp:151
+msgid "Device Profiles"
+msgstr ""
+
+#: clientgui/Localization.cpp:153
+msgid "Update your device settings"
+msgstr ""
+
+#: clientgui/Localization.cpp:155
+msgid "Research"
+msgstr ""
+
+#: clientgui/Localization.cpp:157
+msgid "Learn about the projects hosted at World Community Grid"
+msgstr ""
+
+#: clientgui/MainDocument.cpp:536
+msgid "Starting client services; please wait..."
+msgstr ""
+
+#: clientgui/MainDocument.cpp:1073
+msgid "Retrieving system state; please wait..."
+msgstr ""
+
+#: clientgui/MainDocument.cpp:1082
+msgid "Retrieving host information; please wait..."
+msgstr ""
+
+#: clientgui/NoInternetConnectionPage.cpp:179
+msgid "No Internet connection"
+msgstr ""
+
+#: clientgui/NoInternetConnectionPage.cpp:182
+msgid "Please connect to the Internet and try again."
+msgstr ""
+
+#: clientgui/NotDetectedPage.cpp:181
+msgid "Project not found"
+msgstr ""
+
+#: clientgui/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 ""
+
+#: clientgui/NotDetectedPage.cpp:188
+msgid "Account manager not found"
+msgstr ""
+
+#: clientgui/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 ""
+
+#: clientgui/NotFoundPage.cpp:181
+msgid "Login Failed."
+msgstr ""
+
+#: clientgui/NotFoundPage.cpp:185
+msgid "Check the username and password, and try again."
+msgstr ""
+
+#: clientgui/NotFoundPage.cpp:189
+msgid "Check the email address and password, and try again."
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:259
+msgid "Choose a project"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:262
+msgid "To choose a project, click its name or type its URL below."
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:265
+msgid "Project &URL:"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:417
+msgid "You are already attached to this project. Please choose a different project."
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
+msgid ""
+"Communicating with project\n"
+"Please wait..."
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:498
+msgid ""
+"Required wizard file(s) are missing from the target server.\n"
+"(lookup_account.php/create_account.php)\n"
+msgstr ""
+
+#: clientgui/ProxyInfoPage.cpp:195
+msgid "Network communication failure"
+msgstr ""
+
+#: clientgui/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"
+"hen click Back to try again.\n"
+"\n"
+"3) You are using a proxy server.\n"
+"Click Next to configure BOINC's proxy settings."
+msgstr ""
+
+#: clientgui/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 ""
+
+#: clientgui/ProxyPage.cpp:331
+msgid "Proxy configuration"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:334
+msgid "HTTP proxy"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
+msgid "Server:"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:350
+msgid "Autodetect"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:354
+msgid "SOCKS proxy"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
+msgid "&%s"
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:288
+msgid "Retrieving current status."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:291
+msgid "You don't have any projects.  Please Add a Project."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:294
+msgid "Downloading work from the server."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:299
+msgid "Processing Suspended:  Running On Batteries."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:301
+msgid "Processing Suspended:  User Active."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:303
+msgid "Processing Suspended:  User paused processing."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:305
+msgid "Processing Suspended:  Time of Day."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:307
+msgid "Processing Suspended:  Benchmarks Running."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:309
+msgid "Processing Suspended."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:313
+msgid "Waiting to contact project servers."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
+msgid "Retrieving current status"
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:320
+msgid "No work available to process"
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:322
+msgid "Unable to connect to the core client"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:107
+msgid "Project"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:108
+msgid "Time"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:109
+msgid "Message"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
+msgid "Copy all the messages to the clipboard."
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
+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 ""
+
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
+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 ""
+
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
+msgid "Get help with BOINC"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
+msgid "%s - Messages"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:95
+msgid "100 MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:96
+msgid "200 MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:97
+msgid "500 MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:98
+msgid "1 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:99
+msgid "2 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:100
+msgid "5 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:101
+msgid "10 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:102
+msgid "20 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:103
+msgid "50 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:104
+msgid "100 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:135
+msgid "10%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:136
+msgid "20%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:137
+msgid "30%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:138
+msgid "40%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:139
+msgid "50%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:140
+msgid "60%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:141
+msgid "70%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:142
+msgid "80%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:143
+msgid "90%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:144
+msgid "100%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:169
+msgid "1"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:170
+msgid "3"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:171
+msgid "5"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:172
+msgid "10"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:173
+msgid "15"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:174
+msgid "30"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:175
+msgid "60"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:284
+msgid "Skin"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:291
+msgid "Skin:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:307
+msgid "Preferences"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:324
+msgid "I want to customize my preferences for this computer only."
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:333
+msgid "Customized Preferences"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:349
+msgid "Do work only between:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:371
+msgid "Connect to internet only between:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
+msgid "Use no more than:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:406
+msgid "of disk space"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:423
+msgid "of the processor"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:427
+msgid "Do work while on battery?"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:440
+msgid "Do work after idle for:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
+msgid "Anytime"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
+msgid "%d MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
+msgid "%4.2f GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
+msgid "%d%%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:864
+msgid "0 (Run Always)"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
+msgid "%d"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:90
+msgid "Paused: Other work running"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:92
+msgid "Paused: User initiatied.  Click 'Resume' to continue"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:94
+msgid "Paused: User active"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:96
+msgid "Paused: Computer on battery"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:98
+msgid "Paused: Time of Day"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:100
+msgid "Paused: Benchmarks running"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:102
+msgid "Paused"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:104
+msgid "Paused: Application start delayed"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:132
+msgid "Click to show project graphics"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:106
+msgid "Attach to an additional project"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:123
+msgid "Synchronize projects with account manager system"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
+msgid "Open a window to view messages"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:223
+msgid "Stop all activity"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:235
+msgid "Resume activity"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:252
+msgid "Open a window to set your preferences"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:269
+msgid "Switch to the BOINC advanced view"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:296
+msgid "My Projects:"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
+msgid "%s. Work done by %s: %0.2f"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:154
+msgid "Remove Project"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
+msgid "Are you sure you want to detach from project '%s'?"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
+msgid "Detach from Project"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
+msgid "%.1lf"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
+msgid "%d hr %d min %d sec"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:421
+msgid "Are you sure you want to display graphics on a remote machine?"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:422
+msgid "Show graphics"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:444
+msgid "Application: "
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
+msgid "Time Remaining: "
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:450
+msgid "Elapsed Time: "
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:218
+msgid "Terms of Use"
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:222
+msgid "Please read the following terms of use:"
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:231
+msgid "I agree to the terms of use."
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:237
+msgid "I do not agree with the terms of use."
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:183
+msgid "Project temporarily unavailable"
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:186
+msgid ""
+"The project is temporarily unavailable.\n"
+"\n"
+"Please try again later."
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:190
+msgid "Account manager temporarily unavailable"
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:193
+msgid ""
+"The account manager is temporarily unavailable.\n"
+"\n"
+"Please try again later."
+msgstr ""
+
+#: clientgui/ValidateAccountKey.cpp:68
+msgid "Please specify an account key to continue."
+msgstr ""
+
+#: clientgui/ValidateAccountKey.cpp:71
+msgid "Invalid Account Key; please enter a valid Account Key"
+msgstr ""
+
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
+msgid "Validation conflict"
+msgstr ""
+
+#: clientgui/ValidateEmailAddress.cpp:72
+msgid "Please specify an email address"
+msgstr ""
+
+#: clientgui/ValidateEmailAddress.cpp:75
+msgid "Invalid email address; please enter a valid email address"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:69
+msgid "Missing URL"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:70
+msgid ""
+"Please specify a URL.\n"
+"For example:\n"
+"http://www.example.com/"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
+msgid "Invalid URL"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
+msgid ""
+"Please specify a valid URL.\n"
+"For example:\n"
+"http://boincproject.example.com"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
+msgid "'%s' does not contain a valid host name."
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:111
+#, c-format
+msgid "'%s' does not contain a valid path."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
+msgid "Commands"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
+msgid "Copy all messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
+msgid "Copy selected messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
+msgid "Show only this project"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
+msgid "Show only the messages for the selected project."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
+msgid "Messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
+msgid "Copying all messages to the clipboard..."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:223
+msgid "Copying selected messages to the clipboard..."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:286
+msgid "Filtering messages..."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:494
+msgid "Show all messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:495
+msgid "Show messages for all projects."
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:128
+msgid "ID"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:128
+msgid "Priority"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:151
+msgid "MessagesGrid"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:209
+msgid "Copying selected messages to Clipboard..."
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:396
+msgid "Info"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:399
+msgid "Warning"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:403
+msgid "Error"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:76
+msgid "News Feeds"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:80
+msgid "BOINC"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:81
+msgid "Display the latest news about BOINC"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:87
+msgid "BOINC Website"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:88
+msgid "Display the latest news about BOINC from the BOINC website"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:173
+msgid "Update"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:174
+msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
+msgid "Suspend"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
+msgid "Suspend tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
+msgid "No new tasks"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:188
+msgid "Don't get new tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:194
+msgid "Reset project"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:195
+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 ""
+
+#: clientgui/ViewProjects.cpp:201
+msgid "Detach"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:202
+msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:208
+msgid "Properties"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:209
+msgid "Show project details."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:219
+msgid "Account"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:221
+msgid "Work done"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:222
+msgid "Avg. work done"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:224
+msgid "Status"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:249
+msgid "Projects"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:296
+msgid "Updating project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:338
+msgid "Resuming project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:342
+msgid "Suspending project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:379
+msgid "Telling project to allow additional task downloads..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:383
+msgid "Telling project to not fetch any additional tasks..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:419
+msgid "Resetting project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:432
+#, c-format
+msgid "Are you sure you want to reset project '%s'?"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:438
+msgid "Reset Project"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:477
+msgid "Detaching from project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:537
+msgid "Launching browser..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:703
+msgid "Resume"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:703
+msgid "Resume tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:722
+msgid "Allow new tasks"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:722
+msgid "Allow fetching new tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:726
+msgid "Don't fetch new tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1052
+msgid "Suspended by user"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1055
+msgid "Won't get new tasks"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1058
+msgid "Project ended - OK to detach"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1061
+msgid "Will detach when tasks done"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1064
+msgid "Scheduler request pending"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1068
+msgid "Scheduler request in progress"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1074
+msgid "Communication deferred "
+msgstr ""
+
+#: clientgui/ViewProjectsGrid.cpp:193
+msgid "ProjectsGrid"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:61
+msgid "Total disk usage"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:82
+msgid "Disk usage by BOINC projects"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:117
+msgid "Disk"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:223
+msgid "not attached to any BOINC project: 0 bytes"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:260
+msgid "used by BOINC: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:270
+msgid "free, available to BOINC: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:280
+msgid "free, not available to BOINC: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:290
+msgid "free: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:300
+msgid "used by other programs: "
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1142
+msgid "User Total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1143
+msgid "User Average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1144
+msgid "Host Total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1145
+msgid "Host Average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
+msgid "Last update: %.0f days ago"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1745
+msgid "Show user total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1746
+msgid "Show total credit for user"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1752
+msgid "Show user average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1753
+msgid "Show average credit for user"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1759
+msgid "Show host total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1760
+msgid "Show total credit for host"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1766
+msgid "Show host average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1767
+msgid "Show average credit for host"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1776
+msgid "< &Previous project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1777
+msgid "Show chart for previous project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1782
+msgid "&Next project >"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1783
+msgid "Show chart for next project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1788
+msgid "Mode view"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1791
+msgid "All projects"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1792
+msgid "Show all projects, one chart per project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1798
+msgid "One project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1799
+msgid "Show one chart with selected project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1805
+msgid "All projects(sum)"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1806
+msgid "Show one chart with all projects"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1833
+msgid "Statistics"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
+msgid "Updating charts..."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
+msgid "Retry Now"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
+msgid "Click 'Retry now' to transfer the file now"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
+msgid "Abort Transfer"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
+msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
+msgid "File"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
+msgid "Progress"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
+msgid "Size"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
+msgid "Elapsed Time"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
+msgid "Speed"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
+msgid "Transfers"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
+msgid "Retrying transfer now..."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:309
+msgid "Aborting transfer..."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:322
+#, 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 ""
+
+#: clientgui/ViewTransfers.cpp:328
+msgid "Abort File Transfer"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
+msgid "Retry in "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
+msgid "Upload pending"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
+msgid "Download pending"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
+msgid "TransfersGrid"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:228
+msgid "Aborting transfer(s)..."
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:230
+msgid ""
+"Are you sure you want to abort this file(s) transfer ?\n"
+"NOTE: Aborting a transfer will invalidate a task and you\n"
+"will not receive credit for it."
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:231
+msgid "Abort File Transfer(s)"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
+msgid "Show application graphics in a window."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
+msgid "Suspend work for this result."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
+msgid "Abort"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
+msgid "Abandon work on the result. You will get no credit for it."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:213
+msgid "Show task details."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
+msgid "Name"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:225
+msgid "Elapsed"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
+msgid "To completion"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
+msgid "Tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
+msgid "Resuming task..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
+msgid "Suspending task..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
+msgid "Showing graphics for task..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:426
+#, c-format
+msgid ""
+"Are you sure you want to abort this task '%s'?\n"
+"(Progress: %s, Status: %s)"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
+msgid "Abort task"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
+msgid "Resume work for this task."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
+msgid "Suspend work for this task."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
+msgid " - an exclusive app is running"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
+msgid " (non-CPU-intensive)"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
+msgid "TasksGrid"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
+msgid ""
+"Are you sure you want to abort this task '%s'?\n"
+"(Progress: %s %%, Status: %s)"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:264
+#, 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 ""
+
+#: clientgui/WelcomePage.cpp:277
+msgid ""
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:281
+msgid ""
+"You have selected to attach to a new BOINC project.  Attaching to a new\n"
+"project means that you will be connecting your computer to a new website\n"
+"and organization.  If this is what you wanted to do, then please click on\n"
+"the 'Next' button below.\n"
+"\n"
+"Some projects like World Community Grid run multiple research applications.\n"
+"If you want to change which research applications are sent to your computer\n"
+"to run, then you should visit the project's website and modify your\n"
+"preferences there.\n"
+"\n"
+"To change which research applications are sent to you from\n"
+"World Community Grid then please click on the following button:"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:301
+msgid "To continue, click Next."
+msgstr ""
+
+#: clientgui/WizardAttachProject.cpp:610
+msgid "Do you really want to cancel?"
+msgstr ""
+
+#: clientgui/WizardAttachProject.cpp:611
+msgid "Question"
+msgstr ""
+
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
+msgid "&Next >"
+msgstr ""
+
+#: clientgui/wizardex.cpp:383
+msgid "< &Back"
+msgstr ""
+
+#: clientgui/wizardex.cpp:553
+msgid "&Finish"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
+msgid "New page inserted. Index = %i"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
+msgid "New page appended. Index = %i"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
+msgid "Old Page Index = %i"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
+msgid "OnDropTarget: index by HitTest = %i"
+msgstr ""
+
+#: clientgui/common/wxPieCtrl.cpp:66
+msgid "Pie Ctrl"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
+msgid "specify work start and stop hours in format HH:MM-HH:MM"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:30
+msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
+msgstr ""
diff --git a/locale/ar/BOINC-Project-Generic.po b/locale/fa/BOINC-Project-Generic.po
similarity index 100%
copy from locale/ar/BOINC-Project-Generic.po
copy to locale/fa/BOINC-Project-Generic.po
diff --git a/locale/fa/BOINC-Web.po b/locale/fa/BOINC-Web.po
new file mode 100644
index 0000000..7e46bf9
--- /dev/null
+++ b/locale/fa/BOINC-Web.po
@@ -0,0 +1,634 @@
+# BOINC web translation
+# Copyright (C) 2008-2009 University of California
+# This file is distributed under the same license as BOINC.
+# FileID  : $Id$
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.2.1\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+#: poll.inc:18
+msgid "[check all that apply]"
+msgstr ""
+
+#: poll.inc:47
+msgid "Other:"
+msgstr ""
+
+#: poll_data.inc:19
+msgid "Yes - I have been running BOINC on my computer for..."
+msgstr ""
+
+#: poll_data.inc:22
+msgid "less than a week"
+msgstr ""
+
+#: poll_data.inc:23
+msgid "less than a month"
+msgstr ""
+
+#: poll_data.inc:24
+msgid "less than a year"
+msgstr ""
+
+#: poll_data.inc:25
+msgid "more than a year"
+msgstr ""
+
+#: poll_data.inc:31
+msgid "No - I used to run BOINC, but..."
+msgstr ""
+
+#: poll_data.inc:34
+msgid "I lost interest"
+msgstr ""
+
+#: poll_data.inc:35
+msgid "it was too complicated"
+msgstr ""
+
+#: poll_data.inc:36
+msgid "I stopped it and forgot to start again"
+msgstr ""
+
+#: poll_data.inc:37
+msgid "it caused problems on my computer"
+msgstr ""
+
+#: poll_data.inc:38
+msgid "it used too much electricity"
+msgstr ""
+
+#: poll_data.inc:39
+msgid "I switched to a non-BOINC computing project"
+msgstr ""
+
+#: poll_data.inc:45
+msgid "No - I tried running BOINC, but..."
+msgstr ""
+
+#: poll_data.inc:48
+msgid "the software didn't install correctly"
+msgstr ""
+
+#: poll_data.inc:49
+msgid "I couldn't figure out how to use the software"
+msgstr ""
+
+#: poll_data.inc:50
+msgid "I had network communication problems"
+msgstr ""
+
+#: poll_data.inc:51
+msgid "I couldn't attach to a project"
+msgstr ""
+
+#: poll_data.inc:52
+msgid "I attached to a project, but never got any work"
+msgstr ""
+
+#: poll_data.inc:58
+msgid "No - I never tried running BOINC, because..."
+msgstr ""
+
+#: poll_data.inc:61
+msgid "I was concerned about security"
+msgstr ""
+
+#: poll_data.inc:62
+msgid "I wasn't interested in any of the projects"
+msgstr ""
+
+#: poll_data.inc:63
+msgid "I don't have permission to run it on my computer"
+msgstr ""
+
+#: poll_data.inc:64
+msgid "No version was available for my computer"
+msgstr ""
+
+#: poll_data.inc:75
+msgid "What kind of computers do you have running BOINC?"
+msgstr ""
+
+#: poll_data.inc:85
+msgid "Where are they?"
+msgstr ""
+
+#: poll_data.inc:87
+msgid "Home"
+msgstr ""
+
+#: poll_data.inc:88
+msgid "Work"
+msgstr ""
+
+#: poll_data.inc:89
+msgid "School"
+msgstr ""
+
+#: poll_data.inc:96
+msgid "How many computers?"
+msgstr ""
+
+#: poll_data.inc:107
+msgid "On average, how many hours per day are they powered on?"
+msgstr ""
+
+#: poll_data.inc:119
+msgid "Age"
+msgstr ""
+
+#: poll_data.inc:129
+msgid "Sex"
+msgstr ""
+
+#: poll_data.inc:131
+msgid "Male"
+msgstr ""
+
+#: poll_data.inc:132
+msgid "Female"
+msgstr ""
+
+#: poll_data.inc:137
+msgid "Your level of computer expertise"
+msgstr ""
+
+#: poll_data.inc:139
+msgid "Beginner"
+msgstr ""
+
+#: poll_data.inc:140
+msgid "Intermediate"
+msgstr ""
+
+#: poll_data.inc:141
+msgid "Advanced"
+msgstr ""
+
+#: poll_data.inc:149
+msgid "Where did you learn about BOINC projects?"
+msgstr ""
+
+#: poll_data.inc:151
+msgid "TV/radio/newspaper"
+msgstr ""
+
+#: poll_data.inc:152
+msgid "From friends, relatives, or coworkers"
+msgstr ""
+
+#: poll_data.inc:153
+msgid "Team message boards or web sites"
+msgstr ""
+
+#: poll_data.inc:154 poll_data.inc:210
+msgid "The BOINC web site"
+msgstr ""
+
+#: poll_data.inc:155
+msgid "Other web sites"
+msgstr ""
+
+#: poll_data.inc:161
+msgid ""
+"Which are the most important factors when you decide whether to participate "
+"in a BOINC project?"
+msgstr ""
+
+#: poll_data.inc:163
+msgid "Nice-looking screensaver graphics"
+msgstr ""
+
+#: poll_data.inc:164
+msgid "Fair and quick granting of credit for work done"
+msgstr ""
+
+#: poll_data.inc:165
+msgid "Getting more credit from this project than from others"
+msgstr ""
+
+#: poll_data.inc:166
+msgid "Helpful and friendly message boards"
+msgstr ""
+
+#: poll_data.inc:167
+msgid "Participation by project staff on the message boards"
+msgstr ""
+
+#: poll_data.inc:168
+msgid "Informative project web site"
+msgstr ""
+
+#: poll_data.inc:169
+msgid "The science is important and beneficial"
+msgstr ""
+
+#: poll_data.inc:170
+msgid "Non-profit, and results are public"
+msgstr ""
+
+#: poll_data.inc:171
+msgid "Personal recognition if my computer finds something"
+msgstr ""
+
+#: poll_data.inc:172
+msgid "Publication by the project in scientific journals"
+msgstr ""
+
+#: poll_data.inc:173
+msgid "Periodic email newsletters from the project"
+msgstr ""
+
+#: poll_data.inc:180
+msgid "How many BOINC projects do you participate in?"
+msgstr ""
+
+#: poll_data.inc:190
+msgid "Do you run BOINC as a screensaver?"
+msgstr ""
+
+#: poll_data.inc:192
+msgid "Yes"
+msgstr ""
+
+#: poll_data.inc:193
+msgid "No"
+msgstr ""
+
+#: poll_data.inc:198
+msgid "Your usage of project messages boards:"
+msgstr ""
+
+#: poll_data.inc:200
+msgid "to read information"
+msgstr ""
+
+#: poll_data.inc:201
+msgid "to read and post information"
+msgstr ""
+
+#: poll_data.inc:202
+msgid "None"
+msgstr ""
+
+#: poll_data.inc:206
+msgid ""
+"Where do you get information to help resolve problems with BOINC and/or "
+"BOINC projects?"
+msgstr ""
+
+#: poll_data.inc:208
+msgid "The project message boards"
+msgstr ""
+
+#: poll_data.inc:209
+msgid "The BOINC message boards"
+msgstr ""
+
+#: poll_data.inc:211
+msgid "BOINC mailing lists"
+msgstr ""
+
+#: poll_data.inc:212
+msgid "The Unofficial BOINC Wiki"
+msgstr ""
+
+#: poll_data.inc:213
+msgid "Team web sites"
+msgstr ""
+
+#: poll_data.inc:214
+msgid "Google or other search engines"
+msgstr ""
+
+#: download.php:40
+msgid "Download BOINC"
+msgstr ""
+
+#: download.php:42
+#, php-format
+msgid "%s for %s (%s MB)"
+msgstr ""
+
+#: download.php:89
+msgid ""
+"BOINC is a program that lets you donate your idle computer time to science "
+"projects like SETI at home, Climateprediction.net, Rosetta at home, World "
+"Community Grid, and many others. <p> After installing BOINC on your "
+"computer, you can connect it to as many of these projects as you like."
+msgstr ""
+
+#: download.php:114
+#, php-format
+msgid ""
+"Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
+"(GPU), you may be able to %suse it to compute faster%s"
+msgstr ""
+
+#: download.php:120
+msgid "System requirements"
+msgstr ""
+
+#: download.php:121
+msgid "Release notes"
+msgstr ""
+
+#: download.php:122 index.php:89
+msgid "Help"
+msgstr ""
+
+#: download.php:123
+msgid "All versions"
+msgstr ""
+
+#: download.php:141
+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 ""
+
+#: index.php:23
+msgid "Computing power"
+msgstr ""
+
+#: index.php:25
+msgid "Top 100 volunteers"
+msgstr ""
+
+#: index.php:26
+msgid "Statistics"
+msgstr ""
+
+#: index.php:53
+msgid "Active:"
+msgstr ""
+
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
+
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
+msgstr ""
+
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
+
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
+#, php-format
+msgid ""
+" Use the idle time on your computer (Windows, Mac, or Linux) to cure "
+"diseases, study global warming, discover pulsars, and do many other types of "
+"scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %"
+"sDownload%s and run BOINC software  %sEnter%s an email address and password. "
+msgstr ""
+
+#: index.php:107
+#, php-format
+msgid ""
+"Or, if you run several projects, try an %saccount manager%s such as %"
+"sGridRepublic%s or %sBAM!%s. "
+msgstr ""
+
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
+
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
+#, php-format
+msgid ""
+"Open-source software for %svolunteer computing%s and %sgrid computing%s."
+msgstr ""
+
+#: poll.php:9
+msgid "BOINC user survey"
+msgstr ""
+
+#: poll.php:19
+msgid ""
+"Several volunteer computing projects, including Climateprediction.net, "
+"Einstein at home, and SETI at home, use software called BOINC.  If you participate "
+"in projects like this, we request that you answer the following questions.  "
+"This will help BOINC-based projects increase participation and achieve "
+"greater scientific results. <p> Please answer as many questions as you want, "
+"then go to the bottom and click OK. If you previously completed the survey "
+"but your answers have changed, please complete it again - your new answers "
+"will replace the old ones. <p> The current results of the survey are <a "
+"href=poll_results.php>here</a>. "
+msgstr ""
+
+#: poll.php:25
+msgid "Do you run BOINC?"
+msgstr ""
+
+#: poll.php:30
+msgid "Your participation"
+msgstr ""
+
+#: poll.php:32
+msgid "Your computers"
+msgstr ""
+
+#: poll.php:34
+msgid "You"
+msgstr ""
+
+#: poll.php:39
+msgid "Nationality"
+msgstr ""
+
+#: poll.php:44
+msgid "Comments"
+msgstr ""
+
+#: poll.php:46
+msgid ""
+"Please suggest ways that BOINC, and the projects that use it, could be "
+"improved:"
+msgstr ""
+
+#: poll.php:50
+msgid "When done click:"
+msgstr ""
+
+#: poll_action.php:9
+msgid "Error - results not recorded"
+msgstr ""
+
+#: poll_action.php:10
+msgid ""
+"An internal error has prevented us from recording your survey response.  "
+"Please try again later."
+msgstr ""
+
+#: poll_action.php:32
+msgid "Survey response recorded"
+msgstr ""
+
+#: poll_action.php:33
+msgid "Thank you for completing the BOINC user survey."
+msgstr ""
+
+#: poll_results.php:195
+msgid "Survey results"
+msgstr ""
+
+#: poll_results.php:196
+msgid ""
+"These are the current results of the <a href=poll.php>BOINC user survey</"
+"a>.  This page is updated every hour."
+msgstr ""
diff --git a/locale/fa/pootle-boincclient610-fa.prefs b/locale/fa/pootle-boincclient610-fa.prefs
new file mode 100644
index 0000000..511199a
--- /dev/null
+++ b/locale/fa/pootle-boincclient610-fa.prefs
@@ -0,0 +1,7 @@
+# Pootle preferences for project boinctrunk, language fa
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/fi/BOINC-Manager.mo b/locale/fi/BOINC-Manager.mo
new file mode 100644
index 0000000..c5de9f0
Binary files /dev/null and b/locale/fi/BOINC-Manager.mo differ
diff --git a/locale/fi/BOINC-Manager.po b/locale/fi/BOINC-Manager.po
new file mode 100644
index 0000000..dca5bd6
--- /dev/null
+++ b/locale/fi/BOINC-Manager.po
@@ -0,0 +1,3580 @@
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.2.1\n"
+"X-Poedit-SearchPath-0: clientgui\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
+"X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
+
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:382
+msgid ""
+"Please enter your account information\n"
+"(to create an account, visit the project's web site)"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:386
+msgid ""
+"This project is not currently accepting new accounts.\n"
+"You can attach only if you already have an account."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:390
+msgid "Are you already running this project?"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:394
+msgid "&No, new user"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:397
+msgid "&Yes, existing user"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
+msgid "&Password:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
+msgid "Choose a &password:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:435
+msgid "C&onfirm password:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
+msgid "Are you already running %s?"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:459
+msgid "&Username:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:473
+msgid "&Email address:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
+msgid "minimum length %d"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:488
+msgid "Forgot your password?"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:530
+msgid "Attach to project"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:532
+msgid "Update account manager"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:534
+msgid "Attach to account manager"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
+msgid "The minimum password length for this project is %d. Please enter a different password."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
+msgid "The minimum password length for this account manager is %d. Please enter a different password."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:560
+msgid "The password and confirmation password do not match. Please type them again."
+msgstr ""
+
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr ""
+
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+
+#: clientgui/AccountManagerInfoPage.cpp:255
+msgid "Account Manager &URL:"
+msgstr ""
+
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
+msgid "Communicating with %s."
+msgstr ""
+
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
+msgid "Communicating with server."
+msgstr ""
+
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
+msgid "Please wait..."
+msgstr ""
+
+#: clientgui/AccountManagerProcessingPage.cpp:325
+msgid "An internal server error has occurred.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:93
+msgid "Connected"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:101
+msgid "Disconnected"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
+msgid "E&xit"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
+msgid "&Synchronize with %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
+msgid "Get current settings from %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:432
+msgid "&Run always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:433
+msgid "Allow work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:437
+msgid "Run based on &preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:438
+msgid "Allow work according to your preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:442
+msgid "&Suspend"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:443
+msgid "Stop work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:503
+msgid "&Network activity always available"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:504
+msgid "Allow network activity regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:509
+msgid "Allow network activity according to your preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:514
+msgid "Stop BOINC network activity"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:521
+msgid "&Options..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:522
+msgid "Configure GUI options and proxy settings"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:526
+msgid "&Preferences..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:527
+msgid "Configure local preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
+msgid "Connect to another computer running %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:538
+msgid "Select computer..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:543
+msgid "Shut down connected client..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:544
+msgid "Shut down the currently connected core client"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:548
+msgid "Run CPU &benchmarks"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:549
+msgid "Runs BOINC CPU benchmarks"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:553
+msgid "Do network &communication"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:554
+msgid "Do all pending network communication."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:558
+msgid "Read config file"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:559
+msgid "Read configuration info from cc_config.xml."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:563
+msgid "Read local prefs file"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:564
+msgid "Read preferences from global_prefs_override.xml."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
+msgid "%s &help"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
+msgid "Show information about %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
+msgid "&%s help"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
+msgid "Show information about the %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
+msgid "%s &website"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
+msgid "Show information about BOINC and %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
+msgid "&About %s..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:634
+msgid "Licensing and copyright information."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:641
+msgid "&File"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:645
+msgid "&View"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:649
+msgid "&Tools"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:653
+msgid "&Activity"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:657
+msgid "A&dvanced"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:661
+msgid "&Help"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
+msgid "%s - Detach from %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1126
+#, 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 ""
+
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
+msgid "%s - Language Selection"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
+msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
+msgid "%s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
+msgid "%s has successfully attached to %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
+msgid "%s - (%s)"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
+msgid "Connecting to %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
+msgid "Connected to %s (%s)"
+msgstr ""
+
+#: clientgui/AlreadyExistsPage.cpp:182
+msgid "Username already in use"
+msgstr ""
+
+#: clientgui/AlreadyExistsPage.cpp:185
+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 ""
+
+#: clientgui/AlreadyExistsPage.cpp:189
+msgid "Email address already in use"
+msgstr ""
+
+#: clientgui/AlreadyExistsPage.cpp:192
+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 ""
+
+#: clientgui/AsyncRPC.cpp:1207
+msgid "Communicating with BOINC client.  Please wait ..."
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
+msgid "%s - Connection Error"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:431
+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 ""
+
+#: clientgui/BOINCBaseFrame.cpp:440
+msgid ""
+"Authorization failed connecting to running client.\n"
+"Make sure you start this program in the same directory as the client."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:442
+msgid "Authorization failed connecting to running client."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:450
+msgid "The password you have provided is incorrect, please try again."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
+msgid "%s - Connection Failed"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
+msgid ""
+"%s is not able to connect to a %s client.\n"
+"Would you like to try to connect again?"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
+msgid "%s - Daemon Start Failed"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
+
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
+msgid ""
+"%s is not able to start a %s client.\n"
+"Please start the daemon and try again."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
+msgid "%s - Connection Status"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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 ""
+
+#: clientgui/BOINCBaseView.cpp:723
+msgid "Web sites"
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
+msgid "%s - Network Status"
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
+msgid "%s needs to connect to the Internet.  Please click to open %s."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
+msgid ""
+"%s is unable to communicate with a project and needs an Internet connection.\n"
+"Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
+msgid ""
+"%s needs to connect to the Internet.\n"
+"May it do so now?"
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
+msgid "%s is connecting to the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
+msgid ""
+"%s couldn't do Internet communication, and no default connection is selected.\n"
+"Please connect to the Internet, or select a default connection\n"
+"using Advanced/Options/Connections."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
+msgid "%s has successfully connected to the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
+msgid "%s failed to connect to the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
+msgid ""
+"%s has detected it is now connected to the Internet.\n"
+"Updating all projects and retrying all transfers."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
+msgid "%s has successfully disconnected from the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
+msgid "%s failed to disconnected from the Internet."
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:378
+msgid ""
+"A reboot is required in order for BOINC to run properly.\n"
+"Please reboot your computer and try again."
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:379
+msgid "BOINC Manager"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:526
+msgid "BOINC Manager was started by the operating system automatically"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:528
+msgid "Startup BOINC so only the system tray icon is visible"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
+msgid "Startup BOINC with these optional arguments"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:534
+msgid "disable BOINC security users and permissions"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:535
+msgid "set skin debugging mode to enable skin manager error messages"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:725
+msgid "(Automatic Detection)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:726
+msgid "(Unknown)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:727
+msgid "(User Defined)"
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:348
+msgid "Computation is suspended."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:356
+msgid "Network activity is suspended."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
+msgid "%s: %.2f%% completed."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
+msgid "%d tasks running."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:412
+msgid "Reconnecting to client."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:418
+msgid "Not connected to a client."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
+msgid "Open %s Web..."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
+msgid "Open %s..."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:623
+msgid "Snooze"
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
+msgid "Failed to attach to project"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:204
+msgid "Failed to update account manager"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:208
+msgid "Failed to remove account manager"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:212
+msgid "Failed to attach to account manager"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:221
+msgid ""
+"An error has occurred;\n"
+"check Messages for details.\n"
+"\n"
+"Click Finish to close."
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
+msgid "Click Finish to close."
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:234
+msgid "Messages from server:"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:208
+msgid "Attached to project"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:214
+msgid "You are now successfully attached to this project."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:219
+msgid ""
+"When you click Finish, your web browser will go to a page where\n"
+"you can set your account name and preferences."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:236
+#, c-format
+msgid "Update from %s completed."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:240
+msgid "Update completed."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:257
+#, c-format
+msgid "Attached to %s"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:261
+msgid "Attached to account manager"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:271
+#, c-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:285
+#, c-format
+msgid "You are now successfully attached to the %s system."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:289
+msgid "You are now successfully attached to this account manager."
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:98
+#, c-format
+msgid "About %s"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:155
+msgid "Version:"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:163
+msgid "wxWidgets Version:"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:171
+msgid "Copyright:"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:175
+msgid ""
+"(C) 2003-2010 University of California, Berkeley.\n"
+"All Rights Reserved."
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
+msgid "Berkeley Open Infrastructure for Network Computing"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
+msgid "&OK"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:485
+msgid "invalid float"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:486
+msgid "invalid time, format is HH:MM"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:487
+msgid "invalid time interval, format is HH:MM-HH:MM"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:601
+msgid "invalid input value detected"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:603
+msgid "Validation Error"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:747
+msgid "Do you really want to clear all local preferences ?"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:748
+msgid "Confirmation"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
+msgid "%s - Preferences"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:49
+msgid ""
+"This dialog controls preferences for this computer only.\n"
+"Click OK to set preferences.\n"
+"Click Clear to restore web-based settings."
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:52
+msgid "Clear"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:53
+msgid "clear all local preferences and close the dialog"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:76
+msgid "Computing allowed"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:80
+msgid " While computer is on batteries"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:83
+msgid "check this if you want this computer to do work while it runs on batteries"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:89
+msgid " While computer is in use"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:92
+msgid "check this if you want this computer to do work even when you're using it"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:98
+msgid " Use GPU while computer is in use"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:101
+msgid "check this if you want your GPU to do work even when you're using the computer"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:113
+msgid "Only after computer has been idle for"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:123
+msgid "do work only after you haven't used the computer for this number of minutes"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
+msgid "minutes"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
+msgid "Every day between hours of"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:181
+msgid "start work at this time"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
+msgid "and"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:189
+msgid "stop work at this time"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
+msgid "(no restriction if equal)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
+msgid "Day-of-week override:"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
+msgid "check box to specify hours for this day of week"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
+msgid "Monday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
+msgid "Tuesday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
+msgid "Wednesday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
+msgid "Thursday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
+msgid "Friday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
+msgid "Saturday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
+msgid "Sunday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:272
+msgid "Other options"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:289
+msgid "On multiprocessor systems, use at most"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
+msgid "% of the processors"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
+msgid "Use at most"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
+msgid "% CPU time"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:316
+msgid "processor usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:324
+msgid "General options"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:331
+msgid "Maximum download rate"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
+msgid "KBytes/sec."
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:340
+msgid "Maximum upload rate"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:349
+msgid "Connect about every"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:353
+msgid ""
+"this computer is connected to the Internet about every X days\n"
+"(0 if it's always connected)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:357
+msgid "days"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:360
+msgid "Additional work buffer"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:366
+msgid "days (max. 10)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:369
+msgid " Skip image file verification"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:371
+msgid "check this if your Internet provider modifies image files"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:380
+msgid "Connect options"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:382
+msgid "Confirm before connecting to internet"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:384
+msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:388
+msgid "Disconnect when done"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:390
+msgid ""
+"if checked, BOINC hangs up when network usage is done\n"
+"(only relevant for dialup-connection)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:397
+msgid "Network usage allowed"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:406
+msgid "network usage start hour"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:414
+msgid "network usage stop hour"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:499
+msgid "network usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
+msgid "Disk usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:519
+msgid "the maximum disk space used by BOINC (in Gigabytes)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:523
+msgid "Gigabytes disk space"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:526
+msgid "Leave at least"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:530
+msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:534
+msgid "Gigabytes disk space free"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:541
+msgid "BOINC uses at most this percentage of total disk space"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
+msgid "% of total disk space"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:555
+msgid "seconds"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
+msgid "% of page file (swap space)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:573
+msgid "Memory usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
+msgid "% when computer is in use"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
+msgid "% when computer is idle"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:603
+msgid " Leave applications in memory while suspended"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:605
+msgid "if checked, suspended work units are left in memory"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:614
+msgid "disk and memory usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:627
+msgid "OK"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:628
+msgid "save all values and close the dialog"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:633
+msgid "close the dialog without saving"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
+msgid "Help"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:638
+msgid "shows the preferences web page"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
+msgid "%s - Exit Confirmation"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
+msgid ""
+"You have requested to exit the %s,\n"
+"which allows you to view and manage\n"
+"the science applications running on your computer.\n"
+"\n"
+"If you also want to stop running the science applications when you\n"
+"exit the Manager, then choose from the following options:"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
+msgid ""
+"This will shut down %s and its tasks entirely until either the\n"
+"%s application 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 ""
+
+#: clientgui/DlgExitMessage.cpp:153
+msgid "Stop running science applications when exiting the Manager"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:164
+msgid "Remember this decision and do not show this dialog."
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
+msgid "&Cancel"
+msgstr ""
+
+#: clientgui/DlgGenericMessage.cpp:112
+msgid "Don't show this dialog again."
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:63
+msgid "&Close"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:195
+msgid "Properties of project "
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
+msgid "General"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:200
+msgid "Master URL"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:201
+msgid "User name"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:202
+msgid "Team name"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:203
+msgid "Resource share"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:205
+msgid "Scheduler RPC deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
+msgid "Non CPU intensive"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "yes"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "no"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:216
+msgid "Suspended via GUI"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:217
+msgid "Don't request more work"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:218
+msgid "Scheduler call in progress"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:219
+msgid "Attached via account manager"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:220
+msgid "Detach when done"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:221
+msgid "Ended"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:222
+msgid "Credit"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:223
+msgid "User"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:230
+msgid "Host"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:239
+msgid "Scheduling"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:240
+msgid "CPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:241
+msgid "CPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:244
+msgid "CPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:245
+msgid "CPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
+msgid "NVIDIA GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:251
+msgid "NVIDIA GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:252
+msgid "NVIDIA GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
+msgid "Duration correction factor"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:272
+msgid "Properties of task "
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:276
+msgid "Application"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:277
+msgid "Workunit name"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:278
+msgid "State"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
+msgid "Report deadline"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:286
+msgid "Resources"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:289
+msgid "CPU time at last checkpoint"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
+msgid "CPU time"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
+msgid "Elapsed time"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:294
+msgid "Estimated time remaining"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:295
+msgid "Fraction done"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:296
+msgid "Virtual memory size"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:297
+msgid "Working set size"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:400
+msgid "New"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:404
+msgid "Download failed"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:406
+msgid "Downloading"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:411
+msgid "Project suspended by user"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:413
+msgid "Task suspended by user"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:415
+msgid "Suspended"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:417
+msgid " - on batteries"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:420
+msgid " - user active"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:423
+msgid " - computation suspended"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:426
+msgid " - time of day"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:429
+msgid " - CPU benchmarks"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:432
+msgid " - need disk space"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:436
+msgid "Waiting for memory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:438
+msgid "Waiting for shared memory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:441
+msgid "Running, high priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:443
+msgid "Running"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:446
+msgid "Waiting to run"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
+msgid "Ready to start"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:455
+msgid "Computation error"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:459
+msgid "Upload failed"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:461
+msgid "Uploading"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:467
+msgid "Aborted by user"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:470
+msgid "Aborted by project"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:473
+msgid "Aborted"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:478
+msgid "Acknowledged"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:480
+msgid "Ready to report"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
+msgid "Error: invalid state '%d'"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:119
+#, c-format
+msgid "%s - Options"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:157
+msgid "Language:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:164
+msgid "What language should the manager use?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:168
+msgid ""
+"Network reminder interval:\n"
+"(minutes)"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:180
+msgid "How often should the Manager remind you when a network connection is needed?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:185
+msgid "Run Manager at login?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:191
+msgid "Run the BOINC Manager when you log on."
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:196
+msgid "Enable Manager exit dialog?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:202
+msgid "Display the exit dialog when shutting down the Manager."
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:213
+msgid "Dial-up and Virtual Private Network settings"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:227
+msgid "&Set Default"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:232
+msgid "&Clear Default"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:239
+msgid "Default Connection:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:246
+msgid "Connections"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:255
+msgid "Connect via HTTP proxy server"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:259
+msgid "HTTP Proxy Server Configuration"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
+msgid "Address:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
+msgid "Port:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
+msgid "Don't use proxy for:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
+msgid "Leave these blank if not needed"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
+msgid "User Name:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
+msgid "Password:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:311
+msgid "HTTP Proxy"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:319
+msgid "Connect via SOCKS proxy server"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:323
+msgid "SOCKS Proxy Server Configuration"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:375
+msgid "SOCKS Proxy"
+msgstr ""
+
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
+msgid "%s - Select Computer"
+msgstr ""
+
+#: clientgui/DlgSelectComputer.cpp:127
+msgid "Host name:"
+msgstr ""
+
+#: clientgui/hyperlink.cpp:181
+#, c-format
+msgid "%s - Can't find web browser"
+msgstr ""
+
+#: clientgui/hyperlink.cpp:192
+#, c-format
+msgid ""
+"%s tried to display the web page\n"
+"\t%s\n"
+"but couldn't find a web browser.\n"
+"To fix this, set the environment variable\n"
+"BROWSER to the path of your web browser,\n"
+"then restart the %s."
+msgstr ""
+
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
+msgid "Message boards"
+msgstr ""
+
+#: clientgui/Localization.cpp:33
+msgid "Correspond with other users on the SETI at home message boards"
+msgstr ""
+
+#: clientgui/Localization.cpp:37
+msgid "Ask questions and report problems"
+msgstr ""
+
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
+msgid "Your account"
+msgstr ""
+
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
+msgid "View your account information and credit totals"
+msgstr ""
+
+#: clientgui/Localization.cpp:43
+msgid "Your preferences"
+msgstr ""
+
+#: clientgui/Localization.cpp:45
+msgid "View and modify your SETI at home account profile and preferences"
+msgstr ""
+
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
+msgid "Your results"
+msgstr ""
+
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
+msgid "View your last week (or more) of computational results and work"
+msgstr ""
+
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
+msgid "Your computers"
+msgstr ""
+
+#: clientgui/Localization.cpp:53
+msgid "View a listing of all the computers on which you are running SETI at Home"
+msgstr ""
+
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
+msgid "Your team"
+msgstr ""
+
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
+msgid "View information about your team"
+msgstr ""
+
+#: clientgui/Localization.cpp:61
+msgid "Common questions"
+msgstr ""
+
+#: clientgui/Localization.cpp:63
+msgid "Read the Einstein at Home Frequently Asked Question list"
+msgstr ""
+
+#: clientgui/Localization.cpp:65
+msgid "Screensaver info"
+msgstr ""
+
+#: clientgui/Localization.cpp:67
+msgid "Read a detailed description of the Einstein at Home screensaver"
+msgstr ""
+
+#: clientgui/Localization.cpp:71
+msgid "Correspond with admins and other users on the Einstein at Home message boards"
+msgstr ""
+
+#: clientgui/Localization.cpp:73
+msgid "Einstein status"
+msgstr ""
+
+#: clientgui/Localization.cpp:75
+msgid "Current status of the Einstein at Home server"
+msgstr ""
+
+#: clientgui/Localization.cpp:77
+msgid "Report problems"
+msgstr ""
+
+#: clientgui/Localization.cpp:79
+msgid "A link to the Einstein at Home problems and bug reports message board"
+msgstr ""
+
+#: clientgui/Localization.cpp:83
+msgid "View and modify your Einstein at Home account profile and preferences"
+msgstr ""
+
+#: clientgui/Localization.cpp:85
+msgid "Account summary"
+msgstr ""
+
+#: clientgui/Localization.cpp:95
+msgid "View a listing of all the computers on which you are running Einstein at Home"
+msgstr ""
+
+#: clientgui/Localization.cpp:101
+msgid "LIGO project"
+msgstr ""
+
+#: clientgui/Localization.cpp:103
+msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
+msgstr ""
+
+#: clientgui/Localization.cpp:105
+msgid "GEO-600 project"
+msgstr ""
+
+#: clientgui/Localization.cpp:107
+msgid "The home page of the GEO-600 project"
+msgstr ""
+
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
+msgid "Team"
+msgstr ""
+
+#: clientgui/Localization.cpp:117
+msgid "Info about your Team"
+msgstr ""
+
+#: clientgui/Localization.cpp:123
+msgid "Get help for climateprediction.net"
+msgstr ""
+
+#: clientgui/Localization.cpp:125
+msgid "News"
+msgstr ""
+
+#: clientgui/Localization.cpp:127
+msgid "climateprediction.net News"
+msgstr ""
+
+#: clientgui/Localization.cpp:131
+msgid "View your account information, credits, and trickles"
+msgstr ""
+
+#: clientgui/Localization.cpp:135
+msgid "Info about your team"
+msgstr ""
+
+#: clientgui/Localization.cpp:141
+msgid "Search for help in our help system"
+msgstr ""
+
+#: clientgui/Localization.cpp:143
+msgid "Global Statistics"
+msgstr ""
+
+#: clientgui/Localization.cpp:145
+msgid "Summary statistics for World Community Grid"
+msgstr ""
+
+#: clientgui/Localization.cpp:147
+msgid "My Grid"
+msgstr ""
+
+#: clientgui/Localization.cpp:149
+msgid "Your statistics and settings"
+msgstr ""
+
+#: clientgui/Localization.cpp:151
+msgid "Device Profiles"
+msgstr ""
+
+#: clientgui/Localization.cpp:153
+msgid "Update your device settings"
+msgstr ""
+
+#: clientgui/Localization.cpp:155
+msgid "Research"
+msgstr ""
+
+#: clientgui/Localization.cpp:157
+msgid "Learn about the projects hosted at World Community Grid"
+msgstr ""
+
+#: clientgui/MainDocument.cpp:536
+msgid "Starting client services; please wait..."
+msgstr ""
+
+#: clientgui/MainDocument.cpp:1073
+msgid "Retrieving system state; please wait..."
+msgstr ""
+
+#: clientgui/MainDocument.cpp:1082
+msgid "Retrieving host information; please wait..."
+msgstr ""
+
+#: clientgui/NoInternetConnectionPage.cpp:179
+msgid "No Internet connection"
+msgstr ""
+
+#: clientgui/NoInternetConnectionPage.cpp:182
+msgid "Please connect to the Internet and try again."
+msgstr ""
+
+#: clientgui/NotDetectedPage.cpp:181
+msgid "Project not found"
+msgstr ""
+
+#: clientgui/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 ""
+
+#: clientgui/NotDetectedPage.cpp:188
+msgid "Account manager not found"
+msgstr ""
+
+#: clientgui/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 ""
+
+#: clientgui/NotFoundPage.cpp:181
+msgid "Login Failed."
+msgstr ""
+
+#: clientgui/NotFoundPage.cpp:185
+msgid "Check the username and password, and try again."
+msgstr ""
+
+#: clientgui/NotFoundPage.cpp:189
+msgid "Check the email address and password, and try again."
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:259
+msgid "Choose a project"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:262
+msgid "To choose a project, click its name or type its URL below."
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:265
+msgid "Project &URL:"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:417
+msgid "You are already attached to this project. Please choose a different project."
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
+msgid ""
+"Communicating with project\n"
+"Please wait..."
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:498
+msgid ""
+"Required wizard file(s) are missing from the target server.\n"
+"(lookup_account.php/create_account.php)\n"
+msgstr ""
+
+#: clientgui/ProxyInfoPage.cpp:195
+msgid "Network communication failure"
+msgstr ""
+
+#: clientgui/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"
+"hen click Back to try again.\n"
+"\n"
+"3) You are using a proxy server.\n"
+"Click Next to configure BOINC's proxy settings."
+msgstr ""
+
+#: clientgui/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 ""
+
+#: clientgui/ProxyPage.cpp:331
+msgid "Proxy configuration"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:334
+msgid "HTTP proxy"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
+msgid "Server:"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:350
+msgid "Autodetect"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:354
+msgid "SOCKS proxy"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
+msgid "&%s"
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:288
+msgid "Retrieving current status."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:291
+msgid "You don't have any projects.  Please Add a Project."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:294
+msgid "Downloading work from the server."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:299
+msgid "Processing Suspended:  Running On Batteries."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:301
+msgid "Processing Suspended:  User Active."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:303
+msgid "Processing Suspended:  User paused processing."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:305
+msgid "Processing Suspended:  Time of Day."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:307
+msgid "Processing Suspended:  Benchmarks Running."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:309
+msgid "Processing Suspended."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:313
+msgid "Waiting to contact project servers."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
+msgid "Retrieving current status"
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:320
+msgid "No work available to process"
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:322
+msgid "Unable to connect to the core client"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:107
+msgid "Project"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:108
+msgid "Time"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:109
+msgid "Message"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
+msgid "Copy all the messages to the clipboard."
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
+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 ""
+
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
+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 ""
+
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
+msgid "Get help with BOINC"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
+msgid "%s - Messages"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:95
+msgid "100 MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:96
+msgid "200 MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:97
+msgid "500 MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:98
+msgid "1 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:99
+msgid "2 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:100
+msgid "5 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:101
+msgid "10 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:102
+msgid "20 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:103
+msgid "50 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:104
+msgid "100 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:135
+msgid "10%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:136
+msgid "20%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:137
+msgid "30%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:138
+msgid "40%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:139
+msgid "50%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:140
+msgid "60%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:141
+msgid "70%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:142
+msgid "80%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:143
+msgid "90%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:144
+msgid "100%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:169
+msgid "1"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:170
+msgid "3"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:171
+msgid "5"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:172
+msgid "10"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:173
+msgid "15"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:174
+msgid "30"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:175
+msgid "60"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:284
+msgid "Skin"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:291
+msgid "Skin:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:307
+msgid "Preferences"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:324
+msgid "I want to customize my preferences for this computer only."
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:333
+msgid "Customized Preferences"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:349
+msgid "Do work only between:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:371
+msgid "Connect to internet only between:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
+msgid "Use no more than:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:406
+msgid "of disk space"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:423
+msgid "of the processor"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:427
+msgid "Do work while on battery?"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:440
+msgid "Do work after idle for:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
+msgid "Anytime"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
+msgid "%d MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
+msgid "%4.2f GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
+msgid "%d%%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:864
+msgid "0 (Run Always)"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
+msgid "%d"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:90
+msgid "Paused: Other work running"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:92
+msgid "Paused: User initiatied.  Click 'Resume' to continue"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:94
+msgid "Paused: User active"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:96
+msgid "Paused: Computer on battery"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:98
+msgid "Paused: Time of Day"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:100
+msgid "Paused: Benchmarks running"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:102
+msgid "Paused"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:104
+msgid "Paused: Application start delayed"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:132
+msgid "Click to show project graphics"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:106
+msgid "Attach to an additional project"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:123
+msgid "Synchronize projects with account manager system"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
+msgid "Open a window to view messages"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:223
+msgid "Stop all activity"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:235
+msgid "Resume activity"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:252
+msgid "Open a window to set your preferences"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:269
+msgid "Switch to the BOINC advanced view"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:296
+msgid "My Projects:"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
+msgid "%s. Work done by %s: %0.2f"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:154
+msgid "Remove Project"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
+msgid "Are you sure you want to detach from project '%s'?"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
+msgid "Detach from Project"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
+msgid "%.1lf"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
+msgid "%d hr %d min %d sec"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:421
+msgid "Are you sure you want to display graphics on a remote machine?"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:422
+msgid "Show graphics"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:444
+msgid "Application: "
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
+msgid "Time Remaining: "
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:450
+msgid "Elapsed Time: "
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:218
+msgid "Terms of Use"
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:222
+msgid "Please read the following terms of use:"
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:231
+msgid "I agree to the terms of use."
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:237
+msgid "I do not agree with the terms of use."
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:183
+msgid "Project temporarily unavailable"
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:186
+msgid ""
+"The project is temporarily unavailable.\n"
+"\n"
+"Please try again later."
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:190
+msgid "Account manager temporarily unavailable"
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:193
+msgid ""
+"The account manager is temporarily unavailable.\n"
+"\n"
+"Please try again later."
+msgstr ""
+
+#: clientgui/ValidateAccountKey.cpp:68
+msgid "Please specify an account key to continue."
+msgstr ""
+
+#: clientgui/ValidateAccountKey.cpp:71
+msgid "Invalid Account Key; please enter a valid Account Key"
+msgstr ""
+
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
+msgid "Validation conflict"
+msgstr ""
+
+#: clientgui/ValidateEmailAddress.cpp:72
+msgid "Please specify an email address"
+msgstr ""
+
+#: clientgui/ValidateEmailAddress.cpp:75
+msgid "Invalid email address; please enter a valid email address"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:69
+msgid "Missing URL"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:70
+msgid ""
+"Please specify a URL.\n"
+"For example:\n"
+"http://www.example.com/"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
+msgid "Invalid URL"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
+msgid ""
+"Please specify a valid URL.\n"
+"For example:\n"
+"http://boincproject.example.com"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
+msgid "'%s' does not contain a valid host name."
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:111
+#, c-format
+msgid "'%s' does not contain a valid path."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
+msgid "Commands"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
+msgid "Copy all messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
+msgid "Copy selected messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
+msgid "Show only this project"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
+msgid "Show only the messages for the selected project."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
+msgid "Messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
+msgid "Copying all messages to the clipboard..."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:223
+msgid "Copying selected messages to the clipboard..."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:286
+msgid "Filtering messages..."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:494
+msgid "Show all messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:495
+msgid "Show messages for all projects."
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:128
+msgid "ID"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:128
+msgid "Priority"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:151
+msgid "MessagesGrid"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:209
+msgid "Copying selected messages to Clipboard..."
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:396
+msgid "Info"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:399
+msgid "Warning"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:403
+msgid "Error"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:76
+msgid "News Feeds"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:80
+msgid "BOINC"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:81
+msgid "Display the latest news about BOINC"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:87
+msgid "BOINC Website"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:88
+msgid "Display the latest news about BOINC from the BOINC website"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:173
+msgid "Update"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:174
+msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
+msgid "Suspend"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
+msgid "Suspend tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
+msgid "No new tasks"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:188
+msgid "Don't get new tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:194
+msgid "Reset project"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:195
+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 ""
+
+#: clientgui/ViewProjects.cpp:201
+msgid "Detach"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:202
+msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:208
+msgid "Properties"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:209
+msgid "Show project details."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:219
+msgid "Account"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:221
+msgid "Work done"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:222
+msgid "Avg. work done"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:224
+msgid "Status"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:249
+msgid "Projects"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:296
+msgid "Updating project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:338
+msgid "Resuming project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:342
+msgid "Suspending project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:379
+msgid "Telling project to allow additional task downloads..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:383
+msgid "Telling project to not fetch any additional tasks..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:419
+msgid "Resetting project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:432
+#, c-format
+msgid "Are you sure you want to reset project '%s'?"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:438
+msgid "Reset Project"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:477
+msgid "Detaching from project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:537
+msgid "Launching browser..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:703
+msgid "Resume"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:703
+msgid "Resume tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:722
+msgid "Allow new tasks"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:722
+msgid "Allow fetching new tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:726
+msgid "Don't fetch new tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1052
+msgid "Suspended by user"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1055
+msgid "Won't get new tasks"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1058
+msgid "Project ended - OK to detach"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1061
+msgid "Will detach when tasks done"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1064
+msgid "Scheduler request pending"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1068
+msgid "Scheduler request in progress"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1074
+msgid "Communication deferred "
+msgstr ""
+
+#: clientgui/ViewProjectsGrid.cpp:193
+msgid "ProjectsGrid"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:61
+msgid "Total disk usage"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:82
+msgid "Disk usage by BOINC projects"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:117
+msgid "Disk"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:223
+msgid "not attached to any BOINC project: 0 bytes"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:260
+msgid "used by BOINC: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:270
+msgid "free, available to BOINC: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:280
+msgid "free, not available to BOINC: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:290
+msgid "free: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:300
+msgid "used by other programs: "
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1142
+msgid "User Total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1143
+msgid "User Average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1144
+msgid "Host Total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1145
+msgid "Host Average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
+msgid "Last update: %.0f days ago"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1745
+msgid "Show user total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1746
+msgid "Show total credit for user"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1752
+msgid "Show user average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1753
+msgid "Show average credit for user"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1759
+msgid "Show host total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1760
+msgid "Show total credit for host"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1766
+msgid "Show host average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1767
+msgid "Show average credit for host"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1776
+msgid "< &Previous project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1777
+msgid "Show chart for previous project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1782
+msgid "&Next project >"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1783
+msgid "Show chart for next project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1788
+msgid "Mode view"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1791
+msgid "All projects"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1792
+msgid "Show all projects, one chart per project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1798
+msgid "One project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1799
+msgid "Show one chart with selected project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1805
+msgid "All projects(sum)"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1806
+msgid "Show one chart with all projects"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1833
+msgid "Statistics"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
+msgid "Updating charts..."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
+msgid "Retry Now"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
+msgid "Click 'Retry now' to transfer the file now"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
+msgid "Abort Transfer"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
+msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
+msgid "File"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
+msgid "Progress"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
+msgid "Size"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
+msgid "Elapsed Time"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
+msgid "Speed"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
+msgid "Transfers"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
+msgid "Retrying transfer now..."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:309
+msgid "Aborting transfer..."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:322
+#, 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 ""
+
+#: clientgui/ViewTransfers.cpp:328
+msgid "Abort File Transfer"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
+msgid "Retry in "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
+msgid "Upload pending"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
+msgid "Download pending"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
+msgid "TransfersGrid"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:228
+msgid "Aborting transfer(s)..."
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:230
+msgid ""
+"Are you sure you want to abort this file(s) transfer ?\n"
+"NOTE: Aborting a transfer will invalidate a task and you\n"
+"will not receive credit for it."
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:231
+msgid "Abort File Transfer(s)"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
+msgid "Show application graphics in a window."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
+msgid "Suspend work for this result."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
+msgid "Abort"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
+msgid "Abandon work on the result. You will get no credit for it."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:213
+msgid "Show task details."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
+msgid "Name"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:225
+msgid "Elapsed"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
+msgid "To completion"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
+msgid "Tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
+msgid "Resuming task..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
+msgid "Suspending task..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
+msgid "Showing graphics for task..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:426
+#, c-format
+msgid ""
+"Are you sure you want to abort this task '%s'?\n"
+"(Progress: %s, Status: %s)"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
+msgid "Abort task"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
+msgid "Resume work for this task."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
+msgid "Suspend work for this task."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
+msgid " - an exclusive app is running"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
+msgid " (non-CPU-intensive)"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
+msgid "TasksGrid"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
+msgid ""
+"Are you sure you want to abort this task '%s'?\n"
+"(Progress: %s %%, Status: %s)"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:264
+#, 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 ""
+
+#: clientgui/WelcomePage.cpp:277
+msgid ""
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:281
+msgid ""
+"You have selected to attach to a new BOINC project.  Attaching to a new\n"
+"project means that you will be connecting your computer to a new website\n"
+"and organization.  If this is what you wanted to do, then please click on\n"
+"the 'Next' button below.\n"
+"\n"
+"Some projects like World Community Grid run multiple research applications.\n"
+"If you want to change which research applications are sent to your computer\n"
+"to run, then you should visit the project's website and modify your\n"
+"preferences there.\n"
+"\n"
+"To change which research applications are sent to you from\n"
+"World Community Grid then please click on the following button:"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:301
+msgid "To continue, click Next."
+msgstr ""
+
+#: clientgui/WizardAttachProject.cpp:610
+msgid "Do you really want to cancel?"
+msgstr ""
+
+#: clientgui/WizardAttachProject.cpp:611
+msgid "Question"
+msgstr ""
+
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
+msgid "&Next >"
+msgstr ""
+
+#: clientgui/wizardex.cpp:383
+msgid "< &Back"
+msgstr ""
+
+#: clientgui/wizardex.cpp:553
+msgid "&Finish"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
+msgid "New page inserted. Index = %i"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
+msgid "New page appended. Index = %i"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
+msgid "Old Page Index = %i"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
+msgid "OnDropTarget: index by HitTest = %i"
+msgstr ""
+
+#: clientgui/common/wxPieCtrl.cpp:66
+msgid "Pie Ctrl"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
+msgid "specify work start and stop hours in format HH:MM-HH:MM"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:30
+msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
+msgstr ""
diff --git a/locale/ar/BOINC-Project-Generic.po b/locale/fi/BOINC-Project-Generic.po
similarity index 100%
copy from locale/ar/BOINC-Project-Generic.po
copy to locale/fi/BOINC-Project-Generic.po
diff --git a/locale/fi/BOINC-Web.po b/locale/fi/BOINC-Web.po
new file mode 100644
index 0000000..7e46bf9
--- /dev/null
+++ b/locale/fi/BOINC-Web.po
@@ -0,0 +1,634 @@
+# BOINC web translation
+# Copyright (C) 2008-2009 University of California
+# This file is distributed under the same license as BOINC.
+# FileID  : $Id$
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.2.1\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+#: poll.inc:18
+msgid "[check all that apply]"
+msgstr ""
+
+#: poll.inc:47
+msgid "Other:"
+msgstr ""
+
+#: poll_data.inc:19
+msgid "Yes - I have been running BOINC on my computer for..."
+msgstr ""
+
+#: poll_data.inc:22
+msgid "less than a week"
+msgstr ""
+
+#: poll_data.inc:23
+msgid "less than a month"
+msgstr ""
+
+#: poll_data.inc:24
+msgid "less than a year"
+msgstr ""
+
+#: poll_data.inc:25
+msgid "more than a year"
+msgstr ""
+
+#: poll_data.inc:31
+msgid "No - I used to run BOINC, but..."
+msgstr ""
+
+#: poll_data.inc:34
+msgid "I lost interest"
+msgstr ""
+
+#: poll_data.inc:35
+msgid "it was too complicated"
+msgstr ""
+
+#: poll_data.inc:36
+msgid "I stopped it and forgot to start again"
+msgstr ""
+
+#: poll_data.inc:37
+msgid "it caused problems on my computer"
+msgstr ""
+
+#: poll_data.inc:38
+msgid "it used too much electricity"
+msgstr ""
+
+#: poll_data.inc:39
+msgid "I switched to a non-BOINC computing project"
+msgstr ""
+
+#: poll_data.inc:45
+msgid "No - I tried running BOINC, but..."
+msgstr ""
+
+#: poll_data.inc:48
+msgid "the software didn't install correctly"
+msgstr ""
+
+#: poll_data.inc:49
+msgid "I couldn't figure out how to use the software"
+msgstr ""
+
+#: poll_data.inc:50
+msgid "I had network communication problems"
+msgstr ""
+
+#: poll_data.inc:51
+msgid "I couldn't attach to a project"
+msgstr ""
+
+#: poll_data.inc:52
+msgid "I attached to a project, but never got any work"
+msgstr ""
+
+#: poll_data.inc:58
+msgid "No - I never tried running BOINC, because..."
+msgstr ""
+
+#: poll_data.inc:61
+msgid "I was concerned about security"
+msgstr ""
+
+#: poll_data.inc:62
+msgid "I wasn't interested in any of the projects"
+msgstr ""
+
+#: poll_data.inc:63
+msgid "I don't have permission to run it on my computer"
+msgstr ""
+
+#: poll_data.inc:64
+msgid "No version was available for my computer"
+msgstr ""
+
+#: poll_data.inc:75
+msgid "What kind of computers do you have running BOINC?"
+msgstr ""
+
+#: poll_data.inc:85
+msgid "Where are they?"
+msgstr ""
+
+#: poll_data.inc:87
+msgid "Home"
+msgstr ""
+
+#: poll_data.inc:88
+msgid "Work"
+msgstr ""
+
+#: poll_data.inc:89
+msgid "School"
+msgstr ""
+
+#: poll_data.inc:96
+msgid "How many computers?"
+msgstr ""
+
+#: poll_data.inc:107
+msgid "On average, how many hours per day are they powered on?"
+msgstr ""
+
+#: poll_data.inc:119
+msgid "Age"
+msgstr ""
+
+#: poll_data.inc:129
+msgid "Sex"
+msgstr ""
+
+#: poll_data.inc:131
+msgid "Male"
+msgstr ""
+
+#: poll_data.inc:132
+msgid "Female"
+msgstr ""
+
+#: poll_data.inc:137
+msgid "Your level of computer expertise"
+msgstr ""
+
+#: poll_data.inc:139
+msgid "Beginner"
+msgstr ""
+
+#: poll_data.inc:140
+msgid "Intermediate"
+msgstr ""
+
+#: poll_data.inc:141
+msgid "Advanced"
+msgstr ""
+
+#: poll_data.inc:149
+msgid "Where did you learn about BOINC projects?"
+msgstr ""
+
+#: poll_data.inc:151
+msgid "TV/radio/newspaper"
+msgstr ""
+
+#: poll_data.inc:152
+msgid "From friends, relatives, or coworkers"
+msgstr ""
+
+#: poll_data.inc:153
+msgid "Team message boards or web sites"
+msgstr ""
+
+#: poll_data.inc:154 poll_data.inc:210
+msgid "The BOINC web site"
+msgstr ""
+
+#: poll_data.inc:155
+msgid "Other web sites"
+msgstr ""
+
+#: poll_data.inc:161
+msgid ""
+"Which are the most important factors when you decide whether to participate "
+"in a BOINC project?"
+msgstr ""
+
+#: poll_data.inc:163
+msgid "Nice-looking screensaver graphics"
+msgstr ""
+
+#: poll_data.inc:164
+msgid "Fair and quick granting of credit for work done"
+msgstr ""
+
+#: poll_data.inc:165
+msgid "Getting more credit from this project than from others"
+msgstr ""
+
+#: poll_data.inc:166
+msgid "Helpful and friendly message boards"
+msgstr ""
+
+#: poll_data.inc:167
+msgid "Participation by project staff on the message boards"
+msgstr ""
+
+#: poll_data.inc:168
+msgid "Informative project web site"
+msgstr ""
+
+#: poll_data.inc:169
+msgid "The science is important and beneficial"
+msgstr ""
+
+#: poll_data.inc:170
+msgid "Non-profit, and results are public"
+msgstr ""
+
+#: poll_data.inc:171
+msgid "Personal recognition if my computer finds something"
+msgstr ""
+
+#: poll_data.inc:172
+msgid "Publication by the project in scientific journals"
+msgstr ""
+
+#: poll_data.inc:173
+msgid "Periodic email newsletters from the project"
+msgstr ""
+
+#: poll_data.inc:180
+msgid "How many BOINC projects do you participate in?"
+msgstr ""
+
+#: poll_data.inc:190
+msgid "Do you run BOINC as a screensaver?"
+msgstr ""
+
+#: poll_data.inc:192
+msgid "Yes"
+msgstr ""
+
+#: poll_data.inc:193
+msgid "No"
+msgstr ""
+
+#: poll_data.inc:198
+msgid "Your usage of project messages boards:"
+msgstr ""
+
+#: poll_data.inc:200
+msgid "to read information"
+msgstr ""
+
+#: poll_data.inc:201
+msgid "to read and post information"
+msgstr ""
+
+#: poll_data.inc:202
+msgid "None"
+msgstr ""
+
+#: poll_data.inc:206
+msgid ""
+"Where do you get information to help resolve problems with BOINC and/or "
+"BOINC projects?"
+msgstr ""
+
+#: poll_data.inc:208
+msgid "The project message boards"
+msgstr ""
+
+#: poll_data.inc:209
+msgid "The BOINC message boards"
+msgstr ""
+
+#: poll_data.inc:211
+msgid "BOINC mailing lists"
+msgstr ""
+
+#: poll_data.inc:212
+msgid "The Unofficial BOINC Wiki"
+msgstr ""
+
+#: poll_data.inc:213
+msgid "Team web sites"
+msgstr ""
+
+#: poll_data.inc:214
+msgid "Google or other search engines"
+msgstr ""
+
+#: download.php:40
+msgid "Download BOINC"
+msgstr ""
+
+#: download.php:42
+#, php-format
+msgid "%s for %s (%s MB)"
+msgstr ""
+
+#: download.php:89
+msgid ""
+"BOINC is a program that lets you donate your idle computer time to science "
+"projects like SETI at home, Climateprediction.net, Rosetta at home, World "
+"Community Grid, and many others. <p> After installing BOINC on your "
+"computer, you can connect it to as many of these projects as you like."
+msgstr ""
+
+#: download.php:114
+#, php-format
+msgid ""
+"Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
+"(GPU), you may be able to %suse it to compute faster%s"
+msgstr ""
+
+#: download.php:120
+msgid "System requirements"
+msgstr ""
+
+#: download.php:121
+msgid "Release notes"
+msgstr ""
+
+#: download.php:122 index.php:89
+msgid "Help"
+msgstr ""
+
+#: download.php:123
+msgid "All versions"
+msgstr ""
+
+#: download.php:141
+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 ""
+
+#: index.php:23
+msgid "Computing power"
+msgstr ""
+
+#: index.php:25
+msgid "Top 100 volunteers"
+msgstr ""
+
+#: index.php:26
+msgid "Statistics"
+msgstr ""
+
+#: index.php:53
+msgid "Active:"
+msgstr ""
+
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
+
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
+msgstr ""
+
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
+
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
+#, php-format
+msgid ""
+" Use the idle time on your computer (Windows, Mac, or Linux) to cure "
+"diseases, study global warming, discover pulsars, and do many other types of "
+"scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %"
+"sDownload%s and run BOINC software  %sEnter%s an email address and password. "
+msgstr ""
+
+#: index.php:107
+#, php-format
+msgid ""
+"Or, if you run several projects, try an %saccount manager%s such as %"
+"sGridRepublic%s or %sBAM!%s. "
+msgstr ""
+
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
+
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
+#, php-format
+msgid ""
+"Open-source software for %svolunteer computing%s and %sgrid computing%s."
+msgstr ""
+
+#: poll.php:9
+msgid "BOINC user survey"
+msgstr ""
+
+#: poll.php:19
+msgid ""
+"Several volunteer computing projects, including Climateprediction.net, "
+"Einstein at home, and SETI at home, use software called BOINC.  If you participate "
+"in projects like this, we request that you answer the following questions.  "
+"This will help BOINC-based projects increase participation and achieve "
+"greater scientific results. <p> Please answer as many questions as you want, "
+"then go to the bottom and click OK. If you previously completed the survey "
+"but your answers have changed, please complete it again - your new answers "
+"will replace the old ones. <p> The current results of the survey are <a "
+"href=poll_results.php>here</a>. "
+msgstr ""
+
+#: poll.php:25
+msgid "Do you run BOINC?"
+msgstr ""
+
+#: poll.php:30
+msgid "Your participation"
+msgstr ""
+
+#: poll.php:32
+msgid "Your computers"
+msgstr ""
+
+#: poll.php:34
+msgid "You"
+msgstr ""
+
+#: poll.php:39
+msgid "Nationality"
+msgstr ""
+
+#: poll.php:44
+msgid "Comments"
+msgstr ""
+
+#: poll.php:46
+msgid ""
+"Please suggest ways that BOINC, and the projects that use it, could be "
+"improved:"
+msgstr ""
+
+#: poll.php:50
+msgid "When done click:"
+msgstr ""
+
+#: poll_action.php:9
+msgid "Error - results not recorded"
+msgstr ""
+
+#: poll_action.php:10
+msgid ""
+"An internal error has prevented us from recording your survey response.  "
+"Please try again later."
+msgstr ""
+
+#: poll_action.php:32
+msgid "Survey response recorded"
+msgstr ""
+
+#: poll_action.php:33
+msgid "Thank you for completing the BOINC user survey."
+msgstr ""
+
+#: poll_results.php:195
+msgid "Survey results"
+msgstr ""
+
+#: poll_results.php:196
+msgid ""
+"These are the current results of the <a href=poll.php>BOINC user survey</"
+"a>.  This page is updated every hour."
+msgstr ""
diff --git a/locale/fi/pootle-boincclient610-fi.prefs b/locale/fi/pootle-boincclient610-fi.prefs
new file mode 100644
index 0000000..d06e7e2
--- /dev/null
+++ b/locale/fi/pootle-boincclient610-fi.prefs
@@ -0,0 +1,10 @@
+# Pootle preferences for project boincclient610, language fi
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  Olli = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  Nikerabbit = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  samipetri = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/fr/BOINC-Manager.mo b/locale/fr/BOINC-Manager.mo
index a853a3d..939127f 100644
Binary files a/locale/fr/BOINC-Manager.mo and b/locale/fr/BOINC-Manager.mo differ
diff --git a/locale/fr/BOINC-Manager.po b/locale/fr/BOINC-Manager.po
index 8b5f2a7..baa14f2 100644
--- a/locale/fr/BOINC-Manager.po
+++ b/locale/fr/BOINC-Manager.po
@@ -1,23 +1,27 @@
-# Arnaud <bidibulle25_at_yahoo.fr>, 2007.
+# Arnaud <bidibulle25_at_yahoo.fr>, 2007.
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
-"PO-Revision-Date: 2007-08-12 13:17+0100\n"
-"Last-Translator: pH!Lm0 <philmo_one at yahoo.fr>\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2010-03-16 15:04-0700\n"
+"Last-Translator: Jerome Cadet <jerome.cadet at pobox.com>\n"
 "Language-Team: <fr at li.org>\n"
+"Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
 "X-Generator: Pootle 1.2.1\n"
+"X-Poedit-SearchPath-0: clientgui\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "Informations de l'utilisateur"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr "Identifiez vous "
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
@@ -25,7 +29,7 @@ msgstr ""
 "Veuillez entrer les informations de votre compte\n"
 "(pour créer un compte, visitez le site web du projet)"
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
@@ -33,420 +37,487 @@ msgstr ""
 "Actuellement, ce projet n'accepte pas de nouveaux comptes.\n"
 "Vous pouvez le rejoindre seulement si vous avez déjà un compte."
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "Participez-vous déjà à ce projet ?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "&Non, nouvel utilisateur"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "&Oui, utilisateur existant"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+"Il n'est pas possible de configurer votre compte automatiquement.Veuillez "
+"cliquer sur le lien \"Trouver les informations de login\" ci-dessous pour "
+"savoir quoi mettre dans les champsemail et mot de passe."
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr "Trouver les informations de login"
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "&Mot de passe:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "Choisissez un &mot de passe:"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "&Confirmez le mot de passe:"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
-msgstr ""
+msgstr "Participez-vous déjà à %s ?"
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr "&Nom d'utilisateur:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "&Adresse email:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr "longueur minimum: %d caractères"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
+msgstr "Mot de passe oublié?"
+
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+"Si vous n'avez pas déjà enregistré ce compte avec ce gestionnaire de compte, "
+"faites le avant de continuer.Cliquer sur le lien ci-dessous pour vous "
+"enregistrer ou pourretrouver votre mot de passe."
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr "Site du gestionnaire de compte"
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "Rejoindre un projet"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "Mettre à jour le gestionnaire de compte"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "Rejoindre un gestionnaire de compte"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr ""
 "La longueur minimum du mot de passe pour ce gestionnaire de compte est de %d "
 "caractères. Entrez un mot de passe différent, svp."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
 "La longueur minimum du mot de passe pour ce gestionnaire de compte est de %d "
 "caractères. Entrez un mot de passe différent, svp."
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr ""
 "Le mot de passe et la confirmation du mot de passe sont différents. Entrez-"
 "les à nouveau, svp."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "URL du gestionnaire de compte"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr "Choisissez un gestionnaire de compte"
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Entrez l'URL du site web du gestionnaire de compte."
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"Pour choisir un gestionnaire de compte, cliquez sur son nom ou tapez son URL "
+"ci-dessous."
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "&URL du gestionnaire de compte:"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr "Communication avec %s en cours."
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr "Communication avec le serveur en cours."
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "Veuillez patienter..."
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr "Une erreur interne du serveur a eu lieu.\n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Connecté"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Déconnecté"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "&Fermer la Fenêtre\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr "Fermer la fenêtre %s"
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "Ferme la Fenêtre du Manager BOINC."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr "&Fermer la fenêtre"
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
-msgstr "Quitte le %s"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr "Ferme %s"
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "&Quitter"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
-msgstr ""
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr "&Projets\tCtrl+Shift+P"
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
-msgstr ""
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr "Afficher les projets"
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
-msgstr ""
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr "&Tâches\tCtrl+Shift+T"
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "Affiche l'interface graphique simplifiée de BOINC"
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr "Afficher les tâches"
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "Rejoindre un &projet..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr "Trans&férer\tCtrl+Shift+X"
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "Rejoindre un projet"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr "Afficher les transferts"
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "Rejoindre un &gestionnaire de compte..."
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr "&Messages\tCtrl+Shift+M"
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Rejoindre un gestionnaire de compte"
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr "Afficher les messages"
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr "&Statistiques\tCtrl+Shift+S"
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr "Afficher les statistiques"
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr "Utilisation &Disque\tCtrl+Shift+D"
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr "Afficher l'utilisation du disque"
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "&Vue Simple...\tCtrl+Shift+S"
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr "Affiche l'interface graphique simplifiée."
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr "Rejoindre un &projet ou un gestionnaire de compte..."
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+"Rejoindre un projet ou un gestionnaire de compte pour commencer à effectuer "
+"des calculs."
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr "&Synchronisation avec %s "
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr "Récupération des paramètres actuels de %s "
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "Rejoindre un &projet..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Rejoindre un projet pour commencer le travail"
+
+# Is this a serious real message ???
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "&Arrêter d'utiliser %s"
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Supprimer le client du contrôle du gestionnaire de compte."
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "&Calculer en permanence"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr "Autorise le travail sans tenir compte des préférences"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "Calculer selon les &préférences"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "Autorise le travail selon vos préférences"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "&Suspendre"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
-msgstr "Arrête les calculs sans tenir compte des préférences"
+msgstr "Arrêter les calculs sans tenir compte des préférences"
+
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr "Toujours utiliser le GPU"
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr "Autoriser les calculs sur le GPU sans tenir compte des préférences"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr "Utiliser le GPU selon les &préférences"
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr "Autoriser le calcul sur le GPU selon vos préférences"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr "Ne jamais utiliser le GPU"
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr "Arrêter les calculs sur le GPU sans tenir compte des préférences"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "&Activité réseau toujours disponible"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr "Autorise l'activité réseau sans tenir compte des préférences"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
-msgstr "Activité réseau selon les &préférences"
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
+msgstr "Activité réseau selon les pré&férences"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr "Autorise l'activité réseau selon vos préférences"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
-msgstr "&Activité réseau suspendue"
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
+msgstr "Activité réseau &suspendue"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr "Arrête l'activité réseau de BOINC"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "&Options..."
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "Configuration de l'interface graphique et des paramètres du proxy"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "&Préférences..."
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr "Configure les préférences locales"
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
 msgid "Connect to another computer running %s"
 msgstr "Se connecte à un autre ordinateur travaillant sur %s"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "Sélectionner un ordinateur..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr "Arrêter le client connecté..."
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr "Arrête le client qui est actuellement connecté"
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "Effectuer les &tests de puissance sur votre ordinateur"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "Effectue les tests de puissance BOINC sur votre ordinateur"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
-msgstr ""
+msgstr "Lancer les &communications réseaux"
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
-msgstr ""
+msgstr "Lancer toutes les communications réseau en attente."
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr "Lire le fichier de configuration"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr "Lit les infos de configuration du fichier cc_config.xml."
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "Lire le fichier de préférences locales"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr ""
 "Lit les préférences contenues dans le fichier global_prefs_override.xml."
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
 #, c-format
-#, fuzzy
-msgid "&Stop using %s..."
-msgstr "&Arrêter d'utiliser %s"
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "Supprimer le client du contrôle du gestionnaire de compte."
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "Rejoindre un &projet"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "Rejoindre un projet pour commencer le travail"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
 msgid "%s &help"
 msgstr "&Aide sur %s"
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
 msgid "Show information about %s"
 msgstr "Affiche les informations à propos de %s"
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr "&Aide sur le %s"
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr "Affiche les informations à propos du %s"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr "&Site web de %s"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
 msgid "Show information about BOINC and %s"
 msgstr "Affiche les informations à propos de BOINC et du %s"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr "&A propos de %s..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "Informations sur le copyright et la licence."
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "&Fichier"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "&Affichage"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "&Outils"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "&Activité"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "A&vancé"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "&Aide"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-#, c-format
-#, fuzzy
-msgid "%s - Shutdown the current client..."
-msgstr "Arrêter le client actuel..."
-
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr "En train de rejoindre un projet ou un gestionnaire de compte..."
 
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
-msgstr ""
+msgstr "%s - Se détacher de %s"
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -460,57 +531,66 @@ msgstr ""
 "\n"
 "Voulez-vous cesser d'utiliser %s ?"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "Attachement au projet en cours..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "Ré-essai des communications avec les projets en cours..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr "%s - Choix de la Langue"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr ""
 "La langue par défaut du %s a été modifiée. Pour que le changement prenne "
 "effet, vous devez redémarrer le %s."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - Arrêter le client connecté..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s arrêtera le client connecté,\n"
+"et invitera à se connecter à un autre ordinateur.\n"
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Ré-essai des communications avec les projets en cours..."
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr "%s a réussi à rejoindre %s"
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "Connexion à %s en cours"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
 msgid "Connected to %s (%s)"
 msgstr "Connecté à %s (%s)"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "Nom d'utilisateur déjà utilisé"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -522,11 +602,11 @@ msgstr ""
 "\n"
 "Visitez le site web du projet et suivez ses instructions, svp."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "Adresse Email déjà utilisée"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -538,22 +618,39 @@ msgstr ""
 "\n"
 "Visitez le site web du projet et suivez ses instructions, svp"
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
-msgstr ""
+msgstr "Communication avec le client BOINC en cours._ _Veuillez patienter ..."
+
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr "&Quitter %s"
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr "&Quitter %s"
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "Annuler"
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr "%s - Erreur de connexion"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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 ""
+"Vous n'êtes actuellement pas autorisé à gérer le client. Demandez à votre "
+"administrateur système de vous ajouter au groupe \"boinc_users\" des "
+"utilisateurs locaux."
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
@@ -562,22 +659,22 @@ msgstr ""
 "Assurez-vous que vous démarrer ce programme dans le même dossier que le "
 "client."
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
-msgstr ""
+msgstr "Autorisation de se connecter au client en cours d'exécution refusée."
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr ""
 "Le mot de passe que vous avez fourni est incorrect. Essayez à nouveau, svp."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - La connexion a échoué"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
@@ -585,32 +682,37 @@ msgstr ""
 "LE %s n'a pas réussi à se connecter à un client %s.\n"
 "Voulez-vous tenter d'établir la connexion à nouveau ?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
-msgstr ""
+msgstr "%s - Le démarrage du service a échoué"
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
+"%s ne peut pas démarrer un client %s.Merci d'ouvrir le Panneau de "
+"Contrôle->Outils d'Administration->Gestionnaire de Services et démarrez le "
+"service BOINC."
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
 msgstr ""
+"%s est incapable de lancer un client %s.Veuillez démarrer le service et "
+"réessayer."
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr "%s - Etat de la Connexion"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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"
@@ -623,27 +725,23 @@ msgstr ""
 "Pour vous connecter à votre ordinateur local, veuillez utiliser 'localhost' "
 "comme nom d'hôte."
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Sites Web"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr "%s - Etat du réseau"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr ""
 "%s a besoin de se connecter à l'Internet. Veuillez cliquer pour ouvrir %s."
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
 #, c-format
-#, fuzzy
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
 "Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
@@ -653,8 +751,8 @@ msgstr ""
 "Veuillez vous connecter à l'Internet, puis sélectionnez 'Réessayer les "
 "communications' dans le menu Avancé."
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
@@ -662,13 +760,13 @@ msgstr ""
 "%s a besoin de se connecter à l'Internet.\n"
 "Peut-il le faire maintenant?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s est en train de se connecter à Internet."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
 "Please connect to the Internet, or select a default connection\n"
@@ -680,18 +778,18 @@ msgstr ""
 "défaut\n"
 "en utilisant le menu Avancé/Options/Connexions."
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s a réussi à se connecter à Internet."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "%s n'a pas réussi à se connecter à Internet."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
@@ -699,117 +797,157 @@ msgstr ""
 "%s a détecté qu'il est maintenant connecté à Internet: Mise à jour de tous "
 "les projets et essais de transfert en cours."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s a réussi à se déconnecter d'Internet."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s n'a pas réussi à se déconnecter d'Internet."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+"Vous n'êtes actuellement pas autorisé à gérer le client.Pour lancer BOINC "
+"avec les droits requis, vous devez:- réinstaller BOINC en répondant \"Oui\" à "
+"la  question sur les utilisateurs sans droits d'administrationou- contacter "
+"votre administrateur pour vous rajouter dans le groupe 'boinc_master'."
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"Les permissions d'utilisation de BOINC ne sont pas réglées correctement ; "
+"veuillez réinstaller BOINC.(Code erreur %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
 msgstr ""
+"Un redémarrage est requis pour le bon fonctionnement de BOINC.Veuillez "
+"redémarrer votre ordinateur et reessayer."
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "Manager BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr ""
+"BOINC Manager a été démarré automatiquement par le système d'exploitation."
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr "Démarrer BOINC avec seulement l'icône de la barre des tâches visible"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr "Répertoire contenant l'exécutable du client BOINC"
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr "Répertoire de données de BOINC"
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr "Démarrer BOINC avec ces arguments optionnels"
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr "désactiver les permissions et les sécurités utilisateur de BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
+"Sélectionner le mode débogage d'apparence pour activer les messages d'erreur "
+"du gestionnaire d'apparence"
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Détection Automatique)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Inconnu)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Défini par l'utilisateur)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
-msgstr ""
+msgstr "Le calcul est suspendu."
 
-#: clientgui/BOINCTaskBar.cpp:344
-#, fuzzy
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
-msgstr "&Activité réseau suspendue"
+msgstr "Activité réseau suspendue."
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
-msgstr ""
+msgstr "%s: %.2f%% terminé."
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
-msgstr ""
+msgstr "%d tâches en cours d'exécution."
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
-msgstr ""
+msgstr "En cours de reconnexion au client."
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
-msgstr ""
+msgstr "Aucune connexion à un client."
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr "Ouvre le site web de %s..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr "Ouvrir %s..."
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "En veille"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr "Mettre le GPU en veille"
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "Echec de l'attachement au projet"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr "La mise à jour du gestionnaire de compte a échoué"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr "Echec de la suppression du gestionnaire de compte"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "Echec de l'attachement au gestionnaire de compte"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -821,27 +959,26 @@ msgstr ""
 "\n"
 "Cliquez sur Fin pour fermer."
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "Cliquez sur Fin pour fermer."
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "Messages du serveur:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "Attaché au projet"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "Vous avez réussi à rejoindre ce projet."
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -850,497 +987,489 @@ msgstr ""
 "où vous pourrez régler vos préférences et "
 "votre nom de compte."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr "Mise à jour de %s terminée"
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "Mise à jour effectuée."
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr "Suppression de %s terminée."
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "La suppression a réussi !"
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr "Attaché à %s"
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "Attaché au gestionnaire de compte"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
 msgstr "Bienvenue à %s !"
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
+#, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "Vous avez réussi à rejoindre le système %s."
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "Vous avez réussi à rejoindre ce gestionnaire de compte."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr "A propos de %s"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
-msgstr "Version:"
+msgstr "Version :"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
-msgstr ""
+msgstr "Version de wxWidgets :"
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
-msgstr "Copyright:"
+msgstr "Copyright :"
 
-#: clientgui/DlgAbout.cpp:175
-#, fuzzy
+#: clientgui/DlgAbout.cpp:175
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
-"(C) 2003-2007 University of California, Berkeley.\n"
-"All Rights Reserved."
+"(C) 2003-2007 Université de Californie, Berkeley.\n"
+"Tous droits réservés."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr "Berkeley Open Infrastructure for Network Computing"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "&OK"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
-msgstr ""
+msgstr "nombre flottant invalide"
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr "heure invalide, le format est HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr "intervale de temps invalide, le format est HH:MM-HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr "valeur invalide détectée"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr "Erreur de Validation"
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr "Voulez-vous vraiment annuler toutes les préférences locales ?"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr "Confirmation"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
-msgstr ""
+msgstr "%s - Préférences"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
 "Click Clear to restore web-based settings."
 msgstr ""
+"Cette fenêtre contrôle les préférences pour cet ordinateur uniquement.\n"
+"Cliquez sur OK pour enregistrer ces préférences.\n"
+"Cliquez sur Effacer pour restaurer les paramètres du site internet."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr "Supprimer"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
-msgstr ""
+msgstr "Effacer toutes les préférences locales et fermer la fenêtre."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
-msgstr ""
+msgstr "Calcul autorisé"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
-msgstr "lorsque l'ordinateur est sur batteries"
+msgstr " Lorsque l'ordinateur est sur batterie"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr ""
+"cocher si vous voulez que cet ordinateur calcule alors qu'il est sur "
+"batterie"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
-msgstr "lorsque l'ordinateur est utilisé"
+msgstr " Lorsque l'ordinateur est utilisé"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr ""
+"cocher si vous voulez que cet ordinateur calcule même si vous êtes en train "
+"de l'utiliser"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
-msgstr ""
+msgstr " Utiliser le GPU lorsque que l'ordinateur est utilisé"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
+"cocher si vous voulez que le GPU de cet ordinateur calcule même si vous êtes "
+"en train de l'utiliser"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
-msgstr ""
+msgstr "Seulement quand l'ordinateur est en veille depuis"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr ""
+"ne faire du calcul que si vous n'avez pas utilisé l'ordinateur durant le "
+"nombre de minutes suivant"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr "minutes"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr "Tant que l'utilisation du processeur est inférieure à"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+"interrompre les calculs si l'utilisation du processeur dépasse ce niveau "
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr "pourcentage (0 signifie qu'il n'y a aucune restriction)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
-msgstr "tous les jours entre les heures suivantes:"
+msgstr "Tous les jours entre les heures suivantes"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
-msgstr ""
+msgstr "commencer le travail à cette heure"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr "et"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
-msgstr ""
+msgstr "cesser le travail à cette heure"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
-msgstr ""
+msgstr "(pas de restriction si égaux)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
-msgstr ""
+msgstr "Contrainte sur jours de la semaine:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
-msgstr ""
+msgstr "cocher pour préciser les heures pour cette journée de la semaine"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr "Lundi"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr "Mardi"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr "Mercredi"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr "Jeudi"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr "Vendredi"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr "Samedi"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr "Dimanche"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
-msgstr "autres options"
+msgstr "Autres options"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-#, fuzzy
-msgid "Switch between applications between every"
-msgstr "changer d'applications toutes les"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
+msgstr "Changer d'application toutes les"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
-msgstr "sur les systèmes multiprocesseurs, utiliser au plus"
+msgstr "Sur les systèmes multiprocesseurs, utiliser au plus"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
 #, no-c-format
-#, fuzzy
 msgid "% of the processors"
-msgstr "du processeur"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
-#, fuzzy
+msgstr "% des processeurs"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
-msgstr "utiliser au plus"
+msgstr "Utiliser au plus"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
 msgid "% CPU time"
 msgstr "% du temps processeur"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr "utilisation du processeur"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
-msgstr "options générales"
+msgstr "Options générales"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
-#, fuzzy
+# Texte français trop long dans l'écran de préférences : anglicisme acceptable pour un boinceur ;-)
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
-msgstr "taux de téléchargement maximum"
+msgstr "Download maximum"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr "KOctets/sec."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
-#, fuzzy
+# Texte français trop long dans l'écran de préférences : anglicisme acceptable pour un boinceur ;-)
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
-msgstr "taux d'envoi maximum"
+msgstr "Upload maximum"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
-msgstr "se connecter tous les"
+msgstr "Se connecter tous les"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
 msgstr ""
+"cet ordinateur est connecté à l'Internet tous les X jours\n"
+"(0 si connecté en permanence)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr "jours"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
-msgstr "réserve de travail supplémentaire"
+msgstr "Réserve de travail supplémentaire"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr "jours (max: 10)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
-msgstr "passer la vérification de l'image du fichier"
+msgstr " Ignorer la vérification du fichier image"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
-msgstr ""
+msgstr "cocher si votre fournisseur d'accès internet modifie les fichiers image"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
-msgstr "options de connexion"
+msgstr "Options de connexion"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
-msgstr "confirmer avant de se connecter à internet"
+msgstr "Confirmer avant de se connecter à internet"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr ""
+"si coché, un message de confirmation sera affiché avant d'essayer de se "
+"connecter à internet"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
-msgstr "se déconnecter lorsque c'est fini"
+msgstr "Se déconnecter dès que terminé"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
 msgstr ""
+"si coché, BOINC raccrochera dès que l'utilisation du réseau sera terminée\n"
+"(utile uniquement pour une connexion RTC)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
-msgstr ""
+msgstr "Utilisation du réseau autorisée"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
-msgstr ""
+msgstr "heure de début d'utilisation du réseau"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
-msgstr ""
+msgstr "heure de fin d'utilisation du réseau"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr "utilisation du réseau"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
-msgstr "utilisation du disque"
+msgstr "Utilisation du disque"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
-msgstr ""
+msgstr "l'espace disque utilisé par BOINC au maximum (en Gigaoctets)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr "GigaOctets d'espace disque"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
-msgstr "laisser au moins"
+msgstr "Laisser au moins"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr ""
+"BOINC laisse au minimum cette quantité d'espace disque libre (en Gigaoctets)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr "GigaOctets d'espace disque libre"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
-msgstr ""
+msgstr "BOINC utilise au maximum ce pourcentage d'espace disque total"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr "% de l'espace disque total "
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-#, fuzzy
-msgid "Write to disk at most every"
-msgstr "écrire sur le disque au plus toutes les"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr "Points de contrôle au plus toutes les"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr "secondes"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr "% de la mémoire physique (espace swap)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
-msgstr "utilisation de la mémoire"
+msgstr "Utilisation de la mémoire"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr "% quand l'ordinateur est utilisé"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr "% quand l'ordinateur n'est pas utilisé"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
-msgstr "laisser les applications en mémoire lorsqu'elles sont suspendues"
+msgstr " Laisser les applications en mémoire lorsqu'elles sont suspendues"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
-msgstr ""
+msgstr "si coché, les tâches suspendues seront laissées en mémoire"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr "utilisation du disque et de la mémoire"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr "OK"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
-msgstr ""
+msgstr "sauvegarder toutes les valeurs et fermer la fenêtre"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr "Annuler"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
-msgstr ""
+msgstr "fermer la fenêtre sans sauvegarder"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "Aide"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
-msgstr ""
+msgstr "affiche la page web des préférences"
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
 msgstr "%s - Exit Confirmation"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1349,9 +1478,15 @@ msgid ""
 "If you also want to stop running the science applications when you\n"
 "exit the Manager, then choose from the following options:"
 msgstr ""
+"Vous avez demandé à fermer le %s\n"
+"qui vous permet de voir et gérer\n"
+"les applications scientifiques sur votre ordinateur.\n"
+"\n"
+"Si vous voulez également arrêter les applications scientifiques quand "
+"vous\\fermez le Manager, choisissez parmi les options suivantes:"
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1367,539 +1502,497 @@ msgstr ""
 "plutôt que de quitter l'application; cela permettra à %s de\n"
 "traiter les tâches aux moments que vous avez choisis dans les préférences."
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
-msgstr ""
+msgstr "Arrêter les tâches en cours en quittant le Manager"
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
-msgstr ""
+msgstr "Se rappeler de cette décision et ne plus afficher cette fenêtre."
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "&Annuler"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
-msgstr ""
+msgstr "Ne plus afficher cette fenêtre."
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
-msgstr ""
+msgstr "&Fermer"
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
-msgstr ""
+msgstr "Propriétés du projet "
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "Général"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
-msgstr ""
+msgstr "URL maître"
 
-#: clientgui/DlgItemProperties.cpp:107
-#, fuzzy
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
-msgstr "Nom d'utilisateur:"
+msgstr "Nom d'utilisateur"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
-msgstr ""
+msgstr "Nom de l'équipe"
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Partage des ressources"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
-msgstr ""
+msgstr "Programmateur RPC différé pour"
 
-#: clientgui/DlgItemProperties.cpp:114
-msgid "Non CPU intensive"
-msgstr ""
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr "Téléchargement (entrant) des fichiers différé pour"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
-msgid "yes"
-msgstr ""
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr "Téléchargement (sortant) des fichiers différé pour"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr "ID Ordinateur"
+
+# I don't know the context of this message
+#: clientgui/DlgItemProperties.cpp:215
+msgid "Non CPU intensive"
+msgstr "Usage CPU peu intensif"
+
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "yes"
+msgstr "oui"
+
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
-msgstr ""
+msgstr "non"
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
-msgstr ""
+msgstr "Suspendu via l'interface graphique"
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
-msgstr ""
+msgstr "Ne pas demander de travail supplémentaire"
 
-#: clientgui/DlgItemProperties.cpp:117
-#, fuzzy
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr "Requête au planificateur en cours"
 
-#: clientgui/DlgItemProperties.cpp:118
-#, fuzzy
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
-msgstr "Attaché au gestionnaire de compte"
+msgstr "Attaché via le gestionnaire de compte"
 
-#: clientgui/DlgItemProperties.cpp:119
-#, fuzzy
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
-msgstr "Se détacher lorsque c'est fini"
+msgstr "Se détacher dès que terminé"
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
-msgstr ""
+msgstr "Terminé"
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
-msgstr ""
+msgstr "Crédit"
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
-msgstr ""
+msgstr "Utilisateur"
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
-msgstr ""
+msgstr "Ordinateur"
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
-msgstr ""
+msgstr "Planification"
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
-msgstr ""
+msgstr "Priorité de planification CPU"
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
-msgstr ""
+msgstr "Priorité de demande de travail CPU"
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
-msgstr ""
+msgstr "Demande de travail CPU différé de"
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
-msgstr ""
+msgstr "Intervalle d'ajournement de demande de travail CPU"
+
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr "Priorité d'ordonnancement de GPU NVIDIA"
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
-msgstr ""
+msgstr "Priorité de demande de travail GPU NVidia"
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
-msgstr ""
+msgstr "Demande de travail GPU NVidia différé de "
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
-msgstr ""
+msgstr "Intervalle d'ajournement de demande de travail GPU NVidia"
+
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr "Priorité de planification de GPU ATI"
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr "Priorité de demande de travail GPU ATI"
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr "Demande de travail GPU ATI différé de"
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr "Intervalle d'ajournement de demande de travail GPU ATI"
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
-msgstr ""
+msgstr "Facteur de correction de durée"
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
-msgstr ""
+msgstr "Propriétés de la tâche "
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Application"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
-msgstr ""
+msgstr "Nom de la tâche"
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
-msgstr ""
+msgstr "Etat"
+
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr "Reçu"
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Date limite d'envoi"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
-msgstr ""
+msgstr "Ressources"
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
-msgstr ""
+msgstr "Temps processeur au dernier point de sauvegarde"
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "Temps de calcul"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
-#, fuzzy
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 msgid "Elapsed time"
 msgstr "Temps écoulé"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
-msgstr ""
+msgstr "Temps restant estimé"
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
-msgstr ""
+msgstr "Portion effectuée"
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
-msgstr ""
+msgstr "Taille de la mémoire virtuelle"
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
-msgstr ""
+msgstr "Espace mémoire alloué"
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
-msgstr ""
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr "Répertoire"
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr "ID de process"
+
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Nouveau"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
-msgstr "Echec du téléchargement"
+msgstr "Échec du téléchargement"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "Téléchargement en cours"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "Projet suspendu par l'utilisateur"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr "Tâche suspendue par l'utilisateur"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Suspendu"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr " - sur batteries"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr " - utilisateur actif"
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr " - calcul suspendu"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr " - moment de la journée"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr " - tests de puissance de l'ordinateur"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr " - a besoin d'espace disque"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr "En attente de mémoire"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
-msgstr ""
+msgstr "En attente de mémoire partagée"
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
-msgstr ""
+msgstr "En cours d'exécution, priorité haute"
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "Calculs en cours"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr "Calculs en attente"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr "Prêt à démarrer"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Erreur de calcul"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "Echec de l'envoi"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "Envoi en cours"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Abandonné par l'utilisateur"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "Annulé par le projet"
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "Annulé"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Confirmé"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "Prêt à valider"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Erreur: Etat invalide '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
-msgstr ""
+msgstr "%s - Options"
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
-msgstr ""
+msgstr "Langue :"
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
-msgstr ""
+msgstr "Quel langue le manager doit-il utiliser ?"
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
 msgstr ""
+"Intervalle de rappel de connexion réseau:\n"
+"(minutes)"
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr ""
+"Tous les combien le Manager doit vous rappeler quand une connexion réseau "
+"est requise ?"
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
-msgstr ""
+msgstr "Démarrer le Manager à l'ouverture de session ? "
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
-msgstr ""
+msgstr "Démarre le BOINC Manager lorsque vous ouvrez une session."
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
-msgstr ""
+msgstr "Activer le dialogue de fermeture du Manager ?"
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
-msgstr ""
+msgstr "Affiche le dialogue de sortie lorsque vous fermez le Manager."
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "Réglages de la connexion RTC et Réseau Privé Virtuel"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "&Choisir par défaut"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "&Effacer le choix par défaut"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Connexion par défaut:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Connexions"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Se connecter via un serveur proxy HTTP"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "Configuration d'un serveur proxy HTTP"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Adresse:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Port:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
-msgstr ""
+msgstr "Ne pas utiliser de proxy pour :"
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Laisser vide si non nécessaire"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Nom d'utilisateur:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Mot de passe:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "Proxy HTTP"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Se connecter via un serveur proxy SOCKS"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "Configuration d'un serveur proxy SOCKS"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "Proxy SOCKS"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
 msgid "%s - Select Computer"
-msgstr ""
+msgstr "%s - Sélectionner un ordinateur"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Nom d'hôte:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s - Navigateur internet introuvable"
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
+#, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1915,237 +2008,232 @@ msgstr ""
 "dans la variable d'environnement BROWSER,\n"
 "puis redémarrer le %s."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "Forums"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "Discuter avec d'autres utilisateurs sur les forums de SETI at home"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "Poser des questions et signaler des problèmes"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "Votre compte"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "Voir les infos de votre compte et les crédits totaux"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "Vos préférences"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr "Voir et modifier les préférences et le profil de votre compte SETI at home"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "Vos résultats"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr "Voir la dernière semaine (ou plus) de travail et de résultats"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "Vos ordinateurs"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr ""
 "Voir une liste de tous les ordinateurs sur lesquels vous exécutez SETI at Home"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "Votre équipe"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "Voir les infos de votre équipe"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "Questions fréquentes"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr ""
 "Lire la page des questions les plus fréquemment posées (FAQ) d'Einstein at Home"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "Infos sur l'écran de veille"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "Lire une description détaillée de l'écran de veille Einstein at Home"
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr ""
 "Discuter avec les administrateurs et les autres utilisateurs sur les forums "
 "d'Einstein at Home"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "Etat d'Einstein"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Etat actuel des serveurs d'Einstein at Home"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "Signaler des problèmes"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr "Un lien vers le forum des problèmes et des bugs d'Einstein at Home"
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr ""
 "Voir et modifier le profil de votre compte et vos préférences Einstein at Home"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "Résumé du compte"
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr ""
 "Voir une liste de tous les ordinateurs sur lesquels vous exécutez "
 "Einstein at Home"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "Projet LIGO"
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr ""
 "La page d'accueil du projet LIGO (Laser Interferometer Gravitational-wave "
 "Observatory)"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "Projet GEO-600"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "La page d'accueil du projet GEO-600"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Equipe"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "Infos sur votre Equipe"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "Obtenir de l'aide pour Climateprediction.net"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "Nouvelles"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "Nouvelles de Climateprediction.net"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr "Voir les infos de votre compte, vos crédits et vos trickles"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "Infos de votre équipe"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr "Trouver de l'aide dans notre système d'aide"
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "Statistiques Globales"
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "Résumé des statistiques de World Community Grid"
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr "Mes calculs"
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "Vos statistiques et réglages"
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr "Profils d'unité"
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr "Mettre à jour vos profils d'unité"
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr "Recherche"
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "S'informer sur les projets hébergés par World Community Grid"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
-msgstr ""
+msgstr "En cours de démarrage des services client, veuillez patienter..."
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "Recherche de l'état du système; veuillez patienter..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "Recherche des informations de l'hôte; veuillez patienter..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "Pas de connexion Internet"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Connectez-vous à l'Internet et essayez à nouveau, svp."
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Projet non trouvé"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2155,11 +2243,11 @@ msgstr ""
 "\n"
 "Veuillez vérifier l'URL et réessayer, svp."
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "Le gestionnaire de compte n'a pas été trouvé"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2171,50 +2259,63 @@ msgstr ""
 "\n"
 "Veuillez vérifier l'URL et réessayer, svp."
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr "L'identification a échoué."
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr "Vérifiez le nom d'utilisateur et le mot de passe, et essayez à nouveau."
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr "Vérifiez l'adresse email et le mot de passe, et essayez à nouveau."
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
-msgstr ""
+msgstr "Choisissez un projet"
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
+"Pour choisir un projet, cliquez sur son nom ou tapez son URL ci-dessous."
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "&URL du projet:"
 
-#: clientgui/ProjectInfoPage.cpp:320
-msgid "You are already attached to this project. Please choose a different project."
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
 msgstr ""
+"Il se peut que ce projet n'ait pas d'unité de travail pour votre système "
+"d'exploitation. Êtes-vous sur de vouloir continuer ? "
 
-#: clientgui/ProjectInfoPage.cpp:321
-#, fuzzy
-msgid "Already Attached to Project"
-msgstr "Déjà attaché au projet"
+#: clientgui/ProjectInfoPage.cpp:417
+msgid "You are already attached to this project. Please choose a different project."
+msgstr "Vous avez déjà rejoint ce projet. Merci de choisir un projet différent."
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
-msgstr ""
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr "Cliquer"
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
-msgstr ""
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr "CPU multi-coeurs supportés"
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr "GPU Nvidia supportés"
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr "GPU ATI supportés"
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr "Site web du projet"
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
@@ -2222,7 +2323,7 @@ msgstr ""
 "Communication avec le projet en cours \n"
 "Veuillez patienter..."
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
@@ -2231,12 +2332,11 @@ msgstr ""
 "cible.\n"
 "(lookup_account.php/create_account.php)\n"
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "Echec de la communication réseau"
 
-#: clientgui/ProxyInfoPage.cpp:200
-#, fuzzy
+#: clientgui/ProxyInfoPage.cpp:199
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2247,28 +2347,22 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
-"BOINC n'a pas réussi à communiquer avec l'Internet.\n"
-"Les raisons les plus probables sont:\n"
-"\n"
-"1)Un problème de connexion. Veuillez vérifier votre connexion au réseau ou à "
-"votre modem\n"
-"et pressez le bouton Retour pour recommencer l'opération précédente.\n"
-"\n"
-"2) Un pare-feu personnel bloque BOINC. Vous devez configurer\n"
-"votre pare-feu personnel afin de laisser BOINC communiquer\n"
-"par le port 80. Une fois cela réglé, cliquez sur Retour pour\n"
-"essayer à nouveau.\n"
-"\n"
-"3) Vous utilisez un serveur proxy.\n"
-"Cliquez sur Suivant pour configurer les paramètres proxy de BOINC"
-
-#: clientgui/ProxyInfoPage.cpp:217
-#, fuzzy
+"Le logiciel  World Community Grid - BOINC n'a pas réussi à communiquer avec "
+"l'Internet.Les raisons les plus probables sont:1)Un problème de connexion. "
+"Veuillez vérifier votre connexion au réseau ou à votre modemet pressez le "
+"bouton Retour pour essayer de nouveau.2) Un pare-feu personnel bloque le "
+"logiciel  World Community Grid - BOINC. Vous devez configurervotre pare-feu "
+"personnel afin de laisser BOINC et BOINC Manager communiquerpar le port 80 "
+"et le port 443. Une fois cela réglé, cliquez sur Retour pouressayer à "
+"nouveau.3) Vous utilisez un serveur proxy.Cliquez sur Suivant pour "
+"configurer les paramètres proxy de BOINC"
+
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2284,510 +2378,481 @@ msgid ""
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
-"BOINC n'a pas réussi à communiquer avec l'Internet.\n"
-"Les raisons les plus probables sont:\n"
-"\n"
-"1)Un problème de connexion. Veuillez vérifier votre connexion au réseau ou à "
-"votre modem\n"
-"et pressez le bouton Retour pour recommencer l'opération précédente.\n"
-"\n"
-"2) Un pare-feu personnel bloque BOINC. Vous devez configurer\n"
-"votre pare-feu personnel afin de laisser BOINC communiquer\n"
-"par le port 80. Une fois cela réglé, cliquez sur Retour pour\n"
-"essayer à nouveau.\n"
-"\n"
-"3) Vous utilisez un serveur proxy.\n"
-"Cliquez sur Suivant pour configurer les paramètres proxy de BOINC"
+"BOINC n'a pas réussi à communiquer avec Internet.Les raisons les plus "
+"probables sont:1) Un problème de connexion. Veuillez vérifier votre "
+"connexion au réseau ou à votre modemet pressez le bouton Retour pour essayer "
+"à nouveau.2) Un pare-feu personnel bloque BOINC. Vous devez configurervotre "
+"pare-feu personnel afin de laisser BOINC communiquerpar le port 80. Une "
+"fois cela réglé, cliquez sur Retour pouressayer à nouveau.3) Vous utilisez "
+"un serveur proxy.Cliquez sur Suivant pour configurer les paramètres proxy de "
+"BOINC"
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Configuration du Proxy"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "Proxy HTTP"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "Serveur:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "Détection automatique"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "Proxy SOCKS"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr "Vue &Avancée\tCtrl+Shift+A"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr "Affiche l'interface graphique avancée (accessible) de BOINC."
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr "&%s"
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr "Recherche de l'état actuel"
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr "Vous n'avez aucun projet. Veuillez Ajouter un projet."
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr "Téléchargement du travail depuis le serveur en cours"
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr "Traitement Suspendu: Fonctionne sur Batteries."
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr "Traitement Suspendu: Utilisateur Actif"
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr "Traitement Suspendu: L'utilisateur a mis en pause le traitement."
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr "Traitement Suspendu: Moment de la Journée."
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr "Traitement Suspendu: Tests de puissance de l'ordinateur."
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr "Traitement Suspendu."
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr "En attente du contact des serveurs des projets."
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr "Recherche de l'état actuel"
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr "Aucun travail disponible à traiter"
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr "Incapable de se connecter au client BOINC"
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Projet"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "Date"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Message"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Copie tous les messages dans le presse-papiers"
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 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 ""
 "Copie les messages sélectionnés dans le presse-papiers. Vous pouvez "
 "sélectionner plusieurs messages en maintenant appuyée la touche Shift ou "
 "Ctrl lorsque vous cliquez sur les messages."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
 "Copie les messages sélectionnés dans le presse-papiers. Vous pouvez "
 "sélectionner plusieurs messages en maintenant appuyée la touche Shift ou "
 "Ctrl lorsque vous cliquez sur les messages."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr "Obtenir de l'aide à propos de BOINC"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
-msgstr ""
+msgstr "%s - Messages"
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr "100 MO"
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr "200 MO"
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr "500 MO"
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr "1 GO"
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr "2 GO"
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr "5 GO"
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr "10 GO"
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr "20 GO"
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr "50 GO"
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr "100 GO"
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr "10%"
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr "20%"
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr "30%"
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr "40%"
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr "50%"
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr "60%"
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr "70%"
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr "80%"
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr "90%"
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr "100%"
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr "1"
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr "3"
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr "5"
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr "10"
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr "15"
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr "30"
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr "60"
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr "Apparence"
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr "Apparence"
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr "Préférences"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr "Je veux personnaliser mes préférences uniquement pour cet ordinateur."
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr "Préférences Personnelles"
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr "Travailler seulement entre:"
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr "Se connecter à internet seulement entre:"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr "Ne pas utiliser plus de:"
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr "d'espace disque"
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr "du processeur"
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr "Travailler lorsque l'ordinateur est sur batteries ?"
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr "Travailler après que l'ordinateur soit inactif pendant:"
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr "N'importe quand"
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr "%d MO"
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr "%4.2f GO"
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr "%d%%"
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr "0 (Toujours Calculer)"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr "%d"
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
-msgstr ""
+msgstr "En pause : Autre tâche en cours"
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr ""
+"En pause : demandé par l'utilisateur. Cliquez 'Reprendre' pour continuer"
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
-msgstr ""
+msgstr "En pause : Utilisateur actif"
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
-msgstr ""
+msgstr "En pause : Ordinateur sur batterie"
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
-msgstr ""
+msgstr "En pause : Période de la journée"
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
-msgstr ""
+msgstr "En pause : Tests de puissance en cours"
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
-msgstr ""
+msgstr "En pause"
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
-msgstr ""
+msgstr "En pause : Démarrage de l'application retardé"
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
-msgstr ""
+msgstr "Cliquer pour afficher les graphiques du projet"
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr "Rejoindre un projet supplémentaire"
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
-msgstr ""
+msgstr "Synchroniser les projets avec le gestionnaire de compte"
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr "Ouvrir une fenêtre pour voir les messages"
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr "Arrêter toute l'activité"
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr "Reprendre l'activité"
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr "Ouvrir une fenêtre pour régler vos préférences"
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr "Passer à l'affichage avancé de BOINC"
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
-msgstr ""
+msgstr "Mes projets :"
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr "%s. Travail effectué par %s: %0.2f"
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
-msgstr ""
+msgstr "Supprimer le projet"
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "Etes vous sûr de vouloir vous retirer du projet '%s'?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "Se détacher du projet"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr "%.1lf"
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr "%d h %d min %d sec"
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr ""
 "Etes vous sûr de vouloir afficher les graphiques sur une machine distante ?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Montrer les graphiques"
 
-#: clientgui/sg_ViewTabPage.cpp:444
-#, fuzzy
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
-msgstr "Application"
+msgstr "Application: "
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
-msgstr ""
+msgstr "Temps restant: "
 
-#: clientgui/sg_ViewTabPage.cpp:450
-#, fuzzy
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
-msgstr "Temps écoulé"
+msgstr "Temps écoulé: "
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
-msgstr ""
+msgstr "Conditions d'utilisation"
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
-msgstr ""
+msgstr "Merci de lire les conditions d'utilisation suivantes:"
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
-msgstr ""
+msgstr "J'accepte les conditions d'utilisation."
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
-msgstr ""
+msgstr "Je n'accepte pas les conditions d'utilisation."
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Projet momentanément indisponible"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2797,11 +2862,11 @@ msgstr ""
 "\n"
 "Essayez plus tard, svp."
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "Gestionnaire de compte momentanément indisponible"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2811,35 +2876,35 @@ msgstr ""
 "\n"
 "Essayez plus tard, svp."
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "Entrez une clé d'identification pour continuer, svp."
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr ""
 "Clé d'identification non valide; entrez une clé d'identification valide, "
 "s'il vous plaît"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Conflit de validation"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr "Veuillez entrer une adresse email"
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr ""
 "Adresse email non valide; entrez une adresse email valide, s'il vous plaît"
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "URL manquante"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2849,18 +2914,18 @@ msgstr ""
 "Par exemple:\n"
 "http://www.exemple.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "URL non valide"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2870,612 +2935,505 @@ msgstr ""
 "Par exemple:\n"
 "http://boincproject.exemple.com"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "'%s' ne contient pas de nom d'hôte valide."
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "'%s' ne contient pas de chemin valide."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "Commandes"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Copier tous les messages"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Copier les messages sélectionnés"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
-msgstr ""
+msgstr "Ne montrer que ce projet"
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
-msgstr ""
+msgstr "Ne montrer les messages que pour le projet sélectionné."
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Messages"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "Copie de tous les messages dans le presse-papiers en cours..."
 
-#: clientgui/ViewMessages.cpp:223
-#, fuzzy
+#: clientgui/ViewMessages.cpp:223
 msgid "Copying selected messages to the clipboard..."
-msgstr "Copie des messages sélectionnés dans le presse-papiers en cours..."
+msgstr "Copie les messages sélectionnés dans le presse-papiers..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
-msgstr ""
+msgstr "Filtrer les messages..."
 
-#: clientgui/ViewMessages.cpp:494
-#, fuzzy
+#: clientgui/ViewMessages.cpp:494
 msgid "Show all messages"
-msgstr "Copier tous les messages"
+msgstr "Montrer tous les messages"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
-msgstr ""
+msgstr "Montre les messages pour tous les projets."
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr "ID"
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr "Priorité"
 
-#: clientgui/ViewMessagesGrid.cpp:151
+# I don't understand the context of this item.
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
-msgstr ""
+msgstr "Grille de Messages"
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr "Copie des messages sélectionnés dans le presse-papiers en cours..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr "Info"
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr "Avertissement"
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr "Erreur"
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
-msgstr ""
+msgstr "Fils de nouvelles"
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
-msgstr ""
+msgstr "BOINC"
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
-msgstr ""
+msgstr "Afficher les dernières nouvelles au sujet de BOINC"
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
-msgstr ""
+msgstr "Site BOINC"
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
-msgstr ""
+msgstr "Affiche les dernières nouvelles au sujet de BOINC depuis le site BOINC"
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Mettre à jour"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr ""
 "Envoie le travail terminé, obtient les crédits les plus récents, met à jour "
 "les préférences, et si possible télécharge du travail."
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Suspendre"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr "Suspend le travail de ce projet."
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr "Pas de nouveau travail"
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr "Ne récupère pas de nouveau travail pour ce projet."
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Recommencer le projet"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 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 ""
 "Supprime tous les fichiers et tout le travail associé à ce projet et charge "
 "à nouveau les fichiers nécessaires. Vous pouvez d'abord mettre à jour le "
 "projet pour transmettre tout le travail effectué."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Se détacher"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr ""
 "Détache cet ordinateur de ce projet. Le travail en cours sera perdu. "
 "(Cliquez d'abord sur 'Mettre à jour' pour envoyer le travail terminé)."
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
-msgstr ""
+msgstr "Propriétés"
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
-msgstr ""
+msgstr "Afficher les détails du projet."
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Compte"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "Travail effectué"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr "Travail moyen"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Etat"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Projets"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "Mise à jour du projet en cours..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "Reprise du projet en cours..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "Suspension du projet en cours..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr "Informe le projet qu'il peut télécharger du travail supplémentaire..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "Informe le projet de ne pas télécharger de travail supplémentaire..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "Réinitialisation du projet en cours..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Etes-vous sûr de vouloir recommencer le projet '%s'?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Recommencer le projet"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "Détachement du projet en cours..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "Lancement du navigateur en cours..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Reprendre"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "Reprend le travail pour ce projet."
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "Autoriser du nouveau travail"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr "Autorise le téléchargement de nouveau travail pour ce projet."
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "Ne récupère pas de nouveau travail pour ce projet."
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Suspendu par l'utilisateur"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "Pas de nouveau travail"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
-msgstr ""
+msgstr "Fin du projet - OK pour détacher."
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
-msgstr ""
+msgstr "Se détachera lorsque les tâches seront terminées"
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Requête au planificateur en attente"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr "Requête au planificateur en cours"
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "Communication différée "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+# I don't understand the context of the item.
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
-msgstr ""
+msgstr "Grille de Projets"
 
-#: clientgui/ViewResources.cpp:61
-#, fuzzy
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
-msgstr "occupation totale du disque"
+msgstr "Occupation totale du disque"
 
-#: clientgui/ViewResources.cpp:82
-#, fuzzy
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
-msgstr "occupation du disque par les projets BOINC "
+msgstr "Occupation du disque par les projets BOINC "
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Disque"
 
-#: clientgui/ViewResources.cpp:223
-#, fuzzy
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr "attaché à aucun projet BOINC - 0 octet"
 
-#: clientgui/ViewResources.cpp:260
-#, fuzzy
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
-msgstr "utilisé par BOINC -"
+msgstr "utilisé par BOINC: "
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
-msgstr ""
+msgstr "libre, disponible pour BOINC: "
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
-msgstr ""
+msgstr "libre, non disponible pour BOINC: "
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
-msgstr ""
+msgstr "libre: "
 
-#: clientgui/ViewResources.cpp:300
-#, fuzzy
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
-msgstr "utilisé par d'autres programmes -"
+msgstr "utilisé par d'autres programmes: "
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Total de l'utilisateur"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Moyenne de l'utilisateur"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Total de l'hôte"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Moyenne de l'hôte"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
 msgstr "Dernière mise à jour: Il y a %.0f jours"
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Total de l'utilisateur"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr "Crédit total de l'utilisateur"
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "Moyenne de l'utilisateur"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr "Crédit moyen de l'utilisateur"
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Total de l'hôte"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr "Crédit total de l'hôte"
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "Moyenne de l'hôte"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr "Crédit moyen de l'hôte"
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< &Projet précédent"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr "Montre le graphique du projet précédent"
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "&Projet suivant >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr "Montre le graphique du projet suivant"
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "Mode visuel"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "Tous les projets"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr "Montre tous les projets, un graphique par projet"
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "Un projet"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr "Montre un graphique pour le projet sélectionné"
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr "Tous les projets (somme)"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr "Montre un graphique pour tous les projets"
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Statistiques"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "Mise à jour des diagrammes en cours..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Réessayer maintenant"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr ""
 "Cliquez sur 'Réessayer maintenant' pour transférer le fichier maintenant"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Annuler le tranfert"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr ""
 "Cliquez sur 'Annuler le tranfert' pour supprimer le fichier de la file "
 "d'attente de transfert. Vous ne recevrez pas de crédit pour cette unité."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "Fichier"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Avancement"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Taille"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "Temps écoulé"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Vitesse"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Transferts"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "Réessai du transfert en cours..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "Annulation du transfert en cours..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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"
@@ -3485,34 +3443,43 @@ msgstr ""
 "NOTE: L'abandon d'un transfert invalidera la tâche et\n"
 "vous ne recevrez pas de crédits pour cette tâche."
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Annuler le transfert de fichier"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "Réessayer dans "
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr "Envoi en attente"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "Téléchargement en attente"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr " (retrait de projet: "
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ")"
+
+# I don't understand the context of this item.
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
-msgstr ""
+msgstr "Grille de Transfer"
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 msgid "Aborting transfer(s)..."
 msgstr "Abandon du transfert en cours"
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
@@ -3522,77 +3489,82 @@ msgstr ""
 "NOTE: L'abandon d'un transfert invalidera la tâche et\n"
 "vous ne recevrez pas de crédits pour cette tâche."
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 msgid "Abort File Transfer(s)"
 msgstr "Abandonner le(s) Tranfert(s)"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr "Montrer les tâches actives"
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr "Ne montrer que les tâches actives."
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "Montre les graphiques de l'application dans une fenêtre."
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "Suspend le calcul de cette unité."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Abandonner"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr ""
 "Abandonne le calcul de cette unité. Vous n'obtiendrez pas de crédit pour "
 "cette unité."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
-msgstr ""
+msgstr "Afficher les détails de la tâche."
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Nom"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
-msgstr ""
+msgstr "Ecoulé"
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "Temps restant estimé"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Tâches"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "Reprise de la tâche en cours..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "Suspension de la tâche en cours..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "Affichage des graphiques de cette tâche en cours..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Abandon de l'unité en cours..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
@@ -3600,36 +3572,63 @@ msgstr ""
 "Etes-vous sûr de vouloir abandonner cette tâche '%s' ?\n"
 "(Avancement: %s, Etat: %s)"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "Etes-vous sûr de vouloir annuler ces %d tâches ?"
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "Abandonner la tâche"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Abandon de l'unité en cours..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr "Montrer toutes les tâches"
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr "Montrer toutes les tâches."
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr "Reprend le calcul de cette unité."
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr "Suspend le calcul de cette unité."
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr "GPU absent, "
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
-msgstr ""
+msgstr " - une application exclusive est en cours d'exécution"
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
-msgstr ""
+msgstr " (CPU-non-intensif)"
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr "Avorté : non démarré dans le délai imparti"
+
+# I don't understand the context of this item.
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
-msgstr ""
+msgstr "Grille de Taches"
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
@@ -3637,12 +3636,12 @@ msgstr ""
 "Etes-vous sûr de vouloir abandonner cette tâche '%s' ?\n"
 "(Avancement: %s, Etat: %s)"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
-msgstr ""
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr "Rejoindre un projet ou un gestionnaire de compte"
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3650,16 +3649,19 @@ msgid ""
 "Projects added via this wizard will not be\n"
 "listed on or managed via %s."
 msgstr ""
+"De préférence, ajoutez les projets sur le site %s.\n"
+"\n"
+"Les projets ajoutés via cet assistant ne seront pas\n"
+"listés ou gérables via %s."
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
 msgstr ""
-"Nous allons maintenant vous guider pour rejoindre\n"
-"un projet."
+"Nous allons vous aidez à rejoindre un projet ou ungestionnaire de compte."
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3674,147 +3676,312 @@ msgid ""
 "To change which research applications are sent to you from\n"
 "World Community Grid then please click on the following button:"
 msgstr ""
-
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
-msgstr "Arrêter l'utilisation de %s"
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-"Nous allons maintenant effacer cet ordinateur de %s.\n"
-"A partir de maintenant, attachez et détachez les projets directement depuis "
-"cet ordinateur.\n"
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "Gestionnaire de compte"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
+"Vous avez demandé à vous attacher à un nouveau projet BOINC.  Cela implique\n"
+"que votre ordinateur se connectera à un nouveau site internet.\n"
+"Si c'est ce que vous souhaitez faire, alors cliquez sur le bouton 'Suivant'.\n"
 "\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"Nous allons maintenant vous guider pour ajouter\n"
-"un gestionnaire de compte.\n"
+"Les projets tels World Community Grid hébergent diverses applications de "
+"recherche.\n"
+"Pour modifier la liste des applications envoyées à votre ordinateur, \n"
+"vous devrez vous rendre sur le site web du projet et y modifier vos "
+"préférences.\n"
 "\n"
-"Si vous souhaitez rejoindre un projet unique, cliquez sur Annuler,\n"
-"puis selectionnez le menu 'Rejoindre un projet'."
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "Repères de déboguage"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "Echec des propriétés du projet"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "Erreur de l'URL des propriétés du projet"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "La création de compte est désactivée"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "La création des comptes clients est désactivée"
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "Ce compte existe déjà"
+"Pour gérer vos applications World Community Grid\n"
+" veuillez cliquer sur le bouton suivant:"
 
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "Déjà attaché au projet"
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "Echec de l'attachement au projet"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
 msgstr ""
+"Changer les applications de recherche sur le site du World Community Grid"
 
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "Echec de la détection réseau"
-
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "Pour continuer, cliquez sur Suivant."
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "Voulez-vous vraiment annuler ?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "Question"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "&Suivant >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< &Retour"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "&Fin"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
 msgid "New page inserted. Index = %i"
 msgstr "Nouvelle page insérée. Index = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
 msgid "New page appended. Index = %i"
 msgstr "Nouvelle page ajoutée. Index = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
 msgid "Old Page Index = %i"
 msgstr "Index de l'Ancienne Page = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr "OnDropTarget: index by HitTest = %i"
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr "Légende du Camembert"
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+"pour le support de l'accessibilité, veuillez sélectionner Avancé dans le "
+"menu Vue ou entrez la commande shift-a"
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+"Ce panneau contient de graphes montrant la somme totale pour les "
+"utilisateurs des projets"
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr "blanc"
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr "liste de "
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr " est vide"
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr "%d de %d; "
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr "colonne de tri courante "
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr " ordre décroissant "
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr " ordre ascendant "
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr "colonne "
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr "la liste est vide"
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr "sélectionné "
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr "ligne %d "
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr "de %d; "
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr "colonne %d; "
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr "liste des projets ou des gestionnaires de comptes"
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr "ligne %d de %d;"
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 "spécifiez les heures de début et de fin de travail dans le format HH:MM-"
 "HH:MM"
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 "spécifiez les heures de début et de fin d'utilisation du réseau dans le "
 "format HH:MM-HH:MM"
 
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "&Fermer la Fenêtre\tCtrl+W"
+
+#~ msgid "&News\tCtrl+Shift+N"
+#~ msgstr "&Nouvelles\tCtrl+Shift+N"
+
+#~ msgid "Display news"
+#~ msgstr "Afficher les nouvelles"
+
+#, fuzzy
+#~ msgid "&Tasks\tCTRL+SHIFT+T"
+#~ msgstr "Vue &Avancée\tCTRL+SHIFT+A"
+
+#, fuzzy
+#~ msgid "Trans&fers\tCTRL+SHIFT+X"
+#~ msgstr "Vue &Avancée\tCTRL+SHIFT+A"
+
+#, fuzzy
+#~ msgid "&Messages\tCTRL+SHIFT+M"
+#~ msgstr "Vue &Avancée\tCTRL+SHIFT+A"
+
+#, fuzzy
+#~ msgid "&Statistics\tCTRL+SHIFT+S"
+#~ msgstr "Vue &Simple...\tCTRL+SHIFT+S"
+
+#, fuzzy
+#~ msgid "&Disk usage\tCTRL+SHIFT+D"
+#~ msgstr "Vue &Simple...\tCTRL+SHIFT+S"
+
+#, fuzzy
+#~ msgid "&News\tCTRL+SHIFT+N"
+#~ msgstr "Vue &Avancée\tCTRL+SHIFT+A"
+
+#, fuzzy
+#~ msgid ""
+#~ "You currently are not authorized to manage the client.\n"
+#~ "Please contact your administrator to add you to the 'boinc_master' user "
+#~ "group."
+#~ msgstr ""
+#~ "Vous n'êtes actuellement pas autorisé à gérer le client. Demandez à votre "
+#~ "administrateur système de vous ajouter au groupe \"boinc_users\" des "
+#~ "utilisateurs locaux."
+
+#~ msgid "User information"
+#~ msgstr "Informations de l'utilisateur"
+
+#~ msgid "Account Manager URL"
+#~ msgstr "URL du gestionnaire de compte"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "Entrez l'URL du site web du gestionnaire de compte."
+
+#~ msgid "Close BOINC Manager Window."
+#~ msgstr "Ferme la Fenêtre du Manager BOINC."
+
+#~ msgid "Exit the %s"
+#~ msgstr "Quitte le %s"
+
+#~ msgid "Attach to a project"
+#~ msgstr "Rejoindre un projet"
+
+#~ msgid "Attach to &account manager..."
+#~ msgstr "Rejoindre un &gestionnaire de compte..."
+
+#~ msgid "Attach to an account manager"
+#~ msgstr "Rejoindre un gestionnaire de compte"
+
+#~ msgid "Attach to &project"
+#~ msgstr "Rejoindre un &projet"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "Attachement au projet en cours..."
+
+#~ msgid "Removal from %s completed."
+#~ msgstr "Suppression de %s terminée."
+
+#~ msgid "Removal succeeded!"
+#~ msgstr "La suppression a réussi !"
+
+#, fuzzy
+#~ msgid "Write to disk at most every"
+#~ msgstr "écrire sur le disque au plus toutes les"
+
+#, fuzzy
+#~ msgid "Already Attached to Project"
+#~ msgstr "Déjà attaché au projet"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr ""
+#~ "Nous allons maintenant vous guider pour rejoindre\n"
+#~ "un projet."
+
+#~ msgid "&Stop using%s"
+#~ msgstr "Arrêter l'utilisation de %s"
+
+#~ msgid ""
+#~ "We'll now remove this computer from %s.  From now on,\n"
+#~ "attach and detach projects directly from this computer.\n"
+#~ msgstr ""
+#~ "Nous allons maintenant effacer cet ordinateur de %s.\n"
+#~ "A partir de maintenant, attachez et détachez les projets directement "
+#~ "depuis cet ordinateur.\n"
+
+#~ msgid "Account manager"
+#~ msgstr "Gestionnaire de compte"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to an account manager.\n"
+#~ "\n"
+#~ "If you want to attach to a single project, click Cancel,\n"
+#~ "then select the 'Attach to project' menu item instead."
+#~ msgstr ""
+#~ "Nous allons maintenant vous guider pour ajouter\n"
+#~ "un gestionnaire de compte.\n"
+#~ "\n"
+#~ "Si vous souhaitez rejoindre un projet unique, cliquez sur Annuler,\n"
+#~ "puis selectionnez le menu 'Rejoindre un projet'."
+
+#~ msgid "Debug Flags"
+#~ msgstr "Repères de déboguage"
+
+#~ msgid "Project Properties Failure"
+#~ msgstr "Echec des propriétés du projet"
+
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "Erreur de l'URL des propriétés du projet"
+
+#~ msgid "Account Creation Disabled"
+#~ msgstr "La création de compte est désactivée"
+
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "La création des comptes clients est désactivée"
+
+#~ msgid "Account Already Exists"
+#~ msgstr "Ce compte existe déjà"
+
+#~ msgid "Project Already Attached"
+#~ msgstr "Déjà attaché au projet"
+
+#~ msgid "Project Attach Failure"
+#~ msgstr "Echec de l'attachement au projet"
+
+#~ msgid "Net Detection Failure"
+#~ msgstr "Echec de la détection réseau"
+
 #~ msgid ""
 #~ "You can copy and paste the URL from your browser's\n"
 #~ "address bar."
@@ -3822,13 +3989,13 @@ msgstr ""
 #~ "Vous pouvez copier et coller l'URL située dans\n"
 #~ "la barre d'adresse de votre navigateur."
 
-#, fuzzy
+#, fuzzy
 #~ msgid "For a list of account managers go to:"
 #~ msgstr ""
-#~ "Pour voir une liste des gestionnaires de compte basés sur BOINC, "
-#~ "visitez le site:"
+#~ "Pour voir une liste des gestionnaires de compte basés sur BOINC, visitez "
+#~ "le site:"
 
-#, fuzzy
+#, fuzzy
 #~ msgid "&Simple View..."
 #~ msgstr "&Affichage Simple"
 
@@ -3861,8 +4028,12 @@ msgstr ""
 #~ msgid "&Accessible View"
 #~ msgstr "&Affichage Accessible"
 
-#~ msgid "Accessible views are compatible with accessibility aids such as screen readers."
-#~ msgstr "Les affichages accessibles sont compatibles avec les outils d'accessibilité tels que les lecteurs d'écran."
+#~ msgid ""
+#~ "Accessible views are compatible with accessibility aids such as screen "
+#~ "readers."
+#~ msgstr ""
+#~ "Les affichages accessibles sont compatibles avec les outils "
+#~ "d'accessibilité tels que les lecteurs d'écran."
 
 #~ msgid "Retry &communications"
 #~ msgstr "Réessayer les &communications"
@@ -3870,7 +4041,6 @@ msgstr ""
 #~ msgid "Retry all deferred network communication."
 #~ msgstr "Tente de rétablir toutes les communications réseaux différées."
 
-#, c-format
 #~ msgid ""
 #~ "%s is going to shutdown the core client it is currently connected to.\n"
 #~ "NOTE: Choosing 'OK' will cause the select new computer dialog to appear \n"
@@ -3880,31 +4050,18 @@ msgstr ""
 #~ "NOTE: La validation de ce choix fera apparaître une boîte de dialogue\n"
 #~ "vous permettant de vous connecter à un client différent."
 
-#, c-format
 #~ msgid "BOINC Manager - Detach from %s"
 #~ msgstr "Manager BOINC - Se détacher de %s"
 
-#, c-format
-#~ msgid ""
-#~ "BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
-#~ "(Error code %d)"
-#~ msgstr ""
-#~ "La propriété ou les permissions de BOINC ne sont pas réglées correctement; veuillez réinstaller BOINC, svp.\n"
-#~ "(Code erreur %d)"
-
-#, c-format
 #~ msgid "%s is currently suspended...\n"
 #~ msgstr "%s est actuellement suspendu...\n"
 
-#, c-format
 #~ msgid "%s networking is currently suspended...\n"
 #~ msgstr "L'accès au réseau de %s est actuellement suspendu...\n"
 
-#, c-format
 #~ msgid "%s is currently reconnecting to a %s client...\n"
 #~ msgstr "Le %s est en train de se reconnecter à un client %s...\n"
 
-#, c-format
 #~ msgid "%s is not currently connected to a %s client...\n"
 #~ msgstr "Le %s n'est actuellement pas connecté à un client %s...\n"
 
@@ -3913,9 +4070,11 @@ msgstr ""
 #~ "On Save - preferences will be stored locally.\n"
 #~ "If you would like to revert to web-based settings, click the Clear-Button."
 #~ msgstr ""
-#~ "Cette boîte de dialogue contrôle uniquement les préférences de cet ordinateur.\n"
+#~ "Cette boîte de dialogue contrôle uniquement les préférences de cet "
+#~ "ordinateur.\n"
 #~ "En les validant - les préférences seront enregistrées localement.\n"
-#~ "Si vous souhaitez revenir aux réglages de la page web, cliquez sur le bouton Supprimer."
+#~ "Si vous souhaitez revenir aux réglages de la page web, cliquez sur le "
+#~ "bouton Supprimer."
 
 #~ msgid "do work"
 #~ msgstr "effectuer le travail"
@@ -3950,8 +4109,12 @@ msgstr ""
 #~ msgid "Reminder Frequency:"
 #~ msgstr "Fréquence de rappel:"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
-#~ msgstr "A quelle fréquence, en minutes, le manager doit-il vous rappeler d'éventuels évènements de connexion."
+#~ msgid ""
+#~ "How often, in minutes, should the manager remind you of possible "
+#~ "connection events."
+#~ msgstr ""
+#~ "A quelle fréquence, en minutes, le manager doit-il vous rappeler "
+#~ "d'éventuels évènements de connexion."
 
 #~ msgid "Project Selection"
 #~ msgstr "Sélection du Projet"
diff --git a/locale/fr/BOINC-Project-Generic.po b/locale/fr/BOINC-Project-Generic.po
index 95d3910..fde900e 100644
--- a/locale/fr/BOINC-Project-Generic.po
+++ b/locale/fr/BOINC-Project-Generic.po
@@ -7,8 +7,8 @@ msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: BOINC translation team <translate at boinc.berkeley.edu>\n"
 "POT-Creation-Date: 2009-05-09 21:36 PDT\n"
-"PO-Revision-Date: 2009-07-09 05:36-0700\n"
-"Last-Translator: pH!Lm0 <philmo_one at yahoo.fr>\n"
+"PO-Revision-Date: 2010-02-11 12:51-0700\n"
+"Last-Translator: Christophe Lherieau <skimpax at gmail.com>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
@@ -1021,6 +1021,10 @@ msgid ""
 "done for %1. If you want to be anonymous, choose a name that doesn't reveal "
 "your identity."
 msgstr ""
+"Votre compte sur %1 est identifié par un nom que vous choisissez. Ce nom "
+"pourra être visible sur le site web de %1, avec un aperçu de la contribution "
+"de votre ordinateur pour %1. Si vous désirez rester anonyme, choisissez un "
+"nom qui ne révèle pas votre identité."
 
 msgid ""
 "If you participate in %1, information about your computer (such as its "
@@ -1029,12 +1033,23 @@ msgid ""
 "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 ""
+"Si vous participez à %1, les informations à propos de votre ordinateur "
+"(comme son type de processeur, sa quantité de mémoire vive, etc.) sera "
+"enregistré par %1 et utilisé pour choisir le type de travail qui sera envoyé "
+"à votre ordinateur. Cette information sera également visible sur le site "
+"web de %1. Aucune information qui pourrait révéler l'emplacement de votre "
+"ordinateur (par exemple, son nom de domaine ou son adresse réseau) ne sera "
+"montrée."
 
 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 ""
+"Si vous participez à %1, vous devez donner une adresse e-mail fonctionnelle. "
+"Cette adresse ne sera pas affichée sur le site web de %1 ni communiquée à "
+"des organismes tiers. %1 peut vous envoyer une lettre d'informations "
+"périodique; cependant, vous pouvez vous désabonner à tout moment."
 
 msgid ""
 "Private messages sent on the %1 web site are visible only to the sender and "
@@ -1043,6 +1058,12 @@ msgid ""
 "them to your %2message filter%3.  This will prevent you from seeing any "
 "public or private messages from that user."
 msgstr ""
+"Les messages privés envoyés sur les site web %1 sont visibles uniquement par "
+"l'expéditeur et le destinataire.  %1 n'examine ni ne contrôle le contenu "
+"des messages privés.  Si vous recevez des messages privés non désirés de la "
+"part d'un autre utilisateur de %1, vous pouvez les ajouter à vos %2filtres "
+"de messages%3.  Cela vous protégera de la réception de tout message public "
+"ou privé de la part de cet utilisateur."
 
 msgid ""
 "If you use our web site forums you must follow the %2posting guidelines%3.  "
@@ -1050,9 +1071,14 @@ msgid ""
 "members.  By posting to the forums, you are granting irrevocable license for "
 "anyone to view and copy your posts."
 msgstr ""
+"Si vous utilisez le forum de notre site web, vous devez suivre les %2règles "
+"de postage%3.  Les messages postés sur le forum %1 sont visibles par tous, y "
+"compris les non-membres.  En postant sur les forums, vous acceptez de façon "
+"irrévocable que tout le monde puisse voir et copier le contenu de vos "
+"messages."
 
 msgid "Is it safe to run %1?"
-msgstr ""
+msgstr "Est-il sûr de lancer %1 ?"
 
 msgid ""
 "Any time you download a program through the Internet you are taking a "
@@ -1063,15 +1089,28 @@ msgid ""
 "all executable files are digitally signed on a secure computer not connected "
 "to the Internet."
 msgstr ""
+"A chaque fois que vous téléchargez un programme par internet vous jouez "
+"votre chance : le programme peut contenir des erreurs dangereuses, ou le "
+"serveur de téléchargement peut avoir été compromis. %1 a fait des efforts "
+"pour minimiser ces risques. Nous avons testé nos applications avec "
+"attention. Nos serveurs sont derrière des pares-feu et sont configurés pour "
+"une haute sécurité. Pour assurer l'intégrité des téléchargements de "
+"programmes, tous les fichiers exécutables sont signés numériquement sur un "
+"ordinateur sécurisé non connecté à internet."
 
 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 ""
+"Les applications lancées par %1 peuvent engendrer une surchauffe sur "
+"certains ordinateurs. Si cela se produit, arrêter %1 ou utiliser un "
+"%2programme utilitaire%3 pour limiter l'utilisation du CPU."
 
 msgid ""
 "%1 was developed by %2. BOINC was developed at the University of California."
 msgstr ""
+"%1 a été développé par %2. BOINC a été développé à l'Université de "
+"Californie."
 
 msgid "Liability"
 msgstr "Responsabilité"
@@ -1081,6 +1120,9 @@ msgid ""
 "any other event or condition that may occur as a result of participating in %"
 "1."
 msgstr ""
+"%1 et %2 n'assument aucune responsabilité pour les dommages éventuels à "
+"votre ordinateur, la perte de données, ou tout autre événement ou condition "
+"qui peuvent être engendrés par la participation à %1."
 
 msgid "Other BOINC projects"
 msgstr "Autres projets BOINC"
@@ -1090,12 +1132,19 @@ msgid ""
 "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 ""
+"D'autre projets utilisent la même plateforme BOINC, comme %1. Vous pouvez "
+"participer à un ou plusieurs de ces projets. Ce faisant, votre ordinateur "
+"participera à un travail utile, même lorsque %1 n'a aucune tâche disponible "
+"actuellement."
 
 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 ""
+"Ces autres projets ne sont pas associés à %1, et nous ne pouvons pas nous "
+"porter garant de leur pratiques de sécurité ou de la nature de leur "
+"recherches. Vous pouvez les rejoindre mais à vos propres risques."
 
 msgid "LANG_NAME_INTERNATIONAL"
 msgstr "French"
@@ -1128,261 +1177,307 @@ msgid "You need to fill all fields to send a private message"
 msgstr "Vous devez remplir tous les champs pour envoyer un message privé"
 
 msgid "Could not find user with id %1"
-msgstr ""
+msgstr "Impossible de trouver l'utilisateur avec l'identifiant %1"
 
 msgid "Could not find user with username %1"
-msgstr ""
+msgstr "Impossible de trouver l'utilisateur avec le nom d'utilisateur %1"
 
 msgid "%1 is not a unique username; you will have to use user ID"
 msgstr ""
+"%1 est un nom d'utilisateur déjà attribué; merci de choisir un autre "
+"identifiant."
 
 msgid "User %1 (ID: %2) is not accepting private messages from you."
-msgstr ""
+msgstr "L'utilisateur %1 (ID : %2) n'accepte pas vos messages privés."
 
 msgid "Really block %1?"
-msgstr ""
+msgstr "Voulez-vous réellement bloquer %1 ?"
 
 msgid ""
 "Are you really sure you want to block user %1 from sending you private "
 "messages?"
 msgstr ""
+"Etes-vous réellement certain de vouloir bloquer la réception des messages "
+"privés provenant de l'utilisateur %1 ?"
 
 msgid "Please note that you can only block a limited amount of users."
 msgstr ""
+"Veuillez noter que vous ne pouvez bloquer qu'un nombre limité "
+"d'utilisateurs."
 
 msgid ""
 "Once the user has been blocked you can unblock it using forum preferences "
 "page."
 msgstr ""
+"Un fois l'utilisateur bloqué, vous pouvez le débloquer en utilisant la page "
+"\"préférences du forum\"."
 
 msgid "Add user to filter"
-msgstr ""
+msgstr "Ajouter un utilisateur au filtre"
 
 msgid "No, cancel"
-msgstr ""
+msgstr "Non, annuler"
 
 msgid "User %1 blocked"
-msgstr ""
+msgstr "Utilisateur %1 bloqué"
 
 msgid "User %1 has been blocked from sending you private messages."
 msgstr ""
+"L'utilisateur %1 a été bloqué et ne peut plus vous envoyer de messages "
+"privés."
 
 msgid "To unblock, visit %1message board preferences%2"
-msgstr ""
+msgstr "Pour débloquer, aller sur les %1préférences de messages%2"
 
 msgid "Profiles"
-msgstr ""
+msgstr "Profils"
 
 msgid ""
 "%1Profiles%2 let individuals share backgrounds and opinions with the %3 "
 "community."
 msgstr ""
+"%1Profils%2 permet à chacun de partager des choses et opinions avec la "
+"communauté."
 
 msgid ""
 "Explore the diversity of your fellow volunteers, and contribute your own "
 "views for others to enjoy."
 msgstr ""
+"Explorez la diversité de vos camarades également volontaires, et apportez la "
+"contribution de vos propres vues à d'autres que vous appréciez."
 
 msgid ""
 "If you haven't already, you can %1create your own user profile%2 for others "
 "to see!"
 msgstr ""
+"Si ce n'est déjà fait, vous pouvez créer votre %1profil utilisateur%2 qui "
+"sera visible par les autres utilisateurs !"
 
 msgid "User of the Day"
-msgstr ""
+msgstr "L'utilisateur du jour"
 
 msgid "User Profile Explorer"
-msgstr ""
+msgstr "Navigateur de profil utilisateur"
 
 msgid "View the %1User Picture Gallery%2."
-msgstr ""
+msgstr "Regarder la %1galerie photo%2 de l'utilisateur"
 
 msgid "Browse profiles %1by country%2."
-msgstr ""
+msgstr "Parcourir les profils %1par pays%2."
 
 msgid ""
 "Browse profiles %1at random%2, %3at random with pictures%2, or %4at random "
 "without pictures%2."
 msgstr ""
+"Parcourir les profils %1aléatoirement%2, %3aléatoirement avec photos%2, ou "
+"%4aléatoirement sans photos%2."
 
 msgid "Alphabetical profile listings:"
-msgstr ""
+msgstr "Liste des profils par ordre alphabétique :"
 
 msgid "Search profile text"
-msgstr ""
+msgstr "Rechercher un profil par texte"
 
 msgid "No profiles"
-msgstr ""
+msgstr "Aucun profil"
 
 msgid "No profiles matched your query."
-msgstr ""
+msgstr "Aucun profil ne correspond à votre requête."
 
 msgid "Invalid vote type:"
-msgstr ""
+msgstr "Type de vote invalide :"
 
 msgid "Vote Recorded"
-msgstr ""
+msgstr "Vote enregistré"
 
 msgid "Thank you"
-msgstr ""
+msgstr "Merci"
 
 msgid "Your recommendation has been recorded."
-msgstr ""
+msgstr "Votre recommandation a été enregistrée"
 
 msgid "Your vote to reject this profile has been recorded."
-msgstr ""
+msgstr "Votre vote de rejet de ce profil a été enregistré."
 
 msgid "Return to profile."
-msgstr ""
+msgstr "Retour au profil."
 
 msgid "This feature is turned off temporarily"
-msgstr ""
+msgstr "Cette fonctionnalité est désactivée temporairement"
 
 msgid "No computer with ID %1 found"
-msgstr ""
+msgstr "Aucun ordinateur trouvé ayant l'ID %1"
 
 msgid "Tasks for computer %1"
-msgstr ""
+msgstr "Tâches de l'ordinateur %1"
 
 msgid "No access"
-msgstr ""
+msgstr "Aucun accès"
 
 msgid "Missing user ID or host ID"
-msgstr ""
+msgstr "Il manque l'ID de l'utilisateur ou du hôte"
 
 msgid "User of the day"
-msgstr ""
+msgstr "Utilisateur du jour"
 
 msgid "Account data for %1"
-msgstr ""
+msgstr "Données de compte pour %1"
 
 msgid "Statistics and leaderboards"
-msgstr ""
+msgstr "Statistiques et tableaux principaux"
 
 msgid "Statistics for %1"
-msgstr ""
+msgstr "Statistiques de %1"
 
 msgid "Top participants"
-msgstr ""
+msgstr "Top des participants"
 
 msgid "Top computers"
-msgstr ""
+msgstr "Top des ordinateurs"
 
 msgid "Top teams"
-msgstr ""
+msgstr "Top des équipes"
 
 msgid ""
 "More detailed statistics for %1 and other BOINC-based projects are available "
 "at several web sites:"
 msgstr ""
+"Des statistiques plus détaillées pour %1 et d'autres projets basés sur BOINC "
+"sont disponibles sur ces différents sites web :"
 
 msgid ""
 "You can also get your current statistics in the form of a \"signature image"
 "\":"
 msgstr ""
+"Vous pouvez également avoir vos statistiques courantes sous la forme d'une "
+"\"image de signature\" :"
 
 msgid ""
 "Additionally you can get your individual statistics summed across all BOINC "
 "projects from several sites; see your %1home page%2."
 msgstr ""
+"Accessoirement, vous pouvez avoir la somme de vos statistiques individuelles "
+"sur tous les projets BOINC de sites différents; allez voir votre %1page "
+"d'accueil%2."
 
 msgid "%1 participants may form %2teams%3"
-msgstr ""
+msgstr "%1 participants peuvent former une %2équipe%3"
 
 msgid ""
 "You may belong to only one team. You can join or quit a team at any time."
 msgstr ""
+"Vous ne pouvez appartenir qu'à une seule équipe. Vous pouvez quitter ou "
+"joindre une équipe à tout moment."
 
 msgid "Each team has a %1founder%2 who may:"
-msgstr ""
+msgstr "Chaque équipe a un %fondateur%2 qui peut :"
 
 msgid "access team members' email addresses"
-msgstr ""
+msgstr "accéder aux adresses e-mail des membres de l'équipe"
 
 msgid "edit the team's name and description"
-msgstr ""
+msgstr "éditer le nom et la description de l'équipe"
 
 msgid "remove members from the team"
-msgstr ""
+msgstr "supprimer des membres de l'équipe"
 
 msgid "disband a team if it has no members"
-msgstr ""
+msgstr "supprimer l'équipe si elle n'a aucun membre"
 
 msgid "To join a team, visit its team page and click %1Join this team%2."
 msgstr ""
+"Pour rejoindre une équipe, visitez la page de cette équipe et cliquez sur "
+"%Rejoindre cette équipe%2."
 
 msgid "Find a team"
-msgstr ""
+msgstr "Trouver une équipe"
 
 msgid "All teams"
-msgstr ""
+msgstr "Toutes les équipes"
 
 msgid "%1 teams"
-msgstr ""
+msgstr "%1 équipes"
 
 msgid "Create a new team"
-msgstr ""
+msgstr "Créer une nouvelle équipe"
 
 msgid ""
 "If you cannot find a team that is right for you, you can %1create a team%2."
 msgstr ""
+"Si vous ne trouvez pas d'équipe vous correspondant, vous pouvez %1créer une "
+"équipe%2."
 
 msgid "You must choose a non-blank team name"
-msgstr ""
+msgstr "Vous devez choisir une nom d'équipe"
 
 msgid "A team named %1 already exists - try another name"
-msgstr ""
+msgstr "Une équipe nommée %1 existe déjà - essayez un autre nom"
 
 msgid "Could not create team - please try later."
-msgstr ""
+msgstr "Impossible de créer l'équipe - essayez plus tard."
 
 msgid "Create a team"
-msgstr ""
+msgstr "Créer une nouvelle équipe"
 
 msgid ""
 "You belong to %1. You must %2quit this team%3 before creating a new one."
 msgstr ""
+"Vous appartenez à l'équipe %1. Vous devez %2quitter cette équipe%3 avant "
+"d'en créer une."
 
 msgid "Top hosts"
-msgstr ""
+msgstr "Top des hôtes"
 
 msgid "Top %1 teams"
-msgstr ""
+msgstr "Top %1 des équipes"
 
 msgid "Participant since"
-msgstr ""
+msgstr "Participant depuis"
 
 msgid "This user has no profile"
-msgstr ""
+msgstr "Cet utilisateur n'a aucun profil"
 
 msgid "Account data"
-msgstr ""
+msgstr "Données du compte"
 
 msgid ""
 "Your 'weak account key' lets you attach computers to your account on this "
 "project, without giving the ability to log in to your account or to change "
 "it in any way."
 msgstr ""
+"Votre 'clef de compte simplifiée' (weak account key) vous permet d'attacher "
+"des ordinateurs à votre compte de ce projet, sans pour autant leur donner la "
+"possibilité de se connecter à votre compte ou de le modifier."
 
 msgid ""
 "This mechanism works only with projects that have upgraded their server "
 "software 7 Dec 2007 or later."
 msgstr ""
+"Ce mécanisme fonctionne seulement avec les projets qui ont fait une mise à "
+"niveau logicielle de leur serveurs vers une version du 7 décembre 2007 ou "
+"plus récente."
 
 msgid "Your weak account key for this project is:"
-msgstr ""
+msgstr "Votre clef de compte simplifiée pour ce projet est :"
 
 msgid ""
 "To use your weak account key on a given host, find or create the 'account "
 "file' for this project. This file has a name of the form "
 "<b>account_PROJECT_URL.xml</b>. The account file for %1 is <b>%2</b>."
 msgstr ""
+"Pour utiliser votre clef de compte simplifiée sur un hôte donné, rechercher "
+"ou créer le 'fichier de compte' pour ce projet. Ce fichier a un nom de la "
+"forme <b>compte_PROJET_URL.xml</b>. Le fichier de compte pour %1 est "
+"<b>%2</b>."
 
 msgid "Create this file if needed. Set its contents to:"
-msgstr ""
+msgstr "Créer ce fichier si nécessaire. Y mettre le contenu suivant :"
 
 msgid ""
 "Your weak account key is a function of your password. If you change your "
 "password, your weak account key changes, and your previous weak account key "
 "becomes invalid."
 msgstr ""
+"Votre clef de compte simplifiée est fonction de votre mot de passe. Si vous "
+"modifiez votre mot de passe, votre clef de compte simplifiée change, et vos "
+"clefs de compte simplifiées précédentes deviennent invalides."
diff --git a/locale/fr/BOINC-Web.po b/locale/fr/BOINC-Web.po
index 0414839..47e716f 100644
--- a/locale/fr/BOINC-Web.po
+++ b/locale/fr/BOINC-Web.po
@@ -2,9 +2,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
-"PO-Revision-Date: 2009-05-13 15:49-0700\n"
-"Last-Translator: pH!Lm0 <philmo_one at yahoo.fr>\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
+"PO-Revision-Date: 2010-02-11 09:17-0700\n"
+"Last-Translator: Christophe Lherieau <skimpax at gmail.com>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
@@ -20,144 +20,191 @@ msgstr ""
 "X-Poedit-Country: UNITED STATES\n"
 "X-Poedit-KeywordsList: tra\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
 msgstr "[cochez tout ce qui s'applique]"
 
+#: poll.inc:47
 msgid "Other:"
 msgstr "Autre : "
 
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
 msgstr "Oui - J'utilise BOINC sur mon ordinateur depuis ..."
 
+#: poll_data.inc:22
 msgid "less than a week"
 msgstr "moins d'une semaine"
 
+#: poll_data.inc:23
 msgid "less than a month"
 msgstr "moins d'un mois"
 
+#: poll_data.inc:24
 msgid "less than a year"
 msgstr "moins d'un an"
 
+#: poll_data.inc:25
 msgid "more than a year"
 msgstr "plus d'un an"
 
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
 msgstr "Non - J'utilisais BOINC, mais j'ai arrêté parce que ..."
 
+#: poll_data.inc:34
 msgid "I lost interest"
 msgstr "j'ai perdu l'intérêt"
 
+#: poll_data.inc:35
 msgid "it was too complicated"
 msgstr "c'était trop compliqué"
 
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
 msgstr "j'ai arrêté et oublié de recommencer"
 
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
 msgstr "des problèmes sont apparus sur mon ordinateur"
 
+#: poll_data.inc:38
 msgid "it used too much electricity"
 msgstr "l'ordinateur consommait trop d'électricité"
 
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr "je suis passé à du calcul distribué n'utilisant pas la plateforme BOINC"
 
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
 msgstr "Non - J'ai tenté d'utiliser BOINC, mais ..."
 
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
 msgstr "le logiciel ne s'est pas installé correctement"
 
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
 msgstr "je n'ai pas compris comment utiliser le logiciel"
 
+#: poll_data.inc:50
 msgid "I had network communication problems"
 msgstr "j'ai rencontré des problèmes de communication réseau"
 
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
 msgstr "je n'ai pas réussi à y attacher un projet"
 
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr "j'ai attaché un projet, mais je n'ai jamais reçu de travail à effectuer"
 
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
 msgstr "Non - Je n'ai jamais utilisé BOINC, parce que..."
 
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr "sa sécurité me préoccupe"
 
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr "aucun des projets ne m'intéresse"
 
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr "je ne suis pas autorisé à l'utiliser sur mon ordinateur"
 
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr "il n'existe pas de version compatible avec mon ordinateur"
 
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr "Sur quels types d'ordinateurs utilisez-vous BOINC ?"
 
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr "Où sont-ils ?"
 
+#: poll_data.inc:87
 msgid "Home"
 msgstr "Domicile"
 
+#: poll_data.inc:88
 msgid "Work"
 msgstr "Lieu de travail"
 
+#: poll_data.inc:89
 msgid "School"
 msgstr "Lieu d'études"
 
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr "Combien d'ordinateurs ?"
 
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr "En moyenne, combien d'heures par jour fonctionnent-ils ?"
 
+#: poll_data.inc:119
 msgid "Age"
 msgstr "Age"
 
+#: poll_data.inc:129
 msgid "Sex"
 msgstr "Sexe"
 
+#: poll_data.inc:131
 msgid "Male"
 msgstr "Homme"
 
+#: poll_data.inc:132
 msgid "Female"
 msgstr "Femme"
 
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr "Votre degré d'expertise en informatique"
 
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr "Débutant"
 
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr "Intermédiaire"
 
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr "Avancé"
 
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr "Comment avez-vous découvert les projets BOINC ?"
 
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr "TV/radio/presse"
 
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr "Par des amis, proches ou collègues"
 
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr "Par le forum de mon équipe ou ses sites web"
 
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr "Le site web de BOINC"
 
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr "D'autres sites web"
 
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
@@ -165,65 +212,85 @@ msgstr ""
 "Quels sont les facteurs les plus importants lorsque vous choisissez de "
 "participer à un projet BOINC ?"
 
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr "De jolis graphismes dans son économiseur d'écran"
 
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr "Une distribution rapide et équitable du crédit pour le travail effectué"
 
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr "L'obtention de plus de crédit pour ce projet que pour un autre"
 
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr "Un forum associé utile et amical"
 
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr "La participation de l'équipe du projet dans le forum associé"
 
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr "Un site web fournissant des informations sur le projet"
 
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr "Le sujet scientifique abordé est important et utile"
 
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr "Les résultats sont publics et aucune rémunération n'en sera tirée"
 
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr ""
 "Une reconnaissance personnelle dans le cas où mon ordinateur trouverait "
 "quelquechose"
 
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr "Des publications du projet dans des revues scientifiques"
 
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr "Des lettres d'information périodiques de la part du projet"
 
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr "A combien de projets BOINC participez-vous ?"
 
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr "Utilisez-vous l'économiseur d'écran de BOINC ?"
 
+#: poll_data.inc:192
 msgid "Yes"
 msgstr "Oui"
 
+#: poll_data.inc:193
 msgid "No"
 msgstr "Non"
 
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr "Votre utilisation des fora associés aux projets :"
 
+#: poll_data.inc:200
 msgid "to read information"
 msgstr "lecture d'informations"
 
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr "lecture et fourniture d'informations"
 
+#: poll_data.inc:202
 msgid "None"
 msgstr "aucune"
 
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
@@ -231,31 +298,40 @@ msgstr ""
 "Où trouvez-vous les informations nécessaires à la résolution de problèmes "
 "liés à BOINC et ses projets ?"
 
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr "Le forum du projet"
 
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr "Le forum de BOINC"
 
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr "Les listes de diffusion BOINC"
 
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr "Le Wiki non-officiel de BOINC"
 
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr "Les sites web des équipes"
 
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr "Google ou d'autres moteurs de recherche"
 
+#: download.php:40
 msgid "Download BOINC"
 msgstr "Télécharger BOINC"
 
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr "%s pour %s (%s Mo)"
 
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -268,6 +344,7 @@ msgstr ""
 "autres. <p> Après avoir installé BOINC sur votre ordinateur, vous pouvez le "
 "connecter à autant de projets de ce type que vous souhaitez."
 
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
@@ -276,21 +353,27 @@ msgstr ""
 "Note: si votre ordinateur est équipé d'un processeur graphique (GPU) NVIDIA, "
 "vous pourrez peut-être %sl'utiliser pour calculer plus rapidement%s"
 
+#: download.php:120
 msgid "System requirements"
 msgstr "Prérequis système"
 
+#: download.php:121
 msgid "Release notes"
 msgstr "Notes de publication"
 
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr "Aide"
 
+#: download.php:123
 msgid "All versions"
 msgstr "Toutes les versions"
 
+#: download.php:141
 msgid "BOINC: compute for science"
 msgstr "BOINC : calculez pour la science"
 
+#: help.php:12
 #, php-format
 msgid ""
 "BOINC Online Help lets you talk one-on-one with experienced BOINC users, who "
@@ -304,6 +387,7 @@ msgstr ""
 "l'installation et l'utilisation de BOINC; %s solutionner les problèmes que "
 "vous pourriez rencontrer."
 
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -316,6 +400,7 @@ msgstr ""
 "vous ne possédez pas encore Skype, veuillez %sle télécharger et l'installer "
 "maintenant%s.  Lorsque vous aurez terminé, revenez sur cette page."
 
+#: 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 "
@@ -328,6 +413,7 @@ msgstr ""
 "de Skype ou plus classiquemeent le courriel (si vous ne disposez pas de "
 "Skype) pour communiquer avec les volontaires."
 
+#: help.php:31
 msgid ""
 "Volunteers speaking several languages are available. Please select a "
 "language:"
@@ -335,9 +421,11 @@ msgstr ""
 "Des volontaires parlant plusieurs langues sont disponibles. Veuillez "
 "sélectionner une langue : "
 
+#: help.php:47
 msgid "Be a Help Volunteer"
 msgstr "Devenez un volontaire pour l'aide en ligne"
 
+#: help.php:50
 #, php-format
 msgid ""
 "If you're an experienced BOINC user, we encourage you to %sbecome a Help "
@@ -349,6 +437,7 @@ msgstr ""
 "la recherche scientifique et le calcul distribué bénévole - et c'est "
 "sympathique !"
 
+#: help.php:56
 #, php-format
 msgid ""
 "If you're already a Help Volunteer: to edit your settings, %sclick here%s."
@@ -356,15 +445,65 @@ msgstr ""
 "Si vous êtes un volontaire pour l'aide en ligne : pour éditer vos "
 "paramètres, %scliquez ici%s."
 
+#: index.php:23
+msgid "Computing power"
+msgstr "Puissance de calcul"
+
+#: index.php:25
+msgid "Top 100 volunteers"
+msgstr "100 meilleurs participants"
+
+#: index.php:26
+msgid "Statistics"
+msgstr "Statistiques"
+
+# de quoi parle-t-on ?
+#: index.php:53
+msgid "Active:"
+msgstr "Actif : "
+
+#: index.php:53
+msgid "volunteers,"
+msgstr "participants,"
+
+#: index.php:53
+msgid "computers.\n"
+msgstr "ordinateurs.\n"
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr "moyenne sur 24 heures : "
+
+#: index.php:54
+msgid "TeraFLOPS."
+msgstr "TeraFLOPS."
+
+#: index.php:66
+msgid "News"
+msgstr "Informations"
+
+#: index.php:72
+msgid "... more"
+msgstr "... plus"
+
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr "Les informations sont disponibles via un %sflux RSS%s"
+
+#: index.php:86
 msgid "Volunteer"
 msgstr "Participant"
 
+#: index.php:88
 msgid "Download"
 msgstr "Téléchargement"
 
+#: index.php:90 index.php:125 index.php:163
 msgid "Documentation"
 msgstr "Documentation"
 
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -379,6 +518,7 @@ msgstr ""
 "et lancez le logiciel BOINC  %sSaisissez%s une adresse email et un mot de "
 "passe. "
 
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
@@ -387,14 +527,86 @@ msgstr ""
 "Ou, si vous participez à plusieurs projets, essayez un %sgestionnaire de "
 "compte%s comme %sGridRepublic%s ou %sBAM!%s. "
 
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr "Calculez avec BOINC"
+
+#: index.php:126
+msgid "Software updates"
+msgstr "Mises à jour logicielles"
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr "Le projet BOINC"
+
+# Vérifier la longueur du libellé...
+#: index.php:158
+msgid "Help wanted!"
+msgstr "Aidez nous !"
+
+#: index.php:160
+msgid "Programming"
+msgstr "Programmation"
+
+#: index.php:161
+msgid "Translation"
+msgstr "Traduction"
+
+#: index.php:162
+msgid "Testing"
+msgstr "Tests"
+
+#: index.php:165
+msgid "Software development"
+msgstr "Développement"
+
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr "APIs pour logiciels complémentaires"
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr "Personnel et contributeurs"
+
+#: index.php:168
+msgid "Message boards"
+msgstr "Forums"
+
+#: index.php:169
+msgid "Email lists"
+msgstr "Listes de diffusion"
+
+#: index.php:170
+msgid "Events"
+msgstr "Evénements"
+
+#: index.php:171
+msgid "Conferences"
+msgstr "Conférences"
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr "Articles et discussions"
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr "Logos et graphiques"
+
+#: index.php:206
+msgid "Browser default"
+msgstr "Paramètre par défaut du navigateur"
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr "Logiciel libre de %scalcul bénévole%s et %sdistribué%s."
 
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr "Enquête utilisateurs BOINC"
 
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -418,24 +630,31 @@ msgstr ""
 "anciennes. <p> Les résultats actuels de l'enquête sont <a "
 "href=poll_results.php>ici</a>. "
 
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr "Utilisez-vous BOINC ?"
 
+#: poll.php:30
 msgid "Your participation"
 msgstr "Votre participation"
 
+#: poll.php:32
 msgid "Your computers"
 msgstr "Vos ordinateurs"
 
+#: poll.php:34
 msgid "You"
 msgstr "Vous"
 
+#: poll.php:39
 msgid "Nationality"
 msgstr "Nationalité"
 
+#: poll.php:44
 msgid "Comments"
 msgstr "Commentaires"
 
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
@@ -443,12 +662,15 @@ msgstr ""
 "Merci de suggérer des pistes pour améliorer BOINC, et les projets qui "
 "l'utilisent :"
 
+#: poll.php:50
 msgid "When done click:"
 msgstr "Cliquez lorsque vous avez terminé :"
 
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr "Erreur - les résultats n'ont pas été enregistrés"
 
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
@@ -456,15 +678,19 @@ msgstr ""
 "Une erreur interne nous a empêchés d'enregistrer vos réponses à l'enquête.  "
 "Veuillez réessayer plus tard."
 
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr "Réponses enregistrées"
 
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr "Merci d'avoir répondu à l'enquête sur les utilisateurs de BOINC."
 
+#: poll_results.php:195
 msgid "Survey results"
 msgstr "Résultats de l'enquête"
 
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
@@ -486,18 +712,27 @@ msgstr ""
 #~ msgid "LANG_NAME_INTERNATIONAL"
 #~ msgstr "French"
 
-########################################
+# #######################################
 # poll-related stuff
-########################################
+# #######################################
 # poll-related stuff
-########################################
+# #######################################
 #, fuzzy
 #~ msgid "POLL_TITLE"
 #~ msgstr "BOINC user survey"
 
 #, fuzzy
 #~ msgid "POLL_INTRO"
-#~ msgstr "Several volunteer computing projects, including Climateprediction.net, Einstein at home, and SETI at home, use software called BOINC. If you participate in projects like this, we request that you answer the following questions. This will help BOINC-based projects increase participation and achieve greater scientific results. <p> Please answer as many questions as you want, then go to the bottom and click OK. If you previously completed the survey but your answers have changed, please complete it again - your new answers will replace the old ones. <p> The current results of the survey are <a href=poll_results.php>here</a>. "
+#~ msgstr ""
+#~ "Several volunteer computing projects, including Climateprediction.net, "
+#~ "Einstein at home, and SETI at home, use software called BOINC. If you "
+#~ "participate in projects like this, we request that you answer the "
+#~ "following questions. This will help BOINC-based projects increase "
+#~ "participation and achieve greater scientific results. <p> Please answer "
+#~ "as many questions as you want, then go to the bottom and click OK. If you "
+#~ "previously completed the survey but your answers have changed, please "
+#~ "complete it again - your new answers will replace the old ones. <p> The "
+#~ "current results of the survey are <a href=poll_results.php>here</a>. "
 
 #, fuzzy
 #~ msgid "POLL_RUN"
@@ -525,7 +760,9 @@ msgstr ""
 
 #, fuzzy
 #~ msgid "POLL_COMMENTS_QUESTION"
-#~ msgstr "Please suggest ways that BOINC, and the projects that use it, could be improved:"
+#~ msgstr ""
+#~ "Please suggest ways that BOINC, and the projects that use it, could be "
+#~ "improved:"
 
 #, fuzzy
 #~ msgid "POLL_OTHER"
@@ -716,7 +953,9 @@ msgstr ""
 
 #, fuzzy
 #~ msgid "POLL_FACTOR"
-#~ msgstr "Which are the most important factors when you decide whether to participate in a BOINC project?"
+#~ msgstr ""
+#~ "Which are the most important factors when you decide whether to "
+#~ "participate in a BOINC project?"
 
 #, fuzzy
 #~ msgid "POLL_GRAPHICS"
@@ -796,7 +1035,9 @@ msgstr ""
 
 #, fuzzy
 #~ msgid "POLL_HELP"
-#~ msgstr "Where do you get information to help resolve problems with BOINC and/or BOINC projects?"
+#~ msgstr ""
+#~ "Where do you get information to help resolve problems with BOINC and/or "
+#~ "BOINC projects?"
 
 #, fuzzy
 #~ msgid "POLL_HELP_PMB"
@@ -832,7 +1073,9 @@ msgstr ""
 
 #, fuzzy
 #~ msgid "POLL_ERROR_TEXT"
-#~ msgstr "An internal error has prevented us from recording your survey response.  Please try again later."
+#~ msgstr ""
+#~ "An internal error has prevented us from recording your survey response.  "
+#~ "Please try again later."
 
 #, fuzzy
 #~ msgid "POLL_RECORDED"
@@ -848,17 +1091,24 @@ msgstr ""
 
 #, fuzzy
 #~ msgid "POLL_RESULTS_TEXT"
-#~ msgstr "These are the current results of the <a href=poll.php>BOINC user survey</a>.  This page is updated every hour."
+#~ msgstr ""
+#~ "These are the current results of the <a href=poll.php>BOINC user survey</"
+#~ "a>.  This page is updated every hour."
 
 #, fuzzy
 #~ msgid "DL_MIRRORS"
-#~ msgstr "Note: files are downloaded from mirror servers at boinc.berkeley.edu, morel.mit.edu, einstein.aei.mpg.de, einstein.astro.gla.ac.uk, einstein.ligo.caltech.edu, and einstein.aset.psu.edu (thanks to these institutions). The server is chosen randomly - if a download fails, reload this page and try again. "
-
-##############################################
+#~ msgstr ""
+#~ "Note: files are downloaded from mirror servers at boinc.berkeley.edu, "
+#~ "morel.mit.edu, einstein.aei.mpg.de, einstein.astro.gla.ac.uk, einstein."
+#~ "ligo.caltech.edu, and einstein.aset.psu.edu (thanks to these "
+#~ "institutions). The server is chosen randomly - if a download fails, "
+#~ "reload this page and try again. "
+
+# #############################################
 # help.php
-##############################################
+# #############################################
 # help.php
-##############################################
+# #############################################
 #, fuzzy
 #~ msgid "HELP_TITLE"
 #~ msgstr "Getting help with BOINC"
@@ -870,16 +1120,30 @@ msgstr ""
 #~ msgstr "Online Help"
 
 #~ msgid "HELP_P1_1"
-#~ msgstr "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 ""
+#~ "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. "
 
 #~ msgid "HELP_P1_2"
-#~ msgstr "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 ""
+#~ "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. "
 
 #~ msgid "HELP_P1_3"
-#~ msgstr "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 ""
+#~ "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."
 
 #~ msgid "HELP_P1_4"
-#~ msgstr "Volunteers speaking several languages are available. Please select a language: "
+#~ msgstr ""
+#~ "Volunteers speaking several languages are available. Please select a "
+#~ "language: "
 
 #~ msgid "HELP_HEADING2"
 #~ msgstr "BOINC help on the web"
@@ -903,28 +1167,42 @@ msgstr ""
 #~ msgstr "Be a Help Volunteer"
 
 #~ msgid "HELP_P3_1"
-#~ msgstr "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 ""
+#~ "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!  "
 
 #~ msgid "HELP_P3_2"
-#~ msgstr "If you're already a Help Volunteer: to edit your settings, %sclick here%s. "
+#~ msgstr ""
+#~ "If you're already a Help Volunteer: to edit your settings, %sclick here%"
+#~ "s. "
 
-##############################################
+# #############################################
 # index.php
-##############################################
+# #############################################
 # index.php
-##############################################
+# #############################################
 #, fuzzy
 #~ msgid "HOME_HEADING1"
 #~ msgstr "Volunteer"
 
 #~ msgid "HOME_P1"
-#~ msgstr " Use the idle time on your computer  (Windows, Mac, or Linux)  to cure diseases, study global warming,  discover pulsars, and do many other types of scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %sDownload%s and run BOINC software  %sEnter%s an email address and password. "
+#~ msgstr ""
+#~ " Use the idle time on your computer  (Windows, Mac, or Linux)  to cure "
+#~ "diseases, study global warming,  discover pulsars, and do many other "
+#~ "types of scientific research.  It's safe, secure, and easy:  %sChoose%s "
+#~ "projects  %sDownload%s and run BOINC software  %sEnter%s an email address "
+#~ "and password. "
 
 #~ msgid "HOME_P2"
-#~ msgstr "Or, if you run several projects, try an %saccount manager%s such as %sGridRepublic%s or %sBAM!%s. "
+#~ msgstr ""
+#~ "Or, if you run several projects, try an %saccount manager%s such as %"
+#~ "sGridRepublic%s or %sBAM!%s. "
 
 #~ msgid "HOME_P3"
-#~ msgstr "If you have any questions, or need help getting started, you can %stalk to a Volunteer Helper%s. "
+#~ msgstr ""
+#~ "If you have any questions, or need help getting started, you can %stalk "
+#~ "to a Volunteer Helper%s. "
 
 #~ msgid "HOME_DOWNLOAD"
 #~ msgstr "Download"
@@ -942,7 +1220,8 @@ msgstr ""
 #~ msgstr "Berkeley Open Infrastructure for Network Computing"
 
 #~ msgid "HOME_BOINC_DESC"
-#~ msgstr "Open-source software for %svolunteer computing%s and %sgrid computing%s"
+#~ msgstr ""
+#~ "Open-source software for %svolunteer computing%s and %sgrid computing%s"
 
 #~ msgid "DL_DOWNLOAD"
 #~ msgstr "Télécharger BOINC"
@@ -951,14 +1230,13 @@ msgstr ""
 #~ msgstr "%s pour %s (%s Mo)"
 
 #~ msgid "DL_WHATS_BOINC"
-#~ msgstr " BOINC est un programme qui vous permet d'offrir"
-#~ "        le temps inutilisé par votre ordinateur à des projets scientifiques tels que"
-#~ "        SETI at home, Climateprediction.net, Rosetta at home,"
-#~ "        World Community Grid, et bien d'autres."
-#~ "        <p>"
-#~ "        Après avoir installé BOINC sur votre ordinateur,"
-#~ "        vous pourrez vous connecter à autant de projets BOINC que vous le souhaitez."
-#~ "        <p>"
+#~ msgstr ""
+#~ " BOINC est un programme qui vous permet d'offrir        le temps "
+#~ "inutilisé par votre ordinateur à des projets scientifiques tels "
+#~ "que        SETI at home, Climateprediction.net, Rosetta at home,        World "
+#~ "Community Grid, et bien d'autres.        <p>        Après avoir installé "
+#~ "BOINC sur votre ordinateur,        vous pourrez vous connecter à autant "
+#~ "de projets BOINC que vous le souhaitez.        <p>"
 
 #~ msgid "DL_SYSTEMREQ"
 #~ msgstr "Configuration minimale"
@@ -976,27 +1254,32 @@ msgstr ""
 #~ msgstr "Toutes les versions"
 
 #~ msgid "DL_IF_OTHERTYPES"
-#~ msgstr "Si votre ordinateur est d'un autre type que ceux mentionnés ci-dessus, vous pouvez"
+#~ msgstr ""
+#~ "Si votre ordinateur est d'un autre type que ceux mentionnés ci-dessus, "
+#~ "vous pouvez"
 
 #~ msgid "DL_MAKEYOUROWN"
 #~ msgstr "%s générer votre propre client %s ou"
 
 #~ msgid "DL_DL_FROM3RDP"
-#~ msgstr "%s télécharger les exécutables depuis une site tiers %s"
-#~ " (disponible pour Solaris/Opteron, Linux/Opteron, Linux/PPC, HP-UX, FreeBSD, et autres)."
+#~ msgstr ""
+#~ "%s télécharger les exécutables depuis une site tiers %s (disponible pour "
+#~ "Solaris/Opteron, Linux/Opteron, Linux/PPC, HP-UX, FreeBSD, et autres)."
 
 #~ msgid "DL_DOWNLOAD_TITLE"
 #~ msgstr "BOINC : calculez pour la science"
 
-##############################################
+# #############################################
 # system_requirements.php by je2bwm 2006/08/07
-##############################################
+# #############################################
 #~ msgid "SRQ_PAGE_TITLE"
 #~ msgstr "Prérequis système"
 
 #~ msgid "SRQ_INTRO"
-#~ msgstr "Votre ordinateur doit satisfaire aux prérequis suivants pour faire fonctionner BOINC. "
-#~ "Les projets peuvent avoir des exigences supplémentaires."
+#~ msgstr ""
+#~ "Votre ordinateur doit satisfaire aux prérequis suivants pour faire "
+#~ "fonctionner BOINC. Les projets peuvent avoir des exigences "
+#~ "supplémentaires."
 
 #~ msgid "SRQ_MSWIN"
 #~ msgstr "Windows"
@@ -1026,7 +1309,9 @@ msgstr ""
 #~ msgstr "Mac OS X 10.3 ou plus récent"
 
 #~ msgid "SRQ_APPLMAC_REQ_CPU"
-#~ msgstr "Un ordinateur Macintosh avec un processeur Intel x86 ou PowerPC G3, G4, or G5"
+#~ msgstr ""
+#~ "Un ordinateur Macintosh avec un processeur Intel x86 ou PowerPC G3, G4, "
+#~ "or G5"
 
 #~ msgid "SRQ_APPLMAC_REQ_RAM"
 #~ msgstr "128 Mo de RAM (256 Mo de RAM ou plus recommandé)"
@@ -1058,9 +1343,9 @@ msgstr ""
 #~ msgid "SRQ_LINUX_REQ_DISK"
 #~ msgstr "50 Mo d'espace disque"
 
-##############################################
+# #############################################
 # release_notes.php
-##############################################
+# #############################################
 #~ msgid "RLN_PAGE_TITLE"
 #~ msgstr "Notes de version"
 
@@ -1077,47 +1362,48 @@ msgstr ""
 #~ msgstr "Problèmes connus"
 
 #~ msgid "RLN_WIN_INSTALL_PROBLEMS"
-#~ msgstr "(Windows) Dans de rares cas, l'installation peut échouer parce qu' "
-#~ "une version de BOINC est déjà installée. Si cela se produit : "
-#~ "%s Quittez BOINC s'il est lancé, et désintallez BOINC "
-#~ "en utilisant %s Démarrer/Panneau de configuration/Ajout-Suppression de programmes%s. "
-#~ "Installez à nouveau la version la plus récente. "
-#~ "%s En cas d'échec, réinstallez la version de BOINC "
-#~ "que vous utilisiez auparavant"
-#~ "(les anciennes versions de BOINC se trouvent %sici%s). "
-#~ "Désinstallez la comme indiqué ci-dessus et installez la nouvelle version. "
-#~ "%s En cas de nouvel échec, téléchargez l'utilitaire %sde nettoyage de l'installeur Windows%s "
-#~ "de Microsoft et lancez le. "
-#~ "L'ancienne version de BOINC apparaît en tant que BOINC.msi ou "
-#~ "sous la forme d'une icone de fichier *.msi corrumpu (dans les options du haut). "
-#~ "Cliquez dessus pour le sélectionner, puis cliquez sur Enlever et Quitter. "
-#~ "Redémarrez votre ordinateur. "
-#~ "Installez la nouvelle version. "
-#~ "(Attention : ne touchez pas aux autres fichiers .msi, "
-#~ "vous risqueriez d'avoir des problèmes pour désintaller d'autres programmes). "
-#~ "%s "
+#~ msgstr ""
+#~ "(Windows) Dans de rares cas, l'installation peut échouer parce qu' une "
+#~ "version de BOINC est déjà installée. Si cela se produit : %s Quittez "
+#~ "BOINC s'il est lancé, et désintallez BOINC en utilisant %s Démarrer/"
+#~ "Panneau de configuration/Ajout-Suppression de programmes%s. Installez à "
+#~ "nouveau la version la plus récente. %s En cas d'échec, réinstallez la "
+#~ "version de BOINC que vous utilisiez auparavant(les anciennes versions de "
+#~ "BOINC se trouvent %sici%s). Désinstallez la comme indiqué ci-dessus et "
+#~ "installez la nouvelle version. %s En cas de nouvel échec, téléchargez "
+#~ "l'utilitaire %sde nettoyage de l'installeur Windows%s de Microsoft et "
+#~ "lancez le. L'ancienne version de BOINC apparaît en tant que BOINC.msi ou "
+#~ "sous la forme d'une icone de fichier *.msi corrumpu (dans les options du "
+#~ "haut). Cliquez dessus pour le sélectionner, puis cliquez sur Enlever et "
+#~ "Quitter. Redémarrez votre ordinateur. Installez la nouvelle version. "
+#~ "(Attention : ne touchez pas aux autres fichiers .msi, vous risqueriez "
+#~ "d'avoir des problèmes pour désintaller d'autres programmes). %s "
 
 #~ msgid "RLN_TROUBLESHOOT"
 #~ msgstr "Résolution de problèmes liés à BOINC"
 
 #~ msgid "RLN_NEWF_5_4_AM"
-#~ msgstr "Support des 'Gestionnaires de comptes' - des sites web vous permettant de naviguer "
-#~ "entre les projets BOINC, d'attacher/détacher, changer le partage de ressources et les paramètres, "
-#~ "par de simples clics. "
-#~ "Les gestionnaires de comptes sont aussi très utiles lorsque vous avez plusieurs ordinateurs - "
-#~ "les changements n'ont à être faits qu'une fois."
+#~ msgstr ""
+#~ "Support des 'Gestionnaires de comptes' - des sites web vous permettant de "
+#~ "naviguer entre les projets BOINC, d'attacher/détacher, changer le partage "
+#~ "de ressources et les paramètres, par de simples clics. Les gestionnaires "
+#~ "de comptes sont aussi très utiles lorsque vous avez plusieurs ordinateurs "
+#~ "- les changements n'ont à être faits qu'une fois."
 
 #~ msgid "RLN_NEWF_5_4_PREF_OVERRIDE"
-#~ msgstr "Les préférences générales peuvent être remplacées par celles d'un fichier local ; "
-#~ "des détails sont disponibles %s ici %s."
+#~ msgstr ""
+#~ "Les préférences générales peuvent être remplacées par celles d'un fichier "
+#~ "local ; des détails sont disponibles %s ici %s."
 
 #~ msgid "RLN_NEWF_5_4_ALERTS_CONNECT"
-#~ msgstr "Maintenant BOINC vous alerte lorsqu'il a besoin de vous "
-#~ "pour se connecter au réseau."
+#~ msgstr ""
+#~ "Maintenant BOINC vous alerte lorsqu'il a besoin de vous pour se connecter "
+#~ "au réseau."
 
 #~ msgid "RLN_5_8_SIMPLE_GUI"
-#~ msgstr "Le 'BOINC Manager' propose 2 interfaces différentes : "
-#~ " une 'simple' (légère, graphique, skinnable) "
-#~ " et une 'avancée' donnant accès au maximum d'informations. "
-#~ " L'interface simple permet une édition locale des paramètres. "
-#~ " Vous pouvez passer de la vue simple à la vue avancée et vice-versa. "
+#~ msgstr ""
+#~ "Le 'BOINC Manager' propose 2 interfaces différentes :  une "
+#~ "'simple' (légère, graphique, skinnable)  et une 'avancée' donnant accès "
+#~ "au maximum d'informations.  L'interface simple permet une édition locale "
+#~ "des paramètres.  Vous pouvez passer de la vue simple à la vue avancée et "
+#~ "vice-versa. "
diff --git a/locale/fr/pootle-boincclient610-fr.prefs b/locale/fr/pootle-boincclient610-fr.prefs
new file mode 100644
index 0000000..ac926e8
--- /dev/null
+++ b/locale/fr/pootle-boincclient610-fr.prefs
@@ -0,0 +1,11 @@
+# Pootle preferences for project boinctrunk, language fr
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  philmo = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  Mugurel = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  JeromeC = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  skimpax = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/fr/pootle-boinctrunk-fr.prefs b/locale/fr/pootle-boinctrunk-fr.prefs
deleted file mode 100644
index 113c7b1..0000000
--- a/locale/fr/pootle-boinctrunk-fr.prefs
+++ /dev/null
@@ -1,8 +0,0 @@
-# Pootle preferences for project boinctrunk, language fr
-
-rights:
-  default = u'view, suggest, archive, pocompile'
-  nobody = u'view'
-  philmo = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  Mugurel = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/gl/BOINC-Manager.mo b/locale/gl/BOINC-Manager.mo
new file mode 100644
index 0000000..7ba2ec9
Binary files /dev/null and b/locale/gl/BOINC-Manager.mo differ
diff --git a/locale/gl/BOINC-Manager.po b/locale/gl/BOINC-Manager.po
index 5395149..bf9b900 100644
--- a/locale/gl/BOINC-Manager.po
+++ b/locale/gl/BOINC-Manager.po
@@ -2,8 +2,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 6.6.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
 "PO-Revision-Date: 2009-01-31 HO:MI+ZONE\n"
 "Last-Translator: Xurxo Suarez <webmaster at hexentreffen.net>\n"
 "Language-Team: Galician <LL at li.org>\n"
@@ -11,13 +11,15 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Translate Toolkit 1.2.1\n"
+"X-Poedit-SearchPath-0: clientgui\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "Información do usuario"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
@@ -25,7 +27,7 @@ msgstr ""
 "Introduza a súa información de conta\n"
 "(para crear unha conta, visite a páxina do proxecto)"
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
@@ -33,417 +35,482 @@ msgstr ""
 "Este proxecto non acepta actualmente novas contas.\n"
 "Pódese unir só se xa ten unha conta."
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "Está a executar este proxecto?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "&Non, novo usuario"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "&Si, usuario existente"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "&Contrasinal:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "Escolla un contrasinal:"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "C&onfirme contrasinal"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr "Está a executar xa %s?"
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr "&Usuario:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "&Enderezo electrónico:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr "lonxitude mínima %d"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr "Esqueceu o seu contrasinal?"
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "Unirse a un proxecto"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "Actualizar o xestor de contas"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "Unirse ao xestor de contas"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr ""
 "A lonxitude mínima do contrasinal para este proxecto é de %d. Introduza un "
 "contrasinal distinto."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
 "A lonxitude mínima do contrasinal para este xestor de contas é de %d. "
 "Introduza un contrasinal distinto."
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr "O contrasinal e a confirmación non concordan. Escríbaos de novo."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "URL do xestor de contas"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Introduza a URL da web do xestor de contas."
+#: clientgui/AccountManagerInfoPage.cpp:252
+#, fuzzy
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"Para escoller un proxecto, faga clic no seu nome ou introduza a URL embaixo."
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "URL do xestor de contas:"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr "A comunicar con %s."
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr "A comunicar co servidor."
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "Agarde, por favor..."
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr "Houbo un erro interno no servidor."
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Conectado"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Desconectado"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "&Pechar fiestra\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "Pechar a fiestra do xestor BOINC."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
-msgstr "Saír de %s"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "&Saír"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
 msgstr ""
-"A Vista Avanzada permítelle ordenar varias columnas e amosa barras de "
-"progreso gráficas."
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "Amosa a interface gráfica sinxela do BOINC."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "Unirse ao &proxecto..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "Unirse a un proxecto"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "Unirse ao xestor de cont&as..."
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:372
+#, fuzzy
+msgid "Display the simple graphical interface."
+msgstr "Amosa a interface gráfica sinxela do BOINC."
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Unirse a un xestor de contas"
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr "&Sincronizar con %s"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr "Tomar configuración de %s"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "Unirse ao &proxecto..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Únase a un proxecto para comezar a procesar traballo"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "Deixar de u&sar %s..."
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Elimina o cliente do control do xestor de contas."
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "E%xecutar sempre"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr "Permite que traballe sen ter en conta as preferencias"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "Executar dacordo coas &preferencias"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "Permite que traballe segundo as súas preferencias"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "&Suspender"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr "Deter o traballo sen ter en conta as preferencias"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+#, fuzzy
+msgid "Allow GPU work regardless of preferences"
+msgstr "Permite que traballe sen ter en conta as preferencias"
+
+#: clientgui/AdvancedFrame.cpp:473
+#, fuzzy
+msgid "Use GPU based on &preferences"
+msgstr "Executar dacordo coas &preferencias"
+
+#: clientgui/AdvancedFrame.cpp:474
+#, fuzzy
+msgid "Allow GPU work according to your preferences"
+msgstr "Permite que traballe segundo as súas preferencias"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+#, fuzzy
+msgid "Stop GPU work regardless of preferences"
+msgstr "Deter o traballo sen ter en conta as preferencias"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "Actividade de &rede sempre visible"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr "Permite que haxa actividade de rede sen ter en conta as preferencias"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+#, fuzzy
+msgid "Network activity based on pre&ferences"
 msgstr "Actividade de rede baseada nas &preferencias"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr "Permite que haxa actividade de rede dacordo coas súas preferencias"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+#, fuzzy
+msgid "Network activity s&uspended"
 msgstr "Suspender actividade de &rede"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr "Deter actividade de rede do BOINC"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "&Opcións..."
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "Configurar a interface e o proxy"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "&Preferencias..."
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr "Configurar as preferencias locais"
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
 msgid "Connect to another computer running %s"
 msgstr "Conectar con outra computadora a executar %s"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "Escolla computadora..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr "Apagar o cliente conectado..."
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr "Apagar o cliente do núcleo que está conectado actualmente."
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "Executar pro&bas de CPU"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "Executa as probas de CPU do BOINC."
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr "&Comunicar por rede"
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr "Realizar tódalas comunicacións pendentes."
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr "Ler arquivo de configuración"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr "Le a información de configuración de cc_config.xml."
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "Ler arquivo de preferencias locais"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr "Le as preferencias de global_prefs_override.xml."
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr "Deixar de u&sar %s..."
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "Elimina o cliente do control do xestor de contas."
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "&Unirse a un proxecto"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "Únase a un proxecto para comezar a procesar traballo"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
 msgstr "&Axuda de %s"
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
 msgid "Show information about %s"
 msgstr "Amosa información sobre %s"
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr "Axuda sobre &%s"
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr "Amosa información sobre %s"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr "&Web de %s"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
 msgid "Show information about BOINC and %s"
 msgstr "Amosa información sobre BOINC e %s"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr "&Acerca de %s..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "Información de licencia e copyright"
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "&Arquivo"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "&Ver"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "&Ferramentas"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "A&ctividade"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "A&vanzado"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "A&xuda"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr "%s - Apagar o cliente actual..."
-
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
 msgstr ""
-"%s apagará o cliente actualmente conectado\n"
-"e pedirálle outro servidor para se conectar.\n"
 
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr "%s - Separarse de %s"
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -457,57 +524,66 @@ msgstr ""
 "\n"
 "Desexa deixar de usar %s?"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "A se unir a un proxecto..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "A tentar as comunicacións de novo..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr "%s - Selección de idioma"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr ""
 "O idioma por defecto de %s cambiou, para facer efectivo o cambio, debe "
 "reiniciar o %s."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - Apagar o cliente actual..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s apagará o cliente actualmente conectado\n"
+"e pedirálle outro servidor para se conectar.\n"
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "A tentar as comunicacións de novo..."
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr "%s uniuse correctamente a %s"
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "A conectar a %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
 msgid "Connected to %s (%s)"
 msgstr "Conectado a %s (%s)"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "Ese nome xa está en uso"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -519,11 +595,11 @@ msgstr ""
 "\n"
 "Visite a web do proxecto e siga as instruccións alí indicadas."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "Enderezo electrónico en uso"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -535,16 +611,30 @@ msgstr ""
 "\n"
 "Visite a web do proxecto e siga as instruccións alí indicadas."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr "A comunicar co cliente BOINC. Agarde..."
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr "%s - Erro de conexión"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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."
@@ -553,7 +643,7 @@ msgstr ""
 "Contacte co seu administrador para que o engada ao grupo de usuarios "
 "'boinc_users'."
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
@@ -561,21 +651,21 @@ msgstr ""
 "Fallo na autorización ao conectarse a un cliente en execución.\n"
 "Asegúrese de que inicia este programa no mesmo directorio que o cliente."
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr "Fallo de autorización ao conectar a un cliente en execución."
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "O contrasinal que forneceu é incorrecto, probe de novo."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - Fallo na conexión"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
@@ -583,13 +673,13 @@ msgstr ""
 "%s non é quen de conectar co cliente %s.\n"
 "Quere tentar de novo a conexión?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr "%s - Fallo no inicio do Daemon"
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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."
@@ -598,8 +688,8 @@ msgstr ""
 "Execute o Panel de Control->Ferramentas de Administración->Miniaplicación de "
 "servizos e arrinque o servizo BOINC."
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
@@ -607,13 +697,13 @@ msgstr ""
 "%s non é quen de iniciar un cliente %s.\n"
 "Inicie o daemon e probe de novo."
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr "%s - Estado da conexión"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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"
@@ -625,24 +715,22 @@ msgstr ""
 "Para conectar ao teu computador persoal use 'localhosts' como nome do "
 "servidor."
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Sitios web"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr "%s - Estado da Rede"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr "%s precisa conectar coa Internet. Faga clic para abrir %s."
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
 "Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
@@ -651,8 +739,8 @@ msgstr ""
 "Conéctese á Internet e escolla o elemento 'Realizar conexións de rede' no "
 "menú Avanzado."
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
@@ -660,13 +748,13 @@ msgstr ""
 "%s precisa conectar á Internet.\n"
 "Pode facelo agora?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s estáse a conectar á Internet."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
 "Please connect to the Internet, or select a default connection\n"
@@ -677,18 +765,18 @@ msgstr ""
 "Conecte coa Internet ou escolla unha conexión por defecto\n"
 "usando Avanzado/Opcións/Conexións"
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s conectou correctamente á Internet."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "%s fallou ao conectar á Internet"
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
@@ -696,17 +784,36 @@ msgstr ""
 "%s detectou que está conectado á Internet.\n"
 "A actualizar tódolos proxectos e retentando tódalas transferencias."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s desconectou correctamente da Internet."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s fallou ao desconectar da Internet."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
@@ -714,100 +821,111 @@ msgstr ""
 "Cómpre un reinicio para que o BOINC funcione bem.\n"
 "Reinicie a súa computadora e probe de novo."
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "Xestor BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr "O Xestor BOINC foi iniciado polo sistema automáticamente."
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr "Iniciar o BOINC para que só a icona da bandexa sexa visible"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr "Iniciar o BOINC con estes argumentos opcionais"
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr "desactivar os permisos e usuarios de seguridade do BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Detección Automática)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Descoñecido)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Definido polo usuario)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr "Computación suspendida."
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr "Actividade de rede suspendida."
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr "%s: %.2f%% completado."
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr "%d tarefas activas."
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr "A reconectar co cliente."
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr "Non conectado a un cliente."
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr "Abrir a web de %s..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr "Abrir %s..."
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "Dormitar"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "Fallo ao unirse a un proxecto"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr "Fallo ao actualizar o xestor de contas"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr "Fallo ao eliminar o xestor de contas"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "Fallo ao unirse a un xestor de contas"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -819,27 +937,26 @@ msgstr ""
 "\n"
 "Faga clic en Rematar para pechar."
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "Faga clic en Rematar para pechar."
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "Mensaxes do servidor:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "Unido ao proxecto"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "Está unido a este proxecto correctamente."
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -847,120 +964,111 @@ msgstr ""
 "Cando faga clic en Rematar, o seu navegador irá á paxina onde\n"
 "pode configurar o seu nome de conta e preferencias."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr "Actualización dende %s completada."
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "Actualización completada."
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr "Eliminación dende %s completada."
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "Eliminación completada!"
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr "Unido a %s"
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "Unido a un xestor de contas"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
 msgstr "Benvido a %s!"
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
+#, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "Agora está correctamente unido ao sistema %s."
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "Agora está correctamente unido a este xestor de contas."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr "Sobre %s"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "Versión:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr "Versión do wxWidgets:"
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Copyright:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
+#, fuzzy
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
 "(C) 2003-2009 Universidade de California, Berkeley.\n"
 "Tódolos dereitos reservados."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr "Infraestrutura Aberta para Computación en Rede de Berkeley (BOINC)"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "&Aceptar"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr "invalid float"
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr "hora incorrecta, o formato é HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr "intervalo de tempo incorrecto, o formato é HH:MM-HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr "detectado valor de entrada incorrecto"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr "Erro de Validación"
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr "Seguro que quere borrar tódalas preferencias locais?"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr "Confirmación"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
 msgstr "%s - Preferencias"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
@@ -970,183 +1078,194 @@ msgstr ""
 "Faga clic en Aceptar para configuralo.\n"
 "Faga clic en Limpar para restaurar as opcións baseadas na web."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr "Limpar"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr "limpar tódalas opcións locais e pechar o diálogo"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr "Computación permitida"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr " Mentres funciona con baterías"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr "de marcarse, o computador traballará mentres funcione con baterías"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr " Mentres está en uso"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr "de marcarse, o computador traballará tamén mentres o estea a usar."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr "Só cando leve inactivo"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr "traballar só cando non use o computador durante este número de minutos"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr "minutos"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+#, fuzzy
+msgid "While processor usage is less than"
+msgstr "uso do procesador"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr "Cada día entre as"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr "comezar a esta hora"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr "e as"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr "deter a esta hora"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr "(non hai restrición se son iguais)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr "Por días da semana:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr "marque a caixa para especificar as horas deste día"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr "Luns"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr "Martes"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr "Mércores"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr "Xoves"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr "Venres"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr "Sábado"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr "Domingo"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr "Outras opcións"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+#, fuzzy
+msgid "Switch between applications every"
 msgstr "Trocar entre aplicacións cada"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr "En sistemas multiprocesador, usar como máximo"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
 msgid "% of the processors"
 msgstr "% dos procesadores"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr "Usar como máximo"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
 msgid "% CPU time"
 msgstr "% do tempo da CPU"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr "uso do procesador"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr "Opcións xerais"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr "Taxa máxima de descarga"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr "KBytes/seg."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr "Taxa máxima de subida"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr "Conectar cada"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
@@ -1154,45 +1273,45 @@ msgstr ""
 "este computador está conectado á Internet cada X días\n"
 "(0 se o está sempre)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr "días"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr "Reserva adicional de traballo"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr "días (máx. 10)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr " Non verificar arquivo de imaxe"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr "marque isto se o seu provedor de Internet modifica os arquivos de imaxe"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr "Opcións de conexión"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr "Confirmar antes de conectar á Internet"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr ""
 "de marcarse, aparecerá un diálogo de confirmación antes das conexións á "
 "Internet"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr "Desconectar cando remate"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
@@ -1200,129 +1319,125 @@ msgstr ""
 "de marcarse, o BOINC desconéctase cando o uso da rede remata\n"
 "(só é importante para as conexións telefónicas)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr "Uso da rede permitido"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr "hora de inico do uso da rede"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr "hora de final do uso da rede"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr "uso da rede"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr "Uso do disco"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr "o espazo máximo no disco que pode usar o BOINC (en GB)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr "GB de espazo en disco"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr "Deixar alomenos"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr "BOINC deixa alomenos esta cantidade de espazo en disco libre (en GB)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr "GB de espazo libre en disco"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr "BOINC usa como máximo esta porcentaxe do espazo total do disco"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr "% do espazo total do disco"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
-msgstr "Escribir no disco como moito cada"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr "segundos"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr "% do arquivo de paxinación (espazo swap)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr "Uso da memoria"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr "% cando o computador estea en uso"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr "% cando o computador non estea en uso"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr " Deixar as aplicacións na memoria mentres estean suspendidas"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr "de marcarse, o traballo suspendido quedará na memoria"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr "uso da memoria e do disco"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr "Aceptar"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr "gardar tódolos valores e pechar o diálogo"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr "pechar o diálogo sen gardar"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "Axuda"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr "amosa a páxina de preferencias"
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
 msgstr "%s - Confirmación de saída"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1338,8 +1453,8 @@ msgstr ""
 "Se tamén quere saír das aplicacións científicas cando\n"
 "sae do xestor, escolla nas seguintes opcións:"
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1355,412 +1470,376 @@ msgstr ""
 "que saír da aplicación; isto permitirá que %s realice as\n"
 "súas tarefas nos momentos que escolleu nas preferencias.\n"
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr "Deter as aplicacións científicas ao saír do Xestor"
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr "Lembrar esta decisión e non amosar este diálogo."
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "&Cancelar"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr "Non amosar máis este diálogo."
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr "&Pechar"
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr "Propiedades do proxecto "
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "Xeral"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr "URL mestra"
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
 msgstr "Nome do usuario"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr "Nome do equipo"
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Compartición de recursos"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr "Sen CPU intensiva"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr "si"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr "non"
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr "Suspender por GUI"
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr "Non pedir máis traballo"
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr "Chamada ao planificador en progreso"
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
 msgstr "Unido polo xestor de contas"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr "Separarse ao rematar"
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr "Finalizado"
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr "Crédito"
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr "Usuario"
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr "Servidor"
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr "A planificar"
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr "Duración do factor de corrección"
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr "Propiedades da tarefa "
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Aplicación"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr "Nome da unidade de traballo"
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr "Estado"
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Límite para reportar"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr "Recursos"
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr "Tempo da CPU na última comprobación"
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "Tempo da CPU"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 msgid "Elapsed time"
 msgstr "Tempo transcorrido"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr "Tempo restante estimado"
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr "Fracción feita"
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr "Tamaño da memoria virtual"
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr "Tamaño do conxunto de traballo"
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Novo"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "Descarga fallida"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "A descargar"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "Proxecto suspendido polo usuario"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr "Tarefa suspendida polo usuario"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Suspendida"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr " - a baterías"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr " - usuario activo"
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr " - computación suspendida"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr " - hora do día"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr " - probas de CPU"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr " - precisa espazo en disco"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr "Agardando por memoria"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr "Agardando por memoria compartida"
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr "A executar, alta prioridade"
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "A executar"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr "Á espera"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr "Listo para comezar"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Erro de computación"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "Suba fallida"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "A subir"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Abortado polo usuario"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "Abortado polo proxecto"
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "Abortado"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Recibido"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "Listo para reportar"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Erro: estado inválido '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
 msgstr "%s - Opcións"
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr "Idioma:"
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr "Que idioma debe usar o xestor?"
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
@@ -1768,125 +1847,119 @@ msgstr ""
 "Intervalo de aviso da rede:\n"
 "(minutos)"
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 "Cada canto tempo debe o Xestor lembrarlle a necesidade dunha conexión de "
 "rede?"
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr "Iniciar o Xestor ao inicio?"
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr "Inicia o BOINC cando inicia sesión."
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr "Activar diálogo de saída?"
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr "Amosa o diálogo de saída cando peche o Xestor."
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "Configuración de rede VPN e telefónica"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "&Configuración por defecto"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "&Limpar configuración por defecto"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Conexión por defecto:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Conexións"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Conectar por servidor proxy HTTP"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "Configuración do servidor proxy HTTP"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Enderezo:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Porto:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr "Non usar proxy para:"
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Deixar en branco se non o precisa"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Nome de usuario:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Contrasinal:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "Proxy HTTP"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Conectar por servidor proxy SOCKS"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "Configuración do servidor proxy SOCKS"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "Proxy SOCKS"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
 msgid "%s - Select Computer"
 msgstr "%s - Escolla Computador"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Nome do servidor:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s - Non se atopa o navegador"
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
+#, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1902,233 +1975,228 @@ msgstr ""
 "de entorno BROWSER cara a ruta do seu\n"
 "navegador, despois reinicie o %s."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "Taboleiros de mensaxes"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "Contacte con outros usuarios nos taboleiros de SETI at home"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "Faga preguntas e avise de erros"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "A súa conta"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "Vexa a información da súa conta e os totais de créditos"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "As súas preferencias"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr "Vexa e modifique a súa conta e preferencias de SETI at home"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "Os seus resultados"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr "Vexa os seus resultados e traballos da última semana (ou máis)"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "Os seus computadores"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr "Vexa unha lista de tódolos computadores nos que executa SETI at home"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "O seu equipo"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "Vexa a información do seu equipo"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "Preguntas frecuentes"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "Lea a lista de preguntas frecuentes do Einstein at home"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "Información do salvapantallas"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "Lea unha descrición detallada do salvapantallas do Einstein at home"
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr ""
 "Contacte cos administradores e outros usuarios do Einstein at home nos "
 "taboleiros"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "Estado do Einstein"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Estado actual do servidor do Einstein at home"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "Reportar problemas"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr ""
 "Unha ligazón ao taboleiro de reporte de erros e problemas do Einstein at home"
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr "Vexa e modifique a súa conta e preferencias do Einstein at home"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "Resumo da conta"
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr "Vexa unha lista de tódolos computadores nos que executa Einstein at home"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "Proxecto LIGO"
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr ""
 "A páxina do proxecto do Observatorio Láser de Interferometría de onda "
 "Gravitacional (LIGO)"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "Proxecto GEO-600"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "A páxina do proxecto GEO-600"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Equipo"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "Información do seu Equipo"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "Axuda de climateprediction.net"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "Novas"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "Novas de climateprediction.net"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr "Vexa a información da súa conta, créditos e chorriños (trickles)"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "Información do seu equipo"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr "Procurar axuda no noso sistema"
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "Estatísticas globais"
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "Resumo de estatísticas da Rede Comunitaria Global (WCG)"
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr "A miña Rede"
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "As súas estatísticas e preferencias"
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr "Perfiles de dispositivos"
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr "Actualice as configuracións dos seus dispositivos"
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr "Investigar"
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "Coñeza os proxectos albergados na Rede Comunitaria Global (WCG)"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr "A iniciar servizos do cliente; agarde..."
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "A solicitar estado do sistema; agarde..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "A solicitar información do servidor; agarde..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "Sen conexión á Internet"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Conéctese á Internet e probe de novo."
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Proxecto non atopado"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2138,11 +2206,11 @@ msgstr ""
 "\n"
 "Comprobe a URL e probe de novo."
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "Xestor de contas non atopado"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2154,51 +2222,61 @@ msgstr ""
 "\n"
 "Comprobe a URL e probe de novo."
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr "Fallo na identificación."
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr "Comprobe o nome de usuario e o contrasinal, e probe de novo."
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr "Comprobe o enderezo electrónico e o contrasinal, e probe de novo."
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr "Escolla un proxecto"
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
 "Para escoller un proxecto, faga clic no seu nome ou introduza a URL embaixo."
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "&URL do proxecto:"
 
-#: clientgui/ProjectInfoPage.cpp:320
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:321
-#, fuzzy
-msgid "Already Attached to Project"
-msgstr "Xa está unido ao proxecto"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
 msgstr ""
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
-msgstr "Faga clic aquí para ir ao sitio de %s."
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
@@ -2206,7 +2284,7 @@ msgstr ""
 "A comunicar co proxecto\n"
 "Agarde, por favor...\n"
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
@@ -2214,11 +2292,12 @@ msgstr ""
 "Algún(s) arquivo(s) do asistente non están no servidor.\n"
 "(lookup_account.php/create_account.php)\n"
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "Fallo de comunicación coa rede"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
+#, fuzzy
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2229,7 +2308,7 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
@@ -2248,7 +2327,7 @@ msgstr ""
 "3) Está a usar un servidor proxy.\n"
 "Faga clic en Seguinte para configurar o BOINC para proxy."
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2278,490 +2357,468 @@ msgstr ""
 "3) Está a usar un servidor proxy.\n"
 "Faga clic en Seguinte para configurar o BOINC para proxy."
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Configuración do proxy"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "Proxy HTTP"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "Servidor:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "Autodetectar"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "Proxy SOCKS"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr "&%s"
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr "A solicitar estado actual."
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr "Non ten proxectos. Engada un proxecto."
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr "A descargar traballo do servidor."
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr "Proceso suspendido: A funcionar con baterías."
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr "Proceso supendido: Usuario activo."
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr "Proceso suspendido: Pausado polo usuario."
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr "Proceso suspendido: Hora do día."
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr "Proceso suspendido: Probas de rendemento."
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr "Proceso suspendido."
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr "Á espera de contactar cos servidores do proxecto."
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr "A solicitar estado actual"
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr "Non hai traballos dispoñibles"
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr "É imposible conectar co cliente núcleo"
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Proxecto"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "Data"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Mensaxe"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Copiar tódalas mensaxes."
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 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 ""
 "Copia as mensaxes escollidas ao portarretallos. Pode escoller varias "
 "mensaxes premendo a tecla shift ou control mentres fai clic nas mensaxes."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
 "Copia as mensaxes escollidas ao portarretallos. Pode escoller varias "
 "mensaxes premendo a tecla shift ou control mentres fai clic nas mensaxes."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr "Obter axuda do BOINC"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr "%s - Mensaxes"
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr "100 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr "200 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr "500 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr "1 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr "2 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr "5 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr "10 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr "20 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr "50 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr "100 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr "10%"
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr "20%"
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr "30%"
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr "40%"
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr "50%"
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr "60%"
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr "70%"
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr "80%"
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr "90%"
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr "100%"
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr "1"
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr "3"
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr "5"
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr "10"
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr "15"
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr "30"
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr "60"
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr "Tema"
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr "Tema:"
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr "Preferencias"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr "Quero cambiar as miñas preferencias só para este computador."
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr "Preferencias persoales"
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr "Traballar só entre:"
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr "Conectar á Internet só entre:"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr "Non usar máis de:"
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr "do espazo de disco"
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr "do procesador"
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr "Traballar con baterías?"
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr "Traballar tras unha inactividade de:"
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr "Todo o tempo"
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr "%d MB"
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr "%4.2f GB"
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr "%s%%"
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr "0 (Traballar sempre)"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr "%d"
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr "Pausado: Outro traballo en execución"
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr "Pausado: Usuario iniciado. Clic 'Retomar' para continuar"
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr "Pausado: Usuario activo"
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr "Pausado: Computador con baterías"
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr "Pausado: Hora do día"
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr "Pausado: Probas de rendemento"
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr "Pausado"
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr "Pausado: Aprazamento do inicio"
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr "Faga clic para ver gráficos do proxecto"
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr "Unirse a outro proxecto máis"
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr "Sincronizar proxectos co sistema do xestor"
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr "Abrir unha fiestra para ver mensaxes"
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr "Deter toda a actividade"
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr "Retomar actividade"
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr "Abrir unha fiestra para cambiar as preferencias"
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr "Cambiar á vista avanzada do BOINC"
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr "Os meus Proxectos:"
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr "%s. Traballo feito por %s: %0.2f"
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr "Eliminar Proxecto"
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "Seguro que quere separarse do proxecto '%s'?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "Separarse do Proxecto"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr "%.1lf"
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr "%d h %d m %d s"
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr "Seguro que quere ver os gráficos nunha máquina remota?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Amosar gráficos"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
 msgstr "Aplicación: "
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr "Tempo restante: "
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
 msgstr "Tempo transcorrido: "
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr "Termos de Uso"
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr "Lea os seguintes termos de uso:"
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr "Estou dacordo cos termos de uso."
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr "Non estou dacordo cos termos de uso."
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Proxecto temporalmente non dispoñible"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2771,11 +2828,11 @@ msgstr ""
 "\n"
 "Probe de novo máis tarde."
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "Xestor de contas temporalmente non dispoñible"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2785,32 +2842,32 @@ msgstr ""
 "\n"
 "Probe de novo máis tarde."
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "Especifique unha chave de conta para continuar."
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr "Chave inválida; introduza unha chave válida"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Conflito de validación"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr "Especifique un enderezo electrónico"
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr "Enderezo inválido; introduza un enderezo electrónico válido"
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "URL non atopada"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2820,18 +2877,18 @@ msgstr ""
 "Por exemplo:\n"
 "http://www.exemplo.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "URL inválida"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2841,603 +2898,501 @@ msgstr ""
 "Por exemplo:\n"
 "http://proxectoboinc.exemplo.com"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "'%s' non contén un nome de servidor válido."
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "'%s' non contén unha ruta válida."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "Comandos"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Copiar tódalas mensaxes"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Copiar mensaxes escollidas"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr "Amosar só este proxecto"
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr "Amosar só as mensaxes do proxecto escollido."
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Mensaxes"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "A copiar tódalas mensaxes ao Portarretallos..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 msgid "Copying selected messages to the clipboard..."
 msgstr "A copiar as mensaxes escollidas ao Portarretallos..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr "A filtrar mensaxes..."
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 msgid "Show all messages"
 msgstr "Amosar tódalas mensaxes"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr "Amosar mensaxes de tódolos proxectos."
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr "ID"
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr "Prioridade"
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr "MensaxesGrid"
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr "A copiar mensaxes escollidas ao Portarretallos..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr "Información"
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr "Advertencia"
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr "Erro"
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Actualizar"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr ""
 "Reportar tódalas tarefas completas, obter crédito, preferencias e pode que "
 "máis tarefas."
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Suspender"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr "Suspender tarefas para este proxecto."
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr "Sen novas tarefas"
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr "Non obter novas tarefas deste proxecto."
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Reiniciar proxecto"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 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 ""
 "Borra tódolos arquivos e tarefas deste proxecto e obtén novas tarefas. Pode "
 "actualizar o proxecto antes para reportar tarefas completadas."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Separarse"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr ""
 "Separar o computador deste proxeto. As tarefas en progreso perderanse (use "
 "'Actualizar' antes para reportalas)."
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr "Propiedades"
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr "Amosa detalles do proxecto."
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Conta"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "Traballo feito"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr "Traballo medio"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Estado"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Proxectos"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "A actualizar proxecto..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "A retomar proxecto..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "A suspender proxecto..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr "A informar ao proxecto de que acepta máis traballo..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "A informar de que non acepta máis traballo..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "A reiniciar proxecto..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Seguro que quere reiniciar o proxecto '%s'?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Reiniciar Proxecto"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "A separarse do proxecto..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "A iniciar navegador..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Retomar"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "Retomar tarefas deste proxecto."
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "Aceptar traballo"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr "Acepta máis traballo deste proxecto."
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "Non acepta máis traballo deste proxecto."
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Suspendido polo usuario"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "Sen novas tarefas"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr "Fin do proxecto - Separación"
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr "Separarase cando rematen as tarefas"
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Solicitude do planificador pendente"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr "Solicitude do planificador en curso"
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "Comunicación aprazada "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr "ProxectoGrid"
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr "Uso total do disco"
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr "Uso do disco por proxectos BOINC"
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Disco"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr "non está unido a ningún proxecto: 0 bytes"
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr "usado polo BOINC:"
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr "libre, dispoñible para o BOINC:"
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr "libre, non dispoñible para o BOINC: "
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr "libre: "
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr "usado por outros programas: "
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Total do Usuario"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Media do Usuario"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Total do Servidor"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Media do Servidor"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
 msgstr "Última actualización: hai %.0f días"
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Amosar total do usuario"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr "Amosar crédito total do usuario"
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "Amosar media do usuario"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr "Amosar crédito medio do uaurio"
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Amosar total do servidor"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr "Amosar crédito total do servidor"
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "Amosar media do servidor"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr "Amosar crédito medio do servidor"
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< &Anterior Proxecto"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr "Amosar gráfica do proxecto anterior"
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "&Seguinte proxecto >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr "Amosar gráfica do proxecto seguinte"
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "Modo de vista"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "Tódolos proxectos"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr "Amosar tódolos proxectos, unha gráfica por proxecto"
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "Un proxecto"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr "Amosar una gráfica co proxecto escollido"
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr "Tódolos proxectos (suma)"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr "Amosa unha gráfica con tódolos proxectos"
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Estatísticas"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "A actualizar gráficas..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Probar de novo"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "Faga clic en 'Probar de novo' para transferir o arquivo agora"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Abortar transferencia"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr ""
 "Faga clic en 'Abortar transferencia' para borrar o arquivo da fila. Isto "
 "fará que non obteña créditos polo resultado xerado."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "Arquivo"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Progreso"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Tamaño"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "Tempo transcorrido"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Velocidade"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Transferencias"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "A probar a transferir de novo..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "A abortar a transferencia..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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"
@@ -3447,34 +3402,42 @@ msgstr ""
 "NOTA: Abortar unha transferencia invalidará a tarefa e\n"
 "non obterá crédito por ela."
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Abortar transferencia de arquivo"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "Probar de novo en "
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr "Suba pendente"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "Descarga pendente"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr "TransferenciasGrid"
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 msgid "Aborting transfer(s)..."
 msgstr "A abortar transferencia(s)..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
@@ -3484,75 +3447,80 @@ msgstr ""
 "NOTA: Abortar unha transferencia invalidará a tarefa e\n"
 "non obterá crédito por ela."
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 msgid "Abort File Transfer(s)"
 msgstr "Abortar transferencia de arquivo(s)"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "Amosar gráficos da aplicación nunha fiestra."
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "Suspender traballo para este resultado."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Abortar"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr "Abandoar traballo no resultado. Non obterá crédito por el."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr "Amosar detalles da tarefa."
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Nome"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "Para rematar"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Tarefas"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "A retomar tarefa..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "A suspender tarefa..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "A amosar gráficos da tarefa..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "A abortar resultado..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
@@ -3560,36 +3528,62 @@ msgstr ""
 "Seguro que quere abortar a tarefa '%s'?\n"
 "(Progreso: %s, Estado: %s)"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "Abortar tarefa"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "A abortar resultado..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr "Retomar traballo para esta tarefa."
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr "Suspender traballo para esta tarefa."
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr " - unha aplicación exclusiva en execución"
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr " (sen CPU intensiva)"
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr "TarefasGrid"
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
@@ -3597,12 +3591,12 @@ msgstr ""
 "Seguro que quere abortar a tarefa '%s'?\n"
 "(Progreso: %s %%, Estado %s)"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
-msgstr "Cambiar Aplicacións de Investigación na World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3616,15 +3610,13 @@ msgstr ""
 "Os proxectos engadidos con este asistente\n"
 "non serán listados ou xestionados con %s."
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
 msgstr ""
-"Agora guiarémolo polo proceso de unión a un\n"
-"proxecto."
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3652,143 +3644,277 @@ msgstr ""
 "Para cambiar as aplicacións que se lle envían dende a World Community Grid,\n"
 "prema o seguinte botón:"
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
-msgstr "&Deixar de usar %s"
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-"Agora eliminaremos este computador de %s. De agora en\n"
-"diante, únase e sepárese dos proxectos desde este computador."
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "Xestor de contas"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"Agora guiarémolo polo proceso de unión a un xestor\n"
-"de contas.\n"
-"\n"
-"Se quere unirse a un único proxecto, prema Cancelar e\n"
-"escolla o elemento do menú 'Unirse a un proxecto'."
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "Marcas de axuste"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "Fallo nas propiedades do proxecto"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr "Fallo na comunicación do proxecto"
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "Fallo nas propiedades da URL do proxecto"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "Creación de contas desactivada"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "Creación de contas no cliente desactivada"
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "conta xa existente"
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "Xa unido a este proxecto"
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "Fallo na unión ao proxecto"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
-msgstr "Fallo ao comunicar co sitio de referencia"
-
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "Fallo na detección de rede"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr "Cambiar Aplicacións de Investigación na World Community Grid"
 
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "Para continuar, prema Seguinte."
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "Seguro que quere cancelar?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "Pregunta"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "&Seguinte >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< &Atrás"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "&Rematar"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
 msgid "New page inserted. Index = %i"
 msgstr "Insertada nova páxina. Índice = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
 msgid "New page appended. Index = %i"
 msgstr "Nova páxina engadida. Índice = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
 msgid "Old Page Index = %i"
 msgstr "Índice da páxina vella = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr "OnDropTarget: index by HitTest = %i"
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr "Pie Ctrl"
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 "especifica as horas de inicio e remate do traballo co formato HH:MM-HH:MM"
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 "especifica as horas de inicio e remate do uso da rede co formato HH:MM-HH:MM"
 
+#, fuzzy
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "&Pechar fiestra\tCTRL+W"
+
+#, fuzzy
+#~ msgid ""
+#~ "You currently are not authorized to manage the client.\n"
+#~ "Please contact your administrator to add you to the 'boinc_master' user "
+#~ "group."
+#~ msgstr ""
+#~ "Neste momento non está autorizado a controlar o xestor.\n"
+#~ "Contacte co seu administrador para que o engada ao grupo de usuarios "
+#~ "'boinc_users'."
+
+#~ msgid "User information"
+#~ msgstr "Información do usuario"
+
+#~ msgid "Account Manager URL"
+#~ msgstr "URL do xestor de contas"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "Introduza a URL da web do xestor de contas."
+
+#~ msgid "Close BOINC Manager Window."
+#~ msgstr "Pechar a fiestra do xestor BOINC."
+
+#~ msgid "Exit the %s"
+#~ msgstr "Saír de %s"
+
+#~ msgid ""
+#~ "Advanced views allow you to sort various columns and displays graphical "
+#~ "progress bars."
+#~ msgstr ""
+#~ "A Vista Avanzada permítelle ordenar varias columnas e amosa barras de "
+#~ "progreso gráficas."
+
+#~ msgid "Attach to a project"
+#~ msgstr "Unirse a un proxecto"
+
+#~ msgid "Attach to &account manager..."
+#~ msgstr "Unirse ao xestor de cont&as..."
+
+#~ msgid "Attach to an account manager"
+#~ msgstr "Unirse a un xestor de contas"
+
+#~ msgid "Attach to &project"
+#~ msgstr "&Unirse a un proxecto"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "A se unir a un proxecto..."
+
+#~ msgid "Removal from %s completed."
+#~ msgstr "Eliminación dende %s completada."
+
+#~ msgid "Removal succeeded!"
+#~ msgstr "Eliminación completada!"
+
+#~ msgid "Write to disk at most every"
+#~ msgstr "Escribir no disco como moito cada"
+
+#, fuzzy
+#~ msgid "Already Attached to Project"
+#~ msgstr "Xa está unido ao proxecto"
+
+#~ msgid "Click here to go to %s's website."
+#~ msgstr "Faga clic aquí para ir ao sitio de %s."
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr ""
+#~ "Agora guiarémolo polo proceso de unión a un\n"
+#~ "proxecto."
+
+#~ msgid "&Stop using%s"
+#~ msgstr "&Deixar de usar %s"
+
+#~ msgid ""
+#~ "We'll now remove this computer from %s.  From now on,\n"
+#~ "attach and detach projects directly from this computer.\n"
+#~ msgstr ""
+#~ "Agora eliminaremos este computador de %s. De agora en\n"
+#~ "diante, únase e sepárese dos proxectos desde este computador."
+
+#~ msgid "Account manager"
+#~ msgstr "Xestor de contas"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to an account manager.\n"
+#~ "\n"
+#~ "If you want to attach to a single project, click Cancel,\n"
+#~ "then select the 'Attach to project' menu item instead."
+#~ msgstr ""
+#~ "Agora guiarémolo polo proceso de unión a un xestor\n"
+#~ "de contas.\n"
+#~ "\n"
+#~ "Se quere unirse a un único proxecto, prema Cancelar e\n"
+#~ "escolla o elemento do menú 'Unirse a un proxecto'."
+
+#~ msgid "Debug Flags"
+#~ msgstr "Marcas de axuste"
+
+#~ msgid "Project Properties Failure"
+#~ msgstr "Fallo nas propiedades do proxecto"
+
+#~ msgid "Project Communication Failure"
+#~ msgstr "Fallo na comunicación do proxecto"
+
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "Fallo nas propiedades da URL do proxecto"
+
+#~ msgid "Account Creation Disabled"
+#~ msgstr "Creación de contas desactivada"
+
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "Creación de contas no cliente desactivada"
+
+#~ msgid "Account Already Exists"
+#~ msgstr "conta xa existente"
+
+#~ msgid "Project Already Attached"
+#~ msgstr "Xa unido a este proxecto"
+
+#~ msgid "Project Attach Failure"
+#~ msgstr "Fallo na unión ao proxecto"
+
+#~ msgid "Failure Communicating with Reference Site"
+#~ msgstr "Fallo ao comunicar co sitio de referencia"
+
+#~ msgid "Net Detection Failure"
+#~ msgstr "Fallo na detección de rede"
+
 #~ msgid ""
 #~ "You can copy and paste the URL from your browser's\n"
 #~ "address bar."
diff --git a/locale/gl/BOINC-Web.po b/locale/gl/BOINC-Web.po
index 51779d9..526f98a 100644
--- a/locale/gl/BOINC-Web.po
+++ b/locale/gl/BOINC-Web.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
 "PO-Revision-Date: 2009-02-04 14:52-0700\n"
 "Last-Translator: Xurxo Suarez Pardo <webmaster at hexentreffen.net>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -15,384 +15,314 @@ msgstr ""
 "X-Poedit-SourceCharset: utf-8\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
 msgstr ""
 
-"
-
+#: poll.inc:47
 msgid "Other:"
 msgstr ""
 
-"
-
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
 msgstr ""
 
-"
-
+#: poll_data.inc:22
 msgid "less than a week"
 msgstr ""
 
-"
-
+#: poll_data.inc:23
 msgid "less than a month"
 msgstr ""
 
-"
-
+#: poll_data.inc:24
 msgid "less than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:25
 msgid "more than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:34
 msgid "I lost interest"
 msgstr ""
 
-"
-
+#: poll_data.inc:35
 msgid "it was too complicated"
 msgstr ""
 
-"
-
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
 msgstr ""
 
-"
-
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:38
 msgid "it used too much electricity"
 msgstr ""
 
-"
-
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr ""
 
-"
-
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
 msgstr ""
 
-"
-
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
 msgstr ""
 
-"
-
+#: poll_data.inc:50
 msgid "I had network communication problems"
 msgstr ""
 
-"
-
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
 msgstr ""
 
-"
-
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr ""
 
-"
-
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
 msgstr ""
 
-"
-
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr ""
 
-"
-
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr ""
 
-"
-
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr ""
 
-"
-
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr ""
 
-"
-
+#: poll_data.inc:87
 msgid "Home"
 msgstr ""
 
-"
-
+#: poll_data.inc:88
 msgid "Work"
 msgstr ""
 
-"
-
+#: poll_data.inc:89
 msgid "School"
 msgstr ""
 
-"
-
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr ""
 
-"
-
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr ""
 
-"
-
+#: poll_data.inc:119
 msgid "Age"
 msgstr ""
 
-"
-
+#: poll_data.inc:129
 msgid "Sex"
 msgstr ""
 
-"
-
+#: poll_data.inc:131
 msgid "Male"
 msgstr ""
 
-"
-
+#: poll_data.inc:132
 msgid "Female"
 msgstr ""
 
-"
-
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr ""
 
-"
-
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr ""
 
-"
-
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr ""
 
-"
-
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr ""
 
-"
-
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr ""
 
-"
-
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr ""
 
-"
-
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
 msgstr ""
 
-"
-
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr ""
 
-"
-
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr ""
 
-"
-
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr ""
 
-"
-
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr ""
 
-"
-
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr ""
 
-"
-
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr ""
 
-"
-
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr ""
 
-"
-
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr ""
 
-"
-
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr ""
 
-"
-
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr ""
 
-"
-
+#: poll_data.inc:192
 msgid "Yes"
 msgstr ""
 
-"
-
+#: poll_data.inc:193
 msgid "No"
 msgstr ""
 
-"
-
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr ""
 
-"
-
+#: poll_data.inc:200
 msgid "to read information"
 msgstr ""
 
-"
-
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr ""
 
-"
-
+#: poll_data.inc:202
 msgid "None"
 msgstr ""
 
-"
-
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr ""
 
-"
-
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr ""
 
-"
-
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr ""
 
-"
-
-########################################
+# ######################################
 # download.php
+#: download.php:40
 msgid "Download BOINC"
 msgstr "Descargar o BOINC"
 
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr "%s para %s (%s MB)"
 
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -404,29 +334,34 @@ msgstr ""
 "Rosetta at home, World Community Grid, e moitos outros. <p> Despois de instalar "
 "BOINC no seu computador, vostede pode unilo a tantos proxectos como queira."
 
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
 "(GPU), you may be able to %suse it to compute faster%s"
 msgstr ""
 
-"
-
+#: download.php:120
 msgid "System requirements"
 msgstr "Requerimentos do sistema"
 
+#: download.php:121
 msgid "Release notes"
 msgstr "Notas da versión"
 
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr "Axuda"
 
+#: download.php:123
 msgid "All versions"
 msgstr "Tódalas versións"
 
+#: download.php:141
 msgid "BOINC: compute for science"
 msgstr "BOINC: computar para a ciencia"
 
+#: help.php:12
 #, php-format
 msgid ""
 "BOINC Online Help lets you talk one-on-one with experienced BOINC users, who "
@@ -435,8 +370,7 @@ msgid ""
 "problems you might have."
 msgstr ""
 
-"
-
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -445,8 +379,7 @@ msgid ""
 "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 "
@@ -454,20 +387,17 @@ msgid ""
 "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 "
@@ -475,30 +405,70 @@ msgid ""
 "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 ""
 
-"
+#: index.php:23
+msgid "Computing power"
+msgstr ""
 
-msgid "Volunteer"
+#: index.php:25
+msgid "Top 100 volunteers"
 msgstr ""
 
-"
+#: index.php:26
+msgid "Statistics"
+msgstr ""
 
-msgid "Download"
+#: index.php:53
+msgid "Active:"
 msgstr ""
 
-"
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
 
-msgid "Documentation"
+#: index.php:53
+msgid "computers.\n"
 msgstr ""
 
-"
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
 
+#: index.php:54
+msgid "TeraFLOPS."
+msgstr ""
+
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
+
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -507,28 +477,92 @@ msgid ""
 "sDownload%s and run BOINC software  %sEnter%s an email address and password. "
 msgstr ""
 
-"
-
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
 "sGridRepublic%s or %sBAM!%s. "
 msgstr ""
 
-"
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
+
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
 
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
 
-"
-
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr ""
 
-"
-
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -541,84 +575,68 @@ msgid ""
 "href=poll_results.php>here</a>. "
 msgstr ""
 
-"
-
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr ""
 
-"
-
+#: poll.php:30
 msgid "Your participation"
 msgstr ""
 
-"
-
+#: poll.php:32
 msgid "Your computers"
 msgstr ""
 
-"
-
+#: poll.php:34
 msgid "You"
 msgstr ""
 
-"
-
+#: poll.php:39
 msgid "Nationality"
 msgstr ""
 
-"
-
+#: poll.php:44
 msgid "Comments"
 msgstr ""
 
-"
-
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
 msgstr ""
 
-"
-
+#: poll.php:50
 msgid "When done click:"
 msgstr ""
 
-"
-
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
 msgstr ""
 
-"
-
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr ""
 
-"
-
+#: poll_results.php:195
 msgid "Survey results"
 msgstr ""
 
-"
-
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
 msgstr ""
 
-"
-
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 #~ msgid "CHARSET"
 #~ msgstr "UTF-8"
@@ -641,7 +659,16 @@ msgstr ""
 
 #~ msgid "POLL_INTRO"
 #~ msgstr ""
-#~ "Algúns proxectos voluntarios de cálculo computacional, incluíndo  Climateprediction.net, Einstein at home, e SETI at home, usan un software chamado BOINC. Se participa en proxectos como estes, pedímoslle que responda ás seguintes preguntas. Isto axudará aos proxectos baseados en BOINC a incrementar a participación e acadar mellores resultados científicos.  <p> Por favor, reponda a tódalas preguntas que desexe, e despois vaia ao final da páxina e prema OK . Se completou a enquisa anteriormente pero as súas respostas cambiaron, por favor, compléteo de novo - as súas novas respostas remplazarán ás anteriores.  <p> Os resultados actuais da enquisa están <a href=poll_results.php>aquí</a>. "
+#~ "Algúns proxectos voluntarios de cálculo computacional, incluíndo  "
+#~ "Climateprediction.net, Einstein at home, e SETI at home, usan un software "
+#~ "chamado BOINC. Se participa en proxectos como estes, pedímoslle que "
+#~ "responda ás seguintes preguntas. Isto axudará aos proxectos baseados en "
+#~ "BOINC a incrementar a participación e acadar mellores resultados "
+#~ "científicos.  <p> Por favor, reponda a tódalas preguntas que desexe, e "
+#~ "despois vaia ao final da páxina e prema OK . Se completou a enquisa "
+#~ "anteriormente pero as súas respostas cambiaron, por favor, compléteo de "
+#~ "novo - as súas novas respostas remplazarán ás anteriores.  <p> Os "
+#~ "resultados actuais da enquisa están <a href=poll_results.php>aquí</a>. "
 
 #~ msgid "POLL_RUN"
 #~ msgstr "Utiliza o BOINC?"
@@ -662,7 +689,9 @@ msgstr ""
 #~ msgstr "Comentarios"
 
 #~ msgid "POLL_COMMENTS_QUESTION"
-#~ msgstr "Por favor, suxira formas nas que BOINC e os proxectos que o utilizan, poidan ser mellorados:"
+#~ msgstr ""
+#~ "Por favor, suxira formas nas que BOINC e os proxectos que o utilizan, "
+#~ "poidan ser mellorados:"
 
 #~ msgid "POLL_OTHER"
 #~ msgstr "Outros:"
@@ -806,7 +835,9 @@ msgstr ""
 #~ msgstr "Noutros sitios web"
 
 #~ msgid "POLL_FACTOR"
-#~ msgstr "Cales son os factores máis importantes cando decide unirse a un proxecto do BOINC?"
+#~ msgstr ""
+#~ "Cales son os factores máis importantes cando decide unirse a un proxecto "
+#~ "do BOINC?"
 
 #~ msgid "POLL_GRAPHICS"
 #~ msgstr "Protector de pantalla con gráficas atractivas"
@@ -866,7 +897,9 @@ msgstr ""
 #~ msgstr "non os uso"
 
 #~ msgid "POLL_HELP"
-#~ msgstr "De onde obtén a información para resolver os problemas co BOINC e/ou os seus proxectos?"
+#~ msgstr ""
+#~ "De onde obtén a información para resolver os problemas co BOINC e/ou os "
+#~ "seus proxectos?"
 
 #~ msgid "POLL_HELP_PMB"
 #~ msgstr "Os foros de mensaxes do proxecto"
@@ -893,7 +926,9 @@ msgstr ""
 #~ msgstr "Erro - non se gardaron os resultados"
 
 #~ msgid "POLL_ERROR_TEXT"
-#~ msgstr "Un erro interno impediunos gardar as súas respostas á enquisa. Por favor inténteo de novo máis tarde."
+#~ msgstr ""
+#~ "Un erro interno impediunos gardar as súas respostas á enquisa. Por favor "
+#~ "inténteo de novo máis tarde."
 
 #~ msgid "POLL_RECORDED"
 #~ msgstr "Respostas á enquisa gardadas"
@@ -905,26 +940,38 @@ msgstr ""
 #~ msgstr "Resultados da enquisa"
 
 #~ msgid "POLL_RESULTS_TEXT"
-#~ msgstr "Estes son os resultados actuais da <a href=poll.php>enquisa a usuarios do BOINC</a>. Esta páxina actualízase cada hora."
+#~ msgstr ""
+#~ "Estes son os resultados actuais da <a href=poll.php>enquisa a usuarios do "
+#~ "BOINC</a>. Esta páxina actualízase cada hora."
 
 #~ msgid "Other systems"
 #~ msgstr "Outros sistemas"
 
 #~ msgid "If your computer is not of one of the above types, you can"
-#~ msgstr "Se o seu computador non é de ningún tipo dos anteriores, vostede pode"
+#~ msgstr ""
+#~ "Se o seu computador non é de ningún tipo dos anteriores, vostede pode"
 
 #~ msgid "%s make your own client software %s or"
 #~ msgstr "%s crear o seu propio programa cliente %s ou"
 
-#~ msgid "%s download executables from a third-party site %s (available for Solaris/Opteron, Linux/Opteron, Linux/PPC, HP-UX, and FreeBSD, and others)."
-#~ msgstr "%s obter executables de sitios web de terceiros %s (dispoñibles para Solaris/Opteron, Linux/Opteron, Linux/PPC, HP-UX, FreeBSD, e outros)."
+#~ msgid ""
+#~ "%s download executables from a third-party site %s (available for Solaris/"
+#~ "Opteron, Linux/Opteron, Linux/PPC, HP-UX, and FreeBSD, and others)."
+#~ msgstr ""
+#~ "%s obter executables de sitios web de terceiros %s (dispoñibles para "
+#~ "Solaris/Opteron, Linux/Opteron, Linux/PPC, HP-UX, FreeBSD, e outros)."
 
 #~ msgid "DL_MIRRORS"
-#~ msgstr "Nota: os arquivos son descargados de servidores espello en boinc.berkeley.edu, morel.mit.edu, einstein.aei.mpg.de, einstein.astro.gla.ac.uk, einstein.ligo.caltech.edu, e einstein.aset.psu.edu (grazas a estas institucións). O servidor é elixido aleatoriamente - se a descarga falla, recargue esta páxina e inténteo de novo."
+#~ msgstr ""
+#~ "Nota: os arquivos son descargados de servidores espello en boinc.berkeley."
+#~ "edu, morel.mit.edu, einstein.aei.mpg.de, einstein.astro.gla.ac.uk, "
+#~ "einstein.ligo.caltech.edu, e einstein.aset.psu.edu (grazas a estas "
+#~ "institucións). O servidor é elixido aleatoriamente - se a descarga falla, "
+#~ "recargue esta páxina e inténteo de novo."
 
-##############################################
+# #############################################
 # help.php
-##############################################
+# #############################################
 #~ msgid "HELP_TITLE"
 #~ msgstr "Axuda para o BOINC"
 
@@ -932,16 +979,30 @@ msgstr ""
 #~ msgstr "Axuda en liña"
 
 #~ msgid "HELP_P1_1"
-#~ msgstr "A axuda Online do BOINC permítelle falar directamente con usuarios do BOINC con experiencia, que poden: %s contestar preguntas sobre o BOINC e computación voluntaria; %s guiaráo no proceso de instalar e usar BOINC; %s resolverá calquer problema que puidera ter."
+#~ msgstr ""
+#~ "A axuda Online do BOINC permítelle falar directamente con usuarios do "
+#~ "BOINC con experiencia, que poden: %s contestar preguntas sobre o BOINC e "
+#~ "computación voluntaria; %s guiaráo no proceso de instalar e usar BOINC; %"
+#~ "s resolverá calquer problema que puidera ter."
 
 #~ msgid "HELP_P1_2"
-#~ msgstr "A axuda Online do BOINC está baseada no %sSkype%s, un sistema de telefonía baseado na Internet. Skype é gratuito (o programa e as chamadas). Se aínda non ten Skype, por favor, %sdescárgueo e instáleo agora%s. Cando remate, volva a esta páxina."
+#~ msgstr ""
+#~ "A axuda Online do BOINC está baseada no %sSkype%s, un sistema de "
+#~ "telefonía baseado na Internet. Skype é gratuito (o programa e as "
+#~ "chamadas). Se aínda non ten Skype, por favor, %sdescárgueo e instáleo "
+#~ "agora%s. Cando remate, volva a esta páxina."
 
 #~ msgid "HELP_P1_3"
-#~ msgstr "O mellor xeito de obter axuda é por voz, para o que precisa micrófono e altavoces integrados ou externos. Pode usar tamén o chat baseado en texto de Skype ou coreo electrónico normal (se non ten Skype) para comunicarse con Voluntarios para Axuda."
+#~ msgstr ""
+#~ "O mellor xeito de obter axuda é por voz, para o que precisa micrófono e "
+#~ "altavoces integrados ou externos. Pode usar tamén o chat baseado en texto "
+#~ "de Skype ou coreo electrónico normal (se non ten Skype) para comunicarse "
+#~ "con Voluntarios para Axuda."
 
 #~ msgid "HELP_P1_4"
-#~ msgstr "Hai dispoñibles Voluntarios que falan distintos idiomas. Por favor, seleccione un idioma: "
+#~ msgstr ""
+#~ "Hai dispoñibles Voluntarios que falan distintos idiomas. Por favor, "
+#~ "seleccione un idioma: "
 
 #~ msgid "HELP_HEADING2"
 #~ msgstr "Axuda para o BOINC na web"
@@ -965,25 +1026,40 @@ msgstr ""
 #~ msgstr "Sexa Voluntario para Axuda"
 
 #~ msgid "HELP_P3_1"
-#~ msgstr "Se vostede é un usuario do BOINC con experiencia, animámolo a %sser un Voluntario para Axuda%s. Este é un gran xeito de axudar á causa da investigación científica e computación voluntaria - ademáis é divertido!"
+#~ msgstr ""
+#~ "Se vostede é un usuario do BOINC con experiencia, animámolo a %sser un "
+#~ "Voluntario para Axuda%s. Este é un gran xeito de axudar á causa da "
+#~ "investigación científica e computación voluntaria - ademáis é divertido!"
 
 #~ msgid "HELP_P3_2"
-#~ msgstr "Se vostede é xa un Voluntario para Axuda: para editar as súas preferencias, %sprema aquí%s. "
+#~ msgstr ""
+#~ "Se vostede é xa un Voluntario para Axuda: para editar as súas "
+#~ "preferencias, %sprema aquí%s. "
 
-##############################################
+# #############################################
 # index.php
-##############################################
+# #############################################
 #~ msgid "HOME_HEADING1"
 #~ msgstr "Voluntario"
 
 #~ msgid "HOME_P1"
-#~ msgstr "Use o tempo de inactividade do seu computador (Windows, Mac, ou Linux) para curar enfermidades, estudiar o quencemento global, descubra púlsares, e faga moitos outros tipos de investigación científica. É seguro, protexido, e doado: %sEscolla%s proxectos %sDescargue%s e execute o programa BOINC %sIntroduza%s un enderezo de correo electrónico e un contrasinal."
+#~ msgstr ""
+#~ "Use o tempo de inactividade do seu computador (Windows, Mac, ou Linux) "
+#~ "para curar enfermidades, estudiar o quencemento global, descubra "
+#~ "púlsares, e faga moitos outros tipos de investigación científica. É "
+#~ "seguro, protexido, e doado: %sEscolla%s proxectos %sDescargue%s e execute "
+#~ "o programa BOINC %sIntroduza%s un enderezo de correo electrónico e un "
+#~ "contrasinal."
 
 #~ msgid "HOME_P2"
-#~ msgstr "Ou, se vostede executa varios proxectos, probe un %sxestor de contas%s coma %sGridRepublic%s ou %sBAM!%s. "
+#~ msgstr ""
+#~ "Ou, se vostede executa varios proxectos, probe un %sxestor de contas%s "
+#~ "coma %sGridRepublic%s ou %sBAM!%s. "
 
 #~ msgid "HOME_P3"
-#~ msgstr "Se ten algunha pregunta, ou precisa axuda para comezar, pode %sfalar cun Voluntario para Axuda%s. "
+#~ msgstr ""
+#~ "Se ten algunha pregunta, ou precisa axuda para comezar, pode %sfalar cun "
+#~ "Voluntario para Axuda%s. "
 
 #~ msgid "HOME_DOWNLOAD"
 #~ msgstr "Descargar"
@@ -1001,4 +1077,6 @@ msgstr ""
 #~ msgstr "Infraestrutura Aberta de Berkeley para Computación en Rede (BOINC)"
 
 #~ msgid "HOME_BOINC_DESC"
-#~ msgstr "Programas de código aberto para %scomputación voluntaria%s e %scomputación en rede (grid)%s"
+#~ msgstr ""
+#~ "Programas de código aberto para %scomputación voluntaria%s e %"
+#~ "scomputación en rede (grid)%s"
diff --git a/locale/gl/pootle-boincclient610-gl.prefs b/locale/gl/pootle-boincclient610-gl.prefs
new file mode 100644
index 0000000..c652d3e
--- /dev/null
+++ b/locale/gl/pootle-boincclient610-gl.prefs
@@ -0,0 +1,10 @@
+# Pootle preferences for project boinctrunk, language gl
+
+rights:
+  ceixeoida = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  JensSeidler = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  thebigjens = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, commit'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/gl/pootle-boinctrunk-gl.prefs b/locale/gl/pootle-boinctrunk-gl.prefs
deleted file mode 100644
index 8a7b5be..0000000
--- a/locale/gl/pootle-boinctrunk-gl.prefs
+++ /dev/null
@@ -1,8 +0,0 @@
-# Pootle preferences for project boinctrunk, language gl
-
-rights:
-  ceixeoida = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  default = u'view, suggest, archive, pocompile'
-  nobody = u'view'
-  JensSeidler = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  thebigjens = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, commit'
diff --git a/locale/hr/BOINC-Manager.mo b/locale/hr/BOINC-Manager.mo
index bc2f0cc..e2423e4 100644
Binary files a/locale/hr/BOINC-Manager.mo and b/locale/hr/BOINC-Manager.mo differ
diff --git a/locale/hr/BOINC-Manager.po b/locale/hr/BOINC-Manager.po
index 0fcaac5..d54d02e 100644
--- a/locale/hr/BOINC-Manager.po
+++ b/locale/hr/BOINC-Manager.po
@@ -1,460 +1,519 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 4.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
 "PO-Revision-Date: 2005-07-05 13:11+0100\n"
 "Last-Translator: Vedran <vedran.brnjetic at os.htnet.hr>\n"
 "Language-Team: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Translate Toolkit 1.2.1\n"
 "X-Poedit-Language: English\n"
 "X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: iso-8859-1\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: UNITED STATES\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 #, fuzzy
 msgid "&Password:"
 msgstr "Lozinka:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 #, fuzzy
 msgid "&Username:"
 msgstr "Korisničko ime:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:530
 #, fuzzy
 msgid "Attach to project"
 msgstr "Priključi se projektu"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-#, fuzzy
-msgid "Account Manager URL"
-msgstr "Adresa menadžera računa:"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
 msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 #, fuzzy
 msgid "Account Manager &URL:"
 msgstr "Adresa menadžera računa:"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Spojeno"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Prekinuto"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "&Izlaz"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:345
-#, fuzzy
-msgid "Attach to &project..."
-msgstr "Uključujem se u projekt..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:346
-#, fuzzy
-msgid "Attach to a project"
-msgstr "Priključi se"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+#, fuzzy
+msgid "Attach to &project..."
+msgstr "Uključujem se u projekt..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "&Uvijek radi"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 #, fuzzy
 msgid "Allow work regardless of preferences"
 msgstr "Obrađuje bez obzira na postavke"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "&Radi ovisno o postavkama"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 #, fuzzy
 msgid "Allow work according to your preferences"
 msgstr "Obrađuje ovisno o postavkama"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "&Zaustavi"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 #, fuzzy
 msgid "Stop work regardless of preferences"
 msgstr "Zaustavlja obradu bez obzira na postavke"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+#, fuzzy
+msgid "Allow GPU work regardless of preferences"
+msgstr "Obrađuje bez obzira na postavke"
+
+#: clientgui/AdvancedFrame.cpp:473
+#, fuzzy
+msgid "Use GPU based on &preferences"
+msgstr "&Radi ovisno o postavkama"
+
+#: clientgui/AdvancedFrame.cpp:474
+#, fuzzy
+msgid "Allow GPU work according to your preferences"
+msgstr "Obrađuje ovisno o postavkama"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+#, fuzzy
+msgid "Stop GPU work regardless of preferences"
+msgstr "Zaustavlja obradu bez obzira na postavke"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 #, fuzzy
 msgid "Allow network activity regardless of preferences"
 msgstr "Obrađuje bez obzira na postavke"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 #, fuzzy
 msgid "Allow network activity according to your preferences"
 msgstr "Obrađuje ovisno o postavkama"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 #, fuzzy
 msgid "Stop BOINC network activity"
 msgstr "Zaustavlja mrežnu aktivnost BOINC-a"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "Podešava GUI opcije i proxy postavke"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "Connect to another computer running %s"
 msgstr "Spojite se na drugo računolo koje ima BOINC"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 #, fuzzy
 msgid "Select computer..."
 msgstr "Odaberite računalo..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "Pokreće BOINC-ove testove procesora"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:483
-#, fuzzy
-msgid "Attach to &project"
-msgstr "Priključi se projektu"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
 msgid "Show information about %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "Show information about BOINC and %s"
 msgstr "Pokazuje informacije o BOINC menadžeru"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "Licenčne i autorske informacije."
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "&Datoteka"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "&Alati"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "&Pomoć"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -463,61 +522,66 @@ msgid ""
 "Do you want to stop using %s?"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "Uključujem se u projekt..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr ""
 "BOINC menadžerov pretpostavljeni jezik je promijenjen, da bi ta promjena "
 "stupila na snagu menadžer mora biti restartiran."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "Spajam se na %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "Connected to %s (%s)"
 msgstr "Spojeno na %s"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr ""
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -525,11 +589,11 @@ msgid ""
 "Please visit the project's web site and follow the instructions there."
 msgstr ""
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr ""
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -537,106 +601,118 @@ msgid ""
 "Please visit the project's web site and follow the instructions there."
 msgstr ""
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1229
+#, fuzzy
+msgid "Cancel"
+msgstr "&Poništi"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "Lozinka koju ste unijeli je netočna, molimo pokušajte ponovno."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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 ""
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Web stranice"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
 "Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
@@ -644,39 +720,35 @@ msgstr ""
 "BOINC se treba spojiti na internet.\n"
 "Može li to učiniti sada"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s is connecting to the Internet."
 msgstr "BOINC se spaja na internet."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
 "Please connect to the Internet, or select a default connection\n"
 "using Advanced/Options/Connections."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "BOINC se uspješno odpojio s interneta."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "BOINC se nije uspio spojiti na internet."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
@@ -684,120 +756,148 @@ msgstr ""
 "BOINC je detektirao vezu na internet, ažurira sve projekte i ponovo pokušava "
 "sve prijenose."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "BOINC se uspješno odpojio s interneta."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "BOINC se nije uspio odpojiti s interneta."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "BOINC Menadžer"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr "Pokrenuti BOINC tako da je vidljiva samo ikona u trayu"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Automatska detekcija)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Nepoznato)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Korisnički određeno)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -805,505 +905,497 @@ msgid ""
 "Click Finish to close."
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 #, fuzzy
 msgid "Attached to project"
 msgstr "Priključi se projektu"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr ""
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr ""
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
+#, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "Verzija:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Autorska prava:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 #, fuzzy
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
 "(C) 2005 Kalifornijsko sveučilište u Berkeleyu.\n"
 "Sva prava pridržana."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr "Berkeley Open Infrastructure for Network Computing"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "&U redu"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
 "Click Clear to restore web-based settings."
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
 msgid "% of the processors"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
 #, no-c-format
-#, fuzzy
+#, fuzzy, no-c-format
 msgid "% CPU time"
 msgstr "Procesorsko vrijeme"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-#, fuzzy
-msgid "Cancel"
-msgstr "&Poništi"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 #, fuzzy
 msgid "Help"
 msgstr "&Pomoć"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1313,8 +1405,8 @@ msgid ""
 "exit the Manager, then choose from the following options:"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1324,539 +1416,496 @@ msgid ""
 "tasks at the times you selected in your preferences."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "&Poništi"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 #, fuzzy
 msgid "&Close"
 msgstr "Zatvoriti"
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "Općenito"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 #, fuzzy
 msgid "User name"
 msgstr "Korisničko ime:"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Djeljenje resursa"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Aplikacija"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Rok prijave"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "Procesorsko vrijeme"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 #, fuzzy
 msgid "Elapsed time"
 msgstr "Proteklo vrijeme"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Novo"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "Skidanje neuspjelo"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "Skidanje"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Zaustavljeno"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "Radi"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Greška pri obradi"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "Dizanje neuspjelo"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "Dizanje"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Obrisan od korisnika"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Potvrđeno"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "Spreman za prijavu"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Greška: nedopušteno stanje '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "Modemske i VPN postavke"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "&Postavi kao pretpostavljeno"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "O&briši pretpostavljeno"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Pretpostavljena veza:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Veze"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Spoji se preko HTTP proxy servera"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "Konfiguracija HTTP proxy servera"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Adresa:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Port:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Ne ispunjavajte ukoliko nije potrebno"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Korisničko ime:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Lozinka:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "HTTP Proxy"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Spoji se preko SOCKS proxy servera"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "Konfiguracija SOCKS proxy servera"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "SOCKS Proxy"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s - Select Computer"
 msgstr "Odaberi računalo"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Naziv računala:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
 msgstr ""
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
+#, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1866,240 +1915,235 @@ msgid ""
 "then restart the %s."
 msgstr ""
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr ""
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr ""
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr ""
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr ""
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr ""
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr ""
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr ""
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr ""
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr ""
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr ""
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr ""
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr ""
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr ""
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr ""
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr ""
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr ""
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr ""
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr ""
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr ""
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr ""
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr ""
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr ""
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr ""
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr ""
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr ""
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr ""
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr ""
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr ""
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr ""
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Tim"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr ""
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr ""
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 #, fuzzy
 msgid "News"
 msgstr "Novo"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr ""
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr ""
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr ""
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr ""
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr ""
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr ""
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr ""
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr ""
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr ""
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr ""
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr ""
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr ""
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr ""
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "Provjeravam stanje sistema; molimo pričekajte..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "Provjeravam stanje računala; molimo pričekajte..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr ""
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr ""
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr ""
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/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 ""
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr ""
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2107,65 +2151,76 @@ msgid ""
 "Please check the URL and try again."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:320
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:321
-msgid "Already Attached to Project"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
 msgstr ""
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
 msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
 msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
 msgstr ""
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr ""
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2176,13 +2231,13 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2199,1335 +2254,1251 @@ msgid ""
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 #, fuzzy
 msgid "HTTP proxy"
 msgstr "HTTP Proxy"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 #, fuzzy
 msgid "SOCKS proxy"
 msgstr "SOCKS Proxy"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Projekt"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "Vrijeme"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Poruka"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Kopiraj sve poruke u memoriju"
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 #, fuzzy
 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 ""
 "Kopiraj označene poruke u memoriju. Možete označiti više poruka držeći shift "
 "ili ctrl dok klikate na poruke."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
 "Kopiraj označene poruke u memoriju. Možete označiti više poruka držeći shift "
 "ili ctrl dok klikate na poruke."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "Jeste li sigurni da se želite isključiti iz projekta '%s'?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "Odvoji se od projekta"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 #, fuzzy
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr "Jeste li sigurni da želite prikazati rezultat na udaljenom računalu?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Pokaži grafiku"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 #, fuzzy
 msgid "Application: "
 msgstr "Aplikacija"
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 #, fuzzy
 msgid "Elapsed Time: "
 msgstr "Proteklo vrijeme"
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
 "Please try again later."
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
 "Please try again later."
 msgstr ""
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr ""
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr ""
 "Neispravan identifikator računa; molimo unesite valjani identifikator "
 "računa."
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Konflikt pri validaciji."
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr ""
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
 "http://www.example.com/"
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
 "http://boincproject.example.com"
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "'%s' ne sadrži valjano ime računala"
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "'%s' ne sadrži valjan put."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Kopiraj sve poruke"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Kopiraj oznčene poruke"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Poruke"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "Kopiranje svih poruka u memoriju..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 #, fuzzy
 msgid "Copying selected messages to the clipboard..."
 msgstr "Kopiranje svih poruka u memoriju..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 #, fuzzy
 msgid "Show all messages"
 msgstr "Kopiraj sve poruke"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 #, fuzzy
 msgid "Copying selected messages to Clipboard..."
 msgstr "Kopiranje svih poruka u memoriju..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 #, fuzzy
 msgid "BOINC Website"
 msgstr "BOINC &Webstranica"
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Ažuriraj"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 #, fuzzy
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr ""
 "Prijavi sav završen posao, prihvati najnoviji kredit, prihvati najnovije "
 "poruke, i možda dobij još posla."
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Zaustavi"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 #, fuzzy
 msgid "Suspend tasks for this project."
 msgstr "Zaustavi posao za ovaj projekt"
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 #, fuzzy
 msgid "Don't get new tasks for this project."
 msgstr "Ne skida posao za ovaj projekt"
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Resetiraj projekt"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 #, fuzzy
 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 ""
 "Briše sve datoteke i posao vezan uz projekt, i skida novi posao. Možete prvo "
 "ažurirati projekt kako bi prijavili mogući završeni posao."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Isključi se"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Račun"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Stanje"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Projekti"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "Ažuriram projekt..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "Nastavljam projekt"
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "Zaustavljam projekt"
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 #, fuzzy
 msgid "Telling project to allow additional task downloads..."
 msgstr "Govorim projektu da dopusti skidanje novog posla..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 #, fuzzy
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "Govorim projektu da ne skida novi posao..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "Resetiram projekt"
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Jeste li sigurni da želite resetirati projekt '%s'?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Resetiraj projekt"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "Isključujem se iz projekta..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "Otvaram pretraživač..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Nastavi"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 #, fuzzy
 msgid "Resume tasks for this project."
 msgstr "Nastavi posao za ovaj projekt."
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 #, fuzzy
 msgid "Allow fetching new tasks for this project."
 msgstr "Dopušta skidanje novog posla za ovaj projekt."
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 #, fuzzy
 msgid "Don't fetch new tasks for this project."
 msgstr "Ne skida posao za ovaj projekt"
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Zaustavljen od korisnika"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 #, fuzzy
 msgid "Won't get new tasks"
 msgstr "Neće dobiti novi posao"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Scheduler request pending"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "Communication deferred "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Disk"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Ukupno po korisniku"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Korisnikov prosjek"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Ukupan kredit računala"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Prosjek računala"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Pokaži ukupan korisnikov kredit"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "Pokaži korisnički prosjek"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Pokaži ukupan kredit računala"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "pokaži prosjek računala"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Statistika"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "Ažuriram grafove"
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Ponovi sada"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "Klikni na 'ponovi sada' da prenesete datoteku sada"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Prekini prijenos"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr ""
 "Klikni 'prekini prijenos' da obrišete datoteku iz popisa za prijenos. to će "
 "vas spriječiti da dobijete kredit za taj rezultat."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "Datoteka"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Napredak"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Veličina"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "Proteklo vrijeme"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Brzina"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Prijenosi"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "Ponovo pokušavam prenijeti sada..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "Prekidam prijenos..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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 ""
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Prekini prijenos datoteke"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "Ponovi za"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 #, fuzzy
 msgid "Aborting transfer(s)..."
 msgstr "Prekidam prijenos..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
 "will not receive credit for it."
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 #, fuzzy
 msgid "Abort File Transfer(s)"
 msgstr "Prekini prijenos datoteke"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "Pokazuje grafiku aplikacije u prozoru"
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "Zausavi posao za ovaj rezultat."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Obriši"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr "Napusti posao n rezultatu. Nećete dobit kredit za njega."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Ime"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "Do završetka"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Zadaće"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 #, fuzzy
 msgid "Suspending task..."
 msgstr "Zaustavljam rezultat..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 #, fuzzy
 msgid "Showing graphics for task..."
 msgstr "Prikazujem grafiku za rezultat..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Brišem rezultat..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+#, fuzzy, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "Jeste li sigurni da želite obrisati rezultat '%s'?"
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Brišem rezultat..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 #, fuzzy
 msgid "Resume work for this task."
 msgstr "Nastavi posao za ovaj rezultat"
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 #, fuzzy
 msgid "Suspend work for this task."
 msgstr "Zausavi posao za ovaj rezultat."
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3536,13 +3507,13 @@ msgid ""
 "listed on or managed via %s."
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3558,135 +3529,161 @@ msgid ""
 "World Community Grid then please click on the following button:"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
+#: clientgui/WelcomePage.cpp:301
+msgid "To continue, click Next."
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:380
-#, fuzzy
-msgid "Account manager"
-msgstr "Menadžer računa"
+#: clientgui/WizardAttachProject.cpp:610
+msgid "Do you really want to cancel?"
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
+#: clientgui/WizardAttachProject.cpp:611
+msgid "Question"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
+msgid "&Next >"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
+#: clientgui/wizardex.cpp:383
+msgid "< &Back"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
+#: clientgui/wizardex.cpp:553
+msgid "&Finish"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
+msgid "New page inserted. Index = %i"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
+msgid "New page appended. Index = %i"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
+msgid "Old Page Index = %i"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
+msgid "OnDropTarget: index by HitTest = %i"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
+#: clientgui/common/wxPieCtrl.cpp:66
+msgid "Pie Ctrl"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:427
-msgid "To continue, click Next."
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
 msgstr ""
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
-msgid "Do you really want to cancel?"
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
 msgstr ""
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
-msgid "Question"
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
 msgstr ""
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
-msgid "&Next >"
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
 msgstr ""
 
-#: clientgui/wizardex.cpp:408
-msgid "< &Back"
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
 msgstr ""
 
-#: clientgui/wizardex.cpp:604
-msgid "&Finish"
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
-msgid "New page inserted. Index = %i"
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
-msgid "New page appended. Index = %i"
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
-msgid "Old Page Index = %i"
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
-msgid "OnDropTarget: index by HitTest = %i"
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
 msgstr ""
 
-#: clientgui/common/wxPieCtrl.cpp:66
-msgid "Pie Ctrl"
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 
+#, fuzzy
+#~ msgid "Account Manager URL"
+#~ msgstr "Adresa menadžera računa:"
+
+#, fuzzy
+#~ msgid "Attach to a project"
+#~ msgstr "Priključi se"
+
+#, fuzzy
+#~ msgid "Attach to &project"
+#~ msgstr "Priključi se projektu"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "Uključujem se u projekt..."
+
+#, fuzzy
+#~ msgid "Account manager"
+#~ msgstr "Menadžer računa"
+
 #~ msgid "&Open BOINC Manager..."
 #~ msgstr "&Otvori BOINC menadžer"
 
@@ -3703,7 +3700,8 @@ msgstr ""
 #~ "Account managers make it easy to find and join BOINC projects.\n"
 #~ "For more information, click on the link below."
 #~ msgstr ""
-#~ "Menadžeri računa olakšavaju pronalažanje i opredjeljivanje BOINC projektima.\n"
+#~ "Menadžeri računa olakšavaju pronalažanje i opredjeljivanje BOINC "
+#~ "projektima.\n"
 #~ " Za više informacija, kliknite povezicu ispod."
 
 #~ msgid "Login:"
@@ -3745,8 +3743,11 @@ msgstr ""
 #~ msgid "Reminder Frequency:"
 #~ msgstr "Frekvencija podsjećenja:"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
-#~ msgstr "Koliko često, u minutama, će vas menadžer podsjećati o mogućim spajanjima:"
+#~ msgid ""
+#~ "How often, in minutes, should the manager remind you of possible "
+#~ "connection events."
+#~ msgstr ""
+#~ "Koliko često, u minutama, će vas menadžer podsjećati o mogućim spajanjima:"
 
 #~ msgid "&Automatically detect network connection settings"
 #~ msgstr "&Automatski ispitaj postavke spajanja na mrežu"
@@ -3799,7 +3800,8 @@ msgstr ""
 #~ msgid "&Manage Accounts"
 #~ msgstr "&Uređivanje računa"
 
-#~ msgid "Connect to an account manager website and update all of your accounts"
+#~ msgid ""
+#~ "Connect to an account manager website and update all of your accounts"
 #~ msgstr "Spojite se na website menadžera računa i ažurirajte sve vaše račune"
 
 #~ msgid "&Options"
@@ -3817,26 +3819,47 @@ msgstr ""
 #~ msgid "BOINC Manager - Network Status"
 #~ msgstr "BOINC menadžer - Stanje mreže"
 
-#~ msgid "BOINC needs a connection to the Internet to perform some maintenance, open the BOINC Manager to connect up and perform the needed work."
-#~ msgstr "BOINC treba vezu na internet radi održavanja, otvorite BOINC menadžer da se spoji i obavi potreban posao."
+#~ msgid ""
+#~ "BOINC needs a connection to the Internet to perform some maintenance, "
+#~ "open the BOINC Manager to connect up and perform the needed work."
+#~ msgstr ""
+#~ "BOINC treba vezu na internet radi održavanja, otvorite BOINC menadžer da "
+#~ "se spoji i obavi potreban posao."
 
-#~ msgid "BOINC has successfully connected to the internet, updating all transfers and projects."
-#~ msgstr "BOINC se uspješno spojio na internet, ažurira sve projekte i ponovo pokušava sve prijenose."
+#~ msgid ""
+#~ "BOINC has successfully connected to the internet, updating all transfers "
+#~ "and projects."
+#~ msgstr ""
+#~ "BOINC se uspješno spojio na internet, ažurira sve projekte i ponovo "
+#~ "pokušava sve prijenose."
 
 #~ msgid "Update All"
 #~ msgstr "Ažuriraj sve"
 
-#~ msgid "Report all upload items, completed work, get latest credit, get latest preferences, and possibly get more work."
-#~ msgstr "Podigni sve završene radne jedinice, prijavi sav završen posao, prihvati najnoviji kredit, prihvati najnovije poruke, i možda dobij još posla."
+#~ msgid ""
+#~ "Report all upload items, completed work, get latest credit, get latest "
+#~ "preferences, and possibly get more work."
+#~ msgstr ""
+#~ "Podigni sve završene radne jedinice, prijavi sav završen posao, prihvati "
+#~ "najnoviji kredit, prihvati najnovije poruke, i možda dobij još posla."
 
 #~ msgid "No new work"
 #~ msgstr "Ne skidaj više posla"
 
-#~ msgid "Detach this computer from this project.  Work in progress will be lost. You can update the project first to report any completed work."
-#~ msgstr "Isključuje ovo računalo iz označenog projekta. Posao u tijeku bit će izgubljen. Možete prvo ažurirati projekt kako bi prijavili mogući završeni posao."
+#~ msgid ""
+#~ "Detach this computer from this project.  Work in progress will be lost. "
+#~ "You can update the project first to report any completed work."
+#~ msgstr ""
+#~ "Isključuje ovo računalo iz označenog projekta. Posao u tijeku bit će "
+#~ "izgubljen. Možete prvo ažurirati projekt kako bi prijavili mogući "
+#~ "završeni posao."
 
-#~ msgid "Attach this computer to a BOINC project.  You'll need a project URL and account key (visit the project's web site to get these)."
-#~ msgstr "Priključite ovo računalo novom projektu. Trebat će vam URL projekta i identifikator računa (posjetite web stranicu projekta za ove podatke)."
+#~ msgid ""
+#~ "Attach this computer to a BOINC project.  You'll need a project URL and "
+#~ "account key (visit the project's web site to get these)."
+#~ msgstr ""
+#~ "Priključite ovo računalo novom projektu. Trebat će vam URL projekta i "
+#~ "identifikator računa (posjetite web stranicu projekta za ove podatke)."
 
 #~ msgid "Total credit"
 #~ msgstr "Ukupan kredit"
@@ -3853,7 +3876,6 @@ msgstr ""
 #~ msgid "Disk Space"
 #~ msgstr "Diskovni prostor"
 
-#, c-format
 #~ msgid "Are you sure you want to abort this file transfer '%s'?"
 #~ msgstr "Jeste li sigurni da želite prekinuti prijenos '%s'?"
 
@@ -3863,10 +3885,6 @@ msgstr ""
 #~ msgid "Resuming result..."
 #~ msgstr "Nastavljam rezultat..."
 
-#, c-format
-#~ msgid "Are you sure you want to abort this result '%s'?"
-#~ msgstr "Jeste li sigurni da želite obrisati rezultat '%s'?"
-
 #~ msgid "Abort result"
 #~ msgstr "Obriši rezultat"
 
diff --git a/locale/hr/BOINC-Web.po b/locale/hr/BOINC-Web.po
index 4438597..7a6c08f 100644
--- a/locale/hr/BOINC-Web.po
+++ b/locale/hr/BOINC-Web.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -18,386 +18,312 @@ msgstr ""
 "X-Poedit-Country: UNITED STATES\n"
 "X-Poedit-KeywordsList: tra\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
 msgstr ""
 
-"
-
+#: poll.inc:47
 msgid "Other:"
 msgstr ""
 
-"
-
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
 msgstr ""
 
-"
-
+#: poll_data.inc:22
 msgid "less than a week"
 msgstr ""
 
-"
-
+#: poll_data.inc:23
 msgid "less than a month"
 msgstr ""
 
-"
-
+#: poll_data.inc:24
 msgid "less than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:25
 msgid "more than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:34
 msgid "I lost interest"
 msgstr ""
 
-"
-
+#: poll_data.inc:35
 msgid "it was too complicated"
 msgstr ""
 
-"
-
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
 msgstr ""
 
-"
-
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:38
 msgid "it used too much electricity"
 msgstr ""
 
-"
-
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr ""
 
-"
-
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
 msgstr ""
 
-"
-
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
 msgstr ""
 
-"
-
+#: poll_data.inc:50
 msgid "I had network communication problems"
 msgstr ""
 
-"
-
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
 msgstr ""
 
-"
-
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr ""
 
-"
-
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
 msgstr ""
 
-"
-
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr ""
 
-"
-
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr ""
 
-"
-
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr ""
 
-"
-
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr ""
 
-"
-
+#: poll_data.inc:87
 msgid "Home"
 msgstr ""
 
-"
-
+#: poll_data.inc:88
 msgid "Work"
 msgstr ""
 
-"
-
+#: poll_data.inc:89
 msgid "School"
 msgstr ""
 
-"
-
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr ""
 
-"
-
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr ""
 
-"
-
+#: poll_data.inc:119
 msgid "Age"
 msgstr ""
 
-"
-
+#: poll_data.inc:129
 msgid "Sex"
 msgstr ""
 
-"
-
+#: poll_data.inc:131
 msgid "Male"
 msgstr ""
 
-"
-
+#: poll_data.inc:132
 msgid "Female"
 msgstr ""
 
-"
-
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr ""
 
-"
-
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr ""
 
-"
-
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr ""
 
-"
-
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr ""
 
-"
-
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr ""
 
-"
-
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr ""
 
-"
-
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
 msgstr ""
 
-"
-
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr ""
 
-"
-
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr ""
 
-"
-
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr ""
 
-"
-
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr ""
 
-"
-
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr ""
 
-"
-
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr ""
 
-"
-
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr ""
 
-"
-
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr ""
 
-"
-
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr ""
 
-"
-
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr ""
 
-"
-
+#: poll_data.inc:192
 msgid "Yes"
 msgstr ""
 
-"
-
+#: poll_data.inc:193
 msgid "No"
 msgstr ""
 
-"
-
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr ""
 
-"
-
+#: poll_data.inc:200
 msgid "to read information"
 msgstr ""
 
-"
-
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr ""
 
-"
-
+#: poll_data.inc:202
 msgid "None"
 msgstr ""
 
-"
-
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr ""
 
-"
-
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr ""
 
-"
-
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr ""
 
-"
-
+#: download.php:40
 msgid "Download BOINC"
 msgstr ""
 
-"
-
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr ""
 
-"
-
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -405,41 +331,34 @@ msgid ""
 "computer, you can connect it to as many of these projects as you like."
 msgstr ""
 
-"
-
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
 "(GPU), you may be able to %suse it to compute faster%s"
 msgstr ""
 
-"
-
+#: download.php:120
 msgid "System requirements"
 msgstr ""
 
-"
-
+#: download.php:121
 msgid "Release notes"
 msgstr ""
 
-"
-
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr ""
 
-"
-
+#: download.php:123
 msgid "All versions"
 msgstr ""
 
-"
-
+#: download.php:141
 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 "
@@ -448,8 +367,7 @@ msgid ""
 "problems you might have."
 msgstr ""
 
-"
-
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -458,8 +376,7 @@ msgid ""
 "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 "
@@ -467,20 +384,17 @@ msgid ""
 "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 "
@@ -488,30 +402,70 @@ msgid ""
 "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 ""
 
-"
+#: index.php:23
+msgid "Computing power"
+msgstr ""
 
-msgid "Volunteer"
+#: index.php:25
+msgid "Top 100 volunteers"
 msgstr ""
 
-"
+#: index.php:26
+msgid "Statistics"
+msgstr ""
 
-msgid "Download"
+#: index.php:53
+msgid "Active:"
 msgstr ""
 
-"
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
 
-msgid "Documentation"
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
 msgstr ""
 
-"
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
 
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -520,28 +474,92 @@ msgid ""
 "sDownload%s and run BOINC software  %sEnter%s an email address and password. "
 msgstr ""
 
-"
-
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
 "sGridRepublic%s or %sBAM!%s. "
 msgstr ""
 
-"
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
 
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
 
-"
-
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr ""
 
-"
-
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -554,84 +572,68 @@ msgid ""
 "href=poll_results.php>here</a>. "
 msgstr ""
 
-"
-
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr ""
 
-"
-
+#: poll.php:30
 msgid "Your participation"
 msgstr ""
 
-"
-
+#: poll.php:32
 msgid "Your computers"
 msgstr ""
 
-"
-
+#: poll.php:34
 msgid "You"
 msgstr ""
 
-"
-
+#: poll.php:39
 msgid "Nationality"
 msgstr ""
 
-"
-
+#: poll.php:44
 msgid "Comments"
 msgstr ""
 
-"
-
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
 msgstr ""
 
-"
-
+#: poll.php:50
 msgid "When done click:"
 msgstr ""
 
-"
-
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
 msgstr ""
 
-"
-
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr ""
 
-"
-
+#: poll_results.php:195
 msgid "Survey results"
 msgstr ""
 
-"
-
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
 msgstr ""
 
-"
-
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 #~ msgid "CHARSET"
 #~ msgstr "UTF-8"
diff --git a/locale/hr/pootle-boincclient610-hr.prefs b/locale/hr/pootle-boincclient610-hr.prefs
new file mode 100644
index 0000000..fbc927d
--- /dev/null
+++ b/locale/hr/pootle-boincclient610-hr.prefs
@@ -0,0 +1,8 @@
+# Pootle preferences for project boinctrunk, language hr
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  GoranY = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/hr/pootle-boinctrunk-hr.prefs b/locale/hr/pootle-boinctrunk-hr.prefs
deleted file mode 100644
index eabccd7..0000000
--- a/locale/hr/pootle-boinctrunk-hr.prefs
+++ /dev/null
@@ -1,2 +0,0 @@
-# Pootle preferences for project boinctrunk, language hr
-
diff --git a/locale/hu/BOINC-Manager.mo b/locale/hu/BOINC-Manager.mo
index c4d7f8b..466e756 100644
Binary files a/locale/hu/BOINC-Manager.mo and b/locale/hu/BOINC-Manager.mo differ
diff --git a/locale/hu/BOINC-Manager.po b/locale/hu/BOINC-Manager.po
index 3c82272..db8c70e 100644
--- a/locale/hu/BOINC-Manager.po
+++ b/locale/hu/BOINC-Manager.po
@@ -1,37 +1,37 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 5.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
-"PO-Revision-Date: 2009-06-15 15:18-0700\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2010-03-29 07:12-0700\n"
 "Last-Translator: Gabor Cseh <csega at mailbox.hu>\n"
 "Language-Team: BOINC Development Team <rwalton at ssl.berkeley.edu>\n"
 "Language: hu\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n !=1);\n"
 "X-Generator: Pootle 1.2.1\n"
 "X-Poedit-Language: English\n"
 "X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: iso-8859-1\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: UNITED STATES\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "Felhasználói információ"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr "Fiókjának azonosítása"
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
 msgstr ""
 "Kérjük, adja meg fiókinformációit\n"
-"(fiók létrehozásához keresse fel a project weblapját)"
+"(fiók létrehozásához keresse fel a projekt weblapját)"
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
@@ -39,419 +39,486 @@ msgstr ""
 "Ebben a projektben jelenleg nem készíthetők új fiókok.\n"
 "Csak akkor csatlakozhat, ha már van fiókja."
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "Már futtatja ezt a projektet?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "&Nem, új felhasználó"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "&Igen, létező felhasználó"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+"Az automatikus fiókinformáció-beállítás\n"
+"nem sikerült.\n"
+"\n"
+"Kérjük, kattintson az alábbi 'Bejelentkezési infók keresése'\n"
+"linkre a megfelelő email cím és jelszó\n"
+"információkért."
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr "Bejelentkezési infók keresése"
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "&Jelszó:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "Válasszon &jelszót:"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "Jelszó &megerősítése:"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
-msgstr "Már futtatja a %s projektet?"
+msgstr "Már futtatja a(z) %s projektet?"
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr "&Felhasználói név:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "&Email cím:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr "minimum hossz: %d"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr "Elfelejtette a jelszavát?"
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+"Ha még nem regisztrált ezzel a fiókkezelővel,\n"
+"kérjük, tegye meg, mielőtt továbbmenne. Kattintson az alábbi\n"
+"linkre a regisztrációhoz, vagy az elfelejtett jelszó visszaszerzéséhez."
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr "Fiókkezelő honlap"
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "Csatlakozás projekthez"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "Fiókkezelő frissítése"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "Csatlakozás fiókkezelőhöz"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr ""
 "A minimális jelszóhossz ennél a projektnél: %d. Kérem, válasszon másik "
 "jelszót."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
 "A minimális jelszóhossz ennél a fiókkezelőnél: %d. Kérem, válasszon másik "
 "jelszót."
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr "A jelszó és megerősítése nem egyezik. Kérem, próbálja újra."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "Fiókkezelő URL-je"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr "Válasszon fiókkezelőt"
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Adja meg a fiókkezelő weboldalának URL-jét."
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"Fiókkezelő kiválasztásához kattintson a fiókkezelő nevére\n"
+"vagy gépelje be alább az URL-jét."
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "Fiókkezelő &URL-je:"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
 #, c-format
 msgid "Communicating with %s."
 msgstr "Kommunikáció ezzel: %s."
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr "Kommunikáció a szerverrel."
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "Kérem, várjon..."
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr "Belső szerverhiba történt.\n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Kapcsolódva"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Kapcsolat megszakítva"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "Ablak &bezárásaCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr "%s ablak bezárása"
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "A BOINC kezelő ablakának bezárása."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr "&Ablak bezárása"
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
-msgstr "Kilépés ebből: %s"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr "%s bezárása"
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "&Kilépés"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
-msgstr "&Haladó nézet\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr "&Projektek\tCtrl+Shift+P"
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
-msgstr ""
-"Haladó nézetben különböző oszlopok szerint rendezheti listáit, a "
-"folyamatokról állapotjelzők segítségével szerezhet információkat."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr "Projektek mutatása"
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
-msgstr "&Egyszerű nézet\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr "&Feladatok\tCtrl+Shift+T"
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "A BOINC egyszerű grafikus felülete."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr "Feladatok mutatása"
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "Csatlakozás &projekthez..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr "Adatforgalom\tCtrl+Shift+X"
+
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr "Átvitelek mutatása"
+
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr "&Ãœzenetek\tCtrl+Shift+M"
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr "Üzenetek mutatása"
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "Csatlakozás egy projekthez"
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr "&Statisztikák\tCtrl+Shift+S"
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "Csatlakozás &fiókkezelőhöz..."
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr "Statisztikák mutatása"
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Csatlakozás egy fiókkezelőhöz"
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr "&Lemezhasználat\tCtrl+Shift+D"
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr "Lemezhasználat mutatása"
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "&Egyszerű nézet\tCtrl+Shift+V"
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr "Az egyszerű grafikus felület megjelenítése."
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr "Csatlakozás &projekthez vagy fiókkezelőhöz..."
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+"A feldolgozási munka megkezdéséhez csatlakozzon egy projekthez vagy "
+"fiókkezelőhöz"
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr "&Szinkronizáció ezzel: %s"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
 #, c-format
 msgid "Get current settings from %s"
 msgstr "Aktuális beállítások betöltése innen: %s"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "Csatlakozás &projekthez..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Csatlakozás egy projekthez és a feldolgozás megkezdése"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "%s használatának &befejezése..."
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Kliens eltávolítása a fiókkezelő felügyelete alól."
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "&Mindig fut"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr "Munka engedélyezése a beállítások figyelmen kívül hagyásával"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "&Beállítások szerint fut"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "Munka engedélyezése a beállítások figyelembevételével"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "&Felfüggeszt"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr "Beállítások figyelembe vétele nélkül leáll"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr "GPU használata mindenképp"
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr "GPU-s munka engedélyezése a beállítások figyelmen kívül hagyásával"
+
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr "GPU használata a &beállítások szerint"
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr "GPU-s munka engedélyezése a beállítások figyelembevételével"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr "Soha ne használja a GPU-t"
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr "A GPU-s munkák leállítása a beállítások figyelembe vétele nélkül"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "&Hálózati forgalom mindig engedélyezve"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr "Beállítások mellőzésével a hálózatra kapcsolódik"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
-msgstr "Hálózati forgalom a beállítások alapján"
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
+msgstr "Hálózati forgalom a &beállítások alapján"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
-msgstr "Beállítások szerint a hálózatra kapcsolódik"
+msgstr "A beállítások szerint a hálózatra kapcsolódik"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
-msgstr "Hálózati forgalom felfüggesztve"
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
+msgstr "Hálózati forgalom &felfüggesztve"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr "BOINC hálózati aktivitásának leállítása"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "&Opciók..."
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "A grafikus felület és a proxy beállítása"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "&Beállítások..."
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr "Helyi beállítások módosítása"
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
 msgid "Connect to another computer running %s"
 msgstr "Kapcsolódás másik %s -t futtató számítógéphez"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "Számítógép kiválasztása"
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr "Kapcsolódott kliens leállítása..."
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr "Jelenleg kapcsolódott magkliens leállítása"
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "&Sebességmérés futtatása"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "A BOINC processzor-sebesség mérésének futtatása "
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr "Hálózati &kommunikáció létesítése"
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr "Minden függőben lévő hálózati kommunikáció folytatása."
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr "Konfigurációs fájl beolvasása"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr "Konfigurációs beállítások beolvasása a cc_config.xml fájlból."
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "Helyi beállításfájl beolvasása"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr "Beállítások beolvasása a global_prefs_override.xml fájlból."
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr "%s használatának &befejezése..."
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "Kliens eltávolítása a fiókkezelő felügyelete alól."
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "Csatlakozás &projekthez"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "Csatlakozás egy projekthez és a feldolgozás megkezdése"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
-msgstr "%s &segítség"
+msgstr "%s &súgó"
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
 msgid "Show information about %s"
 msgstr "Információk erről: %s"
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
-msgstr "&%s segítség"
+msgstr "&%s súgó"
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr "Információk erről: %s"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr "%s &weblap"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
 msgid "Show information about BOINC and %s"
 msgstr "Információk a BOINC kezelőről és erről: %s"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr "%s &névjegye..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "Licensz és szerzői jogi információ."
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "Fájl"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "&Nézet"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "&Eszközök"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "&Aktivitás"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "&Haladó"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
-msgstr "&Segítség"
+msgstr "&Súgó"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr "%s - A jelenlegi kliens leállítása..."
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr "Csatlakozás projekthez vagy fiókkezelőhöz..."
 
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-"%s leállítja a jelenleg kapcsolódott klienst,\n"
-"és javasol Önnek egy másik klienst, amihez csatlakozhat.\n"
-
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr "%s - Leválasztás innen: %s"
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -465,59 +532,66 @@ msgstr ""
 "\n"
 "Biztosan befejezi %s használatát?"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "Csatlakozás egy projekthez"
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "Újra kapcsolódik a projekt(ek)het..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr "%s - Nyelv kiválasztása"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
 #, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr ""
 "A(z) %s alapértelmezett nyelve megváltozott, a változás érvénybe lépéséhez "
 "újra kell indítani %s-t."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - A jelenlegi kliens leállítása..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s leállítja a jelenleg kapcsolódott klienst,\n"
+"és javasol Önnek egy másik klienst, amihez csatlakozhat.\n"
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Újra kapcsolódik a projekt(ek)hez..."
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr "%s sikeresen csatlakozott ehhez: %s"
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "Kapcsolódás %s-hoz"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
 #, c-format
 msgid "Connected to %s (%s)"
 msgstr "Kapcsolódva ehhez: %s (%s)"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "Már létezik ilyen felhasználói név"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -530,11 +604,11 @@ msgstr ""
 "Kérem, látogasson el a projekt weboldalára, és kövesse az ott leírt "
 "teendőket."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "Az email cím már foglalt."
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -547,17 +621,30 @@ msgstr ""
 "Kérem, látogasson el a projekt weboldalára, és kövesse az ott leírt "
 "teendőket."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr "Kommunikáció a BOINC klienssel. Kérem, várjon..."
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr "%s &bezárása"
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr "%s &bezárása"
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "Mégsem"
+
+#: clientgui/BOINCBaseFrame.cpp:422
 #, c-format
 msgid "%s - Connection Error"
 msgstr "%s - Hiba a kapcsolatban"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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."
@@ -567,27 +654,30 @@ msgstr ""
 "a\n"
 " 'boinc_users' helyi felhasználói csoporthoz."
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
 msgstr ""
+"Az engedélyezés sikertelen a futó klienshez való csatlakozáskor.\n"
+"Kérjük győződjön meg róla, hogy ezt a programot ugyanabban a könyvtárban "
+"indította, mint a klienst."
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
-msgstr ""
+msgstr "Az engedélyezés sikertelen a futó klienshez való csatlakozáskor."
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "A megadott jelszó hibás, kérem próbálja újra."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - A kapcsolódás sikertelen"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
@@ -595,13 +685,13 @@ msgstr ""
 "%s nem tud kapcsolódni egy %s klienshez.\n"
 "Megpróbál újra kapcsolódni?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr "%s - A kiszolgáló indítása sikertelen"
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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."
@@ -610,8 +700,8 @@ msgstr ""
 "Kérjük, navigáljon a Vezérlőpult->Felügyeleti eszközök->Szolgáltatások "
 "helyre és indítsa el a  BOINC szolgáltatást."
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
@@ -619,58 +709,49 @@ msgstr ""
 "%s nem tud elindítani egy %s klienst.\n"
 "Kérjük, indítsa el a kiszolgálót és próbálja újra."
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr "%s - A kapcsolat állapota"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
-#, fuzzy
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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 ""
-"%s jelenleg nem kapcsolódik egy %s klienshez.\n"
-"Kérjük, válassza a Haladó menü Számítógép kiválasztása menüpontját egy %s "
-"klienshez való csatlakozáshoz.\n"
-"A helyi számítógéphez történő csatlakozáshoz írja be a 'localhost' szót "
-"Számítógépnévnek."
+"%s jelenleg nem kapcsolódik egy %s klienshez sem.Kérjük, használja a "
+"'Haladó\\Számítógép kiválasztása...' menüpontot egy %s klienshez való "
+"csatlakozáshoz.A helyi számítógép csatlakoztatásához a számítógépnév "
+"megadásánál használja a 'localhost' kifejezést."
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Weboldalak"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
-#, fuzzy
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr "%s - Hálózati Állapot"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
-#, fuzzy
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr ""
 "%s szeretne kapcsolódni az Internetre. Kérjük, kattintson %s megnyitásához."
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
-#, fuzzy
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
 "Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
 msgstr ""
-"%s nem képes kommunikálni egy projekttel, és internetkapcsolatra van "
-"szüksége.\n"
-"Kérjük, kapcsolódjon az Internetre, majd válassza Haladó menü a Hálózati "
-"kommunikáció létesítése menüpontját."
+"%s nem képes kommunikálni egy projekttel és internetkapcsolatra van "
+"szüksége.Kérjük, csatlakozzon az Internetre, majd válassza a 'Hálózati "
+"kommunikáció létesítése' pontot a Haladó menüben."
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
 #, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
@@ -679,40 +760,34 @@ msgstr ""
 "A következőnek internetkapcsolatra van szüksége: %s.\n"
 "Csatlakozzon most?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
 #, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s kapcsolódik az internetre."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
-#, fuzzy
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
 "Please connect to the Internet, or select a default connection\n"
 "using Advanced/Options/Connections."
 msgstr ""
-"%s nem volt képes az internetre csatlakozni, és alapértelmezett kapcsolat "
-"sincs kiválasztva.\n"
-"Kérjük, csatlakozzon az internetre, vagy válasszon alapértelmezett "
-"kapcsolatot\n"
-"a Haladó/Opciók/Kapcsolatok menüpontnál."
+"%s nem képes internetkapcsolatot létesíteni, és nincs kijelölve "
+"alapértelmezett kapcsolat. Kérjük, csatlakozzon az Internetre, vagy "
+"válasszon alapértelmezett kapcsolatota Haladó/Opciók/Kapcsolatok "
+"menüpontban."
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
 #, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s sikeresen kapcsolódott az internetre."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
 #, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "%s nem tudott az internetre kapcsolódni."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
 #, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
@@ -721,19 +796,47 @@ msgstr ""
 "%s érzékelte, hogy kapcsolódott az internetre.\n"
 "Minden projekt frissítése, és az átvitelek újrapróbálása."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
 #, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s sikeresen lekapcsolódott az internetről."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
 #, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s nem tudott lekapcsolódni az internetről."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+"Jelenleg nem jogosult a kliens kezelésére.\n"
+"\n"
+"A BOINC használata ezzel a felhasználóval:\n"
+"- telepítse újra a BOINCot és válaszoljon \"Igen\"-nel a\n"
+"nem adminisztratív felhasználóra vonatkozó kérdésre\n"
+"vagy\n"
+"- lépjen kapcsolatba a rendszergazdával és kérje meg, hogy adja hozzá a\n"
+"'boinc_master' felhasználói csoporthoz."
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"A BOINC tulajdonosi és hozzáférési jogai nincsenek megfelelően beállítva; "
+"kérjük, telepítse újra a BOINCot.\n"
+"(Hibakód %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
@@ -741,106 +844,113 @@ msgstr ""
 "A BOINC megfelelő futásához újraindítás szükséges.\n"
 "Kérjük, indítsa újra a számítógépét, majd próbálja újra."
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "BOINC kezelő"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr "A BOINC kezelőt az operációs rendszer automatikusan indította"
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr "BOINC indítása, így csak a tálcaikon látható."
 
-#: clientgui/BOINCGUIApp.cpp:527
-#, fuzzy
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr "A futtatható BOINC Klienst tartalmazó könyvtár"
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr "BOINC adatkönyvtár"
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
-msgstr "A BOINC indítása ezen opcionális lehetőségekkel"
+msgstr "A BOINC indítása a következő választható lehetőségekkel"
 
-#: clientgui/BOINCGUIApp.cpp:528
-#, fuzzy
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr "a BOINC biztonsági felhasználók és hozzáférések kikapcsolása"
 
-#: clientgui/BOINCGUIApp.cpp:529
-#, fuzzy
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
-"kinézet hibakereső mód beállítása, ezzel a kinézetkezelő hibaüzeneteinek "
-"megjelenítése"
+"kinézet hibakereső mód beállítása, ezzel bekapcsolhatók a kinézetkezelő "
+"hibaüzenetei"
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Automatikus felismerés)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Ismeretlen)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Felhasználó által megadott)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr "Számítás felfüggesztve."
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr "Hálózati aktivitás felfüggesztve."
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr "%s: %.2f%% kész."
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr "%d feladat fut."
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr "Újracsatlakozás a klienshez."
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr "Nincs kapcsolódva a klienshez."
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
-#, fuzzy
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
-msgstr "%s Web megnyitása..."
+msgstr "%s Weboldalának megnyitása..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr "%s megnyitása"
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "Felfüggeszt"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr "GPU-t felfüggeszt"
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "A projekthez való csatlakozás sikertelen"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr "A fiókkezelő frissítése sikertelen"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr "A fiókkezelő eltávolítása sikertelen"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "A fiókkezelőhöz való csatlakozás sikertelen"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -852,27 +962,26 @@ msgstr ""
 "\n"
 "Kattintson a befejezésre a bezáráshoz."
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "A bezárához klikkeljen a Befejez gombra"
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "Üzenetek a szervertől:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "Csatlakozott a projekthez"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "Ön most sikeresen csatlakozott ehhez a projekhez."
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -880,479 +989,493 @@ msgstr ""
 "Ha a Befejez gombra kattint, akkor a böngészőjében megnyílik az az oldal,\n"
 "ahol megadhatja a fiókjának nevét és beállításait."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
-msgstr ""
+msgstr "A frissítés kész innen: %s."
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
-msgstr ""
-
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr ""
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr ""
+msgstr "Frissítés kész."
 
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
-msgstr ""
+msgstr "Csatlakozva ehhez: %s"
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "Csatlakozott a fiókkezelőhöz"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
-msgstr ""
+msgstr "Üdvözöljük a(z) %s projektben!"
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
 #, c-format
-#, fuzzy
 msgid "You are now successfully attached to the %s system."
-msgstr "Ön most sikeresen csatlakozott ehhez a projekhez."
+msgstr "Ön sikeresen csatlakozott a %s rendszerhez."
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "Ön most sikeresen csatlakozott ehhez a fiókkezelőhöz."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
-msgstr ""
+msgstr "%s &névjegye..."
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "Verzió:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
-msgstr ""
+msgstr "wxWidgets verzió:"
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Készítő:"
 
-#: clientgui/DlgAbout.cpp:175
-#, fuzzy
+#: clientgui/DlgAbout.cpp:175
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
-"(C) 2005 University of California at Berkeley.\n"
+"(C) 2003-2010 Kaliforniai Berkeley Egyetem.\n"
 "Minden jog fenntartva."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr "Berkeley Nyílt Rendszer a Hálózati Számitásért (BOINC)"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "OK"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
-msgstr ""
+msgstr "érvénytelen float"
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
-msgstr ""
+msgstr "érvénytelen idő, a helyes formátum: ÓÓ:PP"
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
-msgstr ""
+msgstr "érvénytelen időintervallum, a helyes formátum: ÓÓ:PP-ÓÓ:PP"
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
-msgstr ""
+msgstr "érvénytelen bemeneti értéket észleltem"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
-msgstr ""
+msgstr "Érvényesítési hiba"
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
-msgstr ""
+msgstr "Biztosan törölni akar minden helyi beállítást?"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
-msgstr ""
+msgstr "Megerősítés"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
-msgstr ""
+msgstr "%s - Beállítások"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
 "Click Clear to restore web-based settings."
 msgstr ""
+"Ez a párbeszédpanel csak az ehhez a számítógéphez tartozó beállításokat "
+"kezeli.\n"
+"Kattintson az OK-ra a beállítások módosításához.\n"
+"Kattintson a Törlés-re a webes beállítások visszaállításához."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
-msgstr ""
+msgstr "Törlés"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
-msgstr ""
+msgstr "minden helyi beállítás törlése és a párbeszédpanel bezárása"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
-msgstr ""
+msgstr "Számítás engedélyezve"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
-msgstr ""
+msgstr "Amikor a számítógép akkumulátorról működik"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr ""
+"jelölje be, ha azt szeretné, hogy a számítógépe akkor is (fel)dolgozzon, "
+"amikor akkumulátorról működik"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
-msgstr ""
+msgstr "Ha a számítógép használatban van"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr ""
+"jelölje be, ha azt szeretné, hogy a számítógépe akkor is (fel)dolgozzon, "
+"amikor Ön használja azt"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
-msgstr ""
+msgstr "GPU használata, amikor a számítógép használatban van"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
+"jelölje be, ha azt szeretné, hogy a GPU is (fel)dolgozzon, mialatt Ön a "
+"számítógépet használja"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
-msgstr ""
+msgstr "Csak miután a számítógép legalább ennyi ideje tétlen:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr ""
+"csak akkor kezd el dolgozni, miután Ön a számítógépet már ennyi perce nem "
+"használja:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
+msgstr "perc"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+#, fuzzy
+msgid "While processor usage is less than"
+msgstr "processzor használat"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
-msgid "Every day between hours of"
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
+msgid "Every day between hours of"
+msgstr "Minden nap ezen időtartam alatt:"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
-msgstr ""
+msgstr "ekkor kezdje a feldolgozást"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
-msgstr ""
+msgstr "és"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
-msgstr ""
+msgstr "ekkor fejezze be a feldolgozást"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
-msgstr ""
+msgstr "(ha megegyeznek, nincs korlátozva)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
-msgstr ""
+msgstr "Felülírás a hét napjaira:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr ""
+"jelölje be a négyzetet, ha a hét ezen napjára külön szeretné beállítani az "
+"időtartományt"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
-msgstr ""
+msgstr "Hétfő"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
-msgstr ""
+msgstr "Kedd"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
-msgstr ""
+msgstr "Szerda"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
-msgstr ""
+msgstr "Csütörtök"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
-msgstr ""
+msgstr "Péntek"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
-msgstr ""
+msgstr "Szombat"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
-msgstr ""
+msgstr "Vasárnap"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
-msgstr ""
+msgstr "Egyéb beállítások"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
-msgstr ""
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+#, fuzzy
+msgid "Switch between applications every"
+msgstr "Váltás az alkalmazások között ilyen gyakorisággal:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
-msgstr ""
+msgstr "Többprocesszoros rendszereken legfeljebb"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
 msgid "% of the processors"
-msgstr ""
-
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+msgstr "%-át használja a processzoroknak"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
-msgstr ""
+msgstr "Legfeljebb"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
 #, no-c-format
-#, fuzzy
 msgid "% CPU time"
-msgstr "Processzor idő"
+msgstr "%-át használja a CPU időnek"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
-msgstr ""
+msgstr "processzor használat"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
-msgstr ""
+msgstr "Általános beállítások"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
-msgstr ""
+msgstr "Maximális letöltési sebesség"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
-msgstr ""
+msgstr "KBájt/mp."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
-msgstr ""
+msgstr "Maximális feltöltési sebesség"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
-msgstr ""
+msgstr "Csatlakozás kb. ennyi időnként:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
 msgstr ""
+"ez a számítógép minden X napban csatlakozik az Internetre\n"
+"(0 ha mindig csatlakozik)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
-msgstr ""
+msgstr "nap"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
-msgstr ""
+msgstr "További munkatároló"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
-msgstr ""
+msgstr "nap (max. 10)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
-msgstr ""
+msgstr "Képfájl ellenőrzés kihagyása"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
-msgstr ""
+msgstr "jelölje be, ha az internetszolgáltatója módosítja a képfájlokat"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
-msgstr ""
+msgstr "Kapcsolat beállításai"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
-msgstr ""
+msgstr "Ellenőrzés internethez csatlakozás előtt"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr ""
+"ha bejelölte, egy megerősítő ablak jelenik meg minden alkalommal az "
+"internethez csatlakozás előtt"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
-msgstr ""
+msgstr "Kapcsolat bontása, ha kész"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
 msgstr ""
+"ha bejelölte, a BOINC bontja a kapcsolatot, ha a hálózat használatát "
+"befejezte\n"
+"(csak a betárcsázós kapcsolatoknál lényeges)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
-msgstr ""
+msgstr "Hálózat használata engedélyezve"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
-msgstr ""
+msgstr "hálózat használata kezdődik ekkor"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
-msgstr ""
+msgstr "hálózat használata befejeződik ekkor"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
-msgstr ""
+msgstr "hálózathasználat"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
-msgstr ""
+msgstr "Lemezhasználat"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
-msgstr ""
+msgstr "a BOINC által maxmálisan használt lemezterület (Gigabájtban)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
-msgstr ""
+msgstr "Gigabájt lemezterület"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
-msgstr ""
+msgstr "Hagyjon legalább"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
-msgstr ""
+msgstr "A BOINC legalább ennyi lemezterületet szabadon hagy (Gigabájtban)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
-msgstr ""
+msgstr "Gigabájt szabad lemezterületet"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
-msgstr ""
+msgstr "A BOINC legfeljebb a teljes lemezterület ekkora hányadát használja"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
-msgstr ""
+msgstr "%-át használja a teljes lemezterületnek"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
-msgstr ""
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr "Feladat ellenőrzőpont lemezre írása legalább minden"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
-msgstr ""
+msgstr "másodpercben"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
-msgstr ""
+msgstr "%-át használja a lapozófájlnak (swap terület)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
-msgstr ""
+msgstr "Memóriahasználat"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
-msgstr ""
+msgstr "% ha a számítógép használatban van"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
-msgstr ""
+msgstr "% amikor a számítógép tétlen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
-msgstr ""
+msgstr "Hagyja az alkalmazásokat a memóriában a felfüggesztésük alatt"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr ""
+"ha be van jelölve, akkor a felfüggesztett munkacsomagok a memóriában "
+"maradnak"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
-msgstr ""
+msgstr "lemez- és memóriahasználat"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
-msgstr ""
+msgstr "Rendben"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
-msgstr ""
-
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-#, fuzzy
-msgid "Cancel"
-msgstr "Mégsem"
+msgstr "mentse az összes értéket majd zárja be a párbeszédablakot"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
-msgstr ""
+msgstr "zárja be a párbeszédablakot mentés nélkül"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "Súgó"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
-msgstr ""
+msgstr "mutatja a beállítási weboldalt"
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
-msgstr ""
+msgstr "%s - Kilépés megerősítése"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1361,9 +1484,15 @@ msgid ""
 "If you also want to stop running the science applications when you\n"
 "exit the Manager, then choose from the following options:"
 msgstr ""
+"Abból a %s-ből való kilépést választotta,\n"
+"amelyik lehetővé teszi tudományos alkalmazások futtatását és megtekintését a "
+"számítógépén.\n"
+"\n"
+"Amennyiben a tudományos alkalmazások futtatását is meg akarja állítani\n"
+"a Managerből való kilépéskor, akkor válasszon a következő lehetőségek közül:"
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1372,541 +1501,505 @@ msgid ""
 "rather than to exit the application; that will allow %s to run its\n"
 "tasks at the times you selected in your preferences."
 msgstr ""
+"Ez leállítja a %st és feladatait teljesen, addig amíg az\n"
+"alkalmazás vagy a képernyővédő nem fut újra.\n"
+"\n"
+"A legtöbb esetben jobb csak becsukni a %s ablakát\n"
+"mint kilépni az alkalmazásból; az megengedi a %st hogy futassa az\n"
+"feladatait azokban az időpontokban, amelyeket a beállításoknál kiválasztott."
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr ""
+"Állítsa le a futó tudományos alkalmazásokat a Managerből való kilépéskor"
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr ""
+"Emlékezzen erre a választásra és ne mutassa többé ezt a párbeszédablakot."
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "Mégsem"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
-msgstr ""
+msgstr "Ne mutassa ezt a párbeszédablakot újra."
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
-msgstr ""
+msgstr "&Bezárás"
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
-msgstr ""
+msgstr "Projekt tulajdonságok"
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "Általános"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
-msgstr ""
+msgstr "Master URL"
 
-#: clientgui/DlgItemProperties.cpp:107
-#, fuzzy
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
-msgstr "Felhasználói név:"
+msgstr "Felhasználónév:"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
-msgstr ""
+msgstr "Csapatnév"
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Erőforrásmegosztás"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
-msgstr ""
+msgstr "Ütemező RPC elhalasztva ennyi időre"
 
-#: clientgui/DlgItemProperties.cpp:114
-msgid "Non CPU intensive"
-msgstr ""
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr "Fájlok letöltése elhalasztva ennyi időre"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
-msgid "yes"
-msgstr ""
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr "Fájlok feltöltése elhalasztva ennyi időre"
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr "Számítógép azonosító (ID)"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+msgid "Non CPU intensive"
+msgstr "Nem processzorigényes"
+
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "yes"
+msgstr "igen"
+
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
-msgstr ""
+msgstr "nem"
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
-msgstr ""
+msgstr "Felfüggesztve a GUIn keresztül"
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
-msgstr ""
+msgstr "Ne kérjen több munkacsomagot"
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
-msgstr ""
+msgstr "Ütemező hívása folyamatban"
 
-#: clientgui/DlgItemProperties.cpp:118
-#, fuzzy
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
-msgstr "Csatlakozott a fiókkezelőhöz"
+msgstr "Csatlakozva fiókkezelőn keresztül"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr "Leválasztás, ha kész"
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
-msgstr ""
+msgstr "Véget ért"
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
-msgstr ""
+msgstr "Kredit"
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
-msgstr ""
+msgstr "Felhasználó"
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
-msgstr ""
+msgstr "Gép"
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
-msgstr ""
+msgstr "Ütemezés"
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
-msgstr ""
+msgstr "CPU ütemezési prioritás"
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
-msgstr ""
+msgstr "CPU munkabehívási prioritás"
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
-msgstr ""
+msgstr "CPU munka behívás elhalasztva ennyi időre"
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
-msgstr ""
+msgstr "CPU munka behívás elhalasztási intervalluma"
+
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr "nVidia GPU ütemezési prioritás"
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
-msgstr ""
+msgstr "nVidia GPU munkabehívási prioritás"
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
-msgstr ""
+msgstr "nVidia GPU munkabehívás elhalasztva ennyi időre"
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
-msgstr ""
+msgstr "nVidia GPU munkabehívás elhalasztási intervalluma"
+
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr "ATI GPU ütemezési prioritás"
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr "ATI GPU munkabehívási prioritás"
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr "ATI GPU munka behívás elhalasztva ennyi időre"
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr "ATI GPU munka behívás elhalasztási intervalluma"
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
-msgstr ""
+msgstr "Futási idő korrekciós faktor"
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
-msgstr ""
+msgstr "Feladat beállításai"
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Alkalmazás"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
-msgstr ""
+msgstr "Munkacsomag név"
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
-msgstr ""
+msgstr "Állapot"
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr "Fogadott"
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Jelentési határidő"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
-msgstr ""
+msgstr "Források"
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
-msgstr ""
+msgstr "CPU idő a legutóbbi ellenőrzőpontnál"
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "Processzor idő"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
-#, fuzzy
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 msgid "Elapsed time"
 msgstr "Eltelt idő"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
-msgstr ""
+msgstr "Becsült hátralévő idő"
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
-msgstr ""
+msgstr "Részlet elkészült"
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
-msgstr ""
+msgstr "Virtuális memória méret"
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
-msgstr ""
+msgstr "Kiosztott munkamemória"
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
-msgstr ""
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr "Könyvtár"
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr "Processz azonosító (ID)"
+
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Új"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "Sikertelen letöltés"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "Letöltés..."
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
-msgstr ""
+msgstr "Projekt felfüggesztése a felhasználó által"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
-msgstr ""
+msgstr "Feladat felfüggesztése a felhasználó által"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Felfüggesztve"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
-msgstr ""
+msgstr "- akkus üzemmódban"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
-msgstr ""
+msgstr "- felhasználó aktív"
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
-msgstr ""
+msgstr "- számítás felfüggesztve"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
-msgstr ""
+msgstr "- napszak"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
-#, fuzzy
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
-msgstr "Sebességmérés futtatása"
+msgstr "- CPU sebességmérés"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
-msgstr ""
+msgstr "- szükséges lemezterület"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
-msgstr ""
+msgstr "Várakozás memóriára"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
-msgstr ""
+msgstr "Várakozás megosztott memóriára"
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
-msgstr ""
+msgstr "Fut, magas prioritással"
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "Fut"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
-msgstr ""
+msgstr "Futásra várakozik"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
-msgstr ""
+msgstr "Indulásra kész"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Számolási hiba"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "Sikertelen feltöltés"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "Feltöltés..."
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Felhasználó által eldobva"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
-msgstr ""
+msgstr "Projekt által megszakítva"
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
-msgstr ""
+msgstr "Megszakítva"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Nyugtázott"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "Jelentésre kész"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Hiba: érvénytelen állapot \"%d\""
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
-msgstr ""
+msgstr "%s - Beállítások"
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
-msgstr ""
+msgstr "Nyelv:"
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
-msgstr ""
+msgstr "Melyik nyelvet használja a manager?"
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
 msgstr ""
+"Hálózati kapcsolat emlékeztető intervalluma:\n"
+"(perc)"
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr ""
+"Milyen gyakran emlékeztesse a Kezelő arra, hogy hálózati kapcsolat "
+"szükséges?"
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
-msgstr ""
+msgstr "Futassa a Kezelőt bejelentkezéskor?"
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
-msgstr ""
+msgstr "Futtassa a BOINC Kezelőt bejelentkezésekor."
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
-msgstr ""
+msgstr "Bekapcsolja a Kezelő kilépési párbeszédablakát?"
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
-msgstr ""
+msgstr "Megjeleníti a kilépési párbeszédablakot amikor leállítja a Kezelőt."
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "Betárcsázós és Virtuális Magán Hálózat (VPN) beállítások"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "Alapértelmezettként beállít"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "Alapértelmezett törlése"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Alapértelmezett kapcsolat:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Kapcsolatok"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Csatlakozás HTTP proxy szerveren keresztül"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "HTTP proxy szerver beállítás"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Cím:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Port:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
-msgstr ""
+msgstr "Ne használjon proxyt ehhez:"
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Csak szükség esetén töltse ki"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Felhasználói név:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Jelszó:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "HTTP proxy"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Csatlakozás SOCKS proxy szerveren keresztül"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "SOCKS proxy szerver beállítása"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "SOCKS proxy"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
 #, c-format
-#, fuzzy
 msgid "%s - Select Computer"
-msgstr "Számítógép kiválasztása"
+msgstr "%s - Számítógép kiválasztása"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Számítógépnév:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
-msgstr ""
+msgstr "%s - Nem található webböngésző"
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
+#, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1915,319 +2008,343 @@ msgid ""
 "BROWSER to the path of your web browser,\n"
 "then restart the %s."
 msgstr ""
+"%s megpróbálta megjeleníteni a weblapot\n"
+"\t%s\n"
+"de nem található webböngésző.\n"
+"Ennek kijavításához a BROWSER környezeti változóban\n"
+"állítsa be a webböngésző elérési útját,\n"
+"majd indítsa újra %s-t."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
-msgstr "Üzenőtáblák"
+msgstr "Üzenőfalak"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
-msgstr "A többi felhasználőval levelezhet  SETI at home üzenőtábláin"
+msgstr "Levelezés a többi felhasználóval a SETI at home üzenőfalain"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "Tegyen fel kérdéseit és jelentse a problémákat"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "Az Ön fiókja"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "Megnézheti a fiókjának adatait és az kredit összesítéseket"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "Az Ön beállításai"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr ""
 "Megnézheti és megváltoztathatja a SETI at home fiók profilját és beállításait"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "Az Ön eredményei"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr "Megnézheti a múlt (esetleg több) hét számítási eredményeit és munkáit"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "Az Ön számítógépei"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr ""
 "Megnézheti azon számítógépeinek listáját, amelyekkel Ön a SETI at home-hoz "
 "csatlakozott"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "Az Ön csapata"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "Megnézheti a csapatának adatait"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
-msgstr ""
+msgstr "Gyakori kérdések"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
-msgstr ""
+msgstr "Olvassa el az Einstein at Home Gyakran Ismételt Kérdések listáját"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
-msgstr ""
+msgstr "Képernyővédő infó"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
-msgstr ""
+msgstr "Olvassa el az Einstein at Home képernyővédőjének részletes leírását"
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr ""
+"Beszéljen az adminokkal és más felhasználókkal az Einstein at Home üzenőfalakon"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
-msgstr ""
+msgstr "Einstein állapota"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
-msgstr ""
+msgstr "Az Einstein at Home szerver jelenlegi állapota"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
-msgstr ""
+msgstr "Problémák bejelentése"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
-msgstr ""
+msgstr "Ez a link az Einstein at Home hibabejelentő üzenőfalára mutat"
 
-#: clientgui/Localization.cpp:83
-#, fuzzy
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
-msgstr ""
-"Megnézheti és megváltoztathatja a SETI at home fiók profilját és beállításait"
+msgstr "Az Einstein at Home fiók profiljának és beállításainak megtekintése"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
-msgstr ""
+msgstr "Fiók áttekintése"
 
-#: clientgui/Localization.cpp:95
-#, fuzzy
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr ""
-"Megnézheti azon számítógépeinek listáját, amelyekkel Ön a SETI at home-hoz "
-"csatlakozott"
+"Azon számítógépek listájának megtekintése, amelyekkel Ön az Einstein at Home-"
+"hoz csatlakozott"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
-msgstr ""
+msgstr "LIGO projekt"
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr ""
+"A Lézer-Interferometriás Gravitációshullám Obszervatórium (LIGO) projekt "
+"honlapja"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
-msgstr ""
+msgstr "GEO-600 projekt"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
-msgstr ""
+msgstr "A GEO-600 projekt honlapja"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Csapat"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
-msgstr ""
+msgstr "Infó az Ön csapatáról"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
-msgstr ""
+msgstr "Segítség kérése a climateprediction.net-hez"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
-#, fuzzy
+#: clientgui/Localization.cpp:125
 msgid "News"
-msgstr "Új"
+msgstr "Hírek"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
-msgstr ""
+msgstr "climateprediction.net hírek"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
-msgstr ""
+msgstr "Fiók-, és kreditinformációk megtekintése"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
-msgstr ""
+msgstr "Infó az Ön csapatáról"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
-msgstr ""
+msgstr "Segítség kell? Kattintson!"
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
-msgstr ""
+msgstr "Globális statisztikák"
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
-msgstr ""
+msgstr "Összegző statisztikák a World Community Grid-hez"
 
-#: clientgui/Localization.cpp:147
+# Ezt a francia fordításban találtam. De jobban hangzik, mint a Hálózatom, vagy valami hasonló... És bár jelentésében eltér, az értelme nem vész el.
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
-msgstr ""
+msgstr "Számításaim"
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
-msgstr ""
+msgstr "Az Ön statisztikái és beállításai"
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
-msgstr ""
+msgstr "Eszköz profilok"
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
-msgstr ""
+msgstr "Eszközbeállítások frissítése"
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
-msgstr ""
+msgstr "Kutatás"
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr ""
+"Tudjon meg többet azon projektekről, melyeknek a World Community Grid ad "
+"otthont"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
-msgstr ""
+msgstr "Kliensszolgáltatások indítása; kérem várjon..."
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "Rendszerállapot lekérdezése, kérem várjon..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "Gépre vonatkozó beállítások lekérdezése, kérem várjon..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "Nincs internetkapcsolat"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Kérem, kapcsolódjon az internetre, és próbálja úrja."
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Projekt nem található"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/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 ""
+"Az Ön által megadott URL nem egy BOINC-alapú projektre mutat.\n"
+"Kérjük, ellenőrizze az URL-t és próbálja újra."
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "Fiókkezelő nem található"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/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 ""
+"Az Ön által megadott URL nem egy BOINC-alapú fiókkezelőre mutat.\n"
+"\n"
+"Kérjük, ellenőrizze az URL-t és próbálja újra."
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
-msgstr ""
+msgstr "Bejelentkezés sikertelen."
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
-msgstr ""
+msgstr "Ellenőrizze a felhasználónevet és a jelszót, majd próbálja újra."
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
-msgstr ""
+msgstr "Ellenőrizze az emailcímet és a jelszót, majd próbálja újra."
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
-msgstr ""
+msgstr "Válasszon egy projektet"
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
+"Projekt választásához kattintson a projekt nevére\n"
+"vagy gépelje alább be az URL-jét."
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "Projekt URL:"
 
-#: clientgui/ProjectInfoPage.cpp:320
-msgid "You are already attached to this project. Please choose a different project."
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
 msgstr ""
+"Lehetséges, hogy ez a projekt nem tud munkát biztosítani az Ön "
+"számítógéptípusához. Biztosan folytatni akarja?"
 
-#: clientgui/ProjectInfoPage.cpp:321
-#, fuzzy
-msgid "Already Attached to Project"
-msgstr "Már csatlakozott a projekthez."
+#: clientgui/ProjectInfoPage.cpp:417
+msgid "You are already attached to this project. Please choose a different project."
+msgstr "Már csatlakozott ehhez a projekthez. Kérjük, válasszon másik projektet."
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
-msgstr ""
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr "Kattintás"
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
-msgstr ""
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr "Támogatja a többmagos CPU-kat"
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
-#, fuzzy
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr "Támogatja az nVidia GPU-kat"
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr "Támogatja az ATI GPU-kat"
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr "Projekt weboldala"
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
 msgstr ""
-"Kapcsolat a projekttel.\n"
-"Kérem várjon"
+"Kommunikáció projekttel\n"
+"Kérem várjon..."
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
 msgstr ""
+"A szükséges varázsló fájl(ok) nem találhatók a célszerveren.\n"
+"(lookup_accout.php/create_account.php)\n"
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
-msgstr ""
+msgstr "Hálózati kommunikációs hiba"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
+#, fuzzy
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2238,13 +2355,27 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
+"A World Community Grid - BOINC szoftver nem tudott kommunikálni\n"
+"az interneten keresztül. A legvalószínűbb okok:\n"
+"\n"
+"1) Kapcsolódási probléma. Ellenőrizze a hálózati, vagy modemes kapcsolatot,\n"
+"majd kattintson a Vissza gombra és próbálja újra.\n"
+"\n"
+"2) Személyes tűzfal szoftver blokkolja a World Community Grid - BOINC "
+"szoftvert. Állítsa be úgy a személyes tűzfalát, hogy az\n"
+"engedélyezze a BONIC és BOINC Kezelő kommunikációját a 80-as és a 443-as "
+"porton,\n"
+"majd kattintson a Vissza gombra és próbálja újra.\n"
+"\n"
+"3) Ön proxy szervert használ.\n"
+"Kattintson a Tovább gombra a BOINC proxybeállításainak módosításához."
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2260,495 +2391,486 @@ msgid ""
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
+"A BOINC nem tudott kommunikálni az interneten keresztül.\n"
+"A legvalószínűbb okok:\n"
+"\n"
+"1) Kapcsolódási probléma. Ellenőrizze a hálózati, vagy modemes kapcsolatot,\n"
+"majd kattintson a Vissza gombra és próbálja újra.\n"
+"\n"
+"2) Személyes tűzfal szoftver blokkolja a BOINCot. Állítsa be úgy a személyes "
+"tűzfalát, hogy az\n"
+"engedélyezze a BONIC és BOINC Kezelő kommunikációját a 80-as és a 443-as "
+"porton,\n"
+"majd kattintson a Vissza gombra és próbálja újra.\n"
+"\n"
+"3) Ön proxy szervert használ.\n"
+"Kattintson a Tovább gombra a BOINC proxybeállításainak módosításához."
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Proxy beállítás"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "HTTP proxy"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
-msgstr "Server:"
+msgstr "Szerver:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "Automatikus felismerés"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "SOCKS proxy"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr "Haladó nézet\tCtrl+Shift+A"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr "A Haladó (elérhető) grafikus felület megjelenítése"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
-msgstr ""
+msgstr "&%s"
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
-msgstr ""
+msgstr "Jelenlegi státusz betöltése."
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
-msgstr ""
+msgstr "Nincsenek projektjei. Kérjük, vegyen fel projektet."
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
-msgstr ""
+msgstr "Munka letöltése a szerverről."
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
-msgstr ""
+msgstr "Számítás felfüggesztve: Működés akkumulátorról."
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
-msgstr ""
+msgstr "Számítás felfüggesztve: a felhasználó aktív."
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
-msgstr ""
+msgstr "Számítás felfüggesztve: a felhasználó szünetelteti a számítást."
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
-msgstr ""
+msgstr "Számítás felfüggesztve: napszak"
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
-msgstr ""
+msgstr "Számítás felfüggesztve: sebességmérés fut."
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
-msgstr ""
+msgstr "Számítás felfüggesztve."
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
-msgstr ""
+msgstr "Várakozás a projekt szerverekkel való kapcsolatra."
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
-msgstr ""
+msgstr "Jelenlegi státusz betöltése"
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
-msgstr ""
+msgstr "Nincs feldolgozható munka"
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
-msgstr ""
+msgstr "A magklienshez való csatlakozás sikertelen"
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Projekt"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "Idő"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Ãœzenet"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Minden üzenet másolása a vágólapra."
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
-#, fuzzy
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 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 ""
-"A kiválasztott üzenetek másolása a vágólapra. Több üzenetek is kiváaszthat a "
-"SHIFT vagy CTRL gombok lenyomásával, miközben az üzenetekre kattint."
+"A kiválasztott üzenetek másolása a vágólapra. Több üzenetet is kiválaszthat, "
+"ha az üzenetkre történő kattintás közben nyomva tartja a Shift, vagy a "
+"parancsbillentyűt."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
-"A kiválasztott üzenetek másolása a vágólapra. Több üzenetek is kiváaszthat a "
-"SHIFT vagy CTRL gombok lenyomásával, miközben az üzenetekre kattint."
+"A kiválasztott üzenetek másolása a vágólapra. Több üzenetet is kiválaszthat, "
+"ha az üzenetkre történő kattintás közben nyomva tartja a Shift, vagy a Ctrl "
+"billentyűt."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
-msgstr ""
+msgstr "Segítség kérése a BOINChoz"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
-msgstr ""
+msgstr "%s - Ãœzenetek"
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
-msgstr ""
+msgstr "100 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
-msgstr ""
+msgstr "200 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
-msgstr ""
+msgstr "500 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
-msgstr ""
+msgstr "1 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
-msgstr ""
+msgstr "2 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
-msgstr ""
+msgstr "5 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
-msgstr ""
+msgstr "10 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
-msgstr ""
+msgstr "20 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
-msgstr ""
+msgstr "50 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
-msgstr ""
+msgstr "100 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
-msgstr ""
+msgstr "10%"
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
-msgstr ""
+msgstr "20%"
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
-msgstr ""
+msgstr "30%"
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
-msgstr ""
+msgstr "40%"
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
-msgstr ""
+msgstr "50%"
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
-msgstr ""
+msgstr "60%"
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
-msgstr ""
+msgstr "70%"
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
-msgstr ""
+msgstr "80%"
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
-msgstr ""
+msgstr "90%"
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
-msgstr ""
+msgstr "100%"
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
-msgstr ""
+msgstr "1"
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
-msgstr ""
+msgstr "3"
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
-msgstr ""
+msgstr "5"
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
-msgstr ""
+msgstr "10"
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
-msgstr ""
+msgstr "15"
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
-msgstr ""
+msgstr "30"
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
-msgstr ""
+msgstr "60"
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
-msgstr ""
+msgstr "Kinézet"
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
-msgstr ""
+msgstr "Kinézet:"
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
-msgstr ""
+msgstr "Beállítások"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
-msgstr ""
+msgstr "Szeretném csak ehhez a számítógéphez személyre szabni a beállításaimat."
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
-msgstr ""
+msgstr "Személyre szabott beállítások"
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
-msgstr ""
+msgstr "Csak ezen időtartamban dolgozzon:"
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
-msgstr ""
+msgstr "Csak ekkor csatlakozzon az internetre:"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
-msgstr ""
+msgstr "Ne használjon többet, mint:"
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
-msgstr ""
+msgstr "lemezterület"
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
-msgstr ""
+msgstr "processzorteljesítmény"
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
-msgstr ""
+msgstr "Folyjon feldolgozás, amikor akkumulátorról működik?"
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
-msgstr ""
-
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+msgstr "Dolgozzon, ha ennyi ideje tétlen:"
+
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
-msgstr ""
+msgstr "Bármikor"
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
-msgstr ""
+msgstr "%d MB"
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
-msgstr ""
+msgstr "%4.2f GB"
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
-msgstr ""
+msgstr "%d%%"
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
-msgstr ""
+msgstr "0 (Mindig fut)"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
-msgstr ""
+msgstr "%d"
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
-msgstr ""
+msgstr "Felfüggesztve: Másik munka fut"
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr ""
+"Felfüggesztve: Felhasználó által. Kattintson a 'Folytatás'-ra a folytatáshoz"
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
-msgstr ""
+msgstr "Felfüggesztve: Felhasználó aktív"
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
-msgstr ""
+msgstr "Felfüggesztve: A számítógép akkumulátorról működik"
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
-msgstr ""
+msgstr "Felfüggesztve: Napszak"
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
-msgstr ""
+msgstr "Felfüggesztve: Sebességmérés fut"
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
-msgstr ""
+msgstr "Felfüggesztve"
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
-msgstr ""
+msgstr "Felfüggesztve: Alkalmazásindítás elhalasztva"
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
-msgstr ""
+msgstr "Kattintson a projektgrafika mutatásához"
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
-msgstr ""
+msgstr "Csatlakozás egy további projekthez"
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
-msgstr ""
+msgstr "Projektek szinkronizálása a fiókkezelő rendszerrel"
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
-msgstr ""
+msgstr "Ablak nyitása az üzenetek megtekintéséhez"
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
-msgstr ""
+msgstr "Minden aktivitás leállítása"
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
-msgstr ""
+msgstr "Aktivitás folytatása"
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
-msgstr ""
+msgstr "Ablak nyitása a beállítások megváltoztatásához"
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
-msgstr ""
+msgstr "Váltás a BOINC haladó nézetére"
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
-msgstr ""
+msgstr "Projektjeim:"
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
-msgstr ""
+msgstr "%s. A munkát végezte: %s: %0.2f"
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
-msgstr ""
+msgstr "Projekt eltávolítása"
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "Biztos benne, hogy a(z) '%s' projektről leválasztja a számítógépet?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "Leválasztás a projektről"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
-msgstr ""
+msgstr "%.1lf"
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
-msgstr ""
+msgstr "%d óra %d perc %d mp"
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
-#, fuzzy
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr "Biztosan egy távoli gépen szeretné megjeleníteni a grafikus ablakot?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Grafikus ablak megjelenítése"
 
-#: clientgui/sg_ViewTabPage.cpp:444
-#, fuzzy
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
-msgstr "Alkalmazás"
+msgstr "Alkalmazás:"
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
-msgstr ""
+msgstr "Hátralévő idő:"
 
-#: clientgui/sg_ViewTabPage.cpp:450
-#, fuzzy
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
-msgstr "Eltelt idő"
+msgstr "Eltelt idő:"
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
-msgstr ""
+msgstr "Felhasználási feltételek"
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
-msgstr ""
+msgstr "Kérjük olvassa el az alábbi felhasználási feltételeket:"
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
-msgstr ""
+msgstr "Elfogadom a felhasználási feltételeket."
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
-msgstr ""
+msgstr "Nem fogadom el a felhasználási feltételeket."
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Projekt ideiglenesen nem elérhető"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2758,11 +2880,11 @@ msgstr ""
 "\n"
 "Kérem, próbálja úrja. "
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "Fiókkezelő ideiglenesen nem elérhető"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2772,32 +2894,32 @@ msgstr ""
 "\n"
 "Kérem, próbálja úrja. "
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "Kérem adjon meg egy fiókulcsot a folytatásahot"
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr "Érvénytelen fiókkulcs, kérem, adjon meg egy érvényes fiókkulcsot"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Ellenőrzési hiba"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
-msgstr ""
+msgstr "Kérjük, adja meg email címét"
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
-msgstr ""
+msgstr "Érvénytelen email cím; kérjük, adjon meg egy érvényes címet"
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "Hiányzó URL"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2807,803 +2929,731 @@ msgstr ""
 "Például:\n"
 "http://www.pelda.hu/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "Érvénytelen URL"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
-#, fuzzy
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
 "http://boincproject.example.com"
 msgstr ""
-"Kérem adjon meg egy érvényes számítógépnevet.\n"
+"Kérem adjon meg egy érvényes URL-t.\n"
 "Például:\n"
-"boincprojekt.pelda.hu"
+"http://boincprojekt.pelda.hu"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "\"%s\" nem tartalmaz érvényes gépnevet."
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "\"%s\" nem tartalmaz érvényes útvonalat."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
-#, fuzzy
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
-msgstr "Parancsok"
+msgstr "Utasítások"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Minden üzenet másolása"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Kijelölt üzenetek másolása"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
-msgstr ""
+msgstr "Csak ezt a projektet mutassa"
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
-msgstr ""
+msgstr "Csak a kiválasztott projekt üzeneteit mutassa"
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Ãœzenetek"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "Minden üzenet másolása a vágólapra..."
 
-#: clientgui/ViewMessages.cpp:223
-#, fuzzy
+#: clientgui/ViewMessages.cpp:223
 msgid "Copying selected messages to the clipboard..."
-msgstr "Minden üzenet másolása a vágólapra..."
+msgstr "Kiválasztott üzenetek másolása a vágólapra..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
-msgstr ""
+msgstr "Üzenetek szűrése..."
 
-#: clientgui/ViewMessages.cpp:494
-#, fuzzy
+#: clientgui/ViewMessages.cpp:494
 msgid "Show all messages"
-msgstr "Minden üzenet másolása"
+msgstr "Minden üzenet mutatása"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
-msgstr ""
+msgstr "Az összes projekt üzeneteinek mutatása."
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
-msgstr ""
+msgstr "Prioritás"
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
-msgstr ""
+msgstr "ÜzenetHáló"
 
-#: clientgui/ViewMessagesGrid.cpp:209
-#, fuzzy
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
-msgstr "Minden üzenet másolása a vágólapra..."
+msgstr "Kiválasztott üzenetek másolása a vágólapra..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
-msgstr ""
+msgstr "Infó"
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
-msgstr ""
+msgstr "Figyelmeztetés"
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
-msgstr ""
+msgstr "Hiba"
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
-msgstr ""
+msgstr "Hírfolyam "
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
-msgstr ""
+msgstr "BOINC"
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
-msgstr ""
+msgstr "Megjeleníti a legfrissebb BOINC híreket"
 
-#: clientgui/ViewNews.cpp:87
-#, fuzzy
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
-msgstr "BOINC weboldala"
+msgstr "BOINC weboldal"
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr ""
+"A BOINC weboldaláról megjeleníti a BOINC-kal kapcsolatos legfrissebb "
+"híreket."
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Frissítés"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
-#, fuzzy
+#: clientgui/ViewProjects.cpp:174
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr ""
-"Befejezett munkák jelentése, legutóbbi kreditek és beállítások letöltése, és "
-"talán új munka letöltése."
-
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+"Minden befejezett munka jelentése, legutóbbi kreditek és beállítások "
+"letöltése, és a rendelkezésre álló új munka letöltése."
+
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Felfüggesztés"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
-#, fuzzy
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
-msgstr "A projekt munkáinak felfüggesztése."
-
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+msgstr "E projekt munkáinak felfüggesztése."
+
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
-msgstr ""
+msgstr "Nem kér több munkacsomagot"
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
-#, fuzzy
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
-msgstr "A projekthez nem tölt le új munkát."
+msgstr "Ne töltsön le ehhez a projekthez új munkát."
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Projekt nullázása"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
-#, fuzzy
+#: clientgui/ViewProjects.cpp:195
 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 ""
 "A projekthez kapcsolódó összes fájl és munka törlése, és új munka kérése. "
 "Először frissítse a projektet, hogy az összes elkészült munkát jelentse."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Leválasztás"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr ""
 "A számítógép leválasztása a projektről. Folyamatban lévő munka elveszik "
 "(először használja a 'Frissítés'-t, hogy az összes elkészült munkát "
 "jelentse)."
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
-msgstr ""
+msgstr "Tulajdonságok"
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
-msgstr ""
+msgstr "Mutassa meg a projekt részleteit."
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Fiók"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
-msgstr ""
+msgstr "Elkészült munka"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
-msgstr ""
+msgstr "Átlag elkészült munka"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Állapot"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Projektek"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "Projekt frissítése..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "Projekt folytatása..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "Projekt felfüggesztése..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
-#, fuzzy
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
-msgstr "A projekt tájékoztatása, hogy további munka letöltése engedélyezett..."
+msgstr ""
+"A projekt tájékoztatása, hogy további feladat letöltése engedélyezett..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
-#, fuzzy
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr ""
-"A projekt tájékoztatása, hogy további munka letöltése nem engedélyezett..."
+"A projekt tájékoztatása, hogy további feladat letöltése nem engedélyezett..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "Projekt nullázása..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Biztos benne, hogy a(z) \"%s\" projektet nullázza?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Projekt nullázása"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "Leválasztás a projektről..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "Böngésző indítása..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Folyatás"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#, fuzzy
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
-msgstr "A projekt munkáinak folytatása."
+msgstr "E projekt munkáinak folytatása."
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
-msgstr ""
+msgstr "Új munkacsomagok engedélyezése"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
-#, fuzzy
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
-msgstr "Engedélyezi az új munka letöltését a projekthez."
+msgstr "Engedélyezi az új munkacsomag letöltését ehhez a projekthez."
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
-#, fuzzy
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
-msgstr "Letiltja az új munka letöltését a projekthez."
+msgstr "Ne töltsön le új munkacsomagot ehhez a projekthez."
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Felhasználó által felfüggesztve"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
-#, fuzzy
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
-msgstr "Nem tölt le új munkát"
+msgstr "Nem tölt le új munkacsomagot"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr "A projekt befejeződött - nyomjon OK-t a leválasztáshoz"
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
-msgstr "Leválasztás a munkák befejezésekor"
+msgstr "Leválasztás a munkacsomgok befejezésekor"
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Függő kérés az ütemezőhöz"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
-msgstr ""
+msgstr "Folyamatban lévő kérés az ütemezőhöz"
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
-msgstr "Kommunikáció elhalsztva "
+msgstr "Kommunikáció elhalasztva "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
-msgstr ""
+msgstr "Projekt hálózat"
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
-msgstr ""
+msgstr "Teljes lemez felhasználás"
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
-msgstr ""
+msgstr "BOINC projektek lemez felhasználása"
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Lemez"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
-msgstr ""
+msgstr "nem csatlakozik egy BOINC projekthez sem: 0 bájt"
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
-msgstr ""
+msgstr "BOINC által:"
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
-msgstr ""
+msgstr "szabad, a BOINC számára elérhető:"
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
-msgstr ""
+msgstr "szabad, a BOINC számára nem elérhető:"
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
-msgstr ""
+msgstr "szabad:"
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
-msgstr ""
+msgstr "más programok által használt:"
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Felhasználó - Összes kredit"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Felhasználó - Átlag kredit"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Számítógép - Összes kredit"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Számítógép - Átlag kredit"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
-msgstr ""
+msgstr "Legutóbbi frissítés: %0f nappal ezelőtt"
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Felhasználó - Összes kredit"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
-msgstr ""
+msgstr "A felhasználó - összes kreditjének megjelenítése"
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "Felhasználó - Átlag kredit"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
-msgstr ""
+msgstr "A felhasználó átlagos kreditjének megjelenítése"
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Számítógép - Összes kredit"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
-msgstr ""
+msgstr "A számítógép összes kreditjánek megjelenítése"
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "Számítógép - Átlag kredit"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
-msgstr ""
+msgstr "A számítógép átlagos kreditjének megjelenítése"
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
-msgstr ""
+msgstr "< &Előző projekt"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
-msgstr ""
+msgstr "Az előző projekt táblázatának megjelenítése"
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
-msgstr ""
+msgstr "&Következő projekt >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
-msgstr ""
+msgstr "A következő projekt táblázatának megjelenítése"
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
-msgstr ""
+msgstr "Megjelenítési mód"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
-msgstr ""
+msgstr "Minden projekt"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
-msgstr ""
+msgstr "Minden projekt megjelenítése, egy táblázat projektenként"
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
-msgstr ""
+msgstr "Egy projekt"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
-msgstr ""
+msgstr "Egy táblázat megjelenítése a kiválasztott projekt adataival"
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
-msgstr ""
+msgstr "Minden projekt (összegzés)"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
-msgstr ""
+msgstr "Egy táblázat megjelenítése az összes projekt adataival"
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Statisztika"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "Grafikonok frissítése..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Próbálja most"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "Kattintson a \"Próbálja most\" gombra, hogy a fájl átvitelét megkezdje"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Átvitel megszakítása"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr ""
 "Kattintson a \"Átvitel megszakítása\" gombra, hogy törölje a fájlt az átviteli "
 "sorból. Ez megakadályozza, hogy a munkáért kreditet kapjon."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "Fájl"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Feldolgozottság"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Méret"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "Eltelt idő"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Sebesség"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Adatforgalom"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "Próbálkozás az átvitellel..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "Átvitel megszakítása..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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 ""
+"Biztosan félbeszakítja a '%s' fájlátvitelt?\n"
+"MEGJEGYZÉS: Az átvitel megszakítása érvényteleníti a feladatot,\n"
+"így nem jár érte kredit."
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Adatátvitel megszakítása"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "Újrapróbálás..."
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
-msgstr ""
+msgstr "Feltöltés függőben"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
-msgstr ""
+msgstr "Letöltés függőben"
+
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr "(projekt leállás:"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ")"
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
-msgstr ""
+msgstr "ÁtvitelHáló"
 
-#: clientgui/ViewTransfersGrid.cpp:228
-#, fuzzy
+#: clientgui/ViewTransfersGrid.cpp:228
 msgid "Aborting transfer(s)..."
-msgstr "Átvitel megszakítása..."
+msgstr "Átvitel(ek) megszakítása..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
 "will not receive credit for it."
 msgstr ""
+"Biztosan megszakítja ez(eke)t az átvitel(eke)t?\n"
+"MEGJEGYZÉS: Az átvitel megszakítása érvényteleníti a feladatot,\n"
+"így nem jár érte kredit."
 
-#: clientgui/ViewTransfersGrid.cpp:231
-#, fuzzy
+#: clientgui/ViewTransfersGrid.cpp:231
 msgid "Abort File Transfer(s)"
-msgstr "Adatátvitel megszakítása"
+msgstr "Fájlátvitel(ek) megszakítása"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr "Aktív feladatok mutatása"
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr "Csak az aktív feladatokat mutassa"
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "Az alkalmazás grafikájának megjelenítése egy új ablakban."
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "Munka felfüggesztése a jelen csomagon."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Eldobás"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr "Jelen csomag eldobása. Nem fog kreditet kapni érte."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
-msgstr ""
+msgstr "Mutassa meg a munkacsomag részleteit."
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Név"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
-msgstr ""
+msgstr "Eltelt idő"
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
-msgstr "Idő a befejezésig"
+msgstr "Hátralévő idő"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Feladatok"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
-msgstr ""
+msgstr "Munka folytatása..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
-#, fuzzy
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
-msgstr "Munka felfüggesztése a jelen csomagon..."
+msgstr "Feladat felfüggesztése..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
-#, fuzzy
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
-msgstr "A jelen csomag grafikájának megjelenítése..."
-
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Csomag eldobása..."
+msgstr "A feladat grafikájának megjelenítése..."
 
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
 msgstr ""
+"Biztosan megszakítja '%s' feladatot?\n"
+"(Állapot: %s, Státusz: %s)"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "Biztosan eldobja %s feladato(ka)t?"
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
-msgstr ""
+msgstr "Feladat megszakítása"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
-#, fuzzy
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Csomag eldobása..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr "Mutassa az összes feladatot"
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr "Mutassa az összes feladatot."
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
-msgstr "Munka folytatása a jelen csomagon."
+msgstr "Munka folytatása a jelen feladaton."
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
-#, fuzzy
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
-msgstr "Munka felfüggesztése a jelen csomagon."
+msgstr "Munka felfüggesztése a jelen feladaton."
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr "Grafikus processzor nincs"
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
-msgstr ""
+msgstr "- egy kizárólagos alkalmazás fut"
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
-msgstr ""
+msgstr "(nem processzor igényes)"
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr "Megszakítva: nem indult el határidőig"
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
-msgstr ""
+msgstr "FeladatHáló"
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
 msgstr ""
+"Biztos, hogy meg akarja szakítani ezt a feladatot '%s'?\n"
+"(Feldolgozottság: %s %%, Állapot: %s)"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
-msgstr ""
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr "Csatlakozás projekthez vagy fiókkezelőhöz"
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3611,15 +3661,21 @@ msgid ""
 "Projects added via this wizard will not be\n"
 "listed on or managed via %s."
 msgstr ""
+"Amennyiben lehetséges, projekteket\n"
+"a %s weboldalon adjon hozzá.\n"
+"\n"
+"A varázslóval hozzáadott projektek nem lesznek\n"
+"láthatóak vagy kezelhetőek a(z) %s kezelővel."
 
-#: clientgui/WelcomePage.cpp:350
-#, fuzzy
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
-msgstr "Most lépésről-lépésre segítjük egy projekhez való csatlakozásban."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
+"Most lépésről-lépésre végigvezetjük egy\n"
+"projekthez vagy fiókkezelőhöz való csatlakozás folyamatán."
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3634,137 +3690,292 @@ msgid ""
 "To change which research applications are sent to you from\n"
 "World Community Grid then please click on the following button:"
 msgstr ""
+"Úgy döntött, hogy csatlakozik egy új BOINC projekthez. Az új projekthez\n"
+"való csatlakozás során számítógépét egy új weboldalhoz, illetve\n"
+"szervezethez csatlakoztatja. Ha valóban ezt akarja, nyomja meg az\n"
+"alábbi 'Következő' gombot.\n"
+"\n"
+"Néhány projekt, mint például a World Community Grid többféle tudományos "
+"alkalmazást\n"
+"is futtat. Ha meg akarja határozni, mely alkalmazások fussanak számítógépén,\n"
+"látogassa meg a projekt weboldalát, és ott módosítsa a beállításait.\n"
+"\n"
+"A tudományos alkalmazások kiválasztásához a World Community Griden\n"
+"kattintson a következő gombra:"
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-#, c-format
-#, fuzzy
-msgid "&Stop using%s"
-msgstr "%s használatának &befejezése..."
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr "Tudományos alkalmazások kiválasztása a World Community Griden"
 
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
+#: clientgui/WelcomePage.cpp:301
+msgid "To continue, click Next."
+msgstr "A folytatáshoz kattintson a Következő gombra."
 
-#: clientgui/WelcomePage.cpp:380
-#, fuzzy
-msgid "Account manager"
-msgstr "Fiókkezelő"
+#: clientgui/WizardAttachProject.cpp:610
+msgid "Do you really want to cancel?"
+msgstr "Tényleg meg akarja szakítani?"
 
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
+#: clientgui/WizardAttachProject.cpp:611
+msgid "Question"
+msgstr "Kérdés"
 
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "Hibaszűrési jelzés"
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
+msgid "&Next >"
+msgstr "Előre >"
 
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "Projekt beállítások hiba"
+#: clientgui/wizardex.cpp:383
+msgid "< &Back"
+msgstr "< Vissza"
 
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr ""
+#: clientgui/wizardex.cpp:553
+msgid "&Finish"
+msgstr "Befejez"
 
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "Projekt beállítások URL hiba"
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
+msgid "New page inserted. Index = %i"
+msgstr "Új oldal beillesztve. Index = %i"
 
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "Fióklétrehozás letiltva"
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
+msgid "New page appended. Index = %i"
+msgstr "Új oldal hozzáfűzve. Index = %i"
 
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "Kliensfiók-létrehozás letiltva"
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
+msgid "Old Page Index = %i"
+msgstr "Régi oldal index = %i"
 
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "Fiók már létezik"
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
+msgid "OnDropTarget: index by HitTest = %i"
+msgstr "OnDropTarget: index by HitTest = %i"
 
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "Már csatlakozott a projekthez"
+#: clientgui/common/wxPieCtrl.cpp:66
+msgid "Pie Ctrl"
+msgstr "Kördiagram kontroll"
 
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "Projekt csatlakozási hiba"
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "Hálózat felismerési hiba"
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr "üres"
 
-#: clientgui/WelcomePage.cpp:427
-msgid "To continue, click Next."
-msgstr "A folytatáshoz kattintson az Előre gomba"
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
-msgid "Do you really want to cancel?"
-msgstr "Tényleg meg akarja szakítani?"
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
-msgid "Question"
-msgstr "Kérdés"
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
-msgid "&Next >"
-msgstr "Előre >"
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
 
-#: clientgui/wizardex.cpp:408
-msgid "< &Back"
-msgstr "< Vissza"
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
 
-#: clientgui/wizardex.cpp:604
-msgid "&Finish"
-msgstr "Befejez"
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
-msgid "New page inserted. Index = %i"
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
-msgid "New page appended. Index = %i"
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
-msgid "Old Page Index = %i"
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
-msgid "OnDropTarget: index by HitTest = %i"
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
 msgstr ""
 
-#: clientgui/common/wxPieCtrl.cpp:66
-msgid "Pie Ctrl"
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr ""
+"Állítsa be munka kezdeti és befejezési óráját a következő formátumban: "
+"ÓÓ:PP-ÓÓ:PP"
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr ""
+"Állítsa be hálózathasználat kezdeti és befejezési óráját a következő "
+"formátumban: ÓÓ:PP-ÓÓ:PP"
+
+#~ msgid "&Close Window\tCTRL+W"
+#~ msgstr "Ablak &bezárása\tCtrl+W"
+
+#~ msgid "&Projects\tCTRL+SHIFT+P"
+#~ msgstr "&Projektek\tCtrl+Shift+P"
+
+#~ msgid "&Tasks\tCTRL+SHIFT+T"
+#~ msgstr "&Feladatok\tCtrl+Shift+T"
+
+#~ msgid "Trans&fers\tCTRL+SHIFT+X"
+#~ msgstr "Át&vitelek\tCtrl+Shift+X"
+
+#~ msgid "&Messages\tCTRL+SHIFT+M"
+#~ msgstr "&Ãœzenetek\tCtrl+Shift+M"
+
+#~ msgid "&Statistics\tCTRL+SHIFT+S"
+#~ msgstr "&Statisztikák\tCtrl+Shift+S"
+
+#~ msgid "&Disk usage\tCTRL+SHIFT+D"
+#~ msgstr "&Lemezhasználat\tCtrl+Shift+D"
+
+#~ msgid "&News\tCTRL+SHIFT+N"
+#~ msgstr "&Hírek\tCtrl+Shift+N"
+
+#~ msgid "Display news"
+#~ msgstr "Hírek megjelenítése"
+
+#~ msgid "Simple &View...\tCTRL+SHIFT+V"
+#~ msgstr "&Egyszerű nézet\tCtrl+Shift+V"
+
+#~ msgid ""
+#~ "You currently are not authorized to manage the client.\n"
+#~ "Please contact your administrator to add you to the 'boinc_master' user "
+#~ "group."
+#~ msgstr ""
+#~ "Jelenleg nincs jogosultsága a kliens kezelésére.\n"
+#~ "Kérjük, lépjen kapcsolatba a rendszergazdával és kérje meg, hogy adja "
+#~ "hozzá a\n"
+#~ "'boinc_master' felhasználói csoporthoz."
+
+#~ msgid ""
+#~ "BOINC ownership or permissions are not set properly; please reinstall "
+#~ "BOINC.\n"
+#~ "(Error code %d)\n"
+#~ msgstr ""
+#~ "A BOINC tulajdonjoga és hozzáférései nincsenek megfelelően beállítva; "
+#~ "kérjük, telepítse újra a BOINCot.\n"
+#~ "(Hibakód: %d)\n"
+
+#~ msgid "Advanced View...\tCTRL+SHIFT+A"
+#~ msgstr "Haladó nézet...\tCtrl+Shift+A"
+
+#~ msgid "User information"
+#~ msgstr "Felhasználói információ"
+
+#~ msgid "Account Manager URL"
+#~ msgstr "Fiókkezelő URL-je"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "Adja meg a fiókkezelő weboldalának URL-jét."
+
+#~ msgid "Close BOINC Manager Window."
+#~ msgstr "A BOINC kezelő ablakának bezárása."
+
+#~ msgid "Exit the %s"
+#~ msgstr "Kilépés ebből: %s"
+
+#~ msgid ""
+#~ "Advanced views allow you to sort various columns and displays graphical "
+#~ "progress bars."
+#~ msgstr ""
+#~ "Haladó nézetben különböző oszlopok szerint rendezheti listáit, a "
+#~ "folyamatokról állapotjelzők segítségével szerezhet információkat."
+
+#~ msgid "Attach to a project"
+#~ msgstr "Csatlakozás egy projekthez"
+
+#~ msgid "Attach to &account manager..."
+#~ msgstr "Csatlakozás &fiókkezelőhöz..."
+
+#~ msgid "Attach to an account manager"
+#~ msgstr "Csatlakozás egy fiókkezelőhöz"
+
+#~ msgid "Attach to &project"
+#~ msgstr "Csatlakozás &projekthez"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "Csatlakozás egy projekthez"
+
+#, fuzzy
+#~ msgid "Already Attached to Project"
+#~ msgstr "Már csatlakozott a projekthez."
+
+#, fuzzy
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr "Most lépésről-lépésre segítjük egy projekhez való csatlakozásban."
+
+#, fuzzy
+#~ msgid "&Stop using%s"
+#~ msgstr "%s használatának &befejezése..."
+
+#, fuzzy
+#~ msgid "Account manager"
+#~ msgstr "Fiókkezelő"
+
+#~ msgid "Debug Flags"
+#~ msgstr "Hibaszűrési jelzés"
+
+#~ msgid "Project Properties Failure"
+#~ msgstr "Projekt beállítások hiba"
+
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "Projekt beállítások URL hiba"
+
+#~ msgid "Account Creation Disabled"
+#~ msgstr "Fióklétrehozás letiltva"
+
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "Kliensfiók-létrehozás letiltva"
+
+#~ msgid "Account Already Exists"
+#~ msgstr "Fiók már létezik"
+
+#~ msgid "Project Already Attached"
+#~ msgstr "Már csatlakozott a projekthez"
+
+#~ msgid "Project Attach Failure"
+#~ msgstr "Projekt csatlakozási hiba"
+
+#~ msgid "Net Detection Failure"
+#~ msgstr "Hálózat felismerési hiba"
 
 #~ msgid ""
 #~ "You can copy and paste the URL from your browser's\n"
@@ -3798,8 +4009,10 @@ msgstr ""
 #~ "Transition Note: Account keys are used as passwords for accounts created\n"
 #~ "before BOINC migrated to a username and password authentication scheme."
 #~ msgstr ""
-#~ "Átmeneti megjegyzés: Korábban létrehozott fiókokhoz a BOINC fiókkulcsokat, mint\n"
-#~ "jelszavakat használt, a jelenlegi felhasználónévvel és jelszóval történő azonosítás helyett."
+#~ "Átmeneti megjegyzés: Korábban létrehozott fiókokhoz a BOINC "
+#~ "fiókkulcsokat, mint\n"
+#~ "jelszavakat használt, a jelenlegi felhasználónévvel és jelszóval történő "
+#~ "azonosítás helyett."
 
 #~ msgid "Create new &account"
 #~ msgstr "Új fiók létrehozása"
@@ -3858,7 +4071,9 @@ msgstr ""
 #~ msgid "&About BOINC Manager..."
 #~ msgstr "BOINC kezelő névjegye..."
 
-#~ msgid "A software platform for distributed computing using volunteered computer resources"
+#~ msgid ""
+#~ "A software platform for distributed computing using volunteered computer "
+#~ "resources"
 #~ msgstr ""
 #~ "Egy szoftveres felület az adományozott számítógépes erőforrások\n"
 #~ "felhasználására az elosztott számítástechnikában."
@@ -3890,8 +4105,12 @@ msgstr ""
 #~ msgid "Reminder Frequency:"
 #~ msgstr "Emlékeztető gyakorisága:"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
-#~ msgstr "Milyen gyakran emlékeztesse a kezelő Önt a lehetséges kapcsolódási eseményekre (percekben)."
+#~ msgid ""
+#~ "How often, in minutes, should the manager remind you of possible "
+#~ "connection events."
+#~ msgstr ""
+#~ "Milyen gyakran emlékeztesse a kezelő Önt a lehetséges kapcsolódási "
+#~ "eseményekre (percekben)."
 
 #~ msgid "&Automatically detect network connection settings"
 #~ msgstr "Automatikusan ismerje fel a hálózati beállításokat"
@@ -3900,7 +4119,8 @@ msgstr ""
 #~ msgstr "Használja a Helyi hálózati (LAN) kapcsolatot"
 
 #~ msgid "Use my &Dial-up and Virtual Private Network connection"
-#~ msgstr "Használja a Betárcsázós és Virtuális Mangán Hálózat (VPN) kapcsolatot"
+#~ msgstr ""
+#~ "Használja a Betárcsázós és Virtuális Mangán Hálózat (VPN) kapcsolatot"
 
 #~ msgid "&Prompt for username and password"
 #~ msgstr "Felhasználói név és jelszó kérése"
@@ -3908,7 +4128,6 @@ msgstr ""
 #~ msgid "Failed to create wxStaticText, needed by wxHyperLink!"
 #~ msgstr "Nem sikerült a wxHyperLink által kért wxStaticText létrehozása!"
 
-#, c-format
 #~ msgid ""
 #~ "BOINC could not determine what your default browser is.\n"
 #~ "Please verify that you have either the 'mailcap' package installed or\n"
@@ -3920,9 +4139,12 @@ msgstr ""
 #~ "%s"
 #~ msgstr ""
 #~ "BOINC nem tudta meghatározni az Ön alapértelmezett böngészőjét.\n"
-#~ "Kérem elleneőrizze, hogy a \"mailcap\" vagy a \"mime\" csomag talapítve van,\n"
-#~ "és azt hogy a \"text/html\" mime típus be van állítva a kedvenc bögészőjében.\n"
-#~ "Másik lehetőség, hogy a BROWSER környezeti változóban beállítja tetszőleges\n"
+#~ "Kérem elleneőrizze, hogy a \"mailcap\" vagy a \"mime\" csomag talapítve "
+#~ "van,\n"
+#~ "és azt hogy a \"text/html\" mime típus be van állítva a kedvenc "
+#~ "bögészőjében.\n"
+#~ "Másik lehetőség, hogy a BROWSER környezeti változóban beállítja "
+#~ "tetszőleges\n"
 #~ "kedvenc böngészőjét.Kérem nyissa meg a böngészőjében az alábbi URL-t:\n"
 #~ "\n"
 #~ "%s"
@@ -3948,8 +4170,12 @@ msgstr ""
 #~ msgid "Retry &communications"
 #~ msgstr "Kapcsolódás újra"
 
-#~ msgid "Report completed work, get latest credit, get latest preferences, and possibly get more work."
-#~ msgstr "Befejezett munka jelentése, legutóbbi kreditek és beállítások letöltése, és talán új munka letöltése."
+#~ msgid ""
+#~ "Report completed work, get latest credit, get latest preferences, and "
+#~ "possibly get more work."
+#~ msgstr ""
+#~ "Befejezett munka jelentése, legutóbbi kreditek és beállítások letöltése, "
+#~ "és talán új munka letöltése."
 
 #~ msgid "&Options"
 #~ msgstr "Beállítások"
@@ -3969,8 +4195,12 @@ msgstr ""
 #~ msgid "BOINC Manager - Network Status"
 #~ msgstr "BOINC kezelő - Hálózat állapota"
 
-#~ msgid "BOINC needs a connection to the Internet to perform some maintenance, open the BOINC Manager to connect up and perform the needed work."
-#~ msgstr "BOINC-nak szüksége van internetkapcsolatra, nyissa meg a BOINC kezelőt a kapcsolódáshoz és a szükséges munka elvégzéséhez."
+#~ msgid ""
+#~ "BOINC needs a connection to the Internet to perform some maintenance, "
+#~ "open the BOINC Manager to connect up and perform the needed work."
+#~ msgstr ""
+#~ "BOINC-nak szüksége van internetkapcsolatra, nyissa meg a BOINC kezelőt a "
+#~ "kapcsolódáshoz és a szükséges munka elvégzéséhez."
 
 #~ msgid "The URL you supplied is not that of a BOINC-based project."
 #~ msgstr "Az Ön által megadott URL-en nem található BOINC-projekt."
@@ -4013,7 +4243,6 @@ msgstr ""
 #~ msgid "Disk Space"
 #~ msgstr "Lemezterület"
 
-#, c-format
 #~ msgid "Are you sure you want to abort this file transfer '%s'?"
 #~ msgstr "Biztosan megszakítja a(z) \"%s\" fájl átvitelét?"
 
@@ -4023,10 +4252,6 @@ msgstr ""
 #~ msgid "Resuming result..."
 #~ msgstr "Munka folytatása a jelen csomagon..."
 
-#, c-format
-#~ msgid "Are you sure you want to abort this result '%s'?"
-#~ msgstr "Biztosan eldobja a(z) \"%s\" csomagot?"
-
 #~ msgid "Abort result"
 #~ msgstr "Csomag eldobása"
 
@@ -4042,11 +4267,6 @@ msgstr ""
 #~ msgid "Activities suspended by user"
 #~ msgstr "Tevékenység felfüggesztve a felhasználó által"
 
-#~ msgid ""
-#~ "We'll now guide you through the process of attaching to an\n"
-#~ "account manager."
-#~ msgstr "Most lépésről-lépésre segítjük egy fiókkezelőhöz való csatlakozásban."
-
 #~ msgid "Project Comm Failure"
 #~ msgstr "Projekt kommunikciós hiba"
 
@@ -4073,3 +4293,9 @@ msgstr ""
 
 #~ msgid "Options"
 #~ msgstr "Beállítások"
+
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "Ablak &bezárása\tCtrl+W"
+
+#~ msgid "&News\tCtrl+Shift+N"
+#~ msgstr "&News\tCtrl+Shift+N"
diff --git a/locale/hu/BOINC-Project-Generic.po b/locale/hu/BOINC-Project-Generic.po
index 3909f2b..49ecd4d 100644
--- a/locale/hu/BOINC-Project-Generic.po
+++ b/locale/hu/BOINC-Project-Generic.po
@@ -3,12 +3,12 @@ msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: BOINC translation team <translate at boinc.berkeley.edu>\n"
 "POT-Creation-Date: 2009-05-09 21:36 PDT\n"
-"PO-Revision-Date: 2009-05-24 03:28-0700\n"
+"PO-Revision-Date: 2010-03-29 07:13-0700\n"
 "Last-Translator: Gabor Cseh <csega at mailbox.hu>\n"
 "Language-Team: \n"
 "Language: hu\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n !=1);\n"
 "X-Generator: Pootle 1.2.1\n"
@@ -29,12 +29,12 @@ msgstr "Keresés a fórumokban"
 msgid "Advanced search"
 msgstr "Részletes keresés"
 
-#########################################
+# ########################################
 # Private messages
 msgid "Private messages"
 msgstr "Személyes üzenetek"
 
-#########################################
+# ########################################
 # Links from the main page
 msgid "Questions and Answers"
 msgstr "Kérdések és válaszok"
@@ -65,7 +65,7 @@ msgstr ""
 msgid "Thread"
 msgstr "Téma"
 
-#########################################
+# ########################################
 # Forum
 msgid "Posts"
 msgstr "Ãœzenetek"
@@ -123,73 +123,76 @@ msgid "unread"
 msgstr "olvasatlan"
 
 msgid "Edit your profile"
-msgstr ""
+msgstr "Profil szerkesztése"
 
 msgid "Your feedback on this profile"
-msgstr ""
+msgstr "Visszajelzése ehhez a profilhoz"
 
 msgid "Recommend this profile for User of the Day:"
-msgstr ""
+msgstr "Javasolja ezt a profilt a Nap felhasználójának:"
 
 msgid "I %1like%2 this profile"
-msgstr ""
+msgstr "%1Tetszik%2 ez a profil"
 
 msgid "Alert administrators to an offensive profile:"
-msgstr ""
+msgstr "Adminisztrátorok értesítése sértő profilról:"
 
 msgid "I %1do not like%2 this profile"
-msgstr ""
+msgstr "%1Nem tetszik%2 ez a profil"
 
 msgid "Search criteria (use one or more)"
-msgstr ""
+msgstr "Keresési kritéria (használjon egyet vagy többet)"
 
 msgid "Key words"
-msgstr ""
+msgstr "Kulcsszavak"
 
 msgid "Find teams with these words in their names or descriptions"
 msgstr ""
+"Keressen csapatot ezekkel a szavakkal a csapatnevekben vagy -leírásokban"
 
 msgid "Country"
 msgstr "Ország"
 
 msgid "Type of team"
-msgstr ""
+msgstr "Csapattípus"
 
 msgid "Show only active teams"
-msgstr ""
+msgstr "Csak az aktív csapatokat mutassa"
 
 msgid "Search"
-msgstr ""
+msgstr "Keresés"
 
+# Nincs olyan szó a magyar nyelvben, hogy megigényelte! (Legjobb tudomásom szerint ez nyelvtanilag helytelen volt.)
+#, fuzzy
 msgid "Requested by you, and founder response deadline has passed."
-msgstr ""
+msgstr "Ön igényelte és az alapító válaszának határideje lejárt."
 
 msgid "Complete foundership transfer"
-msgstr ""
+msgstr "Teljes csapatalapítási jogátadás"
 
 msgid "Requested by you"
-msgstr ""
+msgstr "Ön igényelte"
 
 msgid "founder response deadline is %1"
-msgstr ""
+msgstr "az alapítói válasz határideje %1"
 
 msgid "None"
 msgstr "Semmi"
 
 msgid "Initiate request"
-msgstr ""
+msgstr "Kérelem kezdete"
 
 msgid "Deferred"
-msgstr ""
+msgstr "Elhalasztott"
 
 msgid "Team info"
-msgstr ""
+msgstr "Csapatinformáció"
 
 msgid "Description"
-msgstr ""
+msgstr "Leírás"
 
 msgid "Web site"
-msgstr ""
+msgstr "Honlap"
 
 msgid "Total credit"
 msgstr "Összes kredit"
@@ -197,138 +200,140 @@ msgstr "Összes kredit"
 msgid "Recent average credit"
 msgstr "Átlagos kredit a közelmúltban"
 
-#, fuzzy
 msgid "Cross-project stats"
-msgstr "Projekt-közti statisztikák"
+msgstr "Projekt kereszt-statisztikák"
 
 msgid "Type"
-msgstr ""
+msgstr "Típus"
 
-#, fuzzy
 msgid "Message board"
-msgstr "Üzenőfalak"
+msgstr "Üzenőfal"
 
 msgid "Threads"
 msgstr "Témák"
 
 msgid "Join this team"
-msgstr ""
+msgstr "Csatlakozás ehhez a csapathoz"
 
 msgid ""
 "Note: if 'OK to email' is set in your project preferences, joining a team "
 "gives its founder access to your email address."
 msgstr ""
+"Megjegyzés: ha az 'E-mail jóváhagyása' be van állítva a projekt beállítások "
+"között, akkor csapatba lépéskor a csapat alapítója hozzáfér az Ön e-mail "
+"címéhez."
 
 msgid "Not accepting new members"
-msgstr ""
+msgstr "Nem fogad új tagokat"
 
 msgid "Foundership change requested"
-msgstr ""
+msgstr "Alapító váltás megigényelve"
 
 msgid "Respond by %1"
-msgstr ""
+msgstr "Válaszolva %1 által"
 
 msgid "Team foundership change"
-msgstr ""
+msgstr "Csapat alapító változása"
 
 msgid "Members"
 msgstr "Tagok"
 
 msgid "Founder"
-msgstr ""
+msgstr "Alapító"
 
 msgid "Admins"
-msgstr ""
+msgstr "Adminok"
 
 msgid "New members in last day"
-msgstr ""
+msgstr "Új tagok az elmúlt napban"
 
 msgid "Total members"
-msgstr ""
+msgstr "Minden tag"
 
-#, fuzzy
 msgid "view"
-msgstr "Megtekint"
+msgstr "megtekint"
 
 msgid "Active members"
-msgstr ""
+msgstr "Aktív tagok"
 
 msgid "Members with credit"
-msgstr ""
+msgstr "Tagok kredittel"
 
 msgid "Name"
 msgstr "Név"
 
 msgid "Admin"
-msgstr ""
+msgstr "Adminisztrátor"
 
 msgid "Last %1"
-msgstr ""
+msgstr "Utolsó %1"
 
 msgid "Next %1"
-msgstr ""
+msgstr "Következő %1"
 
 msgid "No such team."
-msgstr ""
+msgstr "Nincs ilyen csapat."
 
 msgid "This operation requires foundership."
-msgstr ""
+msgstr "Ez a művelet alapítói joghoz kötött."
 
 msgid "This operation requires team admin privileges"
-msgstr ""
+msgstr "Ez a művelet csapat adminisztrátori joghoz kötött"
 
 msgid "Rank"
-msgstr "Rang"
+msgstr "Helyezés"
 
 msgid ""
 "%1Privacy note%2: if you create a team, your project preferences (resource "
 "share, graphics preferences) will be visible to the public."
 msgstr ""
+"iztonsági figyelmeztetés%2: ha csapatot hoz létre, a projekt beállításai "
+"láthatók lesznek (erőforrás megosztás, grafikai beállítás) mások számára is."
 
 msgid "Team name, text version"
 msgstr "Csapatnév, szöveges változat"
 
 msgid "Don't use HTML tags."
-msgstr ""
+msgstr "Ne használjon HTML formázásokat."
 
 msgid "Team name, HTML version"
 msgstr "Csapatnév, HTML változat"
 
 msgid "You may use %1limited HTML tags%2."
-msgstr ""
+msgstr "Ön korlátozottan használhat %1HTML formázásokat%2."
 
 msgid "If you don't know HTML, leave this box blank."
-msgstr ""
+msgstr "Ha nem ismeri a HTML-t, hagyja üresen ezt a mezőt."
 
 msgid "URL of team web page, if any"
-msgstr ""
+msgstr "a csapat weblapjának URL-je, ha van"
 
 msgid "without \"http://\""
-msgstr ""
+msgstr "\"http://\" nélkül"
 
 msgid "This URL will be linked to from the team's page on this site."
-msgstr ""
+msgstr "Ez az URL be lesz linkelve a csapat honlapjáról erre az oldalra."
 
 msgid "Description of team"
-msgstr ""
+msgstr "A csapat leírása"
 
 msgid "Projects in which you are participating"
-msgstr ""
+msgstr "Projektek, amelyekben részt vesz"
 
 msgid "Projects in which %1 is participating"
-msgstr ""
+msgstr "Projektek amelyben %1 részt vesz."
 
 msgid "Project"
-msgstr ""
+msgstr "Projekt"
 
 msgid "Click for user page"
-msgstr ""
+msgstr "Kattintson a felhasználói lapra jutáshoz"
 
 msgid "Average credit"
-msgstr ""
+msgstr "Átlagos kredit"
 
 msgid "Since"
-msgstr ""
+msgstr "Ettől:"
 
 msgid "Computing and credit"
 msgstr "Számítás és kredit"
@@ -352,7 +357,7 @@ msgid "Cross-project statistics"
 msgstr "Projekt-közti statisztikák"
 
 msgid "Certificate"
-msgstr ""
+msgstr "Tanúsítvány"
 
 msgid "Stats on your cell phone"
 msgstr "Statisztikák a mobiltelefonján"
@@ -388,28 +393,28 @@ msgid "Log out"
 msgstr "Kijelentkezés"
 
 msgid "User ID"
-msgstr ""
+msgstr "Felhasználói azonosító"
 
 msgid "Used in community functions"
-msgstr ""
+msgstr "Közösségi funkciók során használt"
 
 msgid "Account key"
-msgstr ""
+msgstr "Fiók kulcs"
 
 msgid "Provides full access to your account"
-msgstr ""
+msgstr "Teljes hozzáférést biztosít a fiókjához"
 
 msgid "Weak account key"
-msgstr ""
+msgstr "Gyenge fiók kulcs"
 
 msgid "Provides %1limited access%2 to your account"
-msgstr ""
+msgstr "%Korlátozott hozzáférést%2 biztosít a fiókjához"
 
 msgid "Preferences"
 msgstr "Beállítások"
 
 msgid "When and how BOINC uses your computer"
-msgstr "Mikor és hogyan használja a BOINC számítógépét"
+msgstr "Mikor és hogyan használja a BOINC a számítógépét"
 
 msgid "Computing preferences"
 msgstr "Számítási beállítások"
@@ -442,7 +447,7 @@ msgid "%1 posts"
 msgstr "%1 üzenet"
 
 msgid "Notifications"
-msgstr ""
+msgstr "Értesítések"
 
 msgid "Quit team"
 msgstr "Kilépés a csapatból"
@@ -451,7 +456,7 @@ msgid "Administer"
 msgstr "Igazgató"
 
 msgid "(foundership change request pending)"
-msgstr ""
+msgstr "(alapító változtatási kérelem folyamatban)"
 
 msgid "Member of team"
 msgstr "Ezen csapat tagja:"
@@ -466,36 +471,36 @@ msgid "Founder but not member of"
 msgstr "Alapítója, de nem tagja ennek a csapatnak:"
 
 msgid "Find friends"
-msgstr ""
+msgstr "Ismerősök keresése"
 
 msgid "Friends"
-msgstr ""
+msgstr "Ismerősök"
 
 msgid "Computers"
-msgstr ""
+msgstr "Számítógépek"
 
 msgid "hidden"
-msgstr ""
+msgstr "rejtett"
 
 msgid "Donor"
-msgstr ""
+msgstr "Felajánló"
 
 msgid "Contact"
-msgstr ""
+msgstr "Kapcsolat"
 
 msgid "This person is a friend"
-msgstr ""
+msgstr "Ez a személy ismerős"
 
 msgid "Cancel friendship"
-msgstr ""
+msgstr "Ismeretség visszavonása"
 
 msgid "Request pending"
-msgstr ""
+msgstr "Függő kérés"
 
 msgid "Add as friend"
-msgstr ""
+msgstr "Ismerősként hozzáad"
 
-##########################################
+# #########################################
 # Language: English (International)
 # FileID  : $Id$
 # Author  : Janus Kristensen
@@ -519,12 +524,12 @@ msgstr "Válassza ki, melyik országot képviseli, ha van ilyen."
 msgid "Postal or ZIP Code"
 msgstr "Irányítószám"
 
-#########################################
+# ########################################
 # General stuff (create_account_form.php and others)
 msgid "Optional"
 msgstr "Választható"
 
-#########################################
+# ########################################
 # Apps page (apps.php)
 msgid "Applications"
 msgstr "Alkalmazások"
@@ -555,7 +560,7 @@ msgstr "Új fiók létrehozásához Önnek meghívókóddal kell rendelkeznie."
 msgid "The invitation code you gave is not valid."
 msgstr "Az Ön által megadott meghívó"
 
-#########################################
+# ########################################
 # Create account form (create_account_form.php)
 msgid "Create an account"
 msgstr "Fiók létrehozása"
@@ -564,7 +569,7 @@ msgid "Account creation is disabled"
 msgstr "Fiók létrehozása letiltva."
 
 msgid "Account creation is currently disabled. Please try again later."
-msgstr ""
+msgstr "Fiók létrehozása jelenleg nem lehetséges. Próbálja meg később."
 
 msgid ""
 "NOTE: If you use BOINC version 5.2+ with the BOINC Manager, don't use this "
@@ -608,101 +613,118 @@ msgid "Create account"
 msgstr "Fiók létrehozása"
 
 msgid "ERROR: %1 does not exist!  Cannot create combo box.<br>"
-msgstr ""
+msgstr "HIBA: %1 nem létezik.  Nem tud létrehozni legördülő menüt. <br>"
 
 msgid "Picture"
-msgstr ""
+msgstr "Kép"
 
 msgid "%1 Your profile picture is shown to the left."
-msgstr ""
+msgstr "%1 Az Ön profilképe bal oldalt jelenik meg."
 
 msgid ""
 "To replace it, click the \"Browse\" button and select a JPEG or PNG file (%1 "
 "or less)."
 msgstr ""
+"A cseréhez kattintson a Böngészés gombra, majd válasszon ki egy JPEG vagy "
+"egy PNG fájlt (%1 vagy kevesebb)"
 
 msgid "To remove it from your profile, check this box:"
-msgstr ""
+msgstr "Profilból való törléséhez jelölje be ezt a dobozt:"
 
 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 ""
+"Ha képet is szeretne csatolni profiljához, kattintson a Böngészés gombra, "
+"majd válasszon ki egy JPEG vagy egy PNG fájlt. Válasszon egy képet a %1 vagy "
+"kevesebb."
 
 msgid "Language"
-msgstr ""
+msgstr "Nyelv"
 
 msgid "Select the language in which your profile is written:"
-msgstr ""
+msgstr "Válassza ki profilja nyelvét:"
 
 msgid "Submit profile"
-msgstr ""
+msgstr "Profil elküldése"
 
 msgid ""
 "To protect the project's webpages from spam, we kindly ask you to type in "
 "the two words shown in the image:<br>\n"
-msgstr ""
+msgstr "Hogy megóvjuk a projekt honlapját a spamtől, kérjük gépelje be azt a két "
+"szót, amit a képen lát: <br>\n"
 
 msgid "Create/edit profile"
-msgstr ""
+msgstr "Profil létrehozása/szerkesztése"
 
 msgid "The format of your uploaded image is not supported."
-msgstr ""
+msgstr "Az Ön által feltöltött kép formátuma nem megengedett."
 
 msgid ""
 "Your %1profile%2 lets you share your opinions and background with the %3 "
 "community."
 msgstr ""
+"Az Ön %1profilja%2 lehetővé teszi véleményének és hátterének megosztását a "
+"%3közösséggel."
 
 msgid "Your ReCaptcha response was not correct.  Please try again."
-msgstr ""
+msgstr "Az Ön ReCaptcha válasza helytelen volt. Kérjük, próbálja újra."
 
 msgid ""
 "Your first response was flagged as spam by the Akismet anti-spam system.  "
 "Please modify your text and try again."
 msgstr ""
+"Az Ön első válasza spamnak minősül az Akismet anti-spam rendszer alapján.  "
+"Kérjük módosítsa a szövegét, majd próbálja újra."
 
 msgid ""
 "Your second response was flagged as spam by the Akismet anti-spam system.  "
 "Please modify your text and try again."
 msgstr ""
+"Az Ön második válasza spamnak minősül az Akismet anti-spam rendszer alapján. "
+" Kérjük módosítsa a szövegét, majd próbálja újra."
 
 msgid "Your profile submission was empty."
-msgstr ""
+msgstr "Az Ön profilküldése üres volt."
 
 msgid "Could not update the profile: database error"
-msgstr ""
+msgstr "Profil frissítés sikertelen: adatbázis hiba."
 
 msgid "Could not create the profile: database error"
-msgstr ""
+msgstr "Profil létrehozás sikertelen: adatbázis hiba."
 
 msgid "Profile saved"
-msgstr ""
+msgstr "Profil elmentve"
 
 msgid ""
 "Congratulations! Your profile was successfully entered into our database."
-msgstr ""
+msgstr "Gratulálunk! Profilja sikeresen bekerült adatbázisunkba!"
 
 msgid "%1View your profile%2"
-msgstr ""
+msgstr "%1Az Ön profiljának megtekintése%2"
 
 msgid "Create a profile"
-msgstr ""
+msgstr "Profil létrehozása"
 
 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 ""
+"Spam megelőzése céljából egy %1 vagy több átlagos credit szükséges profil "
+"létrehozásához vagy szerkesztéséhez. Elnézést kérünk ezért a "
+"kellemetlenségért."
 
 msgid "Download BOINC add-on software"
-msgstr ""
+msgstr "BOINC kiegészítő szoftver letöltése"
 
 msgid "You can download applications in several categories."
-msgstr ""
+msgstr "Letölthet alkalmazásokat különböző kategóriákban."
 
 msgid ""
 "These applications are not endorsed by %1 and you use them at your own risk."
 msgstr ""
+"Ezek az alkalmazások nincsenek jóváhagyva %1 által, csak a saját "
+"felelősségére használja."
 
 msgid ""
 "We do not provide instructions for installing these applications.\n"
@@ -710,12 +732,17 @@ msgid ""
 "uninstalling the application. \n"
 "If this is not enough you should contact the author."
 msgstr ""
+"Nem szolgálunk utasításokkal ezeknek az alkalmazásoknak az installálásához. \n"
+"Valószínűleg a készítő biztosít egy kis segítséget a program telepítéséhez "
+"vagy eltávolításához. \n"
+"Amennyiben ez nem elég, lépjen kapcsolatba a program készítőjével."
 
 msgid "Instructions for installing and running BOINC are %1here%2."
-msgstr ""
+msgstr "A BOINC telepítéséhez és futtatásához utasítások %1itt%2 találhatóak."
 
+#, fuzzy
 msgid "This list is managed centrally at %1the BOINC website%2."
-msgstr ""
+msgstr "Ez a lista központilag van kezelve a %1BOINC weboldalon%2"
 
 msgid "fll"
 msgstr ""
@@ -726,7 +753,7 @@ msgstr "Cím"
 msgid "Add my signature to this post"
 msgstr "Aláírás hozzáadása ehhez az üzenethez"
 
-#########################################
+# ########################################
 # Forum sample index page
 msgid "%1 Message boards"
 msgstr "%1 Üzenőfalak"
@@ -735,6 +762,8 @@ msgid ""
 "If you have a question or problem, please use the %1Questions & Answers%2 "
 "section of the message boards."
 msgstr ""
+"Ha kérdése vagy problémája van, akkor használja az üzenőfalak %1Kérdések és "
+"válaszok%2 részét."
 
 msgid "Topic"
 msgstr "Téma"
@@ -745,61 +774,65 @@ msgstr "Új téma létrehozása"
 msgid "Post to thread"
 msgstr "Küldés a témához"
 
-#########################################
+# ########################################
 # Forum search features
 msgid "Forum search"
 msgstr "Keresés a fórumban"
 
 msgid "Forum search results"
-msgstr ""
+msgstr "Fórum keresési eredmények"
 
 msgid "No thread with id %1. Please check the link and try again."
-msgstr ""
+msgstr "Nincs téma %1 azonosítóval. Ellenőrizze a linket, és próbálja újra."
 
 msgid "This forum is not visible to you."
-msgstr ""
+msgstr "Ez a fórum nem látható az Ön részére."
 
-#########################################
+# ########################################
 # Forum thread
 msgid "This thread has been hidden for administrative purposes"
 msgstr "Ezt a témát adminisztratív okokból rejtetté tették"
 
 msgid "My question was answered"
-msgstr ""
+msgstr "Választ kaptam a kérdésemre"
 
 msgid ""
 "If your question has been adequately answered please click here to close it!"
 msgstr ""
+"Amennyiben a kérdése megfelelően megválaszolásra került, kérjük kattintson "
+"ide a bezáráshoz."
 
 msgid "I've also got this question"
-msgstr ""
+msgstr "Még van ez a kérdésem is"
 
 msgid "Add a new message to this thread"
-msgstr ""
+msgstr "Új hozzászólás ehhez a témához"
 
 msgid "Unsubscribe"
 msgstr "Leiratkozás"
 
 msgid "You are subscribed to this thread.  Click here to unsubscribe."
-msgstr ""
+msgstr "Feliratkozott erre a témára. Leiratkozáshoz kattintson ide."
 
 msgid "Subscribe"
 msgstr "Feliratkozás"
 
 msgid "Click to get email when there are new posts in this thread"
 msgstr ""
+"Kattintson ide, hogy e-mailes értesítést kapjon, ha ehhez a témához "
+"hozzászóltak"
 
 msgid "Unhide"
-msgstr ""
+msgstr "Megjelenítés"
 
 msgid "Unhide this thread"
-msgstr ""
+msgstr "Téma megjelenítése"
 
 msgid "Hide"
-msgstr ""
+msgstr "Elrejtés"
 
 msgid "Hide this thread"
-msgstr ""
+msgstr "Téma elrejtése"
 
 msgid "Make unsticky"
 msgstr ""
@@ -814,141 +847,144 @@ msgid "Make this thread sticky"
 msgstr ""
 
 msgid "Unlock"
-msgstr ""
+msgstr "Feloldás"
 
 msgid "Unlock this thread"
-msgstr ""
+msgstr "Téma feloldása"
 
 msgid "Lock"
-msgstr ""
+msgstr "Rögzítés"
 
 msgid "Lock this thread"
-msgstr ""
+msgstr "Téma rögzítése"
 
 msgid "Move"
-msgstr ""
+msgstr "Mozgatás"
 
 msgid "Move this thread to a different forum"
-msgstr ""
+msgstr "Téma mozgatása más fórumba"
 
 msgid "Edit title"
-msgstr ""
+msgstr "Cím szerkesztése"
 
 msgid "Edit thread title"
-msgstr ""
+msgstr "Témacím szerkesztése"
 
 msgid "Sort"
-msgstr ""
+msgstr "Rendezés"
 
 msgid "Already friends"
-msgstr ""
+msgstr "Már ismerős"
 
+#, fuzzy
 msgid "You requested friendship with %1 on %2."
-msgstr ""
+msgstr "Bejelölte %1 ismerősnek %2-nél"
 
 msgid "This request is still pending confirmation."
-msgstr ""
+msgstr "Ez a kérés még mindig megerősítésre vár."
 
 msgid "%1 is not accepting friendship requests from you"
-msgstr ""
+msgstr "%1 nem jelölte vissza ismerősnek Önt."
 
 msgid "You can't be friends with yourself"
-msgstr ""
+msgstr "Nem lehet önnön ismerőse."
 
 msgid "No such user"
 msgstr "Nincs ilyen felhasználó"
 
 msgid "Add friend"
-msgstr ""
+msgstr "Ismerős hozzáadása"
 
 msgid ""
 "You have asked to add %1 as a friend. We will notify %2 and will ask him/her "
 "to confirm that you are friends."
 msgstr ""
+"Bejelölte %1-t ismerősnek. Értesítjük %2-t és megerősítést kérünk tőle, hogy "
+"tényleg az Ön ismerőse."
 
 msgid "Add an optional message here:"
-msgstr ""
+msgstr "Tetszőleges üzenet hozzáadása:"
 
 msgid "Database error"
-msgstr ""
+msgstr "Adatbázis hiba"
 
 msgid "Friend request sent"
-msgstr ""
+msgstr "Ismerőssé jelölés elküldve"
 
 msgid "We have notified %1 of your request."
-msgstr ""
+msgstr "Értesítettük %1-t a bejelölésről"
 
 msgid "Request not found"
-msgstr ""
+msgstr "Jelölés nem található"
 
 msgid "Friend request"
-msgstr ""
+msgstr "Bejelölték ismerősnek"
 
 msgid "%1 has added you as a friend."
-msgstr ""
+msgstr "%1 felvette Önt ismerősei közé."
 
 msgid "%1 says: %2"
-msgstr ""
+msgstr "%1 azt mondja, hogy %2"
 
 msgid "Accept friendship"
-msgstr ""
+msgstr "Ismeretség bejelölésének elfogadása"
 
 msgid "Click accept if %1 is in fact a friend"
-msgstr ""
+msgstr "Kattintson az elfogadásra, ha %1 tényleg az ismerőse"
 
 msgid "Decline"
-msgstr ""
+msgstr "Elutasít"
 
 msgid "Click decline if %1 is not a friend"
-msgstr ""
+msgstr "Kattinson az elutasításra, ha %1 nem az ismerőse"
 
 msgid "No request"
-msgstr ""
+msgstr "NIncs jelölés"
 
 msgid "Friendship confirmed"
-msgstr ""
+msgstr "Ismeretség jóváhagyva"
 
 msgid "Your friendship with %1 has been confirmed."
-msgstr ""
+msgstr "Ön és %1 között az ismeretség jóváhagyva."
 
 msgid "Friendship declined"
-msgstr ""
+msgstr "Ismeretség elutasítva"
 
 msgid "You have declined friendship with %1"
-msgstr ""
+msgstr "Ön visszautasította az %1 ismeretségét."
 
 msgid "Notification not found"
-msgstr ""
+msgstr "Értesítés nem található"
 
 msgid "Friend confirmed"
-msgstr ""
+msgstr "Ismeretség jóváhagyva"
 
 msgid "You are now friends with %1."
-msgstr ""
+msgstr "Önnek most már ismerőse %1."
 
 msgid "Cancel friendship?"
-msgstr ""
+msgstr "Ismeretség felbontása?"
 
 msgid "Are you sure you want to cancel your friendship with %1?"
-msgstr ""
+msgstr "Biztos, hogy fel akarja bontani az ismeretségét Ön és %1 között?"
 
 msgid "Yes"
-msgstr ""
+msgstr "Igen"
 
 msgid "No"
-msgstr ""
+msgstr "Nem"
 
 msgid "Stay friends"
-msgstr ""
+msgstr "Maradjunk ismerősök"
 
 msgid "Friendship cancelled"
-msgstr ""
+msgstr "Ismeretség felbontva"
 
 msgid "Your friendship with %1 has been cancelled."
-msgstr ""
+msgstr "Ön és %1 között az ismeretség fel lett bontva."
 
 msgid "Unknown action"
-msgstr ""
+msgstr "Ismeretlen művelet"
 
 msgid "Welcome to %1"
 msgstr "Üdvözöljük a(z) %1 nevű projektben"
@@ -958,12 +994,12 @@ msgstr ""
 "Fiókbeállításainak megtekintéséhez és megváltoztatásához használja az alábbi "
 "linkeket."
 
-#########################################
+# ########################################
 # "Your account" page (home.php)
 msgid "Your account"
 msgstr "Az Ön fiókja"
 
-#########################################
+# ########################################
 # Rules and Policies page (info.php)
 msgid "Read our rules and policies"
 msgstr "Olvassa el a szabályokat és eljárásokat"
@@ -1127,14 +1163,12 @@ msgstr ""
 "felelősségére csatlakozzon hozzájuk."
 
 # The name of this language in an international language (English)
-#, fuzzy
 msgid "LANG_NAME_INTERNATIONAL"
 msgstr "Hungarian"
 
 # The name of this language in this language
-#, fuzzy
 msgid "LANG_NAME_NATIVE"
-msgstr "Hungarian"
+msgstr "Magyar"
 
 msgid "Your message has been sent."
 msgstr "Üzenet elküldve."
@@ -1153,10 +1187,10 @@ msgid "Delete selected messages"
 msgstr "Kiválasztott üzenetek megtekintése"
 
 msgid "Sender"
-msgstr ""
+msgstr "Küldő"
 
 msgid "Date"
-msgstr ""
+msgstr "Dátum"
 
 msgid "You need to fill all fields to send a private message"
 msgstr "Privát üzenet küldéséhez minden mezőt ki kell töltenie"
@@ -1218,176 +1252,192 @@ msgid ""
 "%1Profiles%2 let individuals share backgrounds and opinions with the %3 "
 "community."
 msgstr ""
+"%1A profilok%2 egyének számára biztosít lehetőséget arra, hogy megosszák "
+"hátterüket és véleményüket a %3 közösséggel."
 
 msgid ""
 "Explore the diversity of your fellow volunteers, and contribute your own "
 "views for others to enjoy."
 msgstr ""
+"Fedezze fel az önkéntes társainak sokféleségét, és ossza meg saját "
+"véleményét másokkal, azok örömére."
 
 msgid ""
 "If you haven't already, you can %1create your own user profile%2 for others "
 "to see!"
 msgstr ""
+"Ha még nem hozott létre %1saját magának nyilvános felhasználói profilt%2, "
+"akkor megteheti."
 
 msgid "User of the Day"
-msgstr ""
+msgstr "A nap felhasználója"
 
 msgid "User Profile Explorer"
-msgstr ""
+msgstr "Felhasználói profil böngésző"
 
 msgid "View the %1User Picture Gallery%2."
-msgstr ""
+msgstr "Nézze meg a %1Felhasználó képgalériáját%2."
 
 msgid "Browse profiles %1by country%2."
-msgstr ""
+msgstr "Böngéssze a profilokat %1 országok szerint%2."
 
 msgid ""
 "Browse profiles %1at random%2, %3at random with pictures%2, or %4at random "
 "without pictures%2."
 msgstr ""
+"Böngéssze a profilokat %1véletlenszerűen%2, %véletlenszerűen képekkel%2, "
+"vagy%4 véletlenszerűen képek nélkül%2."
 
 msgid "Alphabetical profile listings:"
-msgstr ""
+msgstr "Profil listázás ABC sorrendben:"
 
 msgid "Search profile text"
-msgstr ""
+msgstr "Keresés profil szövegben"
 
 msgid "No profiles"
-msgstr ""
+msgstr "Nincsenek profilok"
 
 msgid "No profiles matched your query."
-msgstr ""
+msgstr "Nincs a keresésének megfelelő profil."
 
 msgid "Invalid vote type:"
-msgstr ""
+msgstr "Érvénytelen szavazattípus:"
 
 msgid "Vote Recorded"
-msgstr ""
+msgstr "Szavazat rögzítve"
 
 msgid "Thank you"
-msgstr ""
+msgstr "Köszönjük"
 
 msgid "Your recommendation has been recorded."
-msgstr ""
+msgstr "Az ajánlása rögzítve lett."
 
 msgid "Your vote to reject this profile has been recorded."
-msgstr ""
+msgstr "Ennek a profil elutasításának javaslata rögzítve lett."
 
 msgid "Return to profile."
-msgstr ""
+msgstr "Visszatérés a profilhoz."
 
 msgid "This feature is turned off temporarily"
-msgstr ""
+msgstr "Ez a tulajdonság átmenetileg nem elérhető"
 
 msgid "No computer with ID %1 found"
-msgstr ""
+msgstr "Nem található számítógép %1 ezzel az azonosítóval"
 
 msgid "Tasks for computer %1"
-msgstr ""
+msgstr "Feladatok %1 számítógép részére"
 
 msgid "No access"
-msgstr ""
+msgstr "Nincs hozzáférés"
 
 msgid "Missing user ID or host ID"
-msgstr ""
+msgstr "Hiányzó felhasználó vagy gép azonosító"
 
 msgid "User of the day"
-msgstr ""
+msgstr "A nap felhasználója"
 
 msgid "Account data for %1"
-msgstr ""
+msgstr "Fiókadatok %1 részére"
 
 msgid "Statistics and leaderboards"
-msgstr ""
+msgstr "Statisztikák és helyezési listák"
 
 msgid "Statistics for %1"
-msgstr ""
+msgstr "Statisztikák %1 részére"
 
-#########################################
+# ########################################
 # Various top table pages (top users, computers, teams)
 msgid "Top participants"
 msgstr "Kiemelkedő résztvevők"
 
 msgid "Top computers"
-msgstr ""
+msgstr "Legjobb számítógépek"
 
-#, fuzzy
 msgid "Top teams"
-msgstr "A legjobb %1 csapatok"
+msgstr "A legjobb csapatok"
 
 msgid ""
 "More detailed statistics for %1 and other BOINC-based projects are available "
 "at several web sites:"
 msgstr ""
+"Részletesebb statisztikák a %1 és más BOINC-ra épülő projektről elérhetőek "
+"különböző weboldalakon:"
 
 msgid ""
 "You can also get your current statistics in the form of a \"signature image"
 "\":"
-msgstr ""
+msgstr "Elérheti még a jelenlegi statisztikáit az \"aláírási kép\" formájában."
 
 msgid ""
 "Additionally you can get your individual statistics summed across all BOINC "
 "projects from several sites; see your %1home page%2."
 msgstr ""
+"Az egyéni statisztikáit elérheti még összesítve minden BOINC projektből "
+"különböző oldalakon; nézze meg az Ön %1honlapját%2."
 
 msgid "%1 participants may form %2teams%3"
-msgstr ""
+msgstr "%1 résztvevők alakíthatnak %2csapatokat%3"
 
 msgid ""
 "You may belong to only one team. You can join or quit a team at any time."
 msgstr ""
+"Csak egy csapathoz tartozhat. Akármikor csatlakozhat, vagy kiléphet egy "
+"csapatból."
 
 msgid "Each team has a %1founder%2 who may:"
-msgstr ""
+msgstr "Minden csapatnak van egy %1alapítója%2, aki:"
 
 msgid "access team members' email addresses"
-msgstr ""
+msgstr "elérheti a csapattagok e-mail címét"
 
 msgid "edit the team's name and description"
-msgstr ""
+msgstr "szerkesztheti a csapat nevét és leírását"
 
 msgid "remove members from the team"
-msgstr ""
+msgstr "törölhet tagokat a csapatból"
 
 msgid "disband a team if it has no members"
-msgstr ""
+msgstr "megszüntetheti a csapatot, ha nincsenek tagok"
 
 msgid "To join a team, visit its team page and click %1Join this team%2."
 msgstr ""
+"Ha csapathoz szeretne csatlakozni, akkor látogass meg annak oldalát és "
+"kattintson a következőre: %1Csatlakozás ehhez a csapathoz%2."
 
-#, fuzzy
 msgid "Find a team"
-msgstr "csapat keresése"
+msgstr "Csapat keresése"
 
 msgid "All teams"
-msgstr ""
+msgstr "Minden csapat"
 
 msgid "%1 teams"
-msgstr ""
+msgstr "%1 csapat"
 
 #, fuzzy
 msgid "Create a new team"
-msgstr "Új téma létrehozása"
+msgstr "Új csapat létrehozása"
 
 msgid ""
 "If you cannot find a team that is right for you, you can %1create a team%2."
-msgstr ""
+msgstr "Ha nem talál kedvére való csapatot, %1létrehozhat egyet%2."
 
 msgid "You must choose a non-blank team name"
-msgstr ""
+msgstr "Nem hagyhatja üresen a csapat nevét"
 
 msgid "A team named %1 already exists - try another name"
-msgstr ""
+msgstr "Egy csapat ezen a néven %1 már létezik - próbáljon másik nevet"
 
 msgid "Could not create team - please try later."
-msgstr ""
+msgstr "Nem tud csapatot létrehozni - próbálja meg később."
 
 msgid "Create a team"
-msgstr ""
+msgstr "Hozzon létre egy új csapatot"
 
 msgid ""
 "You belong to %1. You must %2quit this team%3 before creating a new one."
 msgstr ""
+"Ön ide tartozik %1. Ki kell %2 lépnie ebből a csapatból%3 mielőtt létrehozna "
+"egy újat."
 
 msgid "Top hosts"
 msgstr "Legjobb hostok"
@@ -1399,12 +1449,12 @@ msgid "Participant since"
 msgstr "Ennyi ideje tag:"
 
 msgid "This user has no profile"
-msgstr ""
+msgstr "Ez a felhasználó nem adott meg magáról semmit"
 
 msgid "Account data"
-msgstr ""
+msgstr "Fiók adatok"
 
-#########################################
+# ########################################
 # "Weak account key" page (weak_auth.php)
 msgid ""
 "Your 'weak account key' lets you attach computers to your account on this "
@@ -1469,7 +1519,9 @@ msgstr ""
 #~ msgid "Really delete?"
 #~ msgstr "Valóban törli?"
 
-#~ msgid "Are you sure you want to delete the message with subject &quot;%1&quot; (sent by %2 on %3)?"
+#~ msgid ""
+#~ "Are you sure you want to delete the message with subject &quot;%1&quot; "
+#~ "(sent by %2 on %3)?"
 #~ msgstr ""
 #~ "Biztosan törölni akarja a &quot;%1&quot; tárgyú, (küldte: %2, ekkor: %3) "
 #~ "üzenetet?"
@@ -1481,8 +1533,11 @@ msgstr ""
 #~ msgid "No such message."
 #~ msgstr "Nincs ilyen üzenet"
 
-#~ msgid "Account creation is disabled for %1 at the moment. Please try again later."
-#~ msgstr "A fióklétrehozás a(z) %1 projekthez jelenleg le van tiltva. Kérjük, próbálja újra később."
+#~ msgid ""
+#~ "Account creation is disabled for %1 at the moment. Please try again later."
+#~ msgstr ""
+#~ "A fióklétrehozás a(z) %1 projekthez jelenleg le van tiltva. Kérjük, "
+#~ "próbálja újra később."
 
 #~ msgid "Edit message"
 #~ msgstr "Üzenet szerkesztése"
diff --git a/locale/hu/BOINC-Web.po b/locale/hu/BOINC-Web.po
index f484362..ca35e21 100644
--- a/locale/hu/BOINC-Web.po
+++ b/locale/hu/BOINC-Web.po
@@ -2,8 +2,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
-"PO-Revision-Date: 2009-06-16 03:53-0700\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
+"PO-Revision-Date: 2010-03-29 07:12-0700\n"
 "Last-Translator: Gabor Cseh <csega at mailbox.hu>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "Language: hu\n"
@@ -20,236 +20,315 @@ msgstr ""
 "X-Poedit-Country: UNITED STATES\n"
 "X-Poedit-KeywordsList: tra\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
-msgstr ""
+msgstr "[minden Önre érvényest jelöljön be]"
 
+#: poll.inc:47
 msgid "Other:"
-msgstr ""
+msgstr "Egyéb:"
 
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
-msgstr ""
+msgstr "Igen - A BOINCot már ennyi ideje futtatom  a számítógépemen..."
 
+#: poll_data.inc:22
 msgid "less than a week"
-msgstr ""
+msgstr "kevesebb mint egy hét"
 
+#: poll_data.inc:23
 msgid "less than a month"
-msgstr ""
+msgstr "kevesebb mint egy hónap"
 
+#: poll_data.inc:24
 msgid "less than a year"
-msgstr ""
+msgstr "kevesebb mint egy év"
 
+#: poll_data.inc:25
 msgid "more than a year"
-msgstr ""
+msgstr "több mint egy év"
 
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
-msgstr ""
+msgstr "Nem, én régebben futattam a BOINC-ot, de..."
 
+#: poll_data.inc:34
 msgid "I lost interest"
-msgstr ""
+msgstr "már nem érdekel"
 
+#: poll_data.inc:35
 msgid "it was too complicated"
-msgstr ""
+msgstr "túl bonyolult volt"
 
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
-msgstr ""
+msgstr "Leállítottam, majd elfelejtettem újraindítani"
 
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
-msgstr ""
+msgstr "problémákat okozott a számítógépemen"
 
+#: poll_data.inc:38
 msgid "it used too much electricity"
-msgstr ""
+msgstr "túl sok áramot használt"
 
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
-msgstr ""
+msgstr "Nem BOINCot használó számítási projektre váltottam"
 
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
-msgstr ""
+msgstr "Nem - próbáltam futtatni a BOINCot, de..."
 
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
-msgstr ""
+msgstr "a szoftver nem települt megfelelően"
 
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
-msgstr ""
+msgstr "Nem jöttem rá, hogyan kell használni a szoftvert"
 
+#: poll_data.inc:50
 msgid "I had network communication problems"
-msgstr ""
+msgstr "Hálózati kommunikációs problémáim voltak."
 
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
-msgstr ""
+msgstr "Nem tudtam csatlakozni egy projekthez"
 
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
-msgstr ""
+msgstr "Csatlakoztam egy projekthez, de soha nem kaptam egy munkacsomagot sem"
 
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
-msgstr ""
+msgstr "Nem, sohasem próbáltam futtatni a  BOINC-ot, mivel..."
 
+#: poll_data.inc:61
 msgid "I was concerned about security"
-msgstr ""
+msgstr "kétségeim voltak a biztonsággal kapcsolatban"
 
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
-msgstr ""
+msgstr "nem érdekelt egy projekt sem"
 
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
-msgstr ""
+msgstr "nem volt jogosultságom ahhoz, hogy futassam a számítógépemen"
 
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr ""
 
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr ""
 
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr ""
 
+#: poll_data.inc:87
 msgid "Home"
 msgstr ""
 
+#: poll_data.inc:88
 msgid "Work"
 msgstr ""
 
+#: poll_data.inc:89
 msgid "School"
 msgstr ""
 
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr ""
 
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr ""
 
+#: poll_data.inc:119
 msgid "Age"
-msgstr ""
+msgstr "Életkor"
 
+#: poll_data.inc:129
 msgid "Sex"
-msgstr ""
+msgstr "Nem"
 
+#: poll_data.inc:131
 msgid "Male"
-msgstr ""
+msgstr "Férfi"
 
+#: poll_data.inc:132
 msgid "Female"
-msgstr ""
+msgstr "NÅ‘"
 
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr ""
 
+#: poll_data.inc:139
 msgid "Beginner"
-msgstr ""
+msgstr "Kezdő"
 
+#: poll_data.inc:140
 msgid "Intermediate"
-msgstr ""
+msgstr "Haladó"
 
+#: poll_data.inc:141
 msgid "Advanced"
-msgstr ""
+msgstr "Profi"
 
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
-msgstr ""
+msgstr "Honnan értesült a BOINC projektről?"
 
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
-msgstr ""
+msgstr "TV/rádió/ujság"
 
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr ""
 
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
-msgstr ""
+msgstr "Csapat üzenőfal vagy weboldal"
 
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
-msgstr ""
+msgstr "A BOINC weboldal"
 
+#: poll_data.inc:155
 msgid "Other web sites"
-msgstr ""
+msgstr "Más weboldalak"
 
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
 msgstr ""
+"Mik azok a legfontosabb tényezők, ami miatt részt vesz a BOINC projektben?"
 
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr ""
 
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr ""
 
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr ""
 
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr ""
 
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr ""
 
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr ""
 
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr ""
 
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr ""
 
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr ""
 
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr ""
 
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr ""
 
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr ""
 
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
-msgstr ""
+msgstr "A BOINCot képernyővédőként (is) használja?"
 
+#: poll_data.inc:192
 msgid "Yes"
-msgstr ""
+msgstr "Igen"
 
+#: poll_data.inc:193
 msgid "No"
-msgstr ""
+msgstr "Nem"
 
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr ""
 
+#: poll_data.inc:200
 msgid "to read information"
 msgstr ""
 
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr ""
 
+#: poll_data.inc:202
 msgid "None"
 msgstr ""
 
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr ""
+"Hol keres megoldást, ha problémája van a BOINC szoftverrel és/vagy a BOINC "
+"projektekkel?"
 
+#: poll_data.inc:208
 msgid "The project message boards"
-msgstr ""
+msgstr "A projekt üzenőfalán"
 
+#: poll_data.inc:209
 msgid "The BOINC message boards"
-msgstr ""
+msgstr "A BOINC üzenőfalon"
 
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
-msgstr ""
+msgstr "A BOINC levelező listán"
 
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr ""
 
+#: poll_data.inc:213
 msgid "Team web sites"
-msgstr ""
+msgstr "Csapat weboldalakon"
 
+#: poll_data.inc:214
 msgid "Google or other search engines"
-msgstr ""
+msgstr "A Google-ön vagy más keresőkön"
 
+#: download.php:40
 msgid "Download BOINC"
 msgstr "A BOINC letöltése"
 
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr ""
 
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -257,28 +336,35 @@ msgid ""
 "computer, you can connect it to as many of these projects as you like."
 msgstr ""
 
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
 "(GPU), you may be able to %suse it to compute faster%s"
 msgstr ""
 
+#: download.php:120
 msgid "System requirements"
 msgstr "Rendszerkövetelmények"
 
+#: download.php:121
 msgid "Release notes"
 msgstr "Verzióinformáció"
 
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr "Segítség"
 
+#: download.php:123
 msgid "All versions"
 msgstr "Minden verzió"
 
+#: download.php:141
 #, fuzzy
 msgid "BOINC: compute for science"
 msgstr "BOINC: számoljon a tudományért"
 
+#: help.php:12
 #, php-format
 msgid ""
 "BOINC Online Help lets you talk one-on-one with experienced BOINC users, who "
@@ -287,6 +373,7 @@ msgid ""
 "problems you might have."
 msgstr ""
 
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -295,6 +382,7 @@ msgid ""
 "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 "
@@ -302,14 +390,17 @@ msgid ""
 "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 "
@@ -317,20 +408,70 @@ msgid ""
 "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 ""
 
+#: index.php:23
+msgid "Computing power"
+msgstr ""
+
+#: index.php:25
+msgid "Top 100 volunteers"
+msgstr ""
+
+#: index.php:26
+msgid "Statistics"
+msgstr "Statisztikák"
+
+#: index.php:53
+msgid "Active:"
+msgstr "Aktív:"
+
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
+
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
+msgstr ""
+
+#: index.php:66
+msgid "News"
+msgstr "Hírek"
+
+#: index.php:72
+msgid "... more"
+msgstr "... tovább"
+
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
 msgid "Volunteer"
 msgstr ""
 
+#: index.php:88
 msgid "Download"
-msgstr ""
+msgstr "Letöltés"
 
+#: index.php:90 index.php:125 index.php:163
 msgid "Documentation"
-msgstr ""
+msgstr "Dokumentáció"
 
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -339,20 +480,92 @@ msgid ""
 "sDownload%s and run BOINC software  %sEnter%s an email address and password. "
 msgstr ""
 
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
 "sGridRepublic%s or %sBAM!%s. "
 msgstr ""
 
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
+
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
 
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr ""
 
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -365,49 +578,63 @@ msgid ""
 "href=poll_results.php>here</a>. "
 msgstr ""
 
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr ""
 
+#: poll.php:30
 msgid "Your participation"
 msgstr ""
 
+#: poll.php:32
 msgid "Your computers"
 msgstr ""
 
+#: poll.php:34
 msgid "You"
 msgstr ""
 
+#: poll.php:39
 msgid "Nationality"
 msgstr ""
 
+#: poll.php:44
 msgid "Comments"
 msgstr ""
 
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
 msgstr ""
 
+#: poll.php:50
 msgid "When done click:"
 msgstr ""
 
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr ""
 
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
 msgstr ""
 
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr ""
 
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr ""
 
+#: poll_results.php:195
 msgid "Survey results"
 msgstr ""
 
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
@@ -425,16 +652,25 @@ msgstr ""
 #~ msgid "LANG_NAME_INTERNATIONAL"
 #~ msgstr "English"
 
-########################################
+# #######################################
 # poll-related stuff
-########################################
-########################################
+# #######################################
+# #######################################
 # poll-related stuff
 #~ msgid "POLL_TITLE"
 #~ msgstr "BOINC user survey"
 
 #~ msgid "POLL_INTRO"
-#~ msgstr "Several volunteer computing projects, including Climateprediction.net, Einstein at home, and SETI at home, use software called BOINC. If you participate in projects like this, we request that you answer the following questions. This will help BOINC-based projects increase participation and achieve greater scientific results. <p> Please answer as many questions as you want, then go to the bottom and click OK. If you previously completed the survey but your answers have changed, please complete it again - your new answers will replace the old ones. <p> The current results of the survey are <a href=poll_results.php>here</a>. "
+#~ msgstr ""
+#~ "Several volunteer computing projects, including Climateprediction.net, "
+#~ "Einstein at home, and SETI at home, use software called BOINC. If you "
+#~ "participate in projects like this, we request that you answer the "
+#~ "following questions. This will help BOINC-based projects increase "
+#~ "participation and achieve greater scientific results. <p> Please answer "
+#~ "as many questions as you want, then go to the bottom and click OK. If you "
+#~ "previously completed the survey but your answers have changed, please "
+#~ "complete it again - your new answers will replace the old ones. <p> The "
+#~ "current results of the survey are <a href=poll_results.php>here</a>. "
 
 #~ msgid "POLL_RUN"
 #~ msgstr "Do you run BOINC?"
@@ -455,7 +691,9 @@ msgstr ""
 #~ msgstr "Comments"
 
 #~ msgid "POLL_COMMENTS_QUESTION"
-#~ msgstr "Please suggest ways that BOINC, and the projects that use it, could be improved:"
+#~ msgstr ""
+#~ "Please suggest ways that BOINC, and the projects that use it, could be "
+#~ "improved:"
 
 #~ msgid "POLL_OTHER"
 #~ msgstr "Other:"
@@ -599,7 +837,9 @@ msgstr ""
 #~ msgstr "Other web sites"
 
 #~ msgid "POLL_FACTOR"
-#~ msgstr "Which are the most important factors when you decide whether to participate in a BOINC project?"
+#~ msgstr ""
+#~ "Which are the most important factors when you decide whether to "
+#~ "participate in a BOINC project?"
 
 #~ msgid "POLL_GRAPHICS"
 #~ msgstr "Nice-looking screensaver graphics"
@@ -659,7 +899,9 @@ msgstr ""
 #~ msgstr "None"
 
 #~ msgid "POLL_HELP"
-#~ msgstr "Where do you get information to help resolve problems with BOINC and/or BOINC projects?"
+#~ msgstr ""
+#~ "Where do you get information to help resolve problems with BOINC and/or "
+#~ "BOINC projects?"
 
 #~ msgid "POLL_HELP_PMB"
 #~ msgstr "The project message boards"
@@ -686,7 +928,9 @@ msgstr ""
 #~ msgstr "Error - results not recorded"
 
 #~ msgid "POLL_ERROR_TEXT"
-#~ msgstr "An internal error has prevented us from recording your survey response.  Please try again later."
+#~ msgstr ""
+#~ "An internal error has prevented us from recording your survey response.  "
+#~ "Please try again later."
 
 #~ msgid "POLL_RECORDED"
 #~ msgstr "Survey response recorded"
@@ -698,14 +942,21 @@ msgstr ""
 #~ msgstr "Survey results"
 
 #~ msgid "POLL_RESULTS_TEXT"
-#~ msgstr "These are the current results of the <a href=poll.php>BOINC user survey</a>.  This page is updated every hour."
+#~ msgstr ""
+#~ "These are the current results of the <a href=poll.php>BOINC user survey</"
+#~ "a>.  This page is updated every hour."
 
 #~ msgid "DL_MIRRORS"
-#~ msgstr "Note: files are downloaded from mirror servers at boinc.berkeley.edu, morel.mit.edu, einstein.aei.mpg.de, einstein.astro.gla.ac.uk, einstein.ligo.caltech.edu, and einstein.aset.psu.edu (thanks to these institutions). The server is chosen randomly - if a download fails, reload this page and try again. "
-
-##############################################
+#~ msgstr ""
+#~ "Note: files are downloaded from mirror servers at boinc.berkeley.edu, "
+#~ "morel.mit.edu, einstein.aei.mpg.de, einstein.astro.gla.ac.uk, einstein."
+#~ "ligo.caltech.edu, and einstein.aset.psu.edu (thanks to these "
+#~ "institutions). The server is chosen randomly - if a download fails, "
+#~ "reload this page and try again. "
+
+# #############################################
 # help.php
-##############################################
+# #############################################
 #~ msgid "HELP_TITLE"
 #~ msgstr "Getting help with BOINC"
 
@@ -713,16 +964,30 @@ msgstr ""
 #~ msgstr "Online Help"
 
 #~ msgid "HELP_P1_1"
-#~ msgstr "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 ""
+#~ "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. "
 
 #~ msgid "HELP_P1_2"
-#~ msgstr "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 ""
+#~ "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. "
 
 #~ msgid "HELP_P1_3"
-#~ msgstr "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 ""
+#~ "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."
 
 #~ msgid "HELP_P1_4"
-#~ msgstr "Volunteers speaking several languages are available. Please select a language: "
+#~ msgstr ""
+#~ "Volunteers speaking several languages are available. Please select a "
+#~ "language: "
 
 #~ msgid "HELP_HEADING2"
 #~ msgstr "BOINC help on the web"
@@ -746,25 +1011,39 @@ msgstr ""
 #~ msgstr "Be a Help Volunteer"
 
 #~ msgid "HELP_P3_1"
-#~ msgstr "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 ""
+#~ "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!  "
 
 #~ msgid "HELP_P3_2"
-#~ msgstr "If you're already a Help Volunteer: to edit your settings, %sclick here%s. "
+#~ msgstr ""
+#~ "If you're already a Help Volunteer: to edit your settings, %sclick here%"
+#~ "s. "
 
-##############################################
+# #############################################
 # index.php
-##############################################
+# #############################################
 #~ msgid "HOME_HEADING1"
 #~ msgstr "Volunteer"
 
 #~ msgid "HOME_P1"
-#~ msgstr " Use the idle time on your computer  (Windows, Mac, or Linux)  to cure diseases, study global warming,  discover pulsars, and do many other types of scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %sDownload%s and run BOINC software  %sEnter%s an email address and password. "
+#~ msgstr ""
+#~ " Use the idle time on your computer  (Windows, Mac, or Linux)  to cure "
+#~ "diseases, study global warming,  discover pulsars, and do many other "
+#~ "types of scientific research.  It's safe, secure, and easy:  %sChoose%s "
+#~ "projects  %sDownload%s and run BOINC software  %sEnter%s an email address "
+#~ "and password. "
 
 #~ msgid "HOME_P2"
-#~ msgstr "Or, if you run several projects, try an %saccount manager%s such as %sGridRepublic%s or %sBAM!%s. "
+#~ msgstr ""
+#~ "Or, if you run several projects, try an %saccount manager%s such as %"
+#~ "sGridRepublic%s or %sBAM!%s. "
 
 #~ msgid "HOME_P3"
-#~ msgstr "If you have any questions, or need help getting started, you can %stalk to a Volunteer Helper%s. "
+#~ msgstr ""
+#~ "If you have any questions, or need help getting started, you can %stalk "
+#~ "to a Volunteer Helper%s. "
 
 #~ msgid "HOME_DOWNLOAD"
 #~ msgstr "Download"
@@ -782,4 +1061,5 @@ msgstr ""
 #~ msgstr "Berkeley Open Infrastructure for Network Computing"
 
 #~ msgid "HOME_BOINC_DESC"
-#~ msgstr "Open-source software for %svolunteer computing%s and %sgrid computing%s"
+#~ msgstr ""
+#~ "Open-source software for %svolunteer computing%s and %sgrid computing%s"
diff --git a/locale/hu/pootle-boincclient610-hu.prefs b/locale/hu/pootle-boincclient610-hu.prefs
new file mode 100644
index 0000000..f0bddb4
--- /dev/null
+++ b/locale/hu/pootle-boincclient610-hu.prefs
@@ -0,0 +1,9 @@
+# Pootle preferences for project boinctrunk, language hu
+
+rights:
+  Thrawn = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  Csega = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  Vandorr = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/hu/pootle-boinctrunk-hu.prefs b/locale/hu/pootle-boinctrunk-hu.prefs
deleted file mode 100644
index 47d0f14..0000000
--- a/locale/hu/pootle-boinctrunk-hu.prefs
+++ /dev/null
@@ -1,8 +0,0 @@
-# Pootle preferences for project boinctrunk, language hu
-
-rights:
-  Thrawn = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  default = u'view, suggest, archive, pocompile'
-  nobody = u'view'
-  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  Csega = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/it/BOINC-Manager.mo b/locale/it/BOINC-Manager.mo
index e5440bf..329ad4e 100644
Binary files a/locale/it/BOINC-Manager.mo and b/locale/it/BOINC-Manager.mo differ
diff --git a/locale/it/BOINC-Manager.po b/locale/it/BOINC-Manager.po
index 380824f..0590242 100644
--- a/locale/it/BOINC-Manager.po
+++ b/locale/it/BOINC-Manager.po
@@ -1,22 +1,26 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 6.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
-"PO-Revision-Date: 2008-07-21 19:44+0100\n"
-"Last-Translator: Paolo Landi <landipaolo at tin.it>\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2010-03-09 16:10-0700\n"
+"Last-Translator: Gianfranco <costamagnagianfranco at yahoo.it>\n"
 "Language-Team: BOINC.Italy team <contact at boincitaly.org>\n"
+"Language: it\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.2.1\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 1.2.1\n"
+"X-Poedit-SearchPath-0: clientgui\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "Informazioni utente"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr "Inserisci i tuoi dati "
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
@@ -24,429 +28,500 @@ msgstr ""
 "Inserisci i dati del tuo account\n"
 "(per creare un account, visita il sito web del progetto)"
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
 msgstr ""
 "Questo progetto attualmente non accetta nuove iscrizioni.\n"
-"Puoi agganciarti al progetto se hai già un account"
+"Puoi connetterti al progetto solo se hai già un account."
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "Hai già un account su questo progetto?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "&No, nuovo utente"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "&Si, utente registrato"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+"Non siamo stati in grado di impostare le informazioni del tuo account "
+"automaticamente.\n"
+"\n"
+"Clicca sul link 'Trova le informazioni di accesso'\n"
+"in basso per trovare cosa inserire nei campi\n"
+"indirizzo email e password."
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr "Recupera le informazioni di accesso"
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "&Password:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "Scegli una &password:"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
-msgstr "C&onferma password:"
+msgstr "C&onferma la password:"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr "Hai già un account sul progetto %s?"
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr "&Nome utente:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "&Indirizzo email:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr "lunghezza minima %d"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
-msgstr "Password dimenticata?"
+msgstr "Hai dimenticato la password?"
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+"Se non sei già registrato con questo account manager,\n"
+"sei pregato di farlo prima di procedere.  Clicca sul link qui sotto\n"
+"per registrarti o per recuperare la password dimenticata."
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr "Sito web dell'account manager"
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "Connessione ad un progetto"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "Aggiorna l'account manager"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
-msgstr "Aggancio ad un account manager"
+msgstr "Connessione ad un account manager"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr ""
-"La lunghezza minima della password per questo progetto è %d. Per favore "
-"inserisci una password diversa."
+"La lunghezza minima della password per questo progetto è %d. Sei pregato di "
+"inserire una password diversa."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
-"La lunghezza minima della password per questo account manager è %d. Per "
-"favore inserisci una password diversa."
+"La lunghezza minima della password per questo account manager è %d. Sei "
+"pregato di inserire una password diversa."
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr ""
-"La password e la password di conferma non corrispondono. Prova a riscriverle "
+"La password e la password di conferma non corrispondono. Prova a scriverle "
 "di nuovo."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "URL dell'Account Manager"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr "Scegli un account manager"
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Inserire l'URL del sito web dell'account manager."
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"Per selezionare un account manager, clicca sul suo nome o \n"
+"digita il suo indirizzo (URL) in basso."
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
-msgstr "Account Manager &URL:"
+msgstr "&URL dell'Account Manager:"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr "In comunicazione con %s."
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
-msgstr "In comunicazione con il server"
+msgstr "In comunicazione con il server."
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "Si prega di attendere..."
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr "Si è verificato un errore interno del server.\n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Connesso"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Disconnesso"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "&Chiudi la finestra\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr "Chiudi la finestra di %s"
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "Chiudi la finestra del BOINC Manager."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr "&Chiudi finestra"
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
 msgstr "Esci da %s"
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "&Esci"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
-msgstr ""
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr "&Progetti\tCtrl+Shift+P"
 
-#: clientgui/AdvancedFrame.cpp:325
-#, fuzzy
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
-msgstr ""
-"La vista in modalità griglia ti permette di ordinare le verie colonne e "
-"visualizzare la barra di progresso graficamente."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr "Mostra i progetti"
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
-msgstr ""
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr "&Elaborazioni\tCtrl+Shift+T"
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "Mostra l'interfaccia grafica semplice di BOINC."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr "Visualizza le elaborazioni"
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "Connetti al &progetto..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr "Tras&ferimenti\tCtrl+Shift+X"
+
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr "Visualizza i trasferimenti"
+
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr "&Messaggi\tCtrl+Shift+M"
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr "Visualizza i messaggi"
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr "&Statistiche\tCtrl+Shift+S"
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr "Visualizza le statistiche"
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "Connetti ad un progetto"
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr "Utilizzo del &disco\tCtrl+Shift+D"
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "Collegati all'&account manager..."
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr "Visualizza l'utilizzo del disco"
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Collegati ad un account manager"
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "&Visualizzazione Semplice...\tCtrl+Shift+V"
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr "Visualizza l'interfaccia grafica semplice di BOINC"
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr "Connessione ad un &progetto o ad un account manager..."
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+"Connettiti ad un progetto o ad un account manager per iniziare ad elaborare"
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr "&Sincronizza con %s"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr "Preleva le impostazioni correnti da %s"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "Connessione ad un &progetto..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Connettiti ad un progetto per iniziare ad elaborare"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "&Smetti di utilizzare %s..."
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Rimuovi il client dal controllo dell'account manager"
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "Elaborazione &continua"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr "Elabora senza interruzioni e indipendentemente dalle preferenze"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "Elaborazione secondo le &preferenze"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "Elabora seguendo le specifiche fornite dalle preferenze"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "&Sospendi"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
-msgstr "Sospende l'elaborazione indipendentemente dalle preferenze"
+msgstr "Sospendi l'elaborazione indipendentemente dalle preferenze"
+
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr "Elaborazione GPU con&tinua"
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr ""
+"Elabora dalla GPU senza interruzioni e indipendentemente dalle preferenze"
+
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr "Elaborazione GPU secondo le p&referenze"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr ""
+"Elabora il lavoro della GPU seguendo le specifiche fornite dalle preferenze"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr "Elaborazione GPU sospes&a"
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr "Sospendi l'elaborazione GPU indipendentemente dalle preferenze"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "Attività di rete co&ntinua"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr ""
-"Permette l'attività di rete senza interruzioni e indipendentemente dalle "
+"Permetti l'attività di rete senza interruzioni e indipendentemente dalle "
 "preferenze"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
-msgstr "Attività di rete secondo le p&referenze"
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
+msgstr "Attività di rete secondo le pre&ferenze"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr ""
-"Permette l'attività di rete seguendo le specifiche fornite dalle preferenze"
+"Permetti l'attività di rete seguendo le specifiche fornite dalle preferenze"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
 msgstr "Attività di rete s&ospesa"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
-msgstr "Sospende l'attività di rete indipendentemente dalle preferenze"
+msgstr "Sospendi l'attività di rete indipendentemente dalle preferenze"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "&Opzioni..."
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "Configura le opzioni dell'interfaccia grafica e del proxy"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "&Preferenze..."
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr "Configura le preferenze locali"
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
 msgid "Connect to another computer running %s"
-msgstr "Stabilisce una connessione al processo %s di un altro computer"
+msgstr "Stabilisce una connessione ad un altro computer in cui è attivo %s"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "Seleziona un computer..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
-msgstr "Termina il client al quale il manager è connesso..."
+msgstr "Arresta il client attualmente connesso..."
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
-msgstr "Termina il core client al quale il manager è attualmente connesso"
+msgstr "Arresta definitivamente tutte le elaborazioni in corso"
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "Esegui i &benchmark per la CPU"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "Esegue i benchmark di BOINC per la CPU"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr "Ritenta le &comunicazioni di rete"
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
-msgstr "Ritenta tutte le comunicazioni di rete rinviate."
+msgstr "Ritenta tutte le comunicazioni di rete rinviate"
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
-msgstr "Leggi il file config"
+msgstr "Leggi il file di configurazione"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
-msgstr "Leggi le informazioni di configurazione dal cc_config.xml."
+msgstr "Leggi le informazioni di configurazione dal file cc_config.xml"
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "Leggi il file delle preferenze locali"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
-msgstr "Leggi le preferenze dal global_prefs_override.xml."
+msgstr "Leggi le preferenze dal file global_prefs_override.xml"
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr "Ferma l'u&so di %s..."
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "Rimuove il client dal controllo dell'account manager"
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "Connetti al &progetto"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "Collegati ad un progetto per iniziare ad elaborare"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
-msgstr "%s &aiuto"
+msgstr "&Aiuto su %s"
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
 msgid "Show information about %s"
-msgstr "Mostra le informazioni sul %s"
+msgstr "Mostra le informazioni su %s"
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
-msgstr "&%s aiuto"
+msgstr "Aiuto sul &%s"
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr "Mostra le informazioni sul %s"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr "Sito &web di %s"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
 msgid "Show information about BOINC and %s"
-msgstr "Mostra le informazioni su BOINC e su %s"
+msgstr "Mostra le informazioni su BOINC e sul %s"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
-msgstr "&Informazioni su %s..."
+msgstr "&Informazioni sul %s..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "Mostra le informazioni sulla licenza e sul copyright"
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "&File"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "&Visualizza"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "&Strumenti"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "&Attività"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "Ava&nzate"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "A&iuto"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr "%s - Termina il client corrente..."
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr "In connessione al progetto o all'account manager..."
 
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
-msgstr "%s - Scollegarsi da %s"
+msgstr "%s - Disconnessione da %s"
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -454,79 +529,88 @@ msgid ""
 "\n"
 "Do you want to stop using %s?"
 msgstr ""
-"Se ti scolleghi da %s,\n"
+"Se ti disconnetti da %s,\n"
 "manterrai tutti i tuoi progetti correnti,\n"
 "ma dovrai gestirli manualmente.\n"
 "\n"
-"Vuoi scollegarti da %s?"
-
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "Collegamento al progetto in corso..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "Nuovo tentativo di comunicazione con i/il progetti/o"
+"Vuoi disconnetterti da %s?"
 
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr "%s - Selezione della lingua"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr ""
-"Il linguaggio di default di %s è stato cambiato, per rendere effettive le "
+"La lingua di default di %s è stata cambiata, per rendere effettive le "
 "modifiche occorre riavviare %s."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - Chiudi il client corrente..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s chiuderà il client attualmente connesso,\n"
+"e ti chiederà di indicarne un altro a cui connettersi.\n"
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Nuovo tentativo di comunicazione con i/il progetti/o"
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr "Il client di %s si è connesso a %s con successo"
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "Connessione a %s in corso"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
 msgid "Connected to %s (%s)"
 msgstr "Connesso a %s (%s)"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
-msgstr "L'username specificato è già in uso"
+msgstr "Il nome utente specificato è già in uso"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 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 ""
-"Un account con l'username specificato esiste già e ha una\n"
+"Un account con il nome utente specificato esiste già e ha una\n"
 "password diversa da quella appena inserita.\n"
 "\n"
 "Visita il sito web del progetto e segui le istruzioni riportate."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "L'indirizzo e-mail specificato è già in uso"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -538,125 +622,137 @@ msgstr ""
 "\n"
 "Visita il sito web del progetto e segui le istruzioni riportate."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
-msgstr ""
+msgstr "In comunicazione con il client BOINC.  Attendere prego ..."
+
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr "&Abbandona %s"
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr "&Esci da %s"
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "Annulla"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr "%s - Errore di connessione"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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 ""
-"Non sei autorizzato a gestire il client.\n"
+"Non sei autorizzato a gestire il client BOINC.\n"
 "Contatta l'amministratore del computer per aggiungere il tuo account al "
 "gruppo 'boinc_users'."
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
 msgstr ""
-"Autorizzazione fallita per la connessione al client in esecuzione.\n"
-"Assicurati di avviare questo programma nella stessa directory del core "
-"client."
+"Autorizzazione fallita durante la connessione al client BOINC in esecuzione.\n"
+"Assicurati di avviare questo programma dalla stessa cartella."
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
-msgstr "Autorizzazione fallita nella connessione al client in esecuzione"
+msgstr ""
+"Autorizzazione fallita durante la connessione al client BOINC in esecuzione."
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "La password inserita non è corretta, riprova ancora."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - Connessione fallita"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
 msgstr ""
-"%s non può connettersi al %s client.\n"
+"%s non può connettersi al client %s.\n"
 "Ritentare la connessione?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr "%s - Avvio del servizio non riuscito"
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
 "%s non riesce ad avviare il client %s.\n"
-"Per favore vai su Pannello di controllo->Strumenti di "
-"amministrazione->Servizi componenti ed avvia il servizio BOINC."
+"Vai su Pannello di controllo->Strumenti di amministrazione->Servizi "
+"componenti ed avvia il servizio BOINC."
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
 msgstr ""
 "%s non riesce ad avviare il client %s.\n"
-"Per favore avvia il servizio e riprova."
+"Avvia il servizio e riprova."
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr "%s - Stato della connessione"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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 ""
 "%s al momento non è connesso al client %s.\n"
-"Usa l'opzione del menù 'Avanzate->Seleziona computer...' per connettersi al "
-"client %s.\n"
+"Usa l'opzione del menù 'Avanzate->Seleziona un computer...' per connettersi "
+"al client %s.\n"
 "Per connettersi al computer locale usa 'localhost' come host name."
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Siti web"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr "%s - Stato della rete"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr "%s deve connettersi a Internet. Clicca qui per aprire %s."
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
 "Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
 msgstr ""
 "%s non riesce a comunicare con il progetto e necessita di una connessione ad "
 "Internet.\n"
-"Per favore avvia una connessione ad Internet e poi seleziona la voce "
-"'Ritenta le comunicazioni' dal menù Avanzate."
+"Avvia una connessione ad Internet e poi seleziona la voce 'Ritenta le "
+"comunicazioni' dal menù Avanzate."
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
@@ -664,13 +760,13 @@ msgstr ""
 "%s deve connettersi a Internet.\n"
 "Può farlo ora?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s si sta connettendo a Internet."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
 "Please connect to the Internet, or select a default connection\n"
@@ -679,20 +775,20 @@ msgstr ""
 "%s non riesce a comunicare via Internet e nessuna connessione di default è "
 "stata selezionata.\n"
 "Attiva una connessione Internet o seleziona una connessione di default\n"
-"scegliendo Opzioni dal menù Avanzate."
+"scegliendo Opzioni dal menù Avanzate, poi scheda Connessioni."
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s è riuscito a connettersi a Internet."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "%s non è riuscito a connettersi a Internet."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
@@ -701,119 +797,162 @@ msgstr ""
 "L'aggiornamento di tutti i progetti e i nuovi tentativi di trasferimento "
 "sono in corso."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s è riuscito a disconnettersi da Internet."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s non è riuscito a disconnettersi da Internet."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+"Non sei autorizzato a gestire il client.\n"
+"\n"
+"Per avviare BOINC come utente semplice:\n"
+"  - reinstalla BOINC rispondendo \"Si\" alla domanda sugli\n"
+"     utenti non-amministratori\n"
+" or\n"
+"  - contatta l'amministratore del computer per aggiungere il tuo \n"
+"     account al gruppo 'boinc_master'."
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"La proprietà o i permessi di BOINC non sono impostati correttamente; per "
+"risolvere il problema installa nuovamente BOINC.\n"
+"(Codice errore %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
 msgstr ""
 "Per un corretto funzionamento di BOINC è necessario riavviare il sistema.\n"
-"Per favore, riavvia e prova nuovamente."
+"Riavvia e prova nuovamente."
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "BOINC Manager"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
-msgstr ""
+msgstr "BOINC Manager è stato avviato dal sistema operativo in modo automatico"
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr ""
 "Avvia BOINC in modo che sia visibile solo l'icona nella barra di sistema"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr "Cartella contenente file eseguibili del client BOINC"
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr "Cartella dei dati di BOINC"
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr "Avvia BOINC con questi parametri opzionali"
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr "disabilita la sicurezza utenti e i permessi di BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
+"imposta la modalità di debug per la visualizzazione per abilitarne i "
+"messaggi di errore del gestore"
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Rilevazione automatica)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Sconosciuto)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Stabilito dall'utente)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr "L'elaborazione è sospesa."
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr "L'attività di rete è sospesa."
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr "%s: %.2f%% completato."
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
-msgstr "%d lavoro in esecuzione."
+msgstr "%d elaborazioni in esecuzione."
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr "Riconnessione al client in corso."
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr "Non connesso ad un client."
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr "Apri %s Web..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr "Apri %s..."
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "Sospendi tutto"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr "Ferma GPU"
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "La connessione al progetto non è riuscita"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr "L'aggiornamento dell'account manager non è riuscito"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
-msgstr "La rimozione dell'account manager non è riuscita"
+msgstr "La disconnessione dall'account manager non è riuscita"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
-msgstr "Il collegamento all'account manager non è riuscito"
+msgstr "La connessione all'account manager non è riuscita"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -823,522 +962,523 @@ msgstr ""
 "Si è verificato un errore;\n"
 "controlla i messaggi per avere maggiori dettagli.\n"
 "\n"
-"Clicca 'Fine' per chiudere."
+"Clicca su 'Fine' per chiudere."
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
-msgstr "Clicca 'Fine' per chiudere."
+msgstr "Clicca su 'Fine' per chiudere."
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "Messaggi dal server:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "Sei connesso al progetto"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
-msgstr "Adesso sei connesso con successo a questo progetto."
+msgstr "Sei stato connesso con successo a questo progetto."
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
 msgstr ""
 "Quando clicchi su Fine, il tuo browser ti reindirizzerà verso una pagina "
 "dove\n"
-"potrai gestire il tuo nome account e le tue preferenze."
+"potrai gestire il tuo account e le tue preferenze."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr "Aggiornamento da %s completato."
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "Aggiornamento completato."
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr "Rimozione da %s completata."
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "Rimozione riuscita!"
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr "Connesso a %s"
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
-msgstr "Collegato all'account manager"
+msgstr "Connesso all'account manager"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
 msgstr "Benvenuto in %s!"
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
+#, c-format
 msgid "You are now successfully attached to the %s system."
-msgstr "Sei collegato con successo al sistema %s."
+msgstr "Sei stato connesso con successo al sistema %s."
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
-msgstr "Sei stato collegato con successo a questo account manager."
+msgstr "Sei stato connesso con successo a questo account manager."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr "Informazioni su %s"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "Versione:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
-msgstr ""
+msgstr "Versione dei wxWidget:"
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Copyright:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
 "(C) 2003-2008 Università della California di Berkeley.\n"
 "Tutti i diritti riservati."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
-msgstr "Berkeley Open Infrastructure for Network Computing"
+msgstr ""
+"Traduzione a cura di BOINC.Italy (www.boincitaly.org)\n"
+"\n"
+"Berkeley Open Infrastructure for Network Computing"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "&OK"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
-msgstr "numero decimale invalido"
+msgstr "numero decimale non valido"
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr "orario non valido, il formato deve essere HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
-msgstr "intervallo di tempo invalido, il formato deve essere HH:MM-HH:MM"
+msgstr "intervallo di tempo non valido, il formato deve essere HH:MM-HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
-msgstr "trovato valore inserito non valido"
+msgstr "trovato un valore inserito non valido"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr "Errore di validazione"
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
-msgstr "Vuoi veramente rimuovere tutte le preferenze locali?"
+msgstr "Vuoi veramente cancellare tutte le preferenze locali?"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr "Conferma"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
 msgstr "%s - Preferenze"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
 "Click Clear to restore web-based settings."
 msgstr ""
 "Da qui puoi impostare le preferenze solo per questo computer.\n"
-"Clicca OK per settare le preferenze.\n"
-"Clicca sul pulsante \"Rimuovi\" per ripristinare l'uso dei settaggi dal web."
+"Clicca OK per impostare le preferenze.\n"
+"Clicca sul pulsante \"Rimuovi\" per ripristinare l'uso delle impostazioni via "
+"web."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr "Rimuovi"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr "rimuovi tutte le preferenze locali e chiudi la finestra"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr "Elaborazione abilitata"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
-msgstr "Quando il computer va a batterie"
+msgstr " Quando il computer va a batterie"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr ""
-"spunta questo se vuoi che questo computer elabori anche se è alimentato a "
+"spunta questa voce se vuoi che il computer elabori anche se è alimentato a "
 "batteria"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
-msgstr "Anche quando il computer è in uso"
+msgstr " Anche quando il computer è in uso"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr ""
-"spunta questo se vuoi che questo computer elabori anche quando lo stai "
+"spunta questa voce se vuoi che il computer elabori anche quando lo stai "
 "utilizzando"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
-msgstr ""
+msgstr " Usa la GPU anche quando il computer è in uso"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
+"spunta questa voce se vuoi che la GPU elabori anche quando stai utilizzando "
+"il computer"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr "Solamente quando il computer è inutilizzato da più di"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 "elabora solo dopo che il computer non è utilizzato per questo numero di "
 "minuti"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr "minuti"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr "Quando l'uso del processore è inferiore a"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr "sospendi il lavoro se l'utilizzo processore supera questo livello"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr "percento (0 significa nessuna restrizione)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
-msgstr "Ogni giorno tra le ore"
+msgstr "Ogni giorno tra le"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
-msgstr "inizia l'elaborazione a questo orario"
+msgstr "inizia l'elaborazione a quest'ora"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
-msgstr "e"
+msgstr "e le"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
-msgstr "sospende l'elaborazione per questa work unit"
+msgstr "sospende l'elaborazione a quest'ora"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
-msgstr "(nessuna restrizione se uguali)"
+msgstr "(nessuna restrizione se sono uguali)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
-msgstr "Dettaglio per giorni della settimana:"
+msgstr "Impostazioni speciali per alcuni giorni della settimana:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr ""
-"spunta la casella per specificare le ore per questo giorno della settimana"
+"spunta la voce del giorno della settimana per specificare le ore di "
+"funzionamento"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr "Lunedì"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr "Martedì"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr "Mercoledì"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr "Giovedì"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr "Venerdì"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr "Sabato"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr "Domenica"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr "Altre opzioni"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
-msgstr "Cambia applicazione ogni "
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
+msgstr "Cambia applicazione ogni"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr "Sui sistemi multiprocessore, usa al massimo"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
 msgid "% of the processors"
 msgstr "% dei processori"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr "Usa al massimo"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
 msgid "% CPU time"
 msgstr "% della CPU"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr "uso del processore"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr "Opzioni generali"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
-msgstr "Velocità max download"
+msgstr "Velocità massima di scaricamento"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr "KBytes/sec."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
-msgstr "Velocità massima upload"
+msgstr "Velocità massima di invio"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
-msgstr "Connetti alla rete ogni"
+msgstr "Connessione alla rete ogni"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
 msgstr ""
-"questo computer è connesso a internet ogni circa X giorni\n"
+"questo computer è connesso a Internet circa ogni X giorni\n"
 "(0 se è sempre connesso)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr "giorni"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
-msgstr "Riserva lavoro addizionale:"
+msgstr "Riserva di lavoro addizionale"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr "giorni (max 10)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
-msgstr "Salta verifica immagini"
+msgstr " Salta la verifica dei file immagine"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
-msgstr "spunta questa se il tuo provider internet modifica i file di immagine"
+msgstr "spunta questa voce se il tuo provider Internet modifica i file immagine"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr "Opzioni di connessione"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
-msgstr "Chiedi conferma prima di connetterti ad internet"
+msgstr "Chiede conferma prima di connettersi ad Internet"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr ""
-"se spuntato, sarà chiesta una conferma prima di effettuare una connessione "
-"ad internet"
+"se la voce è spuntata, sarà chiesta una conferma prima di effettuare una "
+"connessione ad Internet"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr "Disconnetti al termine delle operazioni"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
 msgstr ""
-"se spuntato, BOINC utilizza la connessione quando è libera\n"
+"se la voce è spuntata, BOINC riaggancia al termine delle operazioni\n"
 "(rilevante solo per connessioni dialup)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr "Uso della rete"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
-msgstr "ora di avvio dell'uso della rete"
+msgstr "ora di inizio dell'uso della rete"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr "ora di interruzione dell'uso della rete"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr "uso della rete"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr "Uso del disco"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr "il massimo spazio su disco usato da BOINC (in Gigabytes)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr "Gigabytes di spazio sul disco"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr "Lascia come minimo"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr ""
 "BOINC lascia almeno questa quantità di spazio libero su disco (in Gigabytes)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
-msgstr "Gigabytes di  spazio libero sul disco"
+msgstr "Gigabytes di spazio libero sul disco"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
-msgstr "BOINC usa al massimo questa percentuale dello spazio del disco"
+msgstr "BOINC usa al massimo questa percentuale di spazio del disco"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr "% dello spazio totale del disco"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
 msgstr "Scrivi su disco al massimo ogni"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr "secondi"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr "% del file di paging (spazio di swap)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr "Uso della memoria"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr "% quando il computer è in uso"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr "% quando il computer non è in uso"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
-msgstr "Lascia le applicazioni in memoria quando sono sospese"
+msgstr " Lascia le applicazioni in memoria quando sono sospese"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
-msgstr "se spuntato, le elaborazioni sospese vengono lasciate in memoria"
+msgstr ""
+"se la voce è spuntata, le elaborazioni sospese vengono lasciate in memoria"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr "uso del disco e della memoria"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr "OK"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr "salva tutto e chiudi la finestra"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr "Annulla"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr "chiudi la finestra senza salvare"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "Aiuto"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
-msgstr "mostra la pagina web delle preferenze"
+msgstr "mostra la pagina web di aiuto sulle preferenze"
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
-msgstr "%s - Conferma di chiusura"
+msgstr "%s - Conferma della chiusura"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1347,9 +1487,15 @@ msgid ""
 "If you also want to stop running the science applications when you\n"
 "exit the Manager, then choose from the following options:"
 msgstr ""
+"Hai richiesto di chiudere il %s,\n"
+"che ti permette di visualizzare e gestire\n"
+"le elaborazioni in corso sul tuo computer.\n"
+"\n"
+"Se vuoi fermare anche le elaborazioni quando esci\n"
+"dal Manager, scegli tra le opzioni seguenti:"
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1365,538 +1511,496 @@ msgstr ""
 "che uscire dall'applicazione; questo permetterebbe a %s di eseguire i suoi\n"
 "processi negli orari che hai selezionato nelle tue preferenze."
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
-msgstr ""
+msgstr "Ferma l'elaborazione quando esci dal Manager"
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
-msgstr ""
+msgstr "Ricorda la scelta e non visualizzare più questo messaggio."
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "&Annulla"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
-msgstr ""
+msgstr "Non visualizzare piu questo messaggio."
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
-msgstr ""
+msgstr "&Chiudi"
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
-msgstr ""
+msgstr "Proprietà del progetto "
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
-msgstr "Generale"
+msgstr "Dati generali"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
-msgstr ""
+msgstr "URL principale"
 
-#: clientgui/DlgItemProperties.cpp:107
-#, fuzzy
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
-msgstr "Nome utente:"
+msgstr "Nome utente"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
-msgstr ""
+msgstr "Nome del team"
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Allocazione risorse"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
-msgstr ""
+msgstr "Scheduler RPC rimandato di"
 
-#: clientgui/DlgItemProperties.cpp:114
-msgid "Non CPU intensive"
-msgstr ""
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr "Scaricamento dei file rimandato di"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
-msgid "yes"
-msgstr ""
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr "Invio dei file rimandato di"
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr "Computer ID"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+msgid "Non CPU intensive"
+msgstr "Non intensivo per la CPU"
+
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "yes"
+msgstr "si"
+
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
-msgstr ""
+msgstr "no"
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
-msgstr ""
+msgstr "Sospeso dall'utente"
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
-msgstr ""
+msgstr "Non richiedere nuovo lavoro"
 
-#: clientgui/DlgItemProperties.cpp:117
-#, fuzzy
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr "Richiesta allo scheduler in corso"
 
-#: clientgui/DlgItemProperties.cpp:118
-#, fuzzy
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
-msgstr "Collegato all'account manager"
+msgstr "Connesso con un account manager"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
-msgstr ""
+msgstr "Disconnetti dal progetto quando termina l'elaborazione"
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
-msgstr ""
+msgstr "Terminato"
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
-msgstr ""
+msgstr "Crediti"
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
-msgstr ""
+msgstr "Utente"
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
-msgstr ""
+msgstr "Computer"
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
-msgstr ""
+msgstr "Programmazione del lavoro"
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
-msgstr ""
+msgstr "Priorità della CPU"
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
-msgstr ""
+msgstr "Priorità di richiesta di lavoro per la CPU"
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
-msgstr ""
+msgstr "Richiesta di lavoro per la CPU rinviata di"
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
-msgstr ""
+msgstr "Intervallo di rinvio"
+
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr "Priorità esecuzione NVIDIA GPU"
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
-msgstr ""
+msgstr "Priorità di richiesta di lavoro per la GPU NVIDIA"
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
-msgstr ""
+msgstr "Richiesta di lavoro per la GPU NVIDIA rinviata di"
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
-msgstr ""
+msgstr "Intervallo di rinvio"
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr "Priorità della GPU ATI"
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr "Priorità di richiesta di lavoro per la GPU ATI"
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr "Richiesta di lavoro per la GPU ATI rinviata di"
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr "Intervallo di rinvio"
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
-msgstr ""
+msgstr "Fattore di correzione del tempo di elaborazione"
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
-msgstr ""
+msgstr "Proprietà dell'unità di lavoro "
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Applicazione"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
-msgstr ""
+msgstr "Nome dell'unità di lavoro"
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
-msgstr ""
+msgstr "Stato"
+
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr "Ricevuta"
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Scadenza"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
-msgstr ""
+msgstr "Risorse in uso"
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
-msgstr ""
+msgstr "Tempo CPU all'ultimo checkpoint"
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "Tempo CPU"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
-#, fuzzy
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 msgid "Elapsed time"
 msgstr "Tempo trascorso"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
-msgstr ""
+msgstr "Stima del tempo rimanente"
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
-msgstr ""
+msgstr "Frazione già eseguita"
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
-msgstr ""
+msgstr "Dimensioni della memoria virtuale"
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
-msgstr ""
+msgstr "Dimensioni della memoria di lavoro"
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
-msgstr ""
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr "Cartella"
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr "ID processo"
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Nuovo"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
-msgstr "Download fallito"
+msgstr "Scaricamento fallito"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
-msgstr "Donwload in corso"
+msgstr "Scaricamento in corso"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "Progetto sospeso dall'utente"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
-msgstr "Work unit sospesa dall'utente"
+msgstr "Elaborazione sospesa dall'utente"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
-msgstr "Sospeso"
+msgstr "Sospesa"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr " - alimentazione a batterie"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr " - utente attivo"
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr " - elaborazione sospesa"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
-msgstr " - orario del giorno"
+msgstr " - limiti di orario"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr " - benchmark della CPU"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
-msgstr " - richiesto spazio su disco"
+msgstr " - richiesto di spazio su disco"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr "In attesa di memoria"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
-msgstr "In attesa di memoria"
+msgstr "In attesa di memoria condivisa"
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr "In elaborazione, priorità alta"
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "In elaborazione"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr "In attesa di esecuzione"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr "Pronto per l'elaborazione"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Errore di calcolo"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
-msgstr "Upload fallito"
+msgstr "Invio non riuscito"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
-msgstr "Uploading in corso"
+msgstr "Invio in corso"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Annullato dall'utente"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "Annullato dal progetto"
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "Annullato"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
-msgstr "Accordato"
+msgstr "Riconosciuto"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
-msgstr "Pronto da riportare"
+msgstr "Pronto per il report"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Errore: stato non valido '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
 msgstr "%s - Opzioni..."
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
-msgstr ""
+msgstr "Lingua:"
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
-msgstr ""
+msgstr "Quale lingua desideri utilizzare?"
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
 msgstr ""
+"Intervallo di sollecito di connessione alla rete:\n"
+"(minuti)"
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr ""
+"Quanto spesso vuoi che il Manager ti ricordi che serve una connessione di "
+"rete?"
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
-msgstr ""
+msgstr "Avvia il Manager al login?"
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
-msgstr ""
+msgstr "Avvia il Manager subito dopo il login."
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
-msgstr ""
+msgstr "Vuoi abilitare la finestra di dialogo alla chiusura del Manager?"
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
-msgstr ""
+msgstr "Mostra la finestra di dialogo alla chiusura del Manager."
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "Impostazioni di Dial-up e Virtual Private Network"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "&Imposta come predefinita"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "&Non predefinita"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Connessione predefinita:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Connessioni"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Connetti tramite server proxy HTTP"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "Configurazione server proxy HTTP"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Indirizzo:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Porta:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
-msgstr ""
+msgstr "Non utilizzare il proxy per:"
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Lascia questi spazi vuoti se non necessari"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Nome utente:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Password:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "Proxy HTTP"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Connetti tramite server proxy SOCKS"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "Configurazione server proxy SOCKS"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "Proxy SOCKS"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
 msgid "%s - Select Computer"
 msgstr "%s - Seleziona un computer"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
-msgstr "Nome host:"
+msgstr "Nome del computer:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s - Web browser non trovato"
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
+#, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1912,243 +2016,236 @@ msgstr ""
 "BROWSER con l'indirizzo del tuo browser web,\n"
 "quindi riavvia %s."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "Forum"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "Discuti con altri utenti sul forum di SETI at home"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "Fai domande e riporta problemi"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "Il tuo account"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "Visualizza le informazioni sul tuo account e sui crediti totali"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "Le tue preferenze"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr ""
 "Visualizza e modifica il profilo del tuo account SETI at home e le tue "
 "preferenze"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "I tuoi risultati"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
-msgstr ""
-"Visualizza l'ultima tua settimana (o più) di risultati computazionali e di "
-"lavoro"
+msgstr "Visualizza la tua ultima settimana (o più) di elaborazioni"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "I tuoi computer"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr ""
 "Visualizza l'elenco di tutti i computer con cui stai partecipando a "
 "SETI at Home"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "Il tuo team"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "Visualizza le informazioni sul tuo team"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "Domande frequenti"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "Leggi la lista delle domande frequenti di Einstein at Home"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "Informazioni sullo screensaver"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "Leggi una descrizione dettagliata dello sreensaver di Einstein at Home"
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr ""
 "Discuti con gli amministratori e gli altri utenti sul forum di Einstein at Home"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "Stato di Einstein"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Stato attuale del server di Einstein at Home"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "Riporta i problemi"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr "Collegamento al forum problemi e bug di Einstein at Home"
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr ""
 "Visualizza e modifica il profilo del tuo account su Einstein at Home e le "
 "preferenze"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "Riepilogo dell'account"
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr ""
 "Visualizza l'elenco di tutti i computer con cui stai partecipando ad "
 "Einstein at Home"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "Progetto LIGO"
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr ""
 "Pagina iniziale del progetto Laser Interferometer Gravitational-wave "
 "Observatory (LIGO)"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "Progetto GEO-600"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "Pagina iniziale del progetto GEO-600"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Team"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "Informazioni sul tuo Team"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "Ricevi aiuto per climateprediction.net"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
-msgstr "Notizie"
+msgstr "News"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "Notizie su climateprediction.net"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr ""
 "Visualizza le informazioni sul tuo account, i crediti ed il lavoro "
 "effettuato"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "Informazioni sul tuo team"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr "Cerca suggerimenti nel nostro sistema di aiuto"
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "Statistiche globali"
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "Riepilogo delle statistiche per World Community Grid"
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr "My Grid"
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "Le tue statistiche e le tue impostazioni"
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
-msgstr "Profili del dispositivo"
+msgstr "Profili del computer"
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
-msgstr "Aggiorna le preferenze del tuo dispositivo"
+msgstr "Aggiorna le preferenze del tuo computer"
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr "Ricerca"
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "Informati sui progetti ospitati nel World Community Grid"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr "Avvio del servizio del client; attendere per favore..."
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "Recupero dello stato del sistema in corso; attendere per favore..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
-msgstr "Recupero informazioni sull'host in corso; attendere per favore..."
+msgstr "Recupero informazioni sul computer in corso; attendere per favore..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "Connessione Internet assente"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Attiva una connessione Internet e riprova."
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Progetto non trovato"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2158,11 +2255,11 @@ msgstr ""
 "\n"
 "Controlla l'URL e riprova."
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "Account manager non trovato"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2174,52 +2271,64 @@ msgstr ""
 "\n"
 "Controlla l'URL e riprova."
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr "Autenticazione fallita."
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr "Controlla nome utente e password e riprova."
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr "Controlla l'indirizzo e-mail e la password e riprova"
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr "Scegli un progetto"
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
-"Per selezionare un progetto, clicca sul suo nome o digita il suo indirizzo "
-"(URL) sotto."
+"Per selezionare un progetto, clicca sul nome o digita il suo indirizzo "
+"sotto."
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "&URL del progetto:"
 
-#: clientgui/ProjectInfoPage.cpp:320
-msgid "You are already attached to this project. Please choose a different project."
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
 msgstr ""
+"Questo progetto potrebbe non avere lavoro per il tuo tipo di computer. Sei "
+"sicuro di voler continuare?"
 
-#: clientgui/ProjectInfoPage.cpp:321
-#, fuzzy
-msgid "Already Attached to Project"
-msgstr "Il client BOINC è già connesso a questo progetto"
+#: clientgui/ProjectInfoPage.cpp:417
+msgid "You are already attached to this project. Please choose a different project."
+msgstr "Sei già connesso a questo progetto. Scegli un progetto diverso."
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
-msgstr ""
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr "Clicca"
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr "CPU Multicore supportata"
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr "GPU Nvidia Supportata"
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
-msgstr "Clicca qui per andare al sito web di %s."
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr "GPU ATI Supportata"
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr "Sito web progetto"
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
@@ -2227,20 +2336,19 @@ msgstr ""
 "Comunicazione col progetto in corso\n"
 "Attendere prego..."
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
 msgstr ""
-"Il/i file di wizard richiesti mancano dal server stabilito.\n"
+"Il/i file di wizard richiesti non si trovano server stabilito.\n"
 "(lookup_account.php/create_account.php)\n"
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "Comunicazione tramite la rete fallita"
 
-#: clientgui/ProxyInfoPage.cpp:200
-#, fuzzy
+#: clientgui/ProxyInfoPage.cpp:199
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2251,27 +2359,25 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
-"Boinc non riesce a comunicare su internet. Le principali\n"
-"ragioni sono:\n"
+"Il programma BOINC di World Community Grid non riesce a\n"
+"comunicare su internet. Le principali ragioni sono:\n"
 "\n"
-"1) Problemi di connettività. Controlla la tua connessione di rete o la "
-"connessione del modem\n"
-"e poi riprova l'operazione.\n"
+"1) Problemi di connettività.  Controlla la tua connessione di rete o\n"
+"la connessione del modem e poi riprova l'operazione.\n"
 "\n"
-"2) Il firewall sta bloccando BOINC. Devi\n"
-"configurare il tuo firewall per permettere a boinc di comunicare\n"
-"sulla porta 80. Una volta risolto questo, clicca su indietro e riprova.\n"
+"2) Il firewall sta bloccando BOINC. Devi configurare il tuo\n"
+"firewall per permettere a BOINC di comunicare sulle porte 80 e 443.\n"
+"Una volta fatto questo, clicca su indietro e riprova.\n"
 "\n"
-"3) Stai usando un server proxy e BOINC deve\n"
-"sapere i suoi dati."
+"3) Stai usando un server proxy e BOINC non è configurato.\n"
+"Clicca su \"Next\" per configurare il proxy."
 
-#: clientgui/ProxyInfoPage.cpp:217
-#, fuzzy
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2287,506 +2393,481 @@ msgid ""
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
-"Boinc non riesce a comunicare su internet. Le principali\n"
+"BOINC non riesce a comunicare su internet. Le principali\n"
 "ragioni sono:\n"
 "\n"
-"1) Problemi di connettività. Controlla la tua connessione di rete o la "
-"connessione del modem\n"
-"e poi riprova l'operazione.\n"
+"1) Problemi di connettività. Controlla la tua connessione di rete o\n"
+"la connessione del modem e poi riprova l'operazione.\n"
 "\n"
-"2) Il firewall sta bloccando BOINC. Devi\n"
-"configurare il tuo firewall per permettere a boinc di comunicare\n"
-"sulla porta 80. Una volta risolto questo, clicca su indietro e riprova.\n"
+"2) Il firewall sta bloccando BOINC. Devi configurare il tuo\n"
+"firewall per permettere a BOINC di comunicare sulla porta 80.\n"
+"Una volta fatto questo, clicca su indietro e riprova.\n"
 "\n"
-"3) Stai usando un server proxy e BOINC deve\n"
-"sapere i suoi dati."
+"3) Stai usando un server proxy e BOINC non è configurato.\n"
+"Clicca su \"Next\" configurarlo per il proxy."
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Configurazione proxy"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "Proxy HTTP"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "Server:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "Rilevazione automatica"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "Proxy SOCKS"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr "Visualizzazione Avanzata...\tCtrl+Shift+A"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr "Visualizza l'interfaccia grafica avanzata."
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr "&%s"
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr "Ricezione dello stato corrente in corso."
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
-msgstr "Nessun progetto agganciato. Per favore aggiungine uno."
+msgstr "Non sei connesso ad alcun progetto.  Prima connettiti ad un progetto."
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr "Scaricamento del lavoro dal server in corso."
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr "Elaborazione sospesa: alimentazione a batterie."
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
-msgstr "Elaborazione sospesa: utente attivo."
+msgstr "Elaborazione sospesa: l'utente è attivo."
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
-msgstr "Elaborazione sospesa: scelta dall'utente"
+msgstr "Elaborazione sospesa: l'utente ha sospeso l'elaborazione."
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
-msgstr "Elaborazione sospesa: orario del giorno."
+msgstr "Elaborazione sospesa: superati i limiti di orario."
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
-msgstr "Elaborazione sospesa: esecuzione benchmark."
+msgstr "Elaborazione sospesa: esecuzione dei benchmark."
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr "Elaborazione sospesa."
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr "In attesa di contattare i server dei progetti."
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr "Ricezione dello stato corrente in corso"
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
-msgstr "Nessun lavoro disponibile da eseguire"
+msgstr "Nessun lavoro disponibile da elaborare"
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
-msgstr "Impossibile connettersi al core client"
-
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+msgstr "Impossibile connettersi al client BOINC"
+
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Progetto"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "Ora"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Messaggio"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Copia tutti i messaggi negli appunti."
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 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 ""
 "Copia i messaggi selezionati negli appunti. Puoi selezionare più messaggi "
-"insieme tenendo premuto il tasto shift o control mentre clicchi sui "
-"messaggi."
+"insieme tenendo premuto il tasto Shift o Ctrl mentre clicchi sui messaggi."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
 "Copia i messaggi selezionati negli appunti. Puoi selezionare più messaggi "
-"insieme tenendo premuto il tasto shift o control mentre clicchi sui "
-"messaggi."
+"insieme tenendo premuto il tasto Shift o Ctrl mentre clicchi sui messaggi."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
-msgstr "Ottieni aiuto con BOINC"
+msgstr "Ottieni aiuto su BOINC"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr "%s - Messaggi"
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr "100 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr "200 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr "500 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr "1 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr "2 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr "5 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr "10 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr "20 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr "50 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr "100 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr "10%"
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr "20%"
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr "30%"
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr "40%"
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr "50%"
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr "60%"
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr "70%"
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr "80%"
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr "90%"
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr "100%"
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr "1"
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr "3"
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr "5"
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr "10"
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr "15"
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr "30"
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr "60"
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr "Interfaccia"
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr "Interfaccia:"
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr "Preferenze"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr "Voglio personalizzare le mie preferenze solamente per questo computer."
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr "Preferenze personalizzate"
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
-msgstr "Esegui lavoro solamente tra:"
+msgstr "Elabora solamente tra:"
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr "Connetti ad internet solamente tra:"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr "Non utilizzare più di:"
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr "di spazio sul disco"
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr "del processore"
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr "Elabora quando il pc è alimentato a batterie?"
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr "Elabora dopo che il PC è inutilizzato da:"
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr "Qualunque momento"
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr "%d MB"
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr "%4.2f GB"
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr "%d%%"
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr "0 (Elabora sempre)"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr "%d"
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
-msgstr "In pausa: altro lavoro in esecuzione"
+msgstr "In pausa: altre elaborazioni in corso"
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr "In pausa: impostato dall'utente. Clicca su 'Riprendi' per continuare"
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr "In pausa: utente attivo"
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
-msgstr "Pausa: alimentazione a batteria"
+msgstr "In pausa: alimentazione a batteria"
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
-msgstr "In pausa: orario del giorno"
+msgstr "In pausa: superati i limiti di orario"
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr "In pausa: esecuzione dei benchmark"
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr "Sospeso"
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
-msgstr ""
+msgstr "Sospeso: l'avvio dell'applicazione è stato rimandato"
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr "Clicca per visualizzare la grafica del progetto"
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr "Connetti ad un altro progetto"
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr "Sincronizza i progetti con il sistema dell'account manager"
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
-msgstr "Apri una finestra per vedere i messaggi"
+msgstr "Apri la finestra per visualizzare i messaggi"
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr "Ferma tutte le attività"
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr "Riprendi le attività"
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr "Apri la finestra per impostare le tue preferenze"
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
-msgstr "Passa all'interfaccia avanzata di BOINC"
+msgstr "Passa alla visualizzazione avanzata di BOINC"
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
-msgstr "Progetti:"
+msgstr "I miei progetti:"
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
-msgstr "%s. Lavoro eseguito da %s:  %0.2f"
+msgstr "%s. Crediti ottenuti da %s:  %0.2f"
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
-msgstr "Rimuovi Progetto"
+msgstr "Disconnettiti dal progetto"
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
-msgstr "Sei sicuro di voler rimuovere il progetto '%s'?"
+msgstr "Sei sicuro di volerti disconnettere dal progetto '%s'?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
-msgstr "Rimuovi il progetto"
+msgstr "Disconnettiti dal progetto"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr "%.1lf"
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr "%d ore %d min %d sec"
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
-msgstr "Sei sicuro di voler mostrare la grafica in una macchina remota?"
+msgstr "Sei sicuro di voler mostrare la grafica in remoto?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Mostra la grafica"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
-msgstr "Applicazione:"
+msgstr "Applicazione: "
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
-msgstr "Tempo rimanente:"
+msgstr "Tempo rimanente: "
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
-msgstr "Tempo trascorso:"
+msgstr "Tempo trascorso: "
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
-msgstr ""
+msgstr "Condizioni d'uso"
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
-msgstr ""
+msgstr "Leggi le condizioni d'uso che seguono:"
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
-msgstr ""
+msgstr "Accetto le condizioni d'uso."
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
-msgstr ""
+msgstr "Non accetto le condizioni d'uso."
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Progetto temporaneamente non disponibile"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2796,11 +2877,11 @@ msgstr ""
 "\n"
 "Si prega di riprovare più tardi."
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "Account manager temporaneamente non disponibile"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2810,32 +2891,32 @@ msgstr ""
 "\n"
 "Si prega di riprovare più tardi."
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
-msgstr "Inserire un'account key per continuare."
+msgstr "Inserire la chiave di accesso per proseguire."
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
-msgstr "Accoun key non valida; inserire un'account key valida"
+msgstr "Chiave di accesso non valida; inserire una chiave di accesso valida"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Conflitto di validazione"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr "Specificare un indirizzo email"
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr "Indirizzo email non valido; inserire un indirizzo email valido"
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "URL mancante"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2845,18 +2926,18 @@ msgstr ""
 "Per esempio:\n"
 "http://www.example.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
-msgstr "URL non valida"
+msgstr "URL non valido"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2866,769 +2947,698 @@ msgstr ""
 "Per esempio:\n"
 "http://boincproject.example.com"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
-msgstr "'%s' non contiene un nome host valido."
+msgstr "'%s' non contiene un nome di computer valido."
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "'%s' non contiene un percorso valido."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "Comandi"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Copia tutti i messaggi"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Copia i messaggi selezionati"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
-msgstr ""
+msgstr "Mostra solo questo progetto"
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
-msgstr ""
+msgstr "Mostra solamente i messaggi del progetto selezionato."
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Messaggi"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "Copia di tutti i messaggi negli appunti in corso..."
 
-#: clientgui/ViewMessages.cpp:223
-#, fuzzy
+#: clientgui/ViewMessages.cpp:223
 msgid "Copying selected messages to the clipboard..."
 msgstr "Copia di tutti i messaggi selezionati negli appunti in corso..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
-msgstr ""
+msgstr "Filtraggio dei messaggi in corso..."
 
-#: clientgui/ViewMessages.cpp:494
-#, fuzzy
+#: clientgui/ViewMessages.cpp:494
 msgid "Show all messages"
-msgstr "Copia tutti i messaggi"
+msgstr "Mostra tutti i messaggi"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
-msgstr ""
+msgstr "Mostra i messaggi di tutti i progetti."
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr "ID"
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr "Priorità"
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr "Messaggi"
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr "Copia di tutti i messaggi selezionati negli appunti in corso..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr "Informazioni"
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr "Attenzione"
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr "Errore"
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
-msgstr ""
+msgstr "News Feed"
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
-msgstr ""
+msgstr "BOINC"
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
-msgstr ""
+msgstr "Mostra le ultime news su BOINC"
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
-msgstr ""
+msgstr "Sito web di BOINC"
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
-msgstr ""
+msgstr "Mostra le ultime notizie su BOINC dal sito di BOINC"
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Aggiorna"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr ""
-"Riporta il lavoro completato, aggiorna gli ultimi crediti, prendere le "
-"ultime preferenze, e possibilmente ottenere più lavoro."
-
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+"Riporta il lavoro completato, aggiorna il totale dei crediti e le "
+"preferenze, e possibilmente ottiene altro lavoro."
+
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Sospendi"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
-msgstr "Sospende il lavoro per questo progetto."
-
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+msgstr "Sospendi il lavoro per questo progetto."
+
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
-msgstr "Blocca richiesta lavoro"
+msgstr "Blocca la richiesta di lavoro"
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
-msgstr "Non scarica nuovo lavoro per questo progetto."
+msgstr "Non scaricare nuovo lavoro per questo progetto."
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Reset del progetto"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 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 ""
 "Cancella tutti i file e le elaborazioni associate a questo progetto e "
-"scarica nuovo lavoro. Puoi aggiornare il progetto prima di eseguire il reset "
-"per riportare le elaborazioni già completate."
+"scarica nuovo lavoro.  Puoi aggiornare il progetto prima di eseguire il "
+"reset per riportare le elaborazioni già completate."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Rimuovi"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr ""
-"Rimuovi questo progetto dal computer. Il lavoro in corso andrà perso (usa "
-"prima 'Aggiorna' per restituire il lavoro già completato)."
+"Rimuovi questo progetto dal computer.  Il lavoro in corso andrà perso (usa "
+"prima 'Aggiorna' per inviare il lavoro già completato)."
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
-msgstr ""
+msgstr "Proprietà"
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
-msgstr ""
+msgstr "Visualizza i dettagli del progetto."
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Account"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "Crediti totali"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
-msgstr "Media crediti"
-
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+msgstr "Media dei crediti"
+
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Stato"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Progetti"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "Aggiornamento del progetto in corso..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
-msgstr "Ripresa del progetto in corso..."
+msgstr "Riavvio del progetto in corso..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "Sospensione del progetto in corso..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr ""
-"In comunicazione con il progetto per abilitare il donwload di ulteriore "
+"Comunicazione con il progetto per abilitare lo scaricamento di ulteriore "
 "lavoro in corso..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr ""
-"In comunicazione con il progetto per non ottenere ulteriore lavoro in "
-"corso..."
+"Comunicazione con il progetto per non ottenere ulteriore lavoro in corso..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "Reset del progetto in corso..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Vuoi davvero fare il reset del progetto '%s'?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Reset del progetto"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "Rimozione del progetto in corso..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "Avvio del browser in corso..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Riprendi"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "Riprendi il lavoro per questo progetto."
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "Abilita richiesta lavoro"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
-msgstr "Permetti a questo progetto di ottenere nuovo lavoro."
+msgstr "Permetti a questo progetto di richiedere nuovo lavoro."
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "Non richiedere nuovo lavoro per questo progetto."
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Sospeso dall'utente"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "Non richiedere nuovo lavoro"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr "Progetto concluso. E' possibile rimuoverlo senza conseguenze."
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
-msgstr "Rimuovi progetto al termine dell'elaborazione"
+msgstr "Rimuovi il progetto al termine dell'elaborazione"
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Richiesta allo scheduler in attesa"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr "Richiesta allo scheduler in corso"
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "Comunicazione rinviata "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr "Progetti"
 
-#: clientgui/ViewResources.cpp:61
-#, fuzzy
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
-msgstr "uso totale del disco"
+msgstr "Totale dello spazio del disco utilizzato"
 
-#: clientgui/ViewResources.cpp:82
-#, fuzzy
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
-msgstr "spazio del disco utilizzato dai progetti BOINC"
+msgstr "Spazio del disco utilizzato dai progetti BOINC"
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Disco"
 
-#: clientgui/ViewResources.cpp:223
-#, fuzzy
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
-msgstr "non agganciato a nessun progetto BOINC - 0 bytes"
+msgstr "non connesso a nessun progetto BOINC - 0 bytes"
 
-#: clientgui/ViewResources.cpp:260
-#, fuzzy
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
-msgstr "usato da BOINC - "
+msgstr "usato da BOINC: "
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
-msgstr ""
+msgstr "libero, utilizzabile da BOINC: "
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
-msgstr ""
+msgstr "libero, non utilizzabile da BOINC: "
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
-msgstr ""
+msgstr "libero: "
 
-#: clientgui/ViewResources.cpp:300
-#, fuzzy
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
-msgstr "usato da altri programmi - "
+msgstr "usato da altri programmi: "
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Totale utente"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Media dell'utente"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Totale del computer"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Media del computer"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
-msgstr "Ultimo aggiornamento: %0f giorni fa"
+msgstr "Ultimo aggiornamento: %.0f giorni fa"
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Mostra il totale dell'utente"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
-msgstr "Mostra il credito totale dell'utente"
+msgstr "Mostra i crediti totali dell'utente"
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "Mostra la media dell'utente"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
-msgstr "Mostra il tuo credito medio"
+msgstr "Mostra la media dei crediti dell'utente"
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
-msgstr "Mostra totale computer"
+msgstr "Mostra il totale del computer"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
-msgstr "Mostra i crediti ottenuti da questo computer"
+msgstr "Mostra i crediti totali del computer"
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
-msgstr "Mostra media computer"
+msgstr "Mostra la media del computer"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
-msgstr "Mostra il credito medio per questo computer"
+msgstr "Mostra la media dei crediti del computer"
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< Progetto &precedente"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr "Mostra il grafico per il progetto precedente"
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "Progetto &successivo >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr "Mostra il grafico per il progetto successivo"
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "Tipo di visualizzazione"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "Tutti i progetti"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr "Mostra tutti i progetti, un grafico per progetto"
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "Un progetto"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr "Mostra il grafico del progetto selezionato"
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
-msgstr "Tutti i progetti  (somma)"
+msgstr "Tutti i progetti (somma)"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr "Mostra tutti i progetti in un unico grafico"
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Statistiche"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "Aggiornamento dei grafici in corso..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Ritenta il trasferimento"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "Clicca 'Ritenta il trasferimento' per trasferire nuovamente il file"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Annulla il trasferimento"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr ""
 "Clicca 'Annulla il trasferimento' per cancellare il file dalla coda dei "
 "trasferimenti. Questa azione comporterà la perdita dei crediti relativi a "
 "questo risultato."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "File"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
-msgstr "Progresso"
+msgstr "Avanzamento"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Dimensione"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "Tempo trascorso"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Velocità"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Trasferimenti"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "Tentativo di trasferimento in corso..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "Interruzione del trasferimento in corso..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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 ""
-"Sei sicuro di voler annullare questo trasferimento '%s'?\n"
-"NOTA: Annullando il trasferimento, invaliderai il processo e\n"
+"Sei sicuro di voler annullare il trasferimento di '%s'?\n"
+"NOTA: Annullando il trasferimento, invaliderai l'elaborazione e\n"
 "non otterrai i relativi crediti."
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Annulla il trasferimento del file"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
-msgstr "Riprova tra"
+msgstr "Riprova tra "
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
-msgstr "Upload in sospeso"
+msgstr "Invio in sospeso"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
-msgstr "Download in sospeso"
+msgstr "Scaricamento in sospeso"
+
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr " (rinvio causa progetto: "
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ")"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr "Trasferimenti"
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 msgid "Aborting transfer(s)..."
 msgstr "Interruzione del/i trasferimento/i in corso..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
 "will not receive credit for it."
 msgstr ""
-"Sei sicuro di voler annullare questo trasferimento '%s'?\n"
-"NOTA: Annullando il trasferimento, invaliderai il processo e\n"
+"Sei sicuro di voler annullare questo/i trasferimento/i?\n"
+"NOTA: Annullando il trasferimento, invaliderai i risultati e\n"
 "non otterrai i relativi crediti."
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 msgid "Abort File Transfer(s)"
 msgstr "Annulla il trasferimento del/i file"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr "Mostra le elaborazioni in corso"
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr "Mostra solo le elaborazioni in corso."
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
-msgstr "Mostra la parte grafica dell'applicazione in una finestra."
+msgstr "Mostra la grafica dell'applicazione in una finestra."
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
-msgstr "Sospende l'elaborazione selezionata"
+msgstr "Sospende l'elaborazione selezionata."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Annulla"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr ""
 "Abbandona l'elaborazione selezionata. In questo modo non otterai crediti."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
-msgstr ""
+msgstr "Visualizza i dettagli dell'elaborazione."
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Nome"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
-msgstr ""
+msgstr "Tempo"
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "Al completamento"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Elaborazioni"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "Avvio dell'elaborazione..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "Sospensione dell'elaborazione..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "Mostra la parte grafica dell'applicazione..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Annullamento del risultato..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
 msgstr ""
-"Sei sicuro di voler annullare l'elaborazione '%s'?\n"
+"Sei sicuro di voler annullare l'elaborazione di '%s'?\n"
 "(Avanzamento: %s, Stato: %s)"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "Sei sicuro di voler annullare queste %d elaborazioni?"
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "Annulla l'elaborazione"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Annullamento del risultato..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr "Mostra tutte le elaborazioni"
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr "Mostra tutte le elaborazioni."
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr "Riprendi l'elaborazione selezionata."
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
-msgstr "Sospende l'elaborazione selezionata."
+msgstr "Sospendi l'elaborazione selezionata."
+
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr "Manca la GPU, "
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
-msgstr ""
+msgstr " - l'applicazione è in modalità esclusiva"
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
-msgstr "(non intensivo per la CPU)"
+msgstr " (non intensivo per la CPU)"
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr "Abortito: non è partito per timeout"
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr "Tabella elaborazioni"
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
@@ -3636,12 +3646,12 @@ msgstr ""
 "Sei sicuro di voler annullare l'elaborazione '%s'?\n"
 "(Avanzamento: %s %%, Stato: %s)"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
-msgstr ""
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr "Connessione ad un progetto o ad un account manager"
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3650,20 +3660,20 @@ msgid ""
 "listed on or managed via %s."
 msgstr ""
 "Se possibile, aggiungi progetti dal\n"
-"sito web %s.\n"
+"sito web di %s.\n"
 "\n"
 "I progetti aggiunti tramite la procedura guidata\n"
 "non saranno mostrati o gestiti da %s."
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
 msgstr ""
-"Ora verrai guidato durante il processo di collegamento\n"
-"ad un nuovo progetto."
+"Ti faremo da guida nel processo di connessione\n"
+"ad un progetto a ad un account manager."
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3678,146 +3688,300 @@ msgid ""
 "To change which research applications are sent to you from\n"
 "World Community Grid then please click on the following button:"
 msgstr ""
-
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
-msgstr "&Ferma l'uso%s"
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-"Questo computer verrà rimosso da %s. Da ora,\n"
-"aggiungi e rimuovi i progetti direttamente da questo computer.\n"
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "Account manager"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
+"Hai scelto di connetterti ad un nuovo progetto BOINC._ _Connettersi ad un "
+"nuovo\n"
+"progetto, significa connettere il proprio computer ad un nuovo sito web ed "
+"una\n"
+"nuova organizzazione._ _ Se questo è ciò che volevi, clicca sul tasto "
+"'Avanti'\n"
+"qui sotto.\n"
 "\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"Adesso vi guideremo attraverso il processo di collegamento\n"
-"ad un account manager.\n"
-"\n"
-"Se vuoi agganciare il client ad un singolo progetto, clicca su Cancella,\n"
-"e poi seleziona la voce 'Connessione ad un progetto' dal menù."
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "Flag di debug"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "Errore nelle proprietà del progetto"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "Errore nell'URL delle proprietà del progetto"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "Creazione account disabilitata"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "Creazione dei Client Account disabilitata"
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "Account già esistente"
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "Già connesso a questo progetto"
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "Errore durante la connessione al progetto"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "Errore durante il rilevamento della rete"
+"Alcuni progetti, come il World Community Grid, supportano diverse "
+"applicazioni\n"
+"di ricerca.Se vuoi cambiare le applicazioni di ricerca che vengono inviate "
+"al tuo\n"
+"computer per essere elaborate, visita la pagina web del progetto e modifica "
+"le\n"
+"tue preferenze.Per cambiare le applicazioni inviate da World Community Grid,\n"
+"clicca sul tasto seguente: "
+
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr "Modifica le applicazioni di ricerca su World Community Grid"
 
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
-msgstr "Per continuare, premere Avanti."
+msgstr "Per continuare, clicca su Avanti."
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
-msgstr "Vuoi davvero annullare?"
+msgstr "Sei certo di voler annullare?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "Domanda"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "&Avanti >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< &Indietro"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "&Fine"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
 msgid "New page inserted. Index = %i"
 msgstr "Inserita nuova pagina. Indice = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
 msgid "New page appended. Index = %i"
 msgstr "Aggiunta nuova pagina. Indice = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
 msgid "Old Page Index = %i"
 msgstr "Indice vecchia pagina = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr "OnDropTarget: index by HitTest = %i"
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
-msgstr "Pie Ctrl"
+msgstr "Controllo"
+
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+"per il supporto accessibilità, per favore seleziona avanzate dal menu "
+"visualizza oppure premi command shift a"
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+"Questo pannello contiene grafici che visualizzano il totale utente per i "
+"progetti"
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr "nero"
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr "lista di"
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr " è vuota"
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr "%d di %d; "
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr "ordinamento colonna corrente "
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr "ordine descescente "
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr " ordine crescente "
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr "colonna"
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr "la lista è vuota"
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr "selezionata "
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr "riga %d "
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr "di %d; "
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr "colonna %d; "
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr "lista dei progetti o degli account manager"
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr "riga %d di %d; "
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 "specifica l'orario di avvio e arresto dell'elaborazione nel formato HH:MM-"
 "HH:MM"
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 "specifica l'orario di avvio e arresto per l'uso della rete nel formato HH"
 ":MM-HH:MM"
 
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "&Chiudi la finestra\tCTRL+W"
+
+#~ msgid "&News\tCtrl+Shift+N"
+#~ msgstr "&News\tCtrl+Shift+N"
+
+#~ msgid "Display news"
+#~ msgstr "Visualizza le news"
+
+#, fuzzy
+#~ msgid ""
+#~ "You currently are not authorized to manage the client.\n"
+#~ "Please contact your administrator to add you to the 'boinc_master' user "
+#~ "group."
+#~ msgstr ""
+#~ "Non sei autorizzato a gestire il client.\n"
+#~ "Contatta l'amministratore del computer per aggiungere il tuo account al "
+#~ "gruppo 'boinc_users'."
+
+#~ msgid "User information"
+#~ msgstr "Informazioni utente"
+
+#~ msgid "Account Manager URL"
+#~ msgstr "URL dell'Account Manager"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "Inserire l'URL del sito web dell'account manager."
+
+#~ msgid "Close BOINC Manager Window."
+#~ msgstr "Chiudi la finestra del BOINC Manager."
+
+#~ msgid "Exit the %s"
+#~ msgstr "Esci da %s"
+
+#, fuzzy
+#~ msgid ""
+#~ "Advanced views allow you to sort various columns and displays graphical "
+#~ "progress bars."
+#~ msgstr ""
+#~ "La vista in modalità griglia ti permette di ordinare le verie colonne e "
+#~ "visualizzare la barra di progresso graficamente."
+
+#~ msgid "Attach to a project"
+#~ msgstr "Connetti ad un progetto"
+
+#~ msgid "Attach to &account manager..."
+#~ msgstr "Collegati all'&account manager..."
+
+#~ msgid "Attach to an account manager"
+#~ msgstr "Collegati ad un account manager"
+
+#~ msgid "Attach to &project"
+#~ msgstr "Connetti al &progetto"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "Collegamento al progetto in corso..."
+
+#~ msgid "Removal from %s completed."
+#~ msgstr "Rimozione da %s completata."
+
+#~ msgid "Removal succeeded!"
+#~ msgstr "Rimozione riuscita!"
+
+#~ msgid "Write to disk at most every"
+#~ msgstr "Scrivi su disco al massimo ogni"
+
+#, fuzzy
+#~ msgid "Already Attached to Project"
+#~ msgstr "Il client BOINC è già connesso a questo progetto"
+
+#~ msgid "Click here to go to %s's website."
+#~ msgstr "Clicca qui per andare al sito web di %s."
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr ""
+#~ "Ora verrai guidato durante il processo di collegamento\n"
+#~ "ad un nuovo progetto."
+
+#~ msgid "&Stop using%s"
+#~ msgstr "&Ferma l'uso%s"
+
+#~ msgid ""
+#~ "We'll now remove this computer from %s.  From now on,\n"
+#~ "attach and detach projects directly from this computer.\n"
+#~ msgstr ""
+#~ "Questo computer verrà rimosso da %s. Da ora,\n"
+#~ "aggiungi e rimuovi i progetti direttamente da questo computer.\n"
+
+#~ msgid "Account manager"
+#~ msgstr "Account manager"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to an account manager.\n"
+#~ "\n"
+#~ "If you want to attach to a single project, click Cancel,\n"
+#~ "then select the 'Attach to project' menu item instead."
+#~ msgstr ""
+#~ "Adesso vi guideremo attraverso il processo di collegamento\n"
+#~ "ad un account manager.\n"
+#~ "\n"
+#~ "Se vuoi agganciare il client ad un singolo progetto, clicca su Cancella,\n"
+#~ "e poi seleziona la voce 'Connessione ad un progetto' dal menù."
+
+#~ msgid "Debug Flags"
+#~ msgstr "Flag di debug"
+
+#~ msgid "Project Properties Failure"
+#~ msgstr "Errore nelle proprietà del progetto"
+
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "Errore nell'URL delle proprietà del progetto"
+
+#~ msgid "Account Creation Disabled"
+#~ msgstr "Creazione account disabilitata"
+
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "Creazione dei Client Account disabilitata"
+
+#~ msgid "Account Already Exists"
+#~ msgstr "Account già esistente"
+
+#~ msgid "Project Already Attached"
+#~ msgstr "Già connesso a questo progetto"
+
+#~ msgid "Project Attach Failure"
+#~ msgstr "Errore durante la connessione al progetto"
+
+#~ msgid "Net Detection Failure"
+#~ msgstr "Errore durante il rilevamento della rete"
+
 #~ msgid ""
 #~ "You can copy and paste the URL from your browser's\n"
 #~ "address bar."
@@ -3861,8 +4025,12 @@ msgstr ""
 #~ msgid "&Accessible View"
 #~ msgstr "Interfaccia grafica &accessibile"
 
-#~ msgid "Accessible views are compatible with accessibility aids such as screen readers."
-#~ msgstr "Le visualizzazioni accessibili sono compatibili con programmi di accessibilità come gli screen reader."
+#~ msgid ""
+#~ "Accessible views are compatible with accessibility aids such as screen "
+#~ "readers."
+#~ msgstr ""
+#~ "Le visualizzazioni accessibili sono compatibili con programmi di "
+#~ "accessibilità come gli screen reader."
 
 #~ msgid "&Grid View"
 #~ msgstr "Vista a &griglia"
@@ -3870,26 +4038,20 @@ msgstr ""
 #~ msgid ":"
 #~ msgstr ":"
 
-#, c-format
 #~ msgid ""
 #~ "%s is going to shutdown the core client it is currently connected to.\n"
 #~ "NOTE: Choosing 'OK' will cause the select new computer dialog to appear \n"
 #~ "so you can attach to a different core client."
 #~ msgstr ""
 #~ "%s sta per terminare il core client al quale è attualmente connesso.\n"
-#~ "NOTA: Selezionando 'OK' si aprirà la finestra per selezionare un nuovo computer \n"
+#~ "NOTA: Selezionando 'OK' si aprirà la finestra per selezionare un nuovo "
+#~ "computer \n"
 #~ "e connetterti ad un altro core client."
 
-#, c-format
-#~ msgid ""
-#~ "BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
-#~ "(Error code %d)"
-#~ msgstr ""
-#~ "Le proprietà o i permessi di BOINC non sono impostati correttamente; per risolvere il problema installa nuovamente BOINC.\n"
-#~ "(Codice errore %d)"
-
 #~ msgid "Click here to disable displaying this message in the future."
-#~ msgstr "Clicca qui per disabilitare la visualizzazione di questo messaggio in futuro."
+#~ msgstr ""
+#~ "Clicca qui per disabilitare la visualizzazione di questo messaggio in "
+#~ "futuro."
 
 #~ msgid "Language Selection:"
 #~ msgstr "Selezione della lingua:"
@@ -3900,8 +4062,12 @@ msgstr ""
 #~ msgid "Reminder Frequency:"
 #~ msgstr "Frequenza del promemoria:"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
-#~ msgstr "Quanto spesso, in minuti, il manager dovrebbe ricordarti di possibili connessioni."
+#~ msgid ""
+#~ "How often, in minutes, should the manager remind you of possible "
+#~ "connection events."
+#~ msgstr ""
+#~ "Quanto spesso, in minuti, il manager dovrebbe ricordarti di possibili "
+#~ "connessioni."
 
 #~ msgid "free disk space - "
 #~ msgstr "spazio libero sul disco - "
diff --git a/locale/it/BOINC-Project-Generic.po b/locale/it/BOINC-Project-Generic.po
index ab5d7ee..645fb3a 100644
--- a/locale/it/BOINC-Project-Generic.po
+++ b/locale/it/BOINC-Project-Generic.po
@@ -3,12 +3,12 @@ msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: BOINC translation team <translate at boinc.berkeley.edu>\n"
 "POT-Creation-Date: 2009-05-09 21:36 PDT\n"
-"PO-Revision-Date: 2009-01-07 08:17-0700\n"
-"Last-Translator: Paolo Landi <landipaolo at tin.it>\n"
+"PO-Revision-Date: 2009-12-23 08:01-0700\n"
+"Last-Translator: Bassi Paolo <baxpaolo at alice.it>\n"
 "Language-Team: \n"
 "Language: it\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 1.2.1\n"
@@ -20,10 +20,10 @@ msgstr ""
 "X-Poedit-Country: UNITED STATES\n"
 
 msgid "Search for words in forum messages"
-msgstr "Cerca nel forum"
+msgstr "Cerca delle parole nei messaggi del forum"
 
 msgid "Search forums"
-msgstr "Ricerca nei forum"
+msgstr "Cerca nel forum"
 
 msgid "Advanced search"
 msgstr "Ricerca avanzata"
@@ -41,25 +41,26 @@ msgstr "Domande e risposte"
 msgid "Message boards"
 msgstr "Indice del forum"
 
-# ########################################
+# ########################################<br />
 # Forum sample index page
 msgid "%1 message board"
-msgstr "Forum %1"
+msgstr "Forum di %1"
 
 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 ""
 "Per creare un nuovo argomento su %1 devi avere un certo numero di crediti. "
-"Questa precauzione è per prevenire e proteggere qualsiasi abuso del sistema."
+"Questa precauzione è stata inserita per prevenire e proteggere da qualsiasi "
+"abuso del sistema."
 
 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 ""
-"Ora non puoi aprire altri argomenti. Riprova più tardi. Ciò è stato "
-"implementato per proteggere il sistema da eventuali abusi."
+"Ora non puoi aprire altri argomenti. Riprova più tardi. Questa precauzione è "
+"stata inserita per proteggere il sistema da eventuali abusi."
 
 msgid "Thread"
 msgstr "Argomento"
@@ -85,7 +86,7 @@ msgid "Mark all threads in all message boards as 'read'."
 msgstr "Segna tutti gli argomenti di tutti i temi come 'letti'."
 
 msgid "Inbox"
-msgstr "inbox"
+msgstr "Leggi"
 
 msgid "Write"
 msgstr "Scrivi"
@@ -102,7 +103,7 @@ msgid "To"
 msgstr "Per"
 
 msgid "User IDs or unique usernames, separated with commas"
-msgstr "Numero ID o username, separato con virgole."
+msgstr "User ID o nomi deli utenti, separati da virgole"
 
 msgid "Subject"
 msgstr "Oggetto"
@@ -124,59 +125,57 @@ msgid "unread"
 msgstr "non letto"
 
 msgid "Edit your profile"
-msgstr ""
+msgstr "Modifica il tuo profilo"
 
 msgid "Your feedback on this profile"
-msgstr ""
+msgstr "Feedback ricevuti dal tuo profilo"
 
 msgid "Recommend this profile for User of the Day:"
-msgstr ""
+msgstr "Raccomanda questo profilo come User of the Day:"
 
 msgid "I %1like%2 this profile"
-msgstr ""
+msgstr "Questo profilo %1mi piace%2"
 
 msgid "Alert administrators to an offensive profile:"
-msgstr ""
+msgstr "Avvisa gli amministratori del profilo offensivo:"
 
 msgid "I %1do not like%2 this profile"
-msgstr ""
+msgstr "Questo profilo %1non mi piace%2"
 
 msgid "Search criteria (use one or more)"
-msgstr "Ricerca con criterio (uno o più di uno)"
+msgstr "Criteri di ricerca (usane uno o più di uno)"
 
 msgid "Key words"
 msgstr "Parole chiave"
 
 msgid "Find teams with these words in their names or descriptions"
 msgstr ""
-"Trova i gruppi che hanno le parole chiave nel loro nome o nella loro "
+"Trova i team che hanno queste parole chiave nel loro nome o nella loro "
 "descrizione"
 
 msgid "Country"
 msgstr "Nazionalità"
 
 msgid "Type of team"
-msgstr "Tipo di gruppo"
+msgstr "Tipo di team"
 
 msgid "Show only active teams"
-msgstr "Mostra solo i gruppi attivi"
+msgstr "Mostra solo i team attivi"
 
 msgid "Search"
 msgstr "Cerca"
 
 msgid "Requested by you, and founder response deadline has passed."
-msgstr ""
-"Il fondatore, superando il limite di tempo a sua disposizione, non ha "
-"risposto alla tua richiesta."
+msgstr "Richiesto da te, e il fondatore non ha risposto entro il tempo limite."
 
 msgid "Complete foundership transfer"
-msgstr "Completare il trasferimento del fondatore"
+msgstr "Completa il trasferimento del fondatore"
 
 msgid "Requested by you"
 msgstr "Richiesto da te"
 
 msgid "founder response deadline is %1"
-msgstr "Il fondatore normalmente risponde dopo %1"
+msgstr "il limite massimo per una risposta del fondatore è %1"
 
 msgid "None"
 msgstr "Nessuno"
@@ -188,7 +187,7 @@ msgid "Deferred"
 msgstr "Rinviato"
 
 msgid "Team info"
-msgstr "Informazioni sul gruppo"
+msgstr "Informazioni sul team"
 
 msgid "Description"
 msgstr "Descrizione"
@@ -202,7 +201,6 @@ msgstr "Crediti totali"
 msgid "Recent average credit"
 msgstr "Media dei crediti recenti"
 
-#, fuzzy
 msgid "Cross-project stats"
 msgstr "Statistiche di tutti i progetti"
 
@@ -216,27 +214,27 @@ msgid "Threads"
 msgstr "Argomenti"
 
 msgid "Join this team"
-msgstr "Unisciti a questo gruppo"
+msgstr "Unisciti a questo team"
 
 msgid ""
 "Note: if 'OK to email' is set in your project preferences, joining a team "
 "gives its founder access to your email address."
 msgstr ""
-"Nota: se nelle tue preferenze del progetto la voce 'OK to email' è spuntata, "
-"unendosi al gruppo, si dà il consenso al fondatore ad inviare messaggi al "
-"proprio indirizzo di posta elettronica."
+"Nota: se nelle tue preferenze del progetto la voce 'OK alle email' è "
+"spuntata, unendosi al team, si dà il consenso al fondatore ad inviare "
+"messaggi al tuo indirizzo di posta elettronica."
 
 msgid "Not accepting new members"
-msgstr ""
+msgstr "Non accetta nuovi membri"
 
 msgid "Foundership change requested"
 msgstr "Richiesta di cambio del fondatore"
 
 msgid "Respond by %1"
-msgstr "Risposto per %1"
+msgstr "Risposta di %1"
 
 msgid "Team foundership change"
-msgstr "Cambio del fondatore del gruppo"
+msgstr "Cambio di fondatore del team"
 
 msgid "Members"
 msgstr "Membri"
@@ -245,16 +243,16 @@ msgid "Founder"
 msgstr "Fondatore"
 
 msgid "Admins"
-msgstr "Amministratore"
+msgstr "Amministratori"
 
 msgid "New members in last day"
-msgstr "Nuovi membri nel giorno scorso"
+msgstr "Nuovi membri nell'ultimo giorno"
 
 msgid "Total members"
 msgstr "Totale dei membri"
 
 msgid "view"
-msgstr "visite"
+msgstr "visualizza"
 
 msgid "Active members"
 msgstr "Membri attivi"
@@ -269,19 +267,19 @@ msgid "Admin"
 msgstr "Amministratore"
 
 msgid "Last %1"
-msgstr "Precedente %1"
+msgstr "Precedenti %1"
 
 msgid "Next %1"
-msgstr "Successivo %1"
+msgstr "Successivi %1"
 
 msgid "No such team."
-msgstr "Nessun gruppo."
+msgstr "Nessun team."
 
 msgid "This operation requires foundership."
-msgstr "Per questa operazione devi essere un fondatore."
+msgstr "Per fare questa operazione devi essere il fondatore."
 
 msgid "This operation requires team admin privileges"
-msgstr "Per questa operazione devi avere i privilegi da amministratore"
+msgstr "Per fare questa operazione devi avere i privilegi da amministratore"
 
 msgid "Rank"
 msgstr "Posizione"
@@ -290,36 +288,36 @@ msgid ""
 "%1Privacy note%2: if you create a team, your project preferences (resource "
 "share, graphics preferences) will be visible to the public."
 msgstr ""
-"%1Nota sulla privacy%2: se hai intenzione di creare un gruppo, le preferenze "
-"del tuo progetto (risorse condivise, preferenze grafiche) saranno visibili "
-"al pubblico."
+"%1Nota sulla privacy%2: se hai intenzione di creare un team, le preferenze "
+"del tuo progetto (allocazione delle risorse, preferenze grafiche) saranno "
+"visibili a tutti."
 
 msgid "Team name, text version"
-msgstr "Nome del gruppo, versione testuale"
+msgstr "Nome del team, versione testuale"
 
 msgid "Don't use HTML tags."
 msgstr "Non usare i tag HTML."
 
 msgid "Team name, HTML version"
-msgstr "Nome del gruppo, versione in HTML"
+msgstr "Nome del team, versione HTML"
 
 msgid "You may use %1limited HTML tags%2."
-msgstr "Puoi usare %1 un numero limitato di tag HTML%2."
+msgstr "Puoi usare %1un numero limitato di tag HTML%2."
 
 msgid "If you don't know HTML, leave this box blank."
 msgstr "Se non conosci l'HTML, lascia questo campo vuoto."
 
 msgid "URL of team web page, if any"
-msgstr "URL del sito web del gruppo, se c'è"
+msgstr "URL del sito web del gruppo, se esiste"
 
 msgid "without \"http://\""
 msgstr "senza \"http://\""
 
 msgid "This URL will be linked to from the team's page on this site."
-msgstr "Questo indirizzo sarà linkato alla pagina del gruppo su questo sito."
+msgstr "Questo indirizzo sarà linkato nella pagina del team su questo sito."
 
 msgid "Description of team"
-msgstr "Descrizione del gruppo"
+msgstr "Descrizione del team"
 
 # ########################################
 # Public user page (show_user.php)
@@ -339,25 +337,25 @@ msgid "Average credit"
 msgstr "Credito medio"
 
 msgid "Since"
-msgstr "dal"
+msgstr "Membro dal"
 
 msgid "Computing and credit"
-msgstr "Lavoro svolto e credito"
+msgstr "Elaborazioni e crediti"
 
 msgid "Pending credit"
-msgstr "Credito in corso"
+msgstr "Crediti non ancora assegnati"
 
 msgid "View"
-msgstr "Visite"
+msgstr "Visualizza"
 
 msgid "Computers on this account"
-msgstr "Computer per questo account"
+msgstr "Computer di questo account"
 
 msgid "Tasks"
 msgstr "Elaborazioni"
 
 msgid "Cross-project ID"
-msgstr "ID di tutti i progetti"
+msgstr "ID su tutti i progetti (CPID)"
 
 msgid "Cross-project statistics"
 msgstr "Statistiche di tutti i progetti"
@@ -387,13 +385,13 @@ msgid "Change"
 msgstr "Cambia"
 
 msgid "email address"
-msgstr "E-mail"
+msgstr "e-mail"
 
 msgid "password"
 msgstr "password"
 
 msgid "other account info"
-msgstr "Altre informazioni sull'account"
+msgstr "altre informazioni sull'account"
 
 msgid "Log out"
 msgstr "Esci"
@@ -402,29 +400,28 @@ msgid "User ID"
 msgstr "ID dell'utente"
 
 msgid "Used in community functions"
-msgstr "Usato per le funzioni di comunità"
+msgstr "Usato nel forum"
 
 msgid "Account key"
-msgstr "Account key"
+msgstr "Chiave di accesso"
 
 msgid "Provides full access to your account"
-msgstr "Fornisci un accesso totale al tuo account"
+msgstr "Consente un accesso completo al tuo account"
 
 msgid "Weak account key"
-msgstr "Account key debole"
+msgstr "Chiave di accesso debole"
 
-#, fuzzy
 msgid "Provides %1limited access%2 to your account"
-msgstr "Fornisci un accesso totale al tuo account"
+msgstr "Consente un %1accesso limitato%2 al tuo account"
 
 msgid "Preferences"
 msgstr "Preferenze"
 
 msgid "When and how BOINC uses your computer"
-msgstr "Quando e come usi il BOINC sul tuo computer"
+msgstr "Quando e come usi BOINC sul tuo computer"
 
 msgid "Computing preferences"
-msgstr "Preferenze per il calcolo"
+msgstr "Preferenze di elaborazione"
 
 msgid "Message boards and private messages"
 msgstr "Forum e messaggi privati"
@@ -433,10 +430,10 @@ msgid "Community preferences"
 msgstr "Preferenze per la comunità"
 
 msgid "Resource share and graphics"
-msgstr "Risorse condivise e grafiche"
+msgstr "Allocazione delle risorse e grafica"
 
 msgid "%1 preferences"
-msgstr "Preferenze %1"
+msgstr "Preferenze per %1"
 
 msgid "Community"
 msgstr "Comunità"
@@ -455,13 +452,13 @@ msgstr "Profilo"
 msgid "%1 posts"
 msgstr "%1 messaggi"
 
-# ########################################
+# ########################################<br />
 # Apps page (apps.php)
 msgid "Notifications"
-msgstr "Note"
+msgstr "Notifiche"
 
 msgid "Quit team"
-msgstr "Abbandona il gruppo"
+msgstr "Abbandona il team"
 
 msgid "Administer"
 msgstr "Amministra"
@@ -470,16 +467,16 @@ msgid "(foundership change request pending)"
 msgstr "(richiesta per cambio del fondatore in corso)"
 
 msgid "Member of team"
-msgstr "Membro del gruppo"
+msgstr "Membro del team"
 
 msgid "Team"
-msgstr "Gruppo"
+msgstr "Team"
 
 msgid "find a team"
-msgstr "Trova un gruppo"
+msgstr "trova un team"
 
 msgid "Founder but not member of"
-msgstr "Fondatore ma non membro del"
+msgstr "Fondatore ma non membro di"
 
 msgid "Find friends"
 msgstr "Trova degli amici"
@@ -503,10 +500,10 @@ msgid "This person is a friend"
 msgstr "Questa persona è un amico"
 
 msgid "Cancel friendship"
-msgstr "Cancella amicizia"
+msgstr "Cancella l'amicizia"
 
 msgid "Request pending"
-msgstr "Richiesto in corso"
+msgstr "Richiesta in corso"
 
 msgid "Add as friend"
 msgstr "Aggiungi come amico"
@@ -523,21 +520,21 @@ msgid "CHARSET"
 msgstr "UTF-8"
 
 msgid "Use BBCode tags to format your text"
-msgstr "usa i tag BBCode per formattare il tuo testo"
+msgstr "Usa i tag BBCode per formattare il testo"
 
 msgid "Identifies you on our web site. Use your real name or a nickname."
 msgstr "Identificati sul nostro sito. Usa il tuo nome reale oppure un alias."
 
 msgid "Select the country you want to represent, if any."
-msgstr "Seleziona la nazione che vuoi rappresentare, se vuoi."
+msgstr "Seleziona la nazione che vuoi rappresentare, se lo desideri."
 
 msgid "Postal or ZIP Code"
 msgstr "CAP"
 
-# ########################################
+# ########################################<br />
 # General stuff (create_account_form.php and others)
 msgid "Optional"
-msgstr "Accessori aggiuntivi"
+msgstr "Dati facoltativi"
 
 # ########################################
 # Apps page (apps.php)
@@ -559,7 +556,7 @@ msgid "Platform"
 msgstr "Piattaforma"
 
 msgid "Version"
-msgstr ""
+msgstr "Versione"
 
 msgid "Installation time"
 msgstr "Tempo d'installazione"
@@ -580,7 +577,7 @@ msgstr "La creazione degli account è disabilitata"
 
 msgid "Account creation is currently disabled. Please try again later."
 msgstr ""
-"La creazione degli account è stata momentaneamente disabilitata. Provate più "
+"La creazione degli account è stata momentaneamente disabilitata. Riprova più "
 "tardi."
 
 msgid ""
@@ -588,15 +585,15 @@ msgid ""
 "form. Just run BOINC, select Attach Project, and enter an email address and "
 "password."
 msgstr ""
-"NOTA: se stai usando la versione 5.2 o superiore con il BOINC Manager, non "
-"usare questo modulo. Appena avviato il BOINC, selezionare 'Connessione ad un "
+"NOTA: se stai usando la versione 5.2 o superiore del BOINC Manager, non "
+"usare questo modulo. Appena avviato BOINC, seleziona 'Connessione ad un "
 "progetto' ed inserisci una email ed una password."
 
 msgid ""
 "This account will belong to the team %1 and will have the project "
 "preferences of its founder."
 msgstr ""
-"Questo account apparterà al gruppo %1 ed avrà le preferenze del progetto "
+"Questo account apparterrà al team %1 ed avrà le preferenze del progetto "
 "decise dal suo fondatore."
 
 msgid "Invitation Code"
@@ -609,7 +606,7 @@ msgid "Email Address"
 msgstr "Email"
 
 msgid "Must be a valid address of the form 'name at domain'."
-msgstr "Devi inserire un indirizzo email valido: nome at dominio"
+msgstr "Devi inserire un indirizzo email valido del tipo 'nome at dominio'."
 
 msgid "Password"
 msgstr "Password"
@@ -618,107 +615,126 @@ msgid "Must be at least %1 characters"
 msgstr "Deve essere di almeno %1 caratteri"
 
 msgid "Confirm password"
-msgstr "Conferma password"
+msgstr "Conferma la password"
 
 msgid "Create account"
 msgstr "Crea un account"
 
+# <br> ????
 msgid "ERROR: %1 does not exist!  Cannot create combo box.<br>"
-msgstr ""
+msgstr "ERRORE: %1 non esiste!  La combo box non può essere creata.<br>"
 
 msgid "Picture"
-msgstr ""
+msgstr "Immagine"
 
 msgid "%1 Your profile picture is shown to the left."
-msgstr ""
+msgstr "%1 La tua immagine del profilo è mostrata sulla sinistra."
 
 msgid ""
 "To replace it, click the \"Browse\" button and select a JPEG or PNG file (%1 "
 "or less)."
 msgstr ""
+"Per cambiarla clicca sul pulsante \"Browse\" e seleziona una file JPEG o PNG "
+"(più piccolo di %1)."
 
 msgid "To remove it from your profile, check this box:"
-msgstr ""
+msgstr "Per eliminarla dal tuo profilo, seleziona questa l'opzione:"
 
 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 ""
+"Se vuoi aggiungere una immagine al tuo profilo, clicca sul pulsante \"Browse\" "
+"e seleziona una file JPEG o PNG. Sei pregato di scegliere un file più "
+"piccolo di %1."
 
 msgid "Language"
-msgstr ""
+msgstr "Lingua"
 
 msgid "Select the language in which your profile is written:"
-msgstr ""
+msgstr "Seleziona la lingua in cui è scritto il tuo profilo:"
 
 msgid "Submit profile"
-msgstr ""
+msgstr "Invia il profilo"
 
 msgid ""
 "To protect the project's webpages from spam, we kindly ask you to type in "
 "the two words shown in the image:<br>\n"
-msgstr ""
+msgstr "Per proteggere le pagine del progetto dallo spam, ti chiediamo di scrivere "
+"le due parole che appaiono nell'immagine:<br>\n"
 
 msgid "Create/edit profile"
-msgstr ""
+msgstr "Crea/modifica il profilo"
 
 msgid "The format of your uploaded image is not supported."
-msgstr ""
+msgstr "Il formato dell'immagine che hai caricato non è supportato."
 
 msgid ""
 "Your %1profile%2 lets you share your opinions and background with the %3 "
 "community."
 msgstr ""
+"La pagina del tuo %1profilo%2 ti permettere di condividere le tue opinioni e "
+"il tuo background con la comunità di %3."
 
 msgid "Your ReCaptcha response was not correct.  Please try again."
-msgstr ""
+msgstr "La tua risposta al ReCaptcha non è corretta.  Prova di nuovo."
 
 msgid ""
 "Your first response was flagged as spam by the Akismet anti-spam system.  "
 "Please modify your text and try again."
 msgstr ""
+"Le cose che hai scritto nel primo spazio sono state segnalate come spam dal "
+"sistema anti-spam Akismet.  Modifica il testo e riprova."
 
 msgid ""
 "Your second response was flagged as spam by the Akismet anti-spam system.  "
 "Please modify your text and try again."
 msgstr ""
+"Le cose che hai scritto nel secondo spazio sono state segnalate come spam "
+"dal sistema anti-spam Akismet.  Modifica il testo e riprova."
 
 msgid "Your profile submission was empty."
-msgstr ""
+msgstr "I campi del tuo profilo sono vuoti."
 
 msgid "Could not update the profile: database error"
-msgstr ""
+msgstr "Impossibile aggiornare il profilo: errore del database"
 
 msgid "Could not create the profile: database error"
-msgstr ""
+msgstr "Impossibile creare il profilo: errore del database"
 
 msgid "Profile saved"
-msgstr ""
+msgstr "Il profilo è stato salvato"
 
 msgid ""
 "Congratulations! Your profile was successfully entered into our database."
 msgstr ""
+"Congratulazioni! Il tuo profilo è stato inserito con successo nel nostro "
+"database."
 
 msgid "%1View your profile%2"
-msgstr ""
+msgstr "%1Visualizza il tuo profilo%2"
 
 msgid "Create a profile"
-msgstr ""
+msgstr "Crea un profilo"
 
 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 ""
+"Per prevenire lo spam, è richiesta una media di crediti superiore a %1 per "
+"creare o modificare un profilo.  Ci scusiamo per l'inconveniente."
 
 msgid "Download BOINC add-on software"
-msgstr ""
+msgstr "Scarica degli add-on per BOINC"
 
 msgid "You can download applications in several categories."
-msgstr ""
+msgstr "Puoi scaricare applicazioni di vari tipi."
 
 msgid ""
 "These applications are not endorsed by %1 and you use them at your own risk."
 msgstr ""
+"Queste applicazioni non sono supportate da %1 e il loro utilizzo è sotto la "
+"tua sola responsabilità."
 
 msgid ""
 "We do not provide instructions for installing these applications.\n"
@@ -726,15 +742,21 @@ msgid ""
 "uninstalling the application. \n"
 "If this is not enough you should contact the author."
 msgstr ""
+"Non forniamo istruzioni per l'installazione di queste applicazioni.\n"
+"In ogni caso l'autore potrebbe aver fornito qualche informazione "
+"sull'installazione o disinstallazione dell'applicazione. \n"
+"Se non è sufficiente contatta pure l'autore."
 
 msgid "Instructions for installing and running BOINC are %1here%2."
 msgstr ""
+"Le istruzioni per l'installazione e il funzionamento di BOINC si trovano "
+"%1qui%2."
 
 msgid "This list is managed centrally at %1the BOINC website%2."
-msgstr ""
+msgstr "Questo elenco è amministrato centralmente dal %1sito web di BOINC%2."
 
 msgid "fll"
-msgstr ""
+msgstr "fll"
 
 msgid "Title"
 msgstr "Titolo"
@@ -742,15 +764,17 @@ msgstr "Titolo"
 msgid "Add my signature to this post"
 msgstr "Aggiungi la mia firma a questo messaggio"
 
-# ########################################
+# ########################################<br />
 # Forum sample index page
 msgid "%1 Message boards"
-msgstr "Forum %1"
+msgstr "Forum di %1"
 
 msgid ""
 "If you have a question or problem, please use the %1Questions & Answers%2 "
 "section of the message boards."
 msgstr ""
+"Se hai delle domande o problemi usa la sezione %1Domande & Risposte%2 del "
+"forum."
 
 msgid "Topic"
 msgstr "Tema"
@@ -768,10 +792,10 @@ msgid "Forum search results"
 msgstr "Risultato della ricerca nel forum"
 
 msgid "No thread with id %1. Please check the link and try again."
-msgstr ""
+msgstr "L'argomento con l'id %1 non esiste. Controlla il link e riprova."
 
 msgid "This forum is not visible to you."
-msgstr ""
+msgstr "Non ti è concesso vedere questo forum."
 
 # ########################################
 # Forum thread
@@ -779,209 +803,215 @@ msgid "This thread has been hidden for administrative purposes"
 msgstr "Questo argomento è stato nascosto per scopi amministrativi"
 
 msgid "My question was answered"
-msgstr ""
+msgstr "E' stata data risposta alla mia domanda"
 
 msgid ""
 "If your question has been adequately answered please click here to close it!"
 msgstr ""
+"Se è stata data una adeguata risposta alla tua domanda, sei pregato di "
+"cliccare qui per chiudere l'argomento!"
 
 msgid "I've also got this question"
-msgstr ""
+msgstr "Ho anche questa domanda da porre"
 
 msgid "Add a new message to this thread"
-msgstr ""
+msgstr "Aggiungi un nuovo messaggio a questo argomento"
 
 msgid "Unsubscribe"
-msgstr "Cancella l'iscrizione al forum"
+msgstr "Cancella l'iscrizione"
 
 msgid "You are subscribed to this thread.  Click here to unsubscribe."
 msgstr ""
+"Sei iscritto a questo argomento.  Clicca qui per cancellare l'iscrizione."
 
 msgid "Subscribe"
-msgstr "Iscriviti al forum"
+msgstr "Iscriviti"
 
 msgid "Click to get email when there are new posts in this thread"
 msgstr ""
+"Clicca per ricevere una email quando ci sono nuovi messaggi su questo "
+"argomento"
 
 msgid "Unhide"
-msgstr ""
+msgstr "Rendi visibile"
 
 msgid "Unhide this thread"
-msgstr ""
+msgstr "Rendi visibile questo argomento"
 
 msgid "Hide"
-msgstr ""
+msgstr "Nascondi"
 
 msgid "Hide this thread"
-msgstr ""
+msgstr "Nascondi questo argomento"
 
 msgid "Make unsticky"
-msgstr ""
+msgstr "Non evidenziare"
 
 msgid "Make this thread not sticky"
-msgstr ""
+msgstr "Fai in modo che questo argomento non sia in evidenza"
 
 msgid "Make sticky"
-msgstr ""
+msgstr "Evidenzia"
 
 msgid "Make this thread sticky"
-msgstr ""
+msgstr "Fai in modo che questo argomento sia in evidenza"
 
 msgid "Unlock"
-msgstr ""
+msgstr "Sblocca"
 
 msgid "Unlock this thread"
-msgstr ""
+msgstr "Sblocca questo argomento"
 
 msgid "Lock"
-msgstr ""
+msgstr "Blocca"
 
 msgid "Lock this thread"
-msgstr ""
+msgstr "Blocca questo argomento"
 
 msgid "Move"
-msgstr ""
+msgstr "Sposta"
 
 msgid "Move this thread to a different forum"
-msgstr ""
+msgstr "Sposta questo argomento in un altro forum"
 
 msgid "Edit title"
-msgstr ""
+msgstr "Modifica il titolo"
 
 msgid "Edit thread title"
-msgstr ""
+msgstr "Modifica il titolo dell'argomento"
 
 msgid "Sort"
-msgstr ""
+msgstr "Ordina"
 
 msgid "Already friends"
-msgstr ""
+msgstr "Siete già amici"
 
 msgid "You requested friendship with %1 on %2."
-msgstr ""
+msgstr "Hai fatto richiesta di amicizia con %1 su %2."
 
 msgid "This request is still pending confirmation."
-msgstr ""
+msgstr "Questa richiesta è ancora in attesa di accettazione."
 
 msgid "%1 is not accepting friendship requests from you"
-msgstr ""
+msgstr "%1 non accetta la tua richiesta di amicizia"
 
 msgid "You can't be friends with yourself"
-msgstr ""
+msgstr "Non puoi essere amico di te stesso"
 
 msgid "No such user"
 msgstr "Nessun utente"
 
-#, fuzzy
 msgid "Add friend"
-msgstr "Aggiungi come amico"
+msgstr "Aggiungi agli amici"
 
 msgid ""
 "You have asked to add %1 as a friend. We will notify %2 and will ask him/her "
 "to confirm that you are friends."
 msgstr ""
+"Hai richiesto di aggiungere %1 agli amici. Notificheremo la cosa a %2 e "
+"gli/le chiederemo di confermare che siete amici."
 
 msgid "Add an optional message here:"
-msgstr ""
+msgstr "Aggiungi un messaggio (facoltativo):"
 
 msgid "Database error"
-msgstr ""
+msgstr "Errore del database"
 
 msgid "Friend request sent"
-msgstr ""
+msgstr "Richiesta di amicizia inviata"
 
 msgid "We have notified %1 of your request."
-msgstr ""
+msgstr "Abbiamo notificato a %1 la tua richiesta."
 
 msgid "Request not found"
-msgstr ""
+msgstr "Richiesta non trovata"
 
 msgid "Friend request"
-msgstr ""
+msgstr "Richiesta di amicizia"
 
 msgid "%1 has added you as a friend."
-msgstr ""
+msgstr "%1 ti ha aggiunto ai suoi amici."
 
 msgid "%1 says: %2"
-msgstr ""
+msgstr "%1 dice: %2"
 
 msgid "Accept friendship"
-msgstr ""
+msgstr "Accetto la richiesta di amicizia"
 
 msgid "Click accept if %1 is in fact a friend"
-msgstr ""
+msgstr "Clicca su Accetto se %1 è un tuo amico"
 
 msgid "Decline"
-msgstr ""
+msgstr "Rifiuto"
 
 msgid "Click decline if %1 is not a friend"
-msgstr ""
+msgstr "Clicca su Rifiuto se %1 non è un tuo amico"
 
 msgid "No request"
-msgstr ""
+msgstr "Nessuna richiesta"
 
 msgid "Friendship confirmed"
-msgstr ""
+msgstr "L'amicizia è stata accettata"
 
 msgid "Your friendship with %1 has been confirmed."
-msgstr ""
+msgstr "La tua amicizia con %1 è stata accettata."
 
 msgid "Friendship declined"
-msgstr ""
+msgstr "L'amicizia è stata rifiutata"
 
 msgid "You have declined friendship with %1"
-msgstr ""
+msgstr "Hai rifiutato l'amicizia con %1"
 
 msgid "Notification not found"
-msgstr ""
+msgstr "Notifica non trovata"
 
 msgid "Friend confirmed"
-msgstr ""
+msgstr "Conferma dell'amicizia"
 
 msgid "You are now friends with %1."
-msgstr ""
+msgstr "Tu ora sei amico/a di %1."
 
-#, fuzzy
 msgid "Cancel friendship?"
-msgstr "Cancella amicizia"
+msgstr "Cancella l'amicizia"
 
 msgid "Are you sure you want to cancel your friendship with %1?"
-msgstr ""
+msgstr "Sei certo di voler cancellare la tua amicizia con %1?"
 
 msgid "Yes"
-msgstr ""
+msgstr "Si"
 
 msgid "No"
-msgstr ""
+msgstr "No"
 
 msgid "Stay friends"
-msgstr ""
+msgstr "Rimani amico"
 
 msgid "Friendship cancelled"
-msgstr ""
+msgstr "L'amicizia è stata cancellata"
 
 msgid "Your friendship with %1 has been cancelled."
-msgstr ""
+msgstr "La tua amicizia con %1 è stata cancellata."
 
 msgid "Unknown action"
-msgstr ""
+msgstr "Azione sconosciuta"
 
 msgid "Welcome to %1"
-msgstr "Benvenuto a %1"
+msgstr "Benvenuto in %1"
 
 msgid "View and edit your account preferences using the links below."
 msgstr ""
-"Vedi e modifica le tue preferenze dell'account usando il link sottostante."
+"Visualizza e modifica le tue preferenze dell'account usando i link "
+"sottostanti."
 
 # ########################################
 # "Your account" page (home.php)
 msgid "Your account"
 msgstr "Il tuo account"
 
-# ########################################
+# ########################################<br />
 # Rules and Policies page (info.php)
 msgid "Read our rules and policies"
-msgstr "Leggi le nostre regole e politiche"
+msgstr "Leggi le nostre regole e linee di condotta"
 
 msgid "Run %1 only on authorized computers"
 msgstr "Avvia %1 solo su computer autorizzati"
@@ -991,9 +1021,9 @@ msgid ""
 "owner's permission. Some companies and schools have policies that prohibit "
 "using their computers for projects such as %1."
 msgstr ""
-"Avvia %1 solo su propri computer o su quelli di cui si abbia ottenuto il "
-"permesso dal proprietario. Alcune aziende e scuole proibiscono l'uso di "
-"progetti come %1 sui propri computer."
+"Avvia %1 solo sui tuoi computer o su quelli per cui hai ottenuto il permesso "
+"dal proprietario. Alcune aziende e scuole proibiscono l'uso di progetti "
+"come %1 sui propri computer."
 
 msgid "How %1 will use your computer"
 msgstr "Come %1 userà il tuo computer"
@@ -1003,17 +1033,17 @@ msgid ""
 "power, disk space, and network bandwidth. You can control how much of your "
 "resources are used by %1, and when it uses them."
 msgstr ""
-"Quando sarò instalalto sul tuo computer, %1 utilizzzarà una parte della CPU, "
+"Quando lo farai girare sul tuo computer, %1 utilizzerà una parte della CPU, "
 "del disco fisso e della connessione ad internet. Puoi sempre tenere sotto "
-"controllo l'entità delle risorse utilizzate da %1."
+"controllo l'entità delle risorse utilizzate da %1 e quando le usa."
 
 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 ""
 "Il lavoro svolto dal tuo computer sarà un prezioso contributo per "
-"raggiungere gli obbiettivi di %1, come descritto sul proprio sito web. Le "
-"applicazioni del programma possono variare di volta in volta."
+"raggiungere gli obbiettivi di %1, come descritto sul sito web del progetto. "
+"Le applicazioni del programma possono variare di volta in volta."
 
 msgid "Privacy policy"
 msgstr "Politiche sulla privacy"
@@ -1025,9 +1055,9 @@ msgid ""
 "your identity."
 msgstr ""
 "Il tuo account su %1 è identificato con il nome che hai scelto. Questo nome "
-"sarà mostrato sul sito web di %1 assieme ad una somma del lavoro svolta dal "
-"tuo computer per %1. Se vuoi rimanere anonimo, puoi sempre scegliere un nome "
-"che nasconda la tua vera identità."
+"sarà mostrato sul sito web di %1 assieme ad un sommario del lavoro svolto "
+"dal tuo computer per %1. Se vuoi rimanere anonimo, puoi sempre scegliere un "
+"nome che nasconda la tua vera identità."
 
 msgid ""
 "If you participate in %1, information about your computer (such as its "
@@ -1037,22 +1067,22 @@ msgid ""
 "location (e.g. its domain name or network address) will be shown."
 msgstr ""
 "Se partecipi a %1, le informazioni relative al tuo computer (tipo del "
-"processore, quantità di memoria, ecc...) saranno registrati da %1 e usati "
+"processore, quantità di memoria, ecc...) saranno registrate da %1 e usate "
 "per decidere il tipo di lavoro da assegnare al tuo computer. Queste "
-"informazioni saranno inoltre mostrati sul sito web di %1. Niente che possa "
-"rivelare la locazione del tuo computer (per esempio il nome del suo dominio "
-"o gli indirizzi di rete) saranno mostrati."
+"informazioni saranno inoltre mostrati sul sito web di %1. Non verrà mostrato "
+"niente che possa rivelare l'ubicazione del tuo computer (per esempio il "
+"nome del suo dominio o gli indirizzi di rete)."
 
 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 ""
-"Per partecipare a %1, devi fornire una casella di posta elettronica dove "
-"puoi ricevere le email. Questa casella non sarà mostrata sul sito web di %1 "
-"o condivisa con altre organizzazioni. %1 potrà inviarti periodicamente una "
-"email informativa; comunque, puoi sempre decidere di uscire ogni volta che "
-"vuoi."
+"Per partecipare a %1, devi fornire un indirizzo di posta elettronica per "
+"ricevere le email. Questo indirizzo non sarà mostrata sul sito web di %1 o "
+"condiviso con altre organizzazioni. %1 potrà inviarti periodicamente una "
+"email informativa; in ogni caso puoi sempre decidere di non partecipare più "
+"al progetto in qualsiasi momento."
 
 msgid ""
 "Private messages sent on the %1 web site are visible only to the sender and "
@@ -1061,6 +1091,11 @@ msgid ""
 "them to your %2message filter%3.  This will prevent you from seeing any "
 "public or private messages from that user."
 msgstr ""
+"I messaggi privati inviati sul sito web di %1 sono visibili solo al mittente "
+"e al ricevente.  %1 non controlla o censura il contenuto dei messaggi "
+"privati.  Se ricevi un messaggio privato non gradito da un altro utente di "
+"%1, puoi aggiungerlo al tuo %2filtro dei messaggi%3.  Questo ti evita di "
+"dover vedere altri messaggi publici o privati di quell'utente."
 
 msgid ""
 "If you use our web site forums you must follow the %2posting guidelines%3.  "
@@ -1068,9 +1103,13 @@ msgid ""
 "members.  By posting to the forums, you are granting irrevocable license for "
 "anyone to view and copy your posts."
 msgstr ""
+"Se usi i forum del nostro sito devi seguire le %2linee guida del forum%3.  I "
+"messaggi inseriti nei forum di %1 sono visibili a tutti, inclusi gli ospiti "
+"non registrati.  Scrivendo sul forum tu fornisci una licenza irrevocabile a "
+"chiunque di guardare e copiare i tuoi messaggi."
 
 msgid "Is it safe to run %1?"
-msgstr "Sicuro di voler avviare %1?"
+msgstr "E' sicuro elaborare su %1?"
 
 msgid ""
 "Any time you download a program through the Internet you are taking a "
@@ -1081,28 +1120,27 @@ msgid ""
 "all executable files are digitally signed on a secure computer not connected "
 "to the Internet."
 msgstr ""
-"Ogni volta che scarichi un programma attraverso internet, puoi incontrare "
-"dei rischi: il programma potrebbe avere degli errori pericolosi, o il server "
-"da cui stai scaricando può essere difettoso. %1 si sforza continuamente a "
-"diminuire questi rischi. Testiamo molto accuratamente tutte le nostre "
-"applicazioni. I nostri server sono tutti coperti da un firewall configurato "
-"per una massima sicurezza. Per accertarci dell'integrità dei download, tutti "
-"i file eseguibili vengono segnati digitalmente da un computer non connesso "
-"ad internet."
+"Ogni volta che scarichi un programma attraverso Internet, puoi incontrare "
+"dei rischi: il programma potrebbe provocare degli errori pericolosi, o il "
+"server da cui stai scaricando potrebbe essere non sicuro. %1 si sforza "
+"continuamente per diminuire questi rischi. Testiamo molto accuratamente "
+"tutte le nostre applicazioni. I nostri server sono tutti coperti da un "
+"firewall configurato per una massima sicurezza. Per accertarci "
+"dell'integrità dei download, tutti i file eseguibili vengono contrassegnati "
+"digitalmente da un computer non connesso ad internet."
 
 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 ""
 "Le applicazioni avviate da %1 possono provocare surriscaldamento. Se ciò "
-"dovesse accadere, basta solo fermare %1 o usare una %2utilità di programma%3 "
-"che limita l'uso della CPU."
+"dovesse accadere, basta solo fermare %1 o usare un %2programma di utilità%3 "
+"che limiti l'uso della CPU."
 
 msgid ""
 "%1 was developed by %2. BOINC was developed at the University of California."
 msgstr ""
-"%1 è sviluppato da %2. Il BOINC è sviluppato dalla Università della "
-"California."
+"%1 è sviluppato da %2. BOINC è sviluppato dalla Università della California."
 
 msgid "Liability"
 msgstr "Responsabilità"
@@ -1114,7 +1152,7 @@ msgid ""
 msgstr ""
 "%1 e %2 non si assumono alcuna responsabilità per eventuali danni causati al "
 "tuo computer, perdita di dati o altri eventi o circostanze che possono "
-"accadere come conseguenza alla partecipazione a %1."
+"accadere come conseguenza della partecipazione a %1."
 
 msgid "Other BOINC projects"
 msgstr "Altri progetti BOINC"
@@ -1124,19 +1162,19 @@ msgid ""
 "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 ""
-"Altri progetti che usano la stessa piattaforma, BOINC, come %1. Se mai "
-"volessi considerare la tua partecipazione a uno, o più, di questi progetti; "
-"così facendo, il tuo computer svolgerà un utilissimo lavoro anche quando %1 "
-"non ha lavoro disponibile."
+"Altri progetti che usano la stessa piattaforma, BOINC, come %1. Prendi in "
+"considerazione la tua partecipazione a uno, o più, di questi progetti; così "
+"facendo, il tuo computer svolgerà un utilissimo lavoro anche quando %1 non "
+"ha lavoro disponibile."
 
 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 ""
-"Questi altri progetti non sono associati con %1 e, quindi, non ne possiamo "
-"garantire la sicurezza e la natura delle loro ricerche. Una vostra adesione "
-"a tali progetti sono a vostro rischio."
+"Questi altri progetti non sono associati con %1, quindi non possiamo "
+"garantirne la sicurezza o la natura delle loro ricerche. L'adesione a tali "
+"progetti è sotto la vostra sola responsabilità."
 
 msgid "LANG_NAME_INTERNATIONAL"
 msgstr "Italian"
@@ -1157,7 +1195,7 @@ msgid "Reply"
 msgstr "Rispondi"
 
 msgid "Delete selected messages"
-msgstr ""
+msgstr "Cancella i messaggi selezionati"
 
 msgid "Sender"
 msgstr "Mittente"
@@ -1169,13 +1207,13 @@ msgid "You need to fill all fields to send a private message"
 msgstr "Devi riempire tutti i campi per poter inviare un messaggio privato"
 
 msgid "Could not find user with id %1"
-msgstr "Non ho a trovato nessun utente con id %1"
+msgstr "Non è stato trovato alcun utente con l'id %1"
 
 msgid "Could not find user with username %1"
-msgstr "Non ho trovato nessun utente chiamato %1"
+msgstr "Non è stato trovato alcun utente chiamato %1"
 
 msgid "%1 is not a unique username; you will have to use user ID"
-msgstr "%1 appartiene a più utenti, usare il proprio numero ID"
+msgstr "%1 è un nome che hanno più utenti, devi usare l'ID dell'utente"
 
 msgid "User %1 (ID: %2) is not accepting private messages from you."
 msgstr "L'utente %1 (ID: %2) non accetta messaggi privati da te."
@@ -1187,7 +1225,7 @@ msgid ""
 "Are you really sure you want to block user %1 from sending you private "
 "messages?"
 msgstr ""
-"Sei veramente sicuro nel voler bloccare l'utente %1 dal mandarti messaggi "
+"Sei veramente sicuro di voler bloccare l'utente %1 dal mandarti messaggi "
 "privati?"
 
 msgid "Please note that you can only block a limited amount of users."
@@ -1204,7 +1242,7 @@ msgid "Add user to filter"
 msgstr "Aggiungi l'utente al filtro"
 
 msgid "No, cancel"
-msgstr "No"
+msgstr "No, annulla"
 
 msgid "User %1 blocked"
 msgstr "Utente %1 bloccato"
@@ -1222,15 +1260,15 @@ msgid ""
 "%1Profiles%2 let individuals share backgrounds and opinions with the %3 "
 "community."
 msgstr ""
-"I %1profili%2 permettono agli individui di condividere le proprie esperienze "
-"con la comunità %3."
+"I %1profili%2 permettono agli utenti di condividere le proprie esperienze "
+"con la comunità di %3."
 
 msgid ""
 "Explore the diversity of your fellow volunteers, and contribute your own "
 "views for others to enjoy."
 msgstr ""
-"Guarda la diversità dei volontari e contribuisci con le tue opinioni ad "
-"invogliare altre persone a partecipare. "
+"Guarda la diversità dei volontari tuoi compagni e contribuisci con le tue "
+"opinioni. "
 
 msgid ""
 "If you haven't already, you can %1create your own user profile%2 for others "
@@ -1246,7 +1284,7 @@ msgid "User Profile Explorer"
 msgstr "Guarda i profili degli utenti"
 
 msgid "View the %1User Picture Gallery%2."
-msgstr "Guarda la %1Galleria Immagini dell'utente%2."
+msgstr "Guarda la %1Galleria delle Immagini degli utenti%2."
 
 msgid "Browse profiles %1by country%2."
 msgstr "Visualizza i profili %1per nazionalità%2."
@@ -1262,202 +1300,213 @@ msgid "Alphabetical profile listings:"
 msgstr "Profili in ordine alfabetico:"
 
 msgid "Search profile text"
-msgstr "Ricerca profilo con testo"
+msgstr "Ricerca profilo mediante testo"
 
 msgid "No profiles"
 msgstr "Nessun profilo"
 
 msgid "No profiles matched your query."
-msgstr "Nessun profilo trovato alla tua richiesta."
+msgstr "Nessun profilo corrisponde ai tuoi criteri di ricerca."
 
 msgid "Invalid vote type:"
-msgstr ""
+msgstr "Tipo di voto non valido:"
 
 msgid "Vote Recorded"
-msgstr ""
+msgstr "Il voto è stato registrato"
 
 msgid "Thank you"
-msgstr ""
+msgstr "Grazie"
 
 msgid "Your recommendation has been recorded."
-msgstr ""
+msgstr "La tua raccomandazione è stata registrata."
 
 msgid "Your vote to reject this profile has been recorded."
-msgstr ""
+msgstr "Il tuo voto per deferire questo profilo è stato registrato."
 
 msgid "Return to profile."
-msgstr ""
+msgstr "Ritorna al profilo."
 
 msgid "This feature is turned off temporarily"
-msgstr ""
+msgstr "Questa funzione è stata temporaneamente sospesa"
 
 msgid "No computer with ID %1 found"
-msgstr ""
+msgstr "Non è stato trovato nessun computer con l'ID %1"
 
 msgid "Tasks for computer %1"
-msgstr ""
+msgstr "Elaborazioni per il computer %1"
 
 msgid "No access"
-msgstr ""
+msgstr "Accesso negato"
 
 msgid "Missing user ID or host ID"
-msgstr ""
+msgstr "Manca l'ID dell'utente o l'ID del computer"
 
-#, fuzzy
 msgid "User of the day"
 msgstr "Utente del giorno"
 
 msgid "Account data for %1"
-msgstr ""
+msgstr "Dati dell'account di %1"
 
 msgid "Statistics and leaderboards"
-msgstr ""
+msgstr "Statistiche e classifiche"
 
 msgid "Statistics for %1"
-msgstr ""
+msgstr "Statistiche di %1"
 
-# ########################################
+# ########################################&lt;br /&gt;<br />
 # Various top table pages (top users, computers, teams)
 msgid "Top participants"
-msgstr "Migliori Partecipanti"
+msgstr "I migliori utenti"
 
 msgid "Top computers"
-msgstr ""
+msgstr "I migliori computer"
 
-#, fuzzy
 msgid "Top teams"
-msgstr "Migliore gruppo %1"
+msgstr "I migliori team"
 
 msgid ""
 "More detailed statistics for %1 and other BOINC-based projects are available "
 "at several web sites:"
 msgstr ""
+"Altre dettagliate statistiche per %1 e per altri progetti basati su BOINC "
+"sono disponibili su diversi siti web:"
 
 msgid ""
 "You can also get your current statistics in the form of a \"signature image"
 "\":"
 msgstr ""
+"Puoi anche ottenere le tue attuali statistiche in forma di immagine "
+"(\"firma\"):"
 
 msgid ""
 "Additionally you can get your individual statistics summed across all BOINC "
 "projects from several sites; see your %1home page%2."
 msgstr ""
+"Inoltre puoi vedere le tue statistiche individuali per tutti i progetti "
+"BOINC su diversi siti; guarda la %1pagina del tuo account%2."
 
 msgid "%1 participants may form %2teams%3"
-msgstr ""
+msgstr "I partecipanti a %1 possono formare dei %2team%3"
 
 msgid ""
 "You may belong to only one team. You can join or quit a team at any time."
 msgstr ""
+"Puoi appartenere solo ad un team. Puoi unirti o lasciare un team in "
+"qualsiasi momento."
 
 msgid "Each team has a %1founder%2 who may:"
-msgstr ""
+msgstr "Ogni team ha un %1fondatore%2 che può:"
 
 msgid "access team members' email addresses"
-msgstr ""
+msgstr "accedere alle informazioni sugli indirizzi email dei membri"
 
 msgid "edit the team's name and description"
-msgstr ""
+msgstr "modificare il nome e la descrizione del team"
 
 msgid "remove members from the team"
-msgstr ""
+msgstr "rimuovere i membri dal team"
 
 msgid "disband a team if it has no members"
-msgstr ""
+msgstr "sciogliere il team, solo se non ha più membri"
 
 msgid "To join a team, visit its team page and click %1Join this team%2."
 msgstr ""
+"Per unirti ad un team visita la pagina del team e clicca su %1Unirsi a "
+"questo team%2."
 
-#, fuzzy
 msgid "Find a team"
-msgstr "Trova un gruppo"
+msgstr "Trova un team"
 
 msgid "All teams"
-msgstr ""
+msgstr "Tutti i team"
 
 msgid "%1 teams"
-msgstr ""
+msgstr "%1 team"
 
-#, fuzzy
 msgid "Create a new team"
-msgstr "Crea un nuovo argomento"
+msgstr "Crea un nuovo team"
 
 msgid ""
 "If you cannot find a team that is right for you, you can %1create a team%2."
 msgstr ""
+"Se non riesci a trovare un team giusto per te, puoi sempre %1creare un "
+"team%2."
 
 msgid "You must choose a non-blank team name"
-msgstr ""
+msgstr "Non puoi lasciare in bianco il nome del team"
 
 msgid "A team named %1 already exists - try another name"
-msgstr ""
+msgstr "Un team chiamato %1 esiste già - prova con un altro nome"
 
 msgid "Could not create team - please try later."
-msgstr ""
+msgstr "Non è stato possibile creare il team - riprova più tardi."
 
 msgid "Create a team"
-msgstr ""
+msgstr "Crea un team"
 
 msgid ""
 "You belong to %1. You must %2quit this team%3 before creating a new one."
 msgstr ""
+"Tu sei membro del team %1. Devi %2lasciare questo team%3 prima di crearne "
+"uno nuovo."
 
 msgid "Top hosts"
-msgstr "Migliori computer"
+msgstr "I migliori computer"
 
 msgid "Top %1 teams"
-msgstr "Migliore gruppo %1"
+msgstr "I migliori team su %1"
 
 msgid "Participant since"
 msgstr "Partecipante dal"
 
 msgid "This user has no profile"
-msgstr ""
+msgstr "Questo utente non ha un profilo"
 
 msgid "Account data"
-msgstr ""
+msgstr "Dati dell'account"
 
-# ########################################
+# ########################################&lt;br /&gt;<br />
 # "Weak account key" page (weak_auth.php)
 msgid ""
 "Your 'weak account key' lets you attach computers to your account on this "
 "project, without giving the ability to log in to your account or to change "
 "it in any way."
 msgstr ""
-"La tua 'account key debole' ti permette di inserire un computer al tuo "
-"account su questo progetto, senza accedervi direttamente o senza cambiarlo "
-"in nessum modo."
+"La tua 'chiave di accesso debole' ti permette di collegare un computer al "
+"tuo account su questo progetto, senza però dargli la possibilità di accedere "
+"al tuo account o di modificarlo in alcun modo."
 
 msgid ""
 "This mechanism works only with projects that have upgraded their server "
 "software 7 Dec 2007 or later."
 msgstr ""
-"Questo meccanismo funziona solamente con i progetti caricati sui propri "
-"server dal 7 dicembre 2007 in poi."
+"Questo meccanismo funziona solamente con i progetti che hanno aggiornato il "
+"software dei loro server dopo il 7 dicembre 2007."
 
 msgid "Your weak account key for this project is:"
-msgstr "La tua account key debole è:"
+msgstr "La tua chiave di accesso debole per questo progetto è:"
 
 msgid ""
 "To use your weak account key on a given host, find or create the 'account "
 "file' for this project. This file has a name of the form "
 "<b>account_PROJECT_URL.xml</b>. The account file for %1 is <b>%2</b>."
 msgstr ""
-"Per usare la tua account key debole su un determinato computer, trova o crea "
-"il 'file dell'account' per questo progetto. Il nome di questo file dovrebbe "
-"apparire nella seguente forma: <b>account_URL_DEL_PROGETTO.xml</b>. Il file "
-"dell'account per %1 è <b>%2</b>."
+"Per usare la tua chiave di accesso debole su un computer, trova o crea il "
+"'file dell'account' per questo progetto. Il nome di questo file deve essere "
+"del tipo: <b>account_URL_DEL_PROGETTO.xml</b>. Il file dell'account per %1 è "
+"<b>%2</b>."
 
 msgid "Create this file if needed. Set its contents to:"
-msgstr "Crea questo file se è necessario. Impostalo come segue:"
+msgstr "Crea questo file se è necessario. Inserisci i contenuti come segue:"
 
 msgid ""
 "Your weak account key is a function of your password. If you change your "
 "password, your weak account key changes, and your previous weak account key "
 "becomes invalid."
 msgstr ""
-"La tua account key debole è in funzione alla tua password. Se cambi la "
-"password cambia anche la account key debole invalidando quella precedente."
+"La tua chiave di accesso debole è funzione alla tua password. Se cambi la "
+"password cambia anche la chiave di accesso debole invalidando quella "
+"precedente."
 
 #~ msgid "Provides"
 #~ msgstr "Fornisci"
@@ -1491,7 +1540,9 @@ msgstr ""
 #~ msgid "Really delete?"
 #~ msgstr "Sei sicuro di voler cancellare?"
 
-#~ msgid "Are you sure you want to delete the message with subject &quot;%1&quot; (sent by %2 on %3)?"
+#~ msgid ""
+#~ "Are you sure you want to delete the message with subject &quot;%1&quot; "
+#~ "(sent by %2 on %3)?"
 #~ msgstr ""
 #~ "Sei sicuro si voler cancellare il messaggio con oggetto &quot;%1&quot; "
 #~ "(inviato da %2 il %3)?"
@@ -1499,5 +1550,7 @@ msgstr ""
 #~ msgid "Yes, delete"
 #~ msgstr "Sì"
 
+# ########################################
+# "Your account" page (home.php)
 #~ msgid "No such message."
 #~ msgstr "Nessun messaggio."
diff --git a/locale/it/BOINC-Web.po b/locale/it/BOINC-Web.po
index 8ddf22c..843c09e 100644
--- a/locale/it/BOINC-Web.po
+++ b/locale/it/BOINC-Web.po
@@ -2,13 +2,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
-"PO-Revision-Date: 2009-01-07 08:15-0700\n"
-"Last-Translator: Paolo Landi <landipaolo at tin.it>\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
+"PO-Revision-Date: 2010-01-10 03:38-0700\n"
+"Last-Translator: Bassi Paolo <baxpaolo at alice.it>\n"
 "Language-Team: \n"
 "Language: it\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 1.2.1\n"
@@ -20,388 +20,323 @@ msgstr ""
 "X-Poedit-Country: UNITED STATES\n"
 "X-Poedit-KeywordsList: tra\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
-msgstr ""
-
-"
+msgstr "[seleziona tutte le voci corrispondenti]"
 
+#: poll.inc:47
 msgid "Other:"
-msgstr ""
-
-"
+msgstr "Altro:"
 
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
-msgstr ""
-
-"
+msgstr "Sì - Ho usato BOINC sul mio computer per..."
 
+#: poll_data.inc:22
 msgid "less than a week"
-msgstr ""
-
-"
+msgstr "meno di una settimana"
 
+#: poll_data.inc:23
 msgid "less than a month"
-msgstr ""
-
-"
+msgstr "meno di un mese"
 
+#: poll_data.inc:24
 msgid "less than a year"
-msgstr ""
-
-"
+msgstr "meno di un anno"
 
+#: poll_data.inc:25
 msgid "more than a year"
-msgstr ""
-
-"
+msgstr "più di un anno"
 
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
-msgstr ""
-
-"
+msgstr "No - Ho usato BOINC, ma..."
 
+#: poll_data.inc:34
 msgid "I lost interest"
-msgstr ""
-
-"
+msgstr "ho perso interesse"
 
+#: poll_data.inc:35
 msgid "it was too complicated"
-msgstr ""
-
-"
+msgstr "era troppo complicato"
 
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
-msgstr ""
-
-"
+msgstr "l'ho chiuso e mi sono dimenticato di farlo ripartire"
 
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
-msgstr ""
-
-"
+msgstr "ha causato problemi al mio computer"
 
+#: poll_data.inc:38
 msgid "it used too much electricity"
-msgstr ""
-
-"
+msgstr "ha consumato troppa energia elettrica"
 
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
-msgstr ""
-
-"
+msgstr "sono passato ad un progetto di calcolo distribuito non-BOINC"
 
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
-msgstr ""
-
-"
+msgstr "No - Ho provato a usare BOINC, ma..."
 
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
-msgstr ""
-
-"
+msgstr "il software non si è installato correttamente"
 
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
-msgstr ""
-
-"
+msgstr "non sono riuscito a capire come usare il software"
 
+#: poll_data.inc:50
 msgid "I had network communication problems"
-msgstr ""
-
-"
+msgstr "ho avuto problemi di comunicazione di rete"
 
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
-msgstr ""
-
-"
+msgstr "non sono riuscito a connettermi ad alcun progetto"
 
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr ""
+"mi sono connesso ad un progetto, ma non ho ricevuto alcun lavoro da "
+"elaborare"
 
-"
-
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
-msgstr ""
-
-"
+msgstr "No - Non ho mai provato ad usare BOINC, perché..."
 
+#: poll_data.inc:61
 msgid "I was concerned about security"
-msgstr ""
-
-"
+msgstr "ero preoccupato per la sicurezza"
 
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
-msgstr ""
-
-"
+msgstr "non ero interessato a nessun progetto"
 
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
-msgstr ""
-
-"
+msgstr "non ho i privilegi per installarlo sul mio computer"
 
+#: poll_data.inc:64
 msgid "No version was available for my computer"
-msgstr ""
-
-"
+msgstr "non c'era una versione compatibile col mio computer"
 
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
-msgstr ""
-
-"
+msgstr "Su quali tipi di computer stai usando BOINC?"
 
+#: poll_data.inc:85
 msgid "Where are they?"
-msgstr ""
-
-"
+msgstr "Dove si trovano?"
 
+#: poll_data.inc:87
 msgid "Home"
-msgstr ""
-
-"
+msgstr "A casa"
 
+#: poll_data.inc:88
 msgid "Work"
-msgstr ""
-
-"
+msgstr "Al lavoro"
 
+#: poll_data.inc:89
 msgid "School"
-msgstr ""
-
-"
+msgstr "A scuola"
 
+#: poll_data.inc:96
 msgid "How many computers?"
-msgstr ""
-
-"
+msgstr "Quanti computer?"
 
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
-msgstr ""
-
-"
+msgstr "In media, quante ore al giorno sono accesi?"
 
+#: poll_data.inc:119
 msgid "Age"
-msgstr ""
-
-"
+msgstr "Età"
 
+#: poll_data.inc:129
 msgid "Sex"
-msgstr ""
-
-"
+msgstr "Sesso"
 
+#: poll_data.inc:131
 msgid "Male"
-msgstr ""
-
-"
+msgstr "Maschio"
 
+#: poll_data.inc:132
 msgid "Female"
-msgstr ""
-
-"
+msgstr "Femmina"
 
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
-msgstr ""
-
-"
+msgstr "Il tuo livello di abilità al computer"
 
+#: poll_data.inc:139
 msgid "Beginner"
-msgstr ""
-
-"
+msgstr "Principiante"
 
+#: poll_data.inc:140
 msgid "Intermediate"
-msgstr ""
-
-"
+msgstr "Intermedio"
 
+#: poll_data.inc:141
 msgid "Advanced"
-msgstr ""
-
-"
+msgstr "Avanzato"
 
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
-msgstr ""
-
-"
+msgstr "Dove hai sentito parlare di BOINC?"
 
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
-msgstr ""
-
-"
+msgstr "TV/radio/giornali"
 
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
-msgstr ""
-
-"
+msgstr "Da amici, parenti o colleghi di lavoro"
 
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
-msgstr ""
-
-"
+msgstr "Nei forum o sui siti web dei gruppi"
 
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
-msgstr ""
-
-"
+msgstr "Sul sito web di BOINC"
 
+#: poll_data.inc:155
 msgid "Other web sites"
-msgstr ""
-
-"
+msgstr "Su altri siti web"
 
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
 msgstr ""
+"Quali sono i fattori più importanti quando decidi di partecipare ad un "
+"progetto BOINC?"
 
-"
-
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
-msgstr ""
-
-"
+msgstr "Screensaver con una bella grafica"
 
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
-msgstr ""
-
-"
+msgstr "Riconoscimento corretto e veloce dei crediti per il lavoro fatto"
 
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
-msgstr ""
-
-"
+msgstr "Ricevere più crediti da questo progetto rispetto agli altri"
 
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
-msgstr ""
-
-"
+msgstr "Forum utili e amichevoli"
 
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
-msgstr ""
-
-"
+msgstr "Partecipazione dello staff del progetto nei forum"
 
+#: poll_data.inc:168
 msgid "Informative project web site"
-msgstr ""
-
-"
+msgstr "Sito del progetto pieno di informazioni"
 
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
-msgstr ""
-
-"
+msgstr "La ricerca scientifica effettuata è importante ed utile"
 
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
-msgstr ""
-
-"
+msgstr "Senza scopo di lucro e i risultati sono pubblici"
 
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
-msgstr ""
-
-"
+msgstr "Riconoscimento personale se il mio computer trova qualcosa"
 
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
-msgstr ""
-
-"
+msgstr "Pubblicazioni da parte del progetto su riviste scientifiche"
 
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
-msgstr ""
-
-"
+msgstr "Newsletter periodiche dal progetto via email"
 
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
-msgstr ""
-
-"
+msgstr "A quanti progetti BOINC partecipi?"
 
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
-msgstr ""
-
-"
+msgstr "Usi lo screensaver di BOINC?"
 
+#: poll_data.inc:192
 msgid "Yes"
-msgstr ""
-
-"
+msgstr "Sì"
 
+#: poll_data.inc:193
 msgid "No"
-msgstr ""
-
-"
+msgstr "No"
 
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
-msgstr ""
-
-"
+msgstr "Che uso fai del forum del progetto:"
 
+#: poll_data.inc:200
 msgid "to read information"
-msgstr ""
-
-"
+msgstr "per leggere informazioni"
 
+#: poll_data.inc:201
 msgid "to read and post information"
-msgstr ""
-
-"
+msgstr "per leggere e inserire informazioni"
 
+#: poll_data.inc:202
 msgid "None"
-msgstr ""
-
-"
+msgstr "nessuno"
 
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr ""
+"Dove prendi le informazioni per risolvere eventuali problemi con BOINC e/o "
+"con i progetti BOINC?"
 
-"
-
+#: poll_data.inc:208
 msgid "The project message boards"
-msgstr ""
-
-"
+msgstr "Dai forum del progetto"
 
+#: poll_data.inc:209
 msgid "The BOINC message boards"
-msgstr ""
-
-"
+msgstr "Dai forum di BOINC"
 
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
-msgstr ""
-
-"
+msgstr "Dalle mailing list di BOINC"
 
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
-msgstr ""
-
-"
+msgstr "Dalla wiki non ufficiale di BOINC"
 
+#: poll_data.inc:213
 msgid "Team web sites"
-msgstr ""
-
-"
+msgstr "Dai siti web dei gruppi"
 
+#: poll_data.inc:214
 msgid "Google or other search engines"
-msgstr ""
-
-"
+msgstr "Da Google o altri motori di ricerca"
 
-########################################
-# download.php
 # ######################################<br />
-# <br />
 # download.php<br />
-# ######################################
+# ######################################&lt;br /&gt;<br />
+# &lt;br /&gt;<br />
+# download.php&lt;br /&gt;
+#: download.php:40
 msgid "Download BOINC"
 msgstr "Scarica BOINC"
 
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr "%s per %s (%s MB)"
 
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -413,29 +348,36 @@ msgstr ""
 "Community Grid, e molti altri. <p> Dopo l'installazione di BOINC sul tuo "
 "computer, puoi connetterlo a quanti progetti vuoi."
 
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
 "(GPU), you may be able to %suse it to compute faster%s"
 msgstr ""
+"Nota: se il tuo computer ha una scheda video NVIDIA (GPU), potresti %susarla "
+"per elaborare più velocemente%s"
 
-"
-
+#: download.php:120
 msgid "System requirements"
 msgstr "Requisiti di sistema"
 
+#: download.php:121
 msgid "Release notes"
 msgstr "Note di rilascio"
 
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr "Aiuto"
 
+#: download.php:123
 msgid "All versions"
 msgstr "Tutte le versioni"
 
+#: download.php:141
 msgid "BOINC: compute for science"
-msgstr "BOINC: elaborazione per la scienza"
+msgstr "BOINC: elabora per la scienza"
 
+#: help.php:12
 #, php-format
 msgid ""
 "BOINC Online Help lets you talk one-on-one with experienced BOINC users, who "
@@ -443,9 +385,12 @@ msgid ""
 "through the process of installing and using BOINC; %s troubleshoot any "
 "problems you might have."
 msgstr ""
+"L'Aiuto Online di BOINC ti permette di parlare a tu per tu con utenti "
+"esperti di BOINC che possono: %s rispondere a domande su BOINC e sul calcolo "
+"distribuito volontario; %s assisterti nel processo di instllazione e "
+"utilizzo di BOINC; %s risolvere eventuali problemi che tu possa avere."
 
-"
-
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -453,61 +398,112 @@ msgid ""
 "Skype, please %sdownload and install it now%s.  When you're finished, return "
 "to this page."
 msgstr ""
+"L'Aiuto Online BOINC si appoggia a %sSkype%s, un sistema di telefonia "
+"tramite Internet. Skype è gratis (sia il software che le chiamate).  Se non "
+"hai ancora Skype, %sscaricalo ed installalo ora%s.  Quando hai finito, "
+"ritorna su questa pagina."
 
-"
-
+#: 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 ""
+"Il modo migliore di ricevere aiuto è via voce, e per ottenerlo è necessario "
+"che tu abbia collegati al tuo computer un microfono e delle casse, oppure "
+"delle cuffie.  Per comunicare con i Volontari dell'Aiuto Online puoi anche "
+"utilizzare la chat testuale di Skype o le email (se non hai Skype)."
 
-"
-
+#: help.php:31
 msgid ""
 "Volunteers speaking several languages are available. Please select a "
 "language:"
 msgstr ""
+"Sono disponibili volontari che parlano diverse lingue. Seleziona una lingua:"
 
-"
-
+#: help.php:47
 msgid "Be a Help Volunteer"
-msgstr ""
-
-"
+msgstr "Diventa un Volontario dell'Aiuto Online"
 
+#: 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 ""
+"Se sei un utente esperto di BOINC, ti incoraggiamo a %sdiventare un "
+"Volontario dell'Aiuto Online%s.  E' molto importante per la causa della "
+"ricerca scientifica e del calcolo distribuito volontario - ed è anche "
+"divertente!"
 
-"
-
+#: help.php:56
 #, php-format
 msgid ""
 "If you're already a Help Volunteer: to edit your settings, %sclick here%s."
 msgstr ""
+"Se sei un Volontario dell'Aiuto Online: per modificare le tue opzioni, "
+"%sclicca qui%s."
 
-"
+#: index.php:23
+msgid "Computing power"
+msgstr "Potenza di calcolo"
 
-msgid "Volunteer"
-msgstr ""
+#: index.php:25
+msgid "Top 100 volunteers"
+msgstr "I migliori 100 volontari"
 
-"
+#: index.php:26
+msgid "Statistics"
+msgstr "Statistiche"
 
-msgid "Download"
-msgstr ""
+#: index.php:53
+msgid "Active:"
+msgstr "Attivi:"
 
-"
+#: index.php:53
+msgid "volunteers,"
+msgstr "volontari,"
 
-msgid "Documentation"
-msgstr ""
+#: index.php:53
+msgid "computers.\n"
+msgstr "computer.\n"
 
-"
+#: index.php:54
+msgid "24-hour average:"
+msgstr "Media su 24 ore:"
 
+#: index.php:54
+msgid "TeraFLOPS."
+msgstr "TeraFLOPS."
+
+#: index.php:66
+msgid "News"
+msgstr "News"
+
+#: index.php:72
+msgid "... more"
+msgstr "... continua"
+
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr "Le news sono disponibili come %sRSS feed%s"
+
+#: index.php:86
+msgid "Volunteer"
+msgstr "Utente volontario"
+
+#: index.php:88
+msgid "Download"
+msgstr "Scarica"
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr "Documentazione"
+
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -515,29 +511,102 @@ msgid ""
 "scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %"
 "sDownload%s and run BOINC software  %sEnter%s an email address and password. "
 msgstr ""
+" Usa il tempo di inattività del tuo computer (Windows, Mac o Linux) per "
+"curare malattie, studiare il riscaldamento globale, scoprire pulsar e fare "
+"molti altri tipi di ricerche scientifiche.  E' sicuro, garantito e facile:  "
+"%sScegli%s i progetti   %sScarica%s e lancia il software BOINC  "
+"%sInserisci%s un indirizzo email e una password. "
 
-"
-
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
 "sGridRepublic%s or %sBAM!%s. "
 msgstr ""
+"O, se supporti numerosi progetti, prova ad usare un %saccount manager%s come "
+"%sGridRepublic%s o %sBAM!%s. "
+
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr "Elaborare con BOINC"
+
+#: index.php:126
+msgid "Software updates"
+msgstr "Aggiornamenti del software"
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr "Il progetto BOINC"
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr "C'è bisogno di aiuto!"
+
+#: index.php:160
+msgid "Programming"
+msgstr "Programmazione"
+
+#: index.php:161
+msgid "Translation"
+msgstr "Traduzioni"
 
-"
+#: index.php:162
+msgid "Testing"
+msgstr "Test delle applicazioni"
 
+#: index.php:165
+msgid "Software development"
+msgstr "Sviluppo del software"
+
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr "API per il software di terze parti (add-on)"
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr "Personale e collaboratori"
+
+#: index.php:168
+msgid "Message boards"
+msgstr "Forum"
+
+#: index.php:169
+msgid "Email lists"
+msgstr "Email list"
+
+#: index.php:170
+msgid "Events"
+msgstr "Eventi"
+
+#: index.php:171
+msgid "Conferences"
+msgstr "Conferenze"
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr "Pubblicazioni e relazioni"
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr "Loghi e immagini"
+
+#: index.php:206
+msgid "Browser default"
+msgstr "Pagina di default del browser"
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
+"Software open-source per il %scalcolo distribuito volontario%s e per il "
+"%sgrid computing%s."
 
-"
-
+#: poll.php:9
 msgid "BOINC user survey"
-msgstr ""
-
-"
+msgstr "Sondaggio sugli utenti di BOINC"
 
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -549,88 +618,89 @@ msgid ""
 "will replace the old ones. <p> The current results of the survey are <a "
 "href=poll_results.php>here</a>. "
 msgstr ""
-
-"
-
+"Molti progetti di calcolo distribuito volontario, come "
+"Climateprediction.net, Einstein at home e SETI at home, utilizzano il software "
+"chiamato BOINC.  Se partecipi a questo tipo di progetti ti chiediamo "
+"cortesemente di rispondere alle domande seguenti.  Questo aiuterà i progetti "
+"basati su BOINC ad aumentare la partecipazione degli utenti ed a "
+"raggiungere migliori risultati scientifici. <p> Per cortesia rispondi a più "
+"domande che puoi, poi vai in fondo e clicca su OK. Se hai già completato il "
+"sondaggio in precedenza ma le tue risposte sono cambiate, per cortesia "
+"completalo nuovamente - le tue nuove risposte sostiuiranno quelle vecchie. "
+"<p> I risultati attuali del sondaggio si possono trovare <a "
+"href=poll_results.php>qui</a>. "
+
+#: poll.php:25
 msgid "Do you run BOINC?"
-msgstr ""
-
-"
+msgstr "Usi BOINC?"
 
+#: poll.php:30
 msgid "Your participation"
-msgstr ""
-
-"
+msgstr "La tua partecipazione"
 
+#: poll.php:32
 msgid "Your computers"
-msgstr ""
-
-"
+msgstr "I tuoi computer"
 
+#: poll.php:34
 msgid "You"
-msgstr ""
-
-"
+msgstr "Tu"
 
+#: poll.php:39
 msgid "Nationality"
-msgstr ""
-
-"
+msgstr "Nazionalità"
 
+#: poll.php:44
 msgid "Comments"
-msgstr ""
-
-"
+msgstr "Commenti"
 
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
 msgstr ""
+"Suggerisci come BOINC, e i progetti che lo utilizzano, potrebbero essere "
+"migliorati:"
 
-"
-
+#: poll.php:50
 msgid "When done click:"
-msgstr ""
-
-"
+msgstr "Quando hai terminato clicca:"
 
+#: poll_action.php:9
 msgid "Error - results not recorded"
-msgstr ""
-
-"
+msgstr "Errore - i risultati non sono stati registrati"
 
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
 msgstr ""
+"Un errore interno ha impedito la registrazione delle tue risposte al "
+"sondaggio.  Sei pregato di riprovare."
 
-"
-
+#: poll_action.php:32
 msgid "Survey response recorded"
-msgstr ""
-
-"
+msgstr "Le risposte al sondaggio sono state registrate"
 
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
-msgstr ""
-
-"
+msgstr "Grazie per aver completato il sondaggio sugli utenti di BOINC."
 
+#: poll_results.php:195
 msgid "Survey results"
-msgstr ""
-
-"
+msgstr "Risultati del sondaggio"
 
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
 msgstr ""
-
-"
+"Questi sono i risultati attuali del <a href=poll.php>sondaggio sugli utenti "
+"di BOINC</a>.  Questa pagina viene aggiornata ogni ora."
 
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 # The charset used for the text in this file (please try to use UTF-8 if possible)
-##########################################
+# #########################################
 # Language: Italian (International)
 # FileID  : $Id$
 # For more information please see:
@@ -654,9 +724,9 @@ msgstr ""
 #~ msgid "LANG_NAME_INTERNATIONAL"
 #~ msgstr "English"
 
-########################################
+# #######################################
 # poll-related stuff
-########################################
+# #######################################
 # ######################################<br />
 # <br />
 # poll-related stuff<br />
@@ -667,7 +737,16 @@ msgstr ""
 
 #, fuzzy
 #~ msgid "POLL_INTRO"
-#~ msgstr "Several volunteer computing projects, including Climateprediction.net, Einstein at home, and SETI at home, use software called BOINC. If you participate in projects like this, we request that you answer the following questions. This will help BOINC-based projects increase participation and achieve greater scientific results. <p> Please answer as many questions as you want, then go to the bottom and click OK. If you previously completed the survey but your answers have changed, please complete it again - your new answers will replace the old ones. <p> The current results of the survey are <a href=poll_results.php>here</a>. "
+#~ msgstr ""
+#~ "Several volunteer computing projects, including Climateprediction.net, "
+#~ "Einstein at home, and SETI at home, use software called BOINC. If you "
+#~ "participate in projects like this, we request that you answer the "
+#~ "following questions. This will help BOINC-based projects increase "
+#~ "participation and achieve greater scientific results. <p> Please answer "
+#~ "as many questions as you want, then go to the bottom and click OK. If you "
+#~ "previously completed the survey but your answers have changed, please "
+#~ "complete it again - your new answers will replace the old ones. <p> The "
+#~ "current results of the survey are <a href=poll_results.php>here</a>. "
 
 #, fuzzy
 #~ msgid "POLL_RUN"
@@ -695,7 +774,9 @@ msgstr ""
 
 #, fuzzy
 #~ msgid "POLL_COMMENTS_QUESTION"
-#~ msgstr "Please suggest ways that BOINC, and the projects that use it, could be improved:"
+#~ msgstr ""
+#~ "Please suggest ways that BOINC, and the projects that use it, could be "
+#~ "improved:"
 
 #, fuzzy
 #~ msgid "POLL_OTHER"
@@ -887,7 +968,9 @@ msgstr ""
 
 #, fuzzy
 #~ msgid "POLL_FACTOR"
-#~ msgstr "Which are the most important factors when you decide whether to participate in a BOINC project?"
+#~ msgstr ""
+#~ "Which are the most important factors when you decide whether to "
+#~ "participate in a BOINC project?"
 
 #, fuzzy
 #~ msgid "POLL_GRAPHICS"
@@ -966,7 +1049,9 @@ msgstr ""
 
 #, fuzzy
 #~ msgid "POLL_HELP"
-#~ msgstr "Where do you get information to help resolve problems with BOINC and/or BOINC projects?"
+#~ msgstr ""
+#~ "Where do you get information to help resolve problems with BOINC and/or "
+#~ "BOINC projects?"
 
 #, fuzzy
 #~ msgid "POLL_HELP_PMB"
@@ -1002,7 +1087,9 @@ msgstr ""
 
 #, fuzzy
 #~ msgid "POLL_ERROR_TEXT"
-#~ msgstr "An internal error has prevented us from recording your survey response.  Please try again later."
+#~ msgstr ""
+#~ "An internal error has prevented us from recording your survey response.  "
+#~ "Please try again later."
 
 #, fuzzy
 #~ msgid "POLL_RECORDED"
@@ -1018,7 +1105,9 @@ msgstr ""
 
 #, fuzzy
 #~ msgid "POLL_RESULTS_TEXT"
-#~ msgstr "These are the current results of the <a href=poll.php>BOINC user survey</a>.  This page is updated every hour."
+#~ msgstr ""
+#~ "These are the current results of the <a href=poll.php>BOINC user survey</"
+#~ "a>.  This page is updated every hour."
 
 #~ msgid "Other systems"
 #~ msgstr "Altri sistemi"
@@ -1029,18 +1118,25 @@ msgstr ""
 #~ msgid "%s make your own client software %s or"
 #~ msgstr "%s generare il tuo client software %s oppure"
 
-#~ msgid "%s download executables from a third-party site %s (available for Solaris/Opteron, Linux/Opteron, Linux/PPC, HP-UX, and FreeBSD, and others)."
+#~ msgid ""
+#~ "%s download executables from a third-party site %s (available for Solaris/"
+#~ "Opteron, Linux/Opteron, Linux/PPC, HP-UX, and FreeBSD, and others)."
 #~ msgstr ""
-#~ "%s scarica gli eseguibili da un altro sito %s (disponibili per "
-#~ "Solaris/Opteron, Linux/Opteron, Linux/PPC, HP-UX, FreeBSD ed altri)."
+#~ "%s scarica gli eseguibili da un altro sito %s (disponibili per Solaris/"
+#~ "Opteron, Linux/Opteron, Linux/PPC, HP-UX, FreeBSD ed altri)."
 
 #, fuzzy
 #~ msgid "DL_MIRRORS"
-#~ msgstr "Note: files are downloaded from mirror servers at boinc.berkeley.edu, morel.mit.edu, einstein.aei.mpg.de, einstein.astro.gla.ac.uk, einstein.ligo.caltech.edu, and einstein.aset.psu.edu (thanks to these institutions). The server is chosen randomly - if a download fails, reload this page and try again. "
+#~ msgstr ""
+#~ "Note: files are downloaded from mirror servers at boinc.berkeley.edu, "
+#~ "morel.mit.edu, einstein.aei.mpg.de, einstein.astro.gla.ac.uk, einstein."
+#~ "ligo.caltech.edu, and einstein.aset.psu.edu (thanks to these "
+#~ "institutions). The server is chosen randomly - if a download fails, "
+#~ "reload this page and try again. "
 
-##############################################
+# #############################################
 # help.php
-##############################################
+# #############################################
 # ############################################<br />
 # <br />
 # help.php<br />
@@ -1055,19 +1151,33 @@ msgstr ""
 
 #, fuzzy
 #~ msgid "HELP_P1_1"
-#~ msgstr "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 ""
+#~ "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. "
 
 #, fuzzy
 #~ msgid "HELP_P1_2"
-#~ msgstr "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 ""
+#~ "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. "
 
 #, fuzzy
 #~ msgid "HELP_P1_3"
-#~ msgstr "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 ""
+#~ "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."
 
 #, fuzzy
 #~ msgid "HELP_P1_4"
-#~ msgstr "Volunteers speaking several languages are available. Please select a language: "
+#~ msgstr ""
+#~ "Volunteers speaking several languages are available. Please select a "
+#~ "language: "
 
 #, fuzzy
 #~ msgid "HELP_HEADING2"
@@ -1099,15 +1209,20 @@ msgstr ""
 
 #, fuzzy
 #~ msgid "HELP_P3_1"
-#~ msgstr "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 ""
+#~ "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!  "
 
 #, fuzzy
 #~ msgid "HELP_P3_2"
-#~ msgstr "If you're already a Help Volunteer: to edit your settings, %sclick here%s. "
+#~ msgstr ""
+#~ "If you're already a Help Volunteer: to edit your settings, %sclick here%"
+#~ "s. "
 
-##############################################
+# #############################################
 # index.php
-##############################################
+# #############################################
 # ############################################<br />
 # <br />
 # index.php<br />
@@ -1118,15 +1233,24 @@ msgstr ""
 
 #, fuzzy
 #~ msgid "HOME_P1"
-#~ msgstr " Use the idle time on your computer  (Windows, Mac, or Linux)  to cure diseases, study global warming,  discover pulsars, and do many other types of scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %sDownload%s and run BOINC software  %sEnter%s an email address and password. "
+#~ msgstr ""
+#~ " Use the idle time on your computer  (Windows, Mac, or Linux)  to cure "
+#~ "diseases, study global warming,  discover pulsars, and do many other "
+#~ "types of scientific research.  It's safe, secure, and easy:  %sChoose%s "
+#~ "projects  %sDownload%s and run BOINC software  %sEnter%s an email address "
+#~ "and password. "
 
 #, fuzzy
 #~ msgid "HOME_P2"
-#~ msgstr "Or, if you run several projects, try an %saccount manager%s such as %sGridRepublic%s or %sBAM!%s. "
+#~ msgstr ""
+#~ "Or, if you run several projects, try an %saccount manager%s such as %"
+#~ "sGridRepublic%s or %sBAM!%s. "
 
 #, fuzzy
 #~ msgid "HOME_P3"
-#~ msgstr "If you have any questions, or need help getting started, you can %stalk to a Volunteer Helper%s. "
+#~ msgstr ""
+#~ "If you have any questions, or need help getting started, you can %stalk "
+#~ "to a Volunteer Helper%s. "
 
 #, fuzzy
 #~ msgid "HOME_DOWNLOAD"
@@ -1148,11 +1272,12 @@ msgstr ""
 
 #, fuzzy
 #~ msgid "HOME_BOINC_DESC"
-#~ msgstr "Open-source software for %svolunteer computing%s and %sgrid computing%s"
+#~ msgstr ""
+#~ "Open-source software for %svolunteer computing%s and %sgrid computing%s"
 
-########################################
+# #######################################
 # download.php 2006/08/03 by je2bwm
-########################################
+# #######################################
 #~ msgid "DL_DOWNLOAD"
 #~ msgstr "Scaricati il BOINC"
 
@@ -1160,7 +1285,12 @@ msgstr ""
 #~ msgstr "%s per %s (%s MB)"
 
 #~ msgid "DL_WHATS_BOINC"
-#~ msgstr " Il BOINC è un programma che ti permette di donare        i tempi morti del tuo computer a progetti scientifici come        SETI at home, Climateprediction.net, Rosetta at home,        World Community Grid, e molti altri.        <p>        Dopo aver installato il BOINC sul tuo computer,        potrai connetterlo ai tuoi progetti preferiti.        <p>"
+#~ msgstr ""
+#~ " Il BOINC è un programma che ti permette di donare        i tempi morti "
+#~ "del tuo computer a progetti scientifici come        SETI at home, "
+#~ "Climateprediction.net, Rosetta at home,        World Community Grid, e molti "
+#~ "altri.        <p>        Dopo aver installato il BOINC sul tuo "
+#~ "computer,        potrai connetterlo ai tuoi progetti preferiti.        <p>"
 
 #~ msgid "DL_SYSTEMREQ"
 #~ msgstr "Requisiti di sistema"
@@ -1184,19 +1314,24 @@ msgstr ""
 #~ msgstr "%s fare il tuo programma personale %s o"
 
 #~ msgid "DL_DL_FROM3RDP"
-#~ msgstr "%s scaricare l'esecutibile da un terzo sito %s (per Solaris/Opteron, Linux/Opteron, Linux/PPC, HP-UX, FreeBSD ed altri)."
+#~ msgstr ""
+#~ "%s scaricare l'esecutibile da un terzo sito %s (per Solaris/Opteron, "
+#~ "Linux/Opteron, Linux/PPC, HP-UX, FreeBSD ed altri)."
 
 #~ msgid "DL_DOWNLOAD_TITLE"
 #~ msgstr "BOINC: calcolo per la scienza"
 
-##############################################
+# #############################################
 # system_requirements.php by je2bwm 2006/08/07
-##############################################
+# #############################################
 #~ msgid "SRQ_PAGE_TITLE"
 #~ msgstr "Requisiti di sistema"
 
 #~ msgid "SRQ_INTRO"
-#~ msgstr "Il tuo computer deve soddisfare i seguenti requisiti per far funzionare il BOINC.Alcuni progetti che utilizzano il BOINC possono richiedere ulteriori requisiti."
+#~ msgstr ""
+#~ "Il tuo computer deve soddisfare i seguenti requisiti per far funzionare "
+#~ "il BOINC.Alcuni progetti che utilizzano il BOINC possono richiedere "
+#~ "ulteriori requisiti."
 
 #~ msgid "SRQ_MSWIN"
 #~ msgstr "Windows"
@@ -1258,9 +1393,9 @@ msgstr ""
 #~ msgid "SRQ_LINUX_REQ_DISK"
 #~ msgstr "50 MB di spazio sul disco fisso"
 
-##############################################
+# #############################################
 # release_notes.php
-##############################################
+# #############################################
 #~ msgid "RLN_PAGE_TITLE"
 #~ msgstr "Note di rilascio"
 
@@ -1277,37 +1412,73 @@ msgstr ""
 #~ msgstr "Problemi noti"
 
 #~ msgid "RLN_WIN_INSTALL_PROBLEMS"
-#~ msgstr "(Windows) In casi rari, l'installazione può fallire poiché è presente una vecchia versione del BOINC.  In questo caso: %s Uscite dal BOINC se è attivo e disinstallate la vecchia versione usando %s Start/Pannello di controllo/aggiungi e rimuovi programmi%s. Quindi installare la nuova versione. %s Se anche in questo caso dovesse fallire, reinstallate la versione che avevate prima (potete trovarla %squi%s). Disinstallatela di nuovo e quindi installate la nuova versione. %s Se dovesse fallire ancora, scaricatevi il %sWindows Install Clean Up%s dalla Microsoft e avviatelo. La vecchia versione del boinc vi mostrerà un BOINC.msi o una cosa come un icona corrotta .msi (questa è la massima opzione). Cliccateci sopra e selezionatela, quindi cliccate Rimuovi ed Esci. Riavviate il computer. Ora potete installare la nuova versione. (Attenzione: lasciate stare tutti gli altri file .msi che ci sono, altrimenti potreste causare seri problemi relativi alla disinstallazione degli altri programmi). %s "
+#~ msgstr ""
+#~ "(Windows) In casi rari, l'installazione può fallire poiché è presente una "
+#~ "vecchia versione del BOINC.  In questo caso: %s Uscite dal BOINC se è "
+#~ "attivo e disinstallate la vecchia versione usando %s Start/Pannello di "
+#~ "controllo/aggiungi e rimuovi programmi%s. Quindi installare la nuova "
+#~ "versione. %s Se anche in questo caso dovesse fallire, reinstallate la "
+#~ "versione che avevate prima (potete trovarla %squi%s). Disinstallatela di "
+#~ "nuovo e quindi installate la nuova versione. %s Se dovesse fallire "
+#~ "ancora, scaricatevi il %sWindows Install Clean Up%s dalla Microsoft e "
+#~ "avviatelo. La vecchia versione del boinc vi mostrerà un BOINC.msi o una "
+#~ "cosa come un icona corrotta .msi (questa è la massima opzione). "
+#~ "Cliccateci sopra e selezionatela, quindi cliccate Rimuovi ed Esci. "
+#~ "Riavviate il computer. Ora potete installare la nuova versione. "
+#~ "(Attenzione: lasciate stare tutti gli altri file .msi che ci sono, "
+#~ "altrimenti potreste causare seri problemi relativi alla disinstallazione "
+#~ "degli altri programmi). %s "
 
 #~ msgid "RLN_TROUBLESHOOT"
 #~ msgstr "Analisi dei guasti al BOINC"
 
 #~ msgid "RLN_NEWF_5_4_AM"
-#~ msgstr "Supporto per la gestione dell'account (Account managers) - siti web che mostrano i progetti BOINC, attacco/distacco, cambiamento delle risorse e delle preferenze, tutto con una semplice interfaccia grafica punta e clicca. La gestione degli account è oltremodo molto semplice anche se si posseggono diversi computer - basta un solo ed unico cambiamento."
+#~ msgstr ""
+#~ "Supporto per la gestione dell'account (Account managers) - siti web che "
+#~ "mostrano i progetti BOINC, attacco/distacco, cambiamento delle risorse e "
+#~ "delle preferenze, tutto con una semplice interfaccia grafica punta e "
+#~ "clicca. La gestione degli account è oltremodo molto semplice anche se si "
+#~ "posseggono diversi computer - basta un solo ed unico cambiamento."
 
 #~ msgid "RLN_NEWF_5_4_PREF_OVERRIDE"
-#~ msgstr "Le preferenze generali vengono memorizzate in un file locale; maggiori dettagli %s qui %s."
+#~ msgstr ""
+#~ "Le preferenze generali vengono memorizzate in un file locale; maggiori "
+#~ "dettagli %s qui %s."
 
 #~ msgid "RLN_NEWF_5_4_ALERTS_CONNECT"
 #~ msgstr "Ora il BOINC ti avverte quando è necessario connettersi."
 
 #~ msgid "RLN_5_8_SIMPLE_GUI"
-#~ msgstr "Il BOINC Manager offre due differenti interfacce:  'Semplice' (piccola, grafica, mostrinabile)  e 'Avanzata' (massima informazione).  L'interfaccia semplice concede l'impostazione locale delle preferenze.  Puoi cambiare a piacimento tra Semplice ed Avanzato. "
+#~ msgstr ""
+#~ "Il BOINC Manager offre due differenti interfacce:  'Semplice' (piccola, "
+#~ "grafica, mostrinabile)  e 'Avanzata' (massima informazione).  "
+#~ "L'interfaccia semplice concede l'impostazione locale delle preferenze.  "
+#~ "Puoi cambiare a piacimento tra Semplice ed Avanzato. "
 
 #~ msgid "RLN_5_8_THROTTLE"
-#~ msgstr " impiccamento della CPU: puoi ridurre il picco della CPU limitando  la frazione di tempo che il Boinc utilizza. "
+#~ msgstr ""
+#~ " impiccamento della CPU: puoi ridurre il picco della CPU limitando  la "
+#~ "frazione di tempo che il Boinc utilizza. "
 
 #~ msgid "RLN_5_8_SCHED"
-#~ msgstr " Con le migliorate politiche di programmazione si evitano di superare  le scadenze anche su computer lenti. "
+#~ msgstr ""
+#~ " Con le migliorate politiche di programmazione si evitano di superare  le "
+#~ "scadenze anche su computer lenti. "
 
 #~ msgid "RLN_5_8_MEM"
-#~ msgstr " Puoi limitare l'ammontare di memoria ustata dal BOINC;  questo permette al tuo computer di continuare il calcolo senza perderci in prestazione. "
+#~ msgstr ""
+#~ " Puoi limitare l'ammontare di memoria ustata dal BOINC;  questo permette "
+#~ "al tuo computer di continuare il calcolo senza perderci in prestazione. "
 
 #~ msgid "RLN_5_8_SANDBOX"
-#~ msgstr " Con il Mac OS X sono possibili le applicazioni anche con account senza privilegi,  incremento di sicurezza. "
+#~ msgstr ""
+#~ " Con il Mac OS X sono possibili le applicazioni anche con account senza "
+#~ "privilegi,  incremento di sicurezza. "
 
 #~ msgid "RLN_5_8_SNOOZE"
-#~ msgstr " L'icona Snooze (nel pannello delle applicazioni di sistema) ti permette  di fermare il calcolo per un ora. "
+#~ msgstr ""
+#~ " L'icona Snooze (nel pannello delle applicazioni di sistema) ti permette  "
+#~ "di fermare il calcolo per un ora. "
 
 #~ msgid "RLN_RECOMMEND_LATEST_VERSION"
 #~ msgstr "Raccomandiamo a tutti gli utenti l'aggiornamento a %s."
@@ -1331,22 +1502,43 @@ msgstr ""
 #~ msgstr "Installazione per singolo utente"
 
 #~ msgid "RLN_MSWIN_INSTALL_SINGLE_USER_DESC"
-#~ msgstr "Questa è la modalità raccomandata. Il BOINC verrà avviato ogni qualvolta l'utente 'installante' accederà al computer. La presenza del BOINC nel menu Start è limitata all'utente 'installante', non agli altri utenti. Lo stesso vale per il comando 'mostra il grafico'  e per il salva schermo (anche gli altri utenti possono avviare il salva schermo, ma vedranno  solamente informazioni testuali)."
+#~ msgstr ""
+#~ "Questa è la modalità raccomandata. Il BOINC verrà avviato ogni qualvolta "
+#~ "l'utente 'installante' accederà al computer. La presenza del BOINC nel "
+#~ "menu Start è limitata all'utente 'installante', non agli altri utenti. Lo "
+#~ "stesso vale per il comando 'mostra il grafico'  e per il salva schermo "
+#~ "(anche gli altri utenti possono avviare il salva schermo, ma vedranno  "
+#~ "solamente informazioni testuali)."
 
 #~ msgid "RLN_SHARED_INSTALL"
 #~ msgstr "Installazione condivisa"
 
 #~ msgid "RLN_MSWIN_INSTALL_SHARED_DESC"
-#~ msgstr "Il BOINC si avvia indiferrentemente dall'utente attivo. La presenza del BOINC nel menu Start è visibile a tutti gli utenti. Il BOINC si avvia con un particolare utente (in pratica, con il primo utente che accede al computer il BOINC si avvia come quel utente). Il comando 'mostra il grafico' funzionerà solo per quel utente. Lo stesso vale per il salvaschermo (gli altri utenti lo possono avviare, ma vedranno  solamente informazioni testuali)."
+#~ msgstr ""
+#~ "Il BOINC si avvia indiferrentemente dall'utente attivo. La presenza del "
+#~ "BOINC nel menu Start è visibile a tutti gli utenti. Il BOINC si avvia con "
+#~ "un particolare utente (in pratica, con il primo utente che accede al "
+#~ "computer il BOINC si avvia come quel utente). Il comando 'mostra il "
+#~ "grafico' funzionerà solo per quel utente. Lo stesso vale per il "
+#~ "salvaschermo (gli altri utenti lo possono avviare, ma vedranno  solamente "
+#~ "informazioni testuali)."
 
 #~ msgid "RLN_WIN_SERVICE_INSTALL"
 #~ msgstr "Servizio d'installazione"
 
 #~ msgid "RLN_MSWIN_INSTALL_WINSERVICE_DESC"
-#~ msgstr "Il BOINC si avvia tutte le volte (escluso quando nessun utente è attivo). Il BOINC appare nel menu Start dell'utente che cura l'installazione ma non agli altri utenti.  Il comando 'mostra il grafico' non comparirà a nessun utente. Il salva schermo mostrerà solo le informazioni testuali."
+#~ msgstr ""
+#~ "Il BOINC si avvia tutte le volte (escluso quando nessun utente è attivo). "
+#~ "Il BOINC appare nel menu Start dell'utente che cura l'installazione ma "
+#~ "non agli altri utenti.  Il comando 'mostra il grafico' non comparirà a "
+#~ "nessun utente. Il salva schermo mostrerà solo le informazioni testuali."
 
 #~ msgid "RLN_LINUX_INSTALL_SEA_DESC"
-#~ msgstr "Il BOINC per Linux è distribuito in archivio autoestraente. Questo tipo di installazione richiede familiarità con i sistemi Unix. Comunque è sempre meglio verificarne la disponibilità nella propria distro,  ad esempio Debian Etch nei suoi archivi ha il BOINC 5.4.11"
+#~ msgstr ""
+#~ "Il BOINC per Linux è distribuito in archivio autoestraente. Questo tipo "
+#~ "di installazione richiede familiarità con i sistemi Unix. Comunque è "
+#~ "sempre meglio verificarne la disponibilità nella propria distro,  ad "
+#~ "esempio Debian Etch nei suoi archivi ha il BOINC 5.4.11"
 
 #~ msgid "RLN_LINUX_DL_FILENAME"
 #~ msgstr "Il file che si andrà a scaricare avrà un nome tipo <code>%s</code>."
@@ -1364,37 +1556,94 @@ msgstr ""
 #~ msgstr "Il BOINC manager"
 
 #~ msgid "RLN_SCRIPT_RUN_CLIENT_DESC"
-#~ msgstr "Uno script che porta nella directory del BOINC e avvia il client - la parte che gestisce il calcolo vero e proprio."
+#~ msgstr ""
+#~ "Uno script che porta nella directory del BOINC e avvia il client - la "
+#~ "parte che gestisce il calcolo vero e proprio."
 
 #~ msgid "RLN_SCRIPT_RUN_MANAGER_DESC"
-#~ msgstr "Uno script che porta nella directory del BOINC ed avvia il manager - la parte che si occupa 'dell'amministrazione'."
+#~ msgstr ""
+#~ "Uno script che porta nella directory del BOINC ed avvia il manager - la "
+#~ "parte che si occupa 'dell'amministrazione'."
 
 #~ msgid "RLN_LINUX_AUTOSTART"
-#~ msgstr "Molto probabilmente vorrai%s avviare automaticamente il client %sall'avvio del sistema."
+#~ msgstr ""
+#~ "Molto probabilmente vorrai%s avviare automaticamente il client %"
+#~ "sall'avvio del sistema."
 
 #~ msgid "RLN_MSWIN_UNINSTALL_DESC"
-#~ msgstr "Seleziona Start/Pannello di Controllo/Aggiungi e Rimuoni Programmi. Seleziona BOINC, quindi clicca Cancella. Questo cancella solo il programma del BOINC. Per rimuovere completamente il BOINC, bisogna cancellare anche la directory che contiene di dati (normalmente C:/Programmi/BOINC). "
+#~ msgstr ""
+#~ "Seleziona Start/Pannello di Controllo/Aggiungi e Rimuoni Programmi. "
+#~ "Seleziona BOINC, quindi clicca Cancella. Questo cancella solo il "
+#~ "programma del BOINC. Per rimuovere completamente il BOINC, bisogna "
+#~ "cancellare anche la directory che contiene di dati (normalmente C:/"
+#~ "Programmi/BOINC). "
 
 #~ msgid "RLN_ISSUE_PROXY_NTLMAUTH"
-#~ msgstr "If you use a proxy server, please hold off upgrading for now. Per i lavori utilizziamo l'autenticazione NTLM."
+#~ msgstr ""
+#~ "If you use a proxy server, please hold off upgrading for now. Per i "
+#~ "lavori utilizziamo l'autenticazione NTLM."
 
 #~ msgid "RLN_ISSUE_MSWIN_LATEST_DIRECTX"
-#~ msgstr "(Windows) Se le applicazioni del BOINC continuano a crashare, è possibile che tu bedda %saggiornare la tua versione di DirectX (9.0c o sucessivi) %s."
+#~ msgstr ""
+#~ "(Windows) Se le applicazioni del BOINC continuano a crashare, è possibile "
+#~ "che tu bedda %saggiornare la tua versione di DirectX (9.0c o sucessivi) %"
+#~ "s."
 
 #~ msgid "RLN_ISSUE_MSWIN_SCREENSAVER_XP3D"
-#~ msgstr "(Windows) Se il BOINC è in funzione insieme aun un salva schermo tridimensionale si Windows XP, il sistema potrebbe diventare pigro ed insensibile."
+#~ msgstr ""
+#~ "(Windows) Se il BOINC è in funzione insieme aun un salva schermo "
+#~ "tridimensionale si Windows XP, il sistema potrebbe diventare pigro ed "
+#~ "insensibile."
 
 #~ msgid "RLN_ISSUE_MSWIN_NO_SCREENSAVER"
-#~ msgstr "(Windows) Le applicazioni sviluppate prima dell'ottobre 2004 non mostrano il salva schermo in modalità grafica sia come singolo utente, servizio d'installazione, macchina condivisa se il salva schermo è protetto da password sui sistemi NT."
+#~ msgstr ""
+#~ "(Windows) Le applicazioni sviluppate prima dell'ottobre 2004 non mostrano "
+#~ "il salva schermo in modalità grafica sia come singolo utente, servizio "
+#~ "d'installazione, macchina condivisa se il salva schermo è protetto da "
+#~ "password sui sistemi NT."
 
 #~ msgid "RLN_TROUBLESHOOT_INTRO"
-#~ msgstr "Se hai dei problemi con il BOINC, qui ci sono alcuni punti che puoi seguire:"
+#~ msgstr ""
+#~ "Se hai dei problemi con il BOINC, qui ci sono alcuni punti che puoi "
+#~ "seguire:"
 
 #~ msgid "RLN_TROUBLESHOOT_PRJ_SPECIFIC"
-#~ msgstr "Se hai un problema con un particolare progetto, vai alle faq sul sito web del relativo progetto. Dovresti trovare la soluzione al tuo problema. Se non lo trovi, posta qui, qualche altro utente potrebbe aiutarti. Se il problema persiste, usa il BOINC Manager e 'resetta' il relativo progetto. Questo eliminerà i lavori in progresso tirandoti fuori dal problema. "
+#~ msgstr ""
+#~ "Se hai un problema con un particolare progetto, vai alle faq sul sito web "
+#~ "del relativo progetto. Dovresti trovare la soluzione al tuo problema. Se "
+#~ "non lo trovi, posta qui, qualche altro utente potrebbe aiutarti. Se il "
+#~ "problema persiste, usa il BOINC Manager e 'resetta' il relativo progetto. "
+#~ "Questo eliminerà i lavori in progresso tirandoti fuori dal problema. "
 
 #~ msgid "RLN_TROUBLESHOOT_BOINC_ITSELF"
-#~ msgstr "se invece hai dei problemi proprio con il BOINC, cerca aiuto dalla nostra %s lista dei messaggi %s."
+#~ msgstr ""
+#~ "se invece hai dei problemi proprio con il BOINC, cerca aiuto dalla nostra "
+#~ "%s lista dei messaggi %s."
 
+# The charset used for the text in this file (please try to use UTF-8 if possible)
+# #########################################
+# Language: Italian (International)
+# FileID  : $Id$
+# For more information please see:
+# http://boinc.berkeley.edu/web_translation.php
+# The name of this language in this language
+# The name of this language in this language<br />
+# <br />
+# The name of this language in an international language (English)
+# The name of this language in an international language (English)<br />
+# #######################################
+# poll-related stuff
+# ######################################<br />
+# poll-related stuff<br />
+# ######################################
+# #############################################
+# help.php
+# ############################################<br />
+# help.php<br />
+# index.php
+# index.php<br />
+# download.php 2006/08/03 by je2bwm
+# system_requirements.php by je2bwm 2006/08/07
+# release_notes.php
 #~ msgid "HOME_MORE_INFO"
 #~ msgstr "Avviare il BOINC"
diff --git a/locale/it/pootle-boincclient610-it.prefs b/locale/it/pootle-boincclient610-it.prefs
new file mode 100644
index 0000000..63b9942
--- /dev/null
+++ b/locale/it/pootle-boincclient610-it.prefs
@@ -0,0 +1,11 @@
+# Pootle preferences for project boinctrunk, language it
+
+rights:
+  GHz = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  mlincetto = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  baxnimis = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  LocutusOfBorg = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/it/pootle-boinctrunk-it.prefs b/locale/it/pootle-boinctrunk-it.prefs
deleted file mode 100644
index 5dcea4c..0000000
--- a/locale/it/pootle-boinctrunk-it.prefs
+++ /dev/null
@@ -1,7 +0,0 @@
-# Pootle preferences for project boinctrunk, language it
-
-rights:
-  GHz = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  default = u'view, suggest, archive, pocompile'
-  nobody = u'view'
-  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/ja/BOINC-Manager.mo b/locale/ja/BOINC-Manager.mo
index 6f9278d..9b41656 100644
Binary files a/locale/ja/BOINC-Manager.mo and b/locale/ja/BOINC-Manager.mo differ
diff --git a/locale/ja/BOINC-Manager.po b/locale/ja/BOINC-Manager.po
index 5756a5a..0bb8a5f 100644
--- a/locale/ja/BOINC-Manager.po
+++ b/locale/ja/BOINC-Manager.po
@@ -1,29 +1,26 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 5.10 Japanese\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
-"PO-Revision-Date: 2009-05-17 01:08+0900\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2010-03-13 22:23+0900\n"
 "Last-Translator: je2bwm <je2bwm at jarl.com>\n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Translate Toolkit 1.2.1\n"
 "X-Poedit-Language: English\n"
 "X-Poedit-SourceCharset: iso-8859-1\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 日本語\n"
-"X-Poedit-Country: UNITED STATES\n"
-"X-Poedit-SearchPath-0: clientgui\n"
+"X-Poedit-Country: JAPAN\n"
 
-# This dialog title is rendered not correctly if it is translated into Japanese, as "ユーザ情報"
-#: clientgui/AccountInfoPage.cpp:337
-#, fuzzy
-msgid "User information"
-msgstr "User information"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr "アカウントを特定する"
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
@@ -31,7 +28,7 @@ msgstr ""
 "アカウント情報を入力してください\n"
 "(プロジェクトのウェブサイトに行って,アカウントを作成してください)"
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
@@ -39,421 +36,487 @@ msgstr ""
 "現在このプロジェクトは新規登録を受け付けていません。\n"
 "既にアカウントを取得済みなら参加することはできます。"
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "このプロジェクトですでに稼動していますか?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "いいえ(&N)、新しく参加します"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "はい(&Y)、すでにアカウントがあります"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+"あなたのアカウント情報を自動的には設定できませんでした。\n"
+"\n"
+"次の 'ログオン情報を探す' のリンクをクリックして、\n"
+"Eメイルアドレスとパスワードの2つのフィールドに入れる内容を\n"
+"見つけて下さい。"
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr "ログオン情報を探す"
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "パスワード(&P):"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "パスワードを決めて入力(&P):"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "確認のためパスワードをもう一度(&O):"
 
-#: clientgui/AccountInfoPage.cpp:391
+#: clientgui/AccountInfoPage.cpp:442
 #, c-format
 msgid "Are you already running %s?"
 msgstr "既に %s に参加していますか?"
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
-msgstr "参加者の名前:"
+msgstr "参加者の名前(&U):"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "電子メールアドレス(&E):"
 
-#: clientgui/AccountInfoPage.cpp:430
+#: clientgui/AccountInfoPage.cpp:481
 #, c-format
 msgid "minimum length %d"
 msgstr "%d文字以上"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
-msgstr "パスワード忘れですか?"
+msgstr "パスワードをお忘れですか?"
+
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+"このアカウントマネージャに未登録でしたら、処理を開始する\n"
+"前にぜひ登録をお願いします。次のリンクをクリックして登録に\n"
+"進んで下さい。忘れたパスワードを見つけることも可能です。"
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr "アカウント・マネージャのウェブサイト"
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as  "プロジェクトに参加"
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:530
 #, fuzzy
 msgid "Attach to project"
 msgstr "Attach to project"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "アカウント・マネージャを更新"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "アカウント・マネージャに接続"
 
-#: clientgui/AccountInfoPage.cpp:489
+#: clientgui/AccountInfoPage.cpp:543
 #, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
-msgstr "このプロジェクトでは、パスワードの最短長は %d 文字です。別のパスワードを選んで下さい。"
+msgstr "このプロジェクトでは、パスワードの最短長は %d 文字です。別のパスワードを入力して下さい。"
 
-#: clientgui/AccountInfoPage.cpp:495
+#: clientgui/AccountInfoPage.cpp:549
 #, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
-msgstr "このアカウント・マネージャでは、パスワードの最短長は %d 文字です。別のパスワードを選んで下さい。"
+msgstr "このアカウント・マネージャでは、パスワードの最短長は %d 文字です。別のパスワードを入力して下さい。"
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
-msgstr "確認のために2つ入力していただいたパスワードが同じでありません。もう一度入力してください。"
+msgstr "確認のために二回入力していただいたパスワードが異なっています。再度入力してください。"
 
-# This dialog title is rendered not correctly if it is translated into Japanese, as "アカウント・マネージャURL"
-#: clientgui/AccountManagerInfoPage.cpp:180
-#, fuzzy
-msgid "Account Manager URL"
-msgstr "Account Manager URL"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr "アカウント・マネージャを1つ選ぶ"
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "アカウント・マネージャのウェブサイトの URL を入力して下さい。"
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"アカウントマネージャを選択するには、その名前をクリックするか、\n"
+"あるいは下の欄に URL を入力してください。"
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "アカウント・マネージャ URL(&U):"
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as "%s と通信中です。"
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, fuzzy, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr "Communicating with %s."
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as "サーバと通信中です。"
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 #, fuzzy
 msgid "Communicating with server."
 msgstr "Communicating with server."
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "お待ち下さい..."
 
 # The dialog does not render this if translated as "サーバ内部で異常が発生しました。\n
 # "
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 #, fuzzy
 msgid "An internal server error has occurred.\n"
 msgstr "An internal server error has occurred.\n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "接続しました"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "接続を切りました"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "ウィンドウを閉じる(&C)\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr "この %s ウィンドーを閉じる"
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "BOINC マネージャのウィンドウを閉じる"
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr "ウィンドーを閉じる(&C)"
 
-#: clientgui/AdvancedFrame.cpp:310
+#: clientgui/AdvancedFrame.cpp:319
 #, c-format
-msgid "Exit the %s"
-msgstr "%s を終了します"
+msgid "Exit %s"
+msgstr "%s を終了する"
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "終了(&X)"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
-msgstr "拡張ビュー(&A)\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr "プロジェクト(&P)\tCtrl+Shift+P"
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
-msgstr "拡張表示では、任意の列でソートができます。また、進捗をバーグラフで表示できます。"
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr "プロジェクトを表示"
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
-msgstr "簡易ビュー(&S)...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr "タスク(&T)\tCtrl+Shift+T"
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "BOINC 簡易グラフィックで表示します"
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr "タスクを表示"
 
 #: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "プロジェクトに参加(&P)..."
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr "転送(&F)\tCtrl+Shift+X"
 
 #: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "プロジェクトに参加します"
-
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "アカウント・マネージャに接続(&A)..."
+msgid "Display transfers"
+msgstr "転送を表示"
 
 #: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "アカウント・マネージャに接続します"
+msgid "&Messages\tCtrl+Shift+M"
+msgstr "メッセージ(&M)\tCtrl+Shift+M"
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr "メッセージを表示"
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr "統計(&S)\tCtrl+Shift+S"
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr "統計を表示"
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr "ディスク(&D)使用量\tCtrl+Shift+D"
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr "ディスク使用量を表示"
 
-#: clientgui/AdvancedFrame.cpp:355
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "簡易表示(&V)...\tCTRL+SHIFT+S"
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr "簡易グラフィックインタフェースで表示します"
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr "プロジェクト(&P)またはアカウント・マネージャに接続..."
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr "仕事を処理し始めるためにプロジェクトまたはアカウント・マネージャへ接続する"
+
+#: clientgui/AdvancedFrame.cpp:397
 #, c-format
 msgid "&Synchronize with %s"
 msgstr "%s に同期(&S)"
 
-#: clientgui/AdvancedFrame.cpp:359
+#: clientgui/AdvancedFrame.cpp:401
 #, c-format
 msgid "Get current settings from %s"
-msgstr "%s から現在の設定を取り出すします"
+msgstr "%s から現在の設定を取り出します"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "プロジェクトに参加(&P)..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "計算処理を始めるためにプロジェクトに参加します"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "%s を使うのを止める(&S)"
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "クライアントをアカウント・マネージャの制御からはずします。"
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "常時稼働(&R)"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
-msgstr "プレファレンス (好みの設定) に関わらず仕事を許可します"
+msgstr "プレファレンス (好みの設定) に関わらず仕事をさせます"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "プレファレンスに従って稼働(&P)"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
-msgstr "プレファレンス (好みの設定) に従って仕事を許可します"
+msgstr "プレファレンス (好みの設定) に従って仕事をさせます"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "一時停止(&S)"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr "プレファレンス (好みの設定) に関わらず仕事を停止します"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr "常時 GPU を使う"
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr "プレファレンス (好みの設定) に関わらず GPU に仕事をさせます"
+
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr "プレファレンスに従って GPUを使用(&P)"
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr "プレファレンス (好みの設定) に従って GPU に仕事をさせます"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr "GPU を使わない"
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr "プレファレンス (好みの設定) に関わらず GPU の仕事を停止します"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "ネットワークをいつでも使用(&N)"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
-msgstr "プレファレンス (好みの設定) に関わらずネットワークアクセスを許可します"
+msgstr "プレファレンス (好みの設定) に関わらずネットワークアクセスを許します"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
-msgstr "プレファレンスに従ってネットワークを使用(&P)"
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
+msgstr "プレファレンスに従ってネットワークを使用(&F)"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
-msgstr "プレファレンス (好みの設定) に従ってネットワークアクセスを許可します"
+msgstr "プレファレンス (好みの設定) に従ってネットワークアクセスを許します"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
-msgstr "ネットワークの使用を一時停止(&N)"
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
+msgstr "ネットワークの使用を一時停止(&U)"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr "BOINC によるネットワークアクセスを停止します"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "オプション(&O)..."
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "GUI オプションとプロキシの設定をします"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "プレファレンス(&P)..."
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
-msgstr "マシン独自のプレファレンス (好みの設定)"
+msgstr "マシン毎のプレファレンス (好みの設定)"
 
-#: clientgui/AdvancedFrame.cpp:438
+#: clientgui/AdvancedFrame.cpp:533
 #, c-format
 msgid "Connect to another computer running %s"
 msgstr "%s が稼動している別のコンピュータに接続します"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "コンピュータの選択..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr "接続しているクライアントをシャットダウン..."
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr "現在接続しているコア・クライアントをシャットダウンさせます"
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "CPU ベンチマークを実行(&B)"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "BOINC の CPU ベンチマークを実行します"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr "通信を今すぐ実施(&C)"
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
-msgstr "保留されているネットワーク通信を実行"
+msgstr "保留されているネットワーク通信を実行します"
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr "設定ファイルを読み込む"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
-msgstr "cc_config.xml から設定情報を読み込みます。"
+msgstr "cc_config.xml から設定情報を読み込みます"
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "ローカル・プレファレンスファイルを読み込む"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr "global_prefs_override.xml からプレファレンス (好みの設定) を読み込みます。"
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr "%s を使うのを止める(&S)"
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "クライアントをアカウント・マネージャの制御からはずします。"
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "プロジェクトに参加(&P)"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "計算処理の仕事を始めるためにプロジェクトに参加します。"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
+#: clientgui/AdvancedFrame.cpp:574
 #, c-format
 msgid "%s &help"
 msgstr "%s のヘルプ(&H)"
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
+#: clientgui/AdvancedFrame.cpp:580
 #, c-format
 msgid "Show information about %s"
 msgstr "%s の情報を表示します"
 
-#: clientgui/AdvancedFrame.cpp:513
+#: clientgui/AdvancedFrame.cpp:592
 #, c-format
 msgid "&%s help"
 msgstr "&%s のヘルプ"
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
+#: clientgui/AdvancedFrame.cpp:598
 #, c-format
 msgid "Show information about the %s"
 msgstr "%s の情報を表示します"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
+#: clientgui/AdvancedFrame.cpp:610
 #, c-format
 msgid "%s &website"
 msgstr "%s ウェブサイト(&W)"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
+#: clientgui/AdvancedFrame.cpp:616
 #, c-format
 msgid "Show information about BOINC and %s"
 msgstr "BOINC および %s の情報を表示します"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
 #, c-format
 msgid "&About %s..."
-msgstr "%s について(&A)"
+msgstr "%s について(&A)..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "ライセンスと著作権情報"
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "ファイル(&F)"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "表示(&V)"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "ツール(&T)"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "アクティビティ(&A)"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "高度な操作(&D)"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "ヘルプ(&H)"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr "%s - 現在接続しているクライアントをシャットダウンします..."
-
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-"%s は、現在接続しているクライアントをシャットダウンし、\n"
-"別の計算機に接続するよう促します。\n"
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr "プロジェクトあるいはアカウント・マネージャに接続しようとしています..."
 
-#: clientgui/AdvancedFrame.cpp:1239
+#: clientgui/AdvancedFrame.cpp:1121
 #, c-format
 msgid "%s - Detach from %s"
 msgstr "%s - %s から離脱"
 
 # Case of Detaching from an account manager
-#: clientgui/AdvancedFrame.cpp:1244
+#: clientgui/AdvancedFrame.cpp:1126
 #, c-format
 msgid ""
 "If you stop using %s,\n"
@@ -462,82 +525,91 @@ msgid ""
 "\n"
 "Do you want to stop using %s?"
 msgstr ""
-"%s から離脱しても、現在参加しているプロジェクト\n"
+"%s を使うのをやめても、現在参加しているプロジェクト\n"
 "に影響はありませんが、プロジェクトをいちいち管理\n"
 "する手間をかけねばならなくなります。\n"
 "\n"
-"%s から離脱しますか?"
-
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "プロジェクトに参加処理中..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "プロジェクトとの通信処理を再試行しています..."
+"%s を使うのをやめますか?"
 
-#: clientgui/AdvancedFrame.cpp:1421
+#: clientgui/AdvancedFrame.cpp:1303
 #, c-format
 msgid "%s - Language Selection"
 msgstr "%s - 言語の選択"
 
-#: clientgui/AdvancedFrame.cpp:1428
+#: clientgui/AdvancedFrame.cpp:1310
 #, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr "%s の言語設定を切り換えました。切り換えの効果を出すためには、この %s を再起動しなければなりません。"
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - 現在接続しているクライアントをシャットダウンします..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s は、現在接続しているクライアントをシャットダウンし、\n"
+"別の計算機に接続するよう促します。\n"
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "プロジェクトとの通信処理を再試行しています..."
+
+#: clientgui/AdvancedFrame.cpp:1725
 #, c-format
 msgid "%s"
 msgstr "%s"
 
 # Case for attaching to an account manager
-#: clientgui/AdvancedFrame.cpp:1648
+#: clientgui/AdvancedFrame.cpp:1734
 #, c-format
 msgid "%s has successfully attached to %s"
 msgstr "%s は %s へ参加することに成功しました。"
 
-#: clientgui/AdvancedFrame.cpp:1772
+#: clientgui/AdvancedFrame.cpp:1865
 #, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
+#: clientgui/AdvancedFrame.cpp:1868
 #, c-format
 msgid "Connecting to %s"
 msgstr "%s に接続処理中"
 
-#: clientgui/AdvancedFrame.cpp:1778
+#: clientgui/AdvancedFrame.cpp:1871
 #, c-format
 msgid "Connected to %s (%s)"
 msgstr "%s (%s)に接続済み"
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as "指定した名前はすでに使われています"
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 #, fuzzy
 msgid "Username already in use"
 msgstr "Username already in use"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 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 ""
-"指定した名前のアカウントが既にあり、あなたが入力した\n"
+"指定した名前のアカウントは既にあり、あなたが入力した\n"
 "ものとは異なるパスワードが設定されています。\n"
 "\n"
 "プロジェクトのウェブサイトに行って、そこにある指示に従って下さい。"
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as "指定した電子メールアドレスはすでに使われています。"
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 #, fuzzy
 msgid "Email address already in use"
 msgstr "Email address already in use"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -549,46 +621,60 @@ msgstr ""
 "\n"
 "プロジェクトのウェブサイトに行って、そこにある指示に従って下さい。"
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr "BOINC クライアントと通信中です。お待ちください ...."
 
-#: clientgui/BOINCBaseFrame.cpp:421
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr "%s を終了する(&Q)"
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr "%s を終了する(&X)"
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "キャンセル"
+
+#: clientgui/BOINCBaseFrame.cpp:422
 #, c-format
 msgid "%s - Connection Error"
 msgstr "%s - 接続に異常が発生しました"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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 ""
-"現在のところあなたはこのクライアントを管理する権限がありません。\n"
+"現在のところあなたにはこのクライアントを管理する権限がありません。\n"
 "管理者に連絡して、'boinc_users' ローカルユーザグループにあなたを\n"
 "加えて下さい。"
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
 msgstr ""
 "稼動中のクライアントに接続する際に、認証に失敗しました。\n"
-"このプログラムを起動するとき、クライアントと同じディレクトリから起動してください。"
+"このプログラムを起動するとき、クライアントと同じディレクトリから起動したか確かめてください。"
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
-msgstr "実行中のクライアントと接続するときに、認証で失敗しました。"
+msgstr "実行中のクライアントと接続するときに、認証に失敗しました。"
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "入力したパスワードに誤りがあります。もう一度試してください。"
 
-#: clientgui/BOINCBaseFrame.cpp:488
+#: clientgui/BOINCBaseFrame.cpp:489
 #, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - 接続に失敗しました"
 
-#: clientgui/BOINCBaseFrame.cpp:497
+#: clientgui/BOINCBaseFrame.cpp:498
 #, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
@@ -597,12 +683,12 @@ msgstr ""
 "%s は %s クライアントに接続できませんでした。\n"
 "もう一度、接続を試みますか?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
+#: clientgui/BOINCBaseFrame.cpp:534
 #, c-format
 msgid "%s - Daemon Start Failed"
 msgstr "%s - デーモンの開始に失敗しました"
 
-#: clientgui/BOINCBaseFrame.cpp:543
+#: clientgui/BOINCBaseFrame.cpp:544
 #, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
@@ -612,7 +698,7 @@ msgstr ""
 "コントロールパネルから、管理ツールのサービスを開いて、\n"
 "BOINC サービスを開始して下さい。"
 
-#: clientgui/BOINCBaseFrame.cpp:549
+#: clientgui/BOINCBaseFrame.cpp:550
 #, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
@@ -621,12 +707,12 @@ msgstr ""
 "%s は %s クライアントを開始することができません。\n"
 "このクライアント用のデーモンを開始してから、もう一度試してみて下さい。"
 
-#: clientgui/BOINCBaseFrame.cpp:595
+#: clientgui/BOINCBaseFrame.cpp:596
 #, c-format
 msgid "%s - Connection Status"
 msgstr "%s - 接続状態"
 
-#: clientgui/BOINCBaseFrame.cpp:606
+#: clientgui/BOINCBaseFrame.cpp:607
 #, c-format
 msgid ""
 "%s is not currently connected to a %s client.\n"
@@ -635,11 +721,9 @@ msgid ""
 msgstr ""
 "%s は現在 %s クライアントと繋がっていません。メニューの [高度な操作(D)] から\n"
 "[コンピュータの選択...] へ進み、接続する %s クライアントのコンピュータを選びます。\n"
-"あなたの操作しているコンピュータ自身に接続するには、「計算機名 (ホスト名)」の欄に localhost と入力して下さい。"
+"あなたの操作しているコンピュータ自身に接続するには、「コンピュータ名 (ホスト名)」の欄に localhost と入力して下さい。"
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "ウェブサイト"
 
@@ -660,7 +744,7 @@ msgid ""
 "Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
 msgstr ""
 "%s はプロジェクトと通信できません。インターネットに接続する必要があります。\n"
-"インターネットに接続して、メニューの「高度な操作」から「通信を今すぐ実施j」を選択してください。"
+"インターネットに接続して、メニューの「高度な操作」から「通信を今すぐ実施」を選択してください。"
 
 #: clientgui/BOINCDialupManager.cpp:310
 #, c-format
@@ -685,7 +769,7 @@ msgid ""
 msgstr ""
 "%s はプロジェクトと通信できません。また「通常の接続」も指定されていません。\n"
 "手動でインターネット接続を行うか、メニューの [高度な操作] から [オプション] \n"
-"ダイアログを開き、「接続」タブで「通常の接続」に何を指定するか選択してください。"
+"ダイアログを開き、「接続」タブで「通常の接続」に何を使うか指定してください。"
 
 #: clientgui/BOINCDialupManager.cpp:386
 #, c-format
@@ -703,7 +787,7 @@ msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
 msgstr ""
-"%s はインターネットへの接続ができていることを検出しました。\n"
+"%s はインターネットへの接続ができていることを今、検出しました。\n"
 "全プロジェクトの状況更新と全てのファイル転送の再開を行っています。"
 
 #: clientgui/BOINCDialupManager.cpp:500
@@ -716,7 +800,36 @@ msgstr "%s はインターネットとの接続を切ることに成功しまし
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s はインターネットとの接続を切ることにに失敗しました。"
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+"このクライアントを管理する権限が現在あなたにはありません。\n"
+"\n"
+"このユーザのもとで BOINC を走らせるためには、以下のようにして下さい:\n"
+"  - BOINC を再インストールし、その際に、non-administrative users に関する\n"
+"    質問に\"Yes\"(はい)と答えます\n"
+" あるいは、\n"
+"  - 管理者に依頼してあなたを ユーザグループ 'boinc_master' に加えて\n"
+"    もらいます。"
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"BOINC 関連ファイルの所有権あるいはパーミッションの設定が不適切です。 BOINC を\n"
+"再インストールして下さい。 (エラーコード %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
@@ -724,187 +837,188 @@ msgstr ""
 "BOINC を正常に実行するためには再起動が必要です。\n"
 "あなたのコンピュータを再起動してから、もう一度試して下さい。"
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "BOINC マネージャ"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr "BOINC マネージャはオペレーティング・システムにより自動的に起動されました。"
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
-msgstr "BOINC が起動すると、システムトレイにアイコンだけが現れます"
+msgstr "BOINC 起動時に、システムトレイのアイコンだけを表示します"
+
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr "BOINCクライアントの実行可能ファイルがあるディレクトリ"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr "BOINC用データディレクトリ"
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
-msgstr "オプション引数を付けて BOINC を起動します"
+msgstr "これらのオプション引数を付けて BOINC を起動します"
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
-msgstr "BOINC のユーザとアクセス許可のセキュリティを無効にします"
+msgstr "BOINC のユーザとアクセス許可についてのセキュリティを無効にします"
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
-msgstr "skin マネージャのエラーメッセージを有効にするために、skin debugging モードをセットして下さい。"
+msgstr "skin マネージャのエラーメッセージを有効にするために、skin debugging モードにします"
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(言語の自動判別)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(実装上のダミーエントリ1)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(実装上のダミーエントリ2)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr "計算処理は一時停止しています。"
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr "ネットワーク通信は一時停止しています。"
 
-#: clientgui/BOINCTaskBar.cpp:378
+#: clientgui/BOINCTaskBar.cpp:390
 #, c-format
 msgid "%s: %.2f%% completed."
 msgstr "%s: %.2f%% まで計算済み。"
 
-#: clientgui/BOINCTaskBar.cpp:391
+#: clientgui/BOINCTaskBar.cpp:403
 #, c-format
 msgid "%d tasks running."
 msgstr "%d 個のタスクが実行中です。"
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr "クライアントに再接続中。"
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr "クライアントに接続されていません。"
 
 # For account managers
-#: clientgui/BOINCTaskBar.cpp:597
+#: clientgui/BOINCTaskBar.cpp:609
 #, c-format
 msgid "Open %s Web..."
 msgstr "%s のウェブサイトを開く..."
 
-#: clientgui/BOINCTaskBar.cpp:604
+#: clientgui/BOINCTaskBar.cpp:616
 #, c-format
 msgid "Open %s..."
 msgstr "%s を開く..."
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "休止"
 
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr "GPU を休止"
+
 # This dialog title is rendered not correctly if it is translated into Japanese, as "プロジェクト参加に失敗"
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/CompletionErrorPage.cpp:199
 #, fuzzy
 msgid "Failed to attach to project"
 msgstr "Failed to attach to project"
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as "アカウント・マネージャ更新に失敗"
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 #, fuzzy
 msgid "Failed to update account manager"
 msgstr "Failed to update account manager"
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as "アカウント・マネージャ離脱に失敗"
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 #, fuzzy
 msgid "Failed to remove account manager"
 msgstr "Failed to remove account manager"
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as "アカウント・マネージャ参加に失敗"
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 #, fuzzy
 msgid "Failed to attach to account manager"
 msgstr "Failed to attach to account manager"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
 "\n"
 "Click Finish to close."
 msgstr ""
-"異常が発生しました。詳細はメッセージ・タブを確かめてください。\n"
+"異常が発生しました。詳細はメッセージタブを開いて確かめてください。\n"
 "\n"
 "[終了] をクリックして閉じて下さい。"
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "[終了] をクリックして閉じて下さい。"
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "サーバからのメッセージ:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
-msgstr "プロジェクト参加"
+msgstr "プロジェクトへ参加完了"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
-msgstr "このプロジェクトに計算機を参加させることに成功しました。"
+msgstr "このプロジェクトへ参加することに成功しました。"
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
 msgstr ""
 "[終了] をクリックすると、アカウント名とプレファレンス (好みの設定) を\n"
-"指定するためのページをウェブ・ブラウザで開きます。"
+"指定するためのウェブページが開きます。"
 
-#: clientgui/CompletionPage.cpp:233
+#: clientgui/CompletionPage.cpp:236
 #, c-format
 msgid "Update from %s completed."
-msgstr "%s からの更新が完了しました。"
+msgstr "%s からの状況更新が完了しました。"
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "更新が完了しました。"
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr "%s からの削除が完了しました。"
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "削除に成功しました!"
-
-#: clientgui/CompletionPage.cpp:275
+#: clientgui/CompletionPage.cpp:257
 #, c-format
 msgid "Attached to %s"
 msgstr "%s に接続しました"
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
-msgstr "アカウント・マネージャ参加"
+msgstr "アカウント・マネージャへ参加完了"
 
-#: clientgui/CompletionPage.cpp:289
+#: clientgui/CompletionPage.cpp:271
 #, c-format
 msgid "Welcome to %s!"
 msgstr "%s へようこそ!"
 
-#: clientgui/CompletionPage.cpp:303
+#: clientgui/CompletionPage.cpp:285
 #, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "%s システムへの参加に成功しました。"
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
-msgstr "アカウント・マネージャへの接続に成功しました。"
+msgstr "このアカウント・マネージャへの参加に成功しました。"
 
 #: clientgui/DlgAbout.cpp:98
 #, c-format
@@ -925,16 +1039,16 @@ msgstr "Copyright:"
 
 #: clientgui/DlgAbout.cpp:175
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
-"(C) 2003-2007 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 
 #: clientgui/DlgAbout.cpp:179
 #: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
-msgstr "バークレイ・オープン・インフラストラクチャー・フォー・ネットワーク・コンピューティング"
+msgstr "Berkeley Open Infrastructure for Network Computing"
 
 #: clientgui/DlgAbout.cpp:195
 #: clientgui/DlgExitMessage.cpp:172
@@ -944,39 +1058,38 @@ msgstr "バークレイ・オープン・インフラストラクチャー・フ
 msgid "&OK"
 msgstr "OK(&O)"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
-msgstr "数値が正しくありません。"
+msgstr "浮動小数点形式の数値が正しくありません。"
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr "時間が正しくありません。形式は「HH:MM」"
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr "時間帯が正しくありません。形式は「HH:MM-HH:MM」"
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
-msgstr "正しくない入力値があります。"
+msgstr "正しくない入力値があります"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr "検証エラー"
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
-msgstr "本当にプレファレンス (好みの設定) を全てクリアしてもいいですか?"
+msgstr "本当にローカルなプレファレンス (好みの設定) を全てクリアしてもよいですか?"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr "確認"
 
 #: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
 #, c-format
 msgid "%s - Preferences"
-msgstr "%s - プログラムの設定"
+msgstr "%s - プレファレンス(好みの設定)"
 
 #: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
@@ -984,9 +1097,9 @@ msgid ""
 "Click OK to set preferences.\n"
 "Click Clear to restore web-based settings."
 msgstr ""
-"ここでは、このコンピュータ独自の設定に変更します。\n"
+"ここでは、このコンピュータだけに適用するプレファレンスを変更します。\n"
 "変更をするならば、OKをクリックしてください。\n"
-"プロジェクトウェブサイトの設定にするなら、クリアをクリックしてください。"
+"プロジェクトウェブサイトで設定した値に戻すなら、[クリア]をクリックしてください。"
 
 #: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
@@ -994,7 +1107,7 @@ msgstr "クリア"
 
 #: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
-msgstr "このマシン独自の設定を解除して、ダイアログを終了します。"
+msgstr "このコンピュータだけに適用するプレファレンス(好みの設定)を全てクリアして、ダイアログを終了します。"
 
 #: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
@@ -1006,15 +1119,15 @@ msgstr "バッテリ駆動時の稼動"
 
 #: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
-msgstr "バッテリ稼動時に計算を実行する場合はチェックしてください。"
+msgstr "バッテリ稼動時にも計算を実行する場合はチェックしてください。"
 
 #: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
-msgstr "コンピュータで作業中の稼動"
+msgstr "コンピュータを使っている最中の稼動"
 
 #: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
-msgstr "コンピュータ使用時に計算を実行する場合はチェックしてください。"
+msgstr "あなたがコンピュータ利用中でも計算を実行する場合は、ここにチェックを入れます。"
 
 #: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
@@ -1022,317 +1135,324 @@ msgstr " コンピュータ利用中に GPU を使う"
 
 #: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
-msgstr "あなたがコンピュータを利用中であっても、GPU を計算に使うならばここにチェックを入れます"
+msgstr "あなたがコンピュータを利用中でも、GPU を計算に使うならばここにチェックを入れます"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr "アイドル時間が次の時間を超えた時のみ計算を実行します。"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
-msgstr "指定した時間(分)の間、コンピュータを操作しなかった場合のみ計算をします。"
+msgstr "指定した時間(分)の間、コンピュータを操作しなかった場合のみ計算をします"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
-msgstr "minutes"
+msgstr "分"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+#, fuzzy
+msgid "While processor usage is less than"
+msgstr "プロセッサ使用設定"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr "CPU使用率がこのレベルを超えたら仕事を中断する"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr "%(0を指定すると制限無しの意)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
-msgstr "1日の動作時間"
+msgstr "1日の動作時間帯"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr "処理開始時刻"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
-msgstr "and"
+msgstr "~"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr "処理終了時刻"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
-msgstr "(値が同じだと時間指定なし)"
+msgstr "(値が同じだと時間の制約なし)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr "曜日ごとの設定:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr "この曜日で時間帯を指定するにはチェックを入れて下さい。"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr "月曜日"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr "火曜日"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr "水曜日"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr "木曜日"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr "金曜日"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr "土曜日"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr "日曜日"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr "その他のオプション"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
-msgstr "アプリケーションの切り替え"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
+msgstr "アプリケーションの切り替え間隔"
 
 # This entry is paired with "% of processors".
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr "マルチプロセッサの場合、全プロセッサのうち使うのは"
 
 # This entry is paired with "On multiprocessor systems...."
-#: clientgui/DlgAdvPreferencesBase.cpp:249
+#: clientgui/DlgAdvPreferencesBase.cpp:296
 #, no-c-format
 msgid "% of the processors"
 msgstr "% まで"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr "最大使用"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
+#: clientgui/DlgAdvPreferencesBase.cpp:306
 #, no-c-format
 msgid "% CPU time"
 msgstr "% CPU 時間"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr "プロセッサ使用設定"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr "一般的なオプション"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr "最大ダウンロード速度"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr "キロバイト/秒"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr "最大アップロード速度"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr "接続する間隔"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
 msgstr ""
-"このコンピュータはX日ごとにインターネットに接続します。\n"
+"このコンピュータは、X 日毎にインターネットに接続します。\n"
 "(0だと常時接続します)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr "æ—¥"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
-msgstr "追加作業蓄積量"
+msgstr "仕事の備蓄"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
-msgstr "日(最大10日)"
+msgstr "日分(最大10日)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr "イメージファイルの検証をスキップする"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
-msgstr "インターネットプロバイダが画像ファイルを修正する場合はチェックを入れてください。"
+msgstr "インターネットプロバイダが画像ファイルを変更する場合はチェックを入れてください。"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr "接続オプション"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr "インターネットに接続する前に確認する"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr "チェックを入れると、インターネットに接続する前に確認ダイアログが表示されます。"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
-msgstr "切断するまでの時間"
+msgstr "終わったら切断"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
 msgstr ""
-"チェックを入れると、BOINCがネットワーク使用時にハングアップします\n"
-"(ダイアルアップ接続関連のみ)"
+"チェックを入れると、ネットワーク使用終了時に BOINC が電話を切ります\n"
+"(ダイアルアップ接続の場合のみ有意)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
-msgstr "ネットワーク使用時間帯"
+msgstr "ネットワーク使用を許す時間帯"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr "ネットワーク使用開始時刻"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr "ネットワーク使用終了時刻"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr "ネットワーク使用"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr "ディスク領域"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr "BOINC使用最大ディスク使用量(ギガバイト)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
-msgstr "ギガバイト"
+msgstr "ギガバイトのディスク領域"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr "最低限の未使用領域"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr "BOINC は、ディスク空き容量がこの値を下まわるところまでは使いません(単位はギガバイト)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr "ギガバイト(空き)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr "BOINC使用最大ディスク使用率(パーセント)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
+#: clientgui/DlgAdvPreferencesBase.cpp:546
 #, no-c-format
 msgid "% of total disk space"
 msgstr "% (ディスク全体に対する使用率)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
-msgstr "ディスクへの書き込み頻度"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr "タスクがチェックポイントでディスクに書く最小間隔"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr "秒毎"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
+#: clientgui/DlgAdvPreferencesBase.cpp:565
 #, no-c-format
 msgid "% of page file (swap space)"
-msgstr "% (ページファイル (スワップ領域) の使用率)"
+msgstr "% (ページファイル/スワップ領域 の使用率)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr "メモリ使用"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
+#: clientgui/DlgAdvPreferencesBase.cpp:588
 #, no-c-format
 msgid "% when computer is in use"
-msgstr "% (コンピュータ作業時)"
+msgstr "% (コンピュータ利用中)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
+#: clientgui/DlgAdvPreferencesBase.cpp:598
 #, no-c-format
 msgid "% when computer is idle"
 msgstr "% (コンピュータ・アイドル時)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr "一時停止時にアプリケーションをメモリ上に残す"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr "チェックをいれると、休止中のワークユニットはメモリに残ります。"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr "ディスクおよびメモリ使用"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr "OK"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
-msgstr "すべての値を保存して、ダイアログを終了します。"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr "キャンセル"
+msgstr "すべての値を保存して、ダイアログを終了します"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
-msgstr "保存をしないでダイアログを終了します。"
+msgstr "保存をしないでダイアログを終了します"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
+#: clientgui/DlgAdvPreferencesBase.cpp:637
 #: clientgui/Localization.cpp:35
 #: clientgui/Localization.cpp:121
 #: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "ヘルプ"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
-msgstr "ウェブサイトの設定ページを開きます。"
+msgstr "プレファレンス(好みの設定)のウェブページを開きます。"
+
 
 #: clientgui/DlgExitMessage.cpp:82
 #, c-format
@@ -1354,7 +1474,7 @@ msgstr ""
 "ためのマネージャ・プログラムです。\n"
 "\n"
 "もし、科学計算アプリケーションの方もマネージャ・プログラムと\n"
-"同時に停止させたいのなら、以下の選択肢で指定します:"
+"同時に停止させたいのなら、以下の選択肢から選んで下さい:"
 
 #: clientgui/DlgExitMessage.cpp:135
 #, c-format
@@ -1366,16 +1486,16 @@ msgid ""
 "rather than to exit the application; that will allow %s to run its\n"
 "tasks at the times you selected in your preferences."
 msgstr ""
-"%s を停止します。これは %s アプリケーションまたは %s スクリーン\n"
-"セイバーの再起動とともに復帰します。\n"
+"%s とそのタスクを完全に終了させます。 その後 %s アプリケーション\n"
+"または %s スクリーンセイバーが再起動されるまでは再開しません。\n"
 "\n"
-"多くの場合,アプリケーションを終了するよりも %s ウィンドウを\n"
-"閉じるだけのほうがよいです。プレファレンス (好みの設定) で\n"
-"あなたが設定した時間に %s タスクが動作します。"
+"多くの場合,アプリケーションを終了するよりも %s ウィンドウを閉じるだけ\n"
+"のほうが良いでしょう。そうすれば、プレファレンス (好みの設定) で\n"
+"あなたが設定した時間帯に %s タスクが走ります。"
 
 #: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
-msgstr "マネージャ・プログラムと同時に、今実行中の科学計算アプリケーションも停止する"
+msgstr "マネージャ・プログラムと同時に、今実行中の科学計算アプリケーションも終了する"
 
 #: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
@@ -1385,7 +1505,6 @@ msgstr "この決定を記憶して再びこのダイアログを表示しない
 #: clientgui/DlgGenericMessage.cpp:125
 #: clientgui/DlgOptions.cpp:388
 #: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
 msgid "&Cancel"
 msgstr "キャンセル(&C)"
 
@@ -1393,375 +1512,340 @@ msgstr "キャンセル(&C)"
 msgid "Don't show this dialog again."
 msgstr "再びこのダイアログを表示しない"
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr "閉じる(&C)"
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
-msgstr "プロジェクトのプロパティ : "
+msgstr "プロジェクトのプロパティ "
 
-#: clientgui/DlgItemProperties.cpp:105
+#: clientgui/DlgItemProperties.cpp:199
 #: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "一般"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr "マスター URL"
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
-msgstr "参加者名(User name):"
+msgstr "参加者名(User name) "
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr "チームの名称"
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "リソース割り当て"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr "スケジューラ RPC の保留時間"
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr "ファイルダウンロード 待機"
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr "ファイルアップロード 待機"
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr "コンピュータ ID"
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr "CPU を集中的に使わない"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr "はい"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr "いいえ"
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr "GUI 経由で保留状態にされている"
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr "新しい仕事を取りに行かない"
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr "スケジューラへ要求中"
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
 msgstr "アカウント・マネージャ経由での参加"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr "仕事を終えたらプロジェクトから離脱"
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr "終了した"
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr "功績(credit)の値"
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr "参加者"
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr "計算機"
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr "スケジューリング"
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr "CPU 向けスケジューリングの優先度"
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr "CPU 向けの仕事を獲得する処理の優先度"
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr "CPU 向けの仕事を獲得する処理の保留時間"
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr "CPU 向けの仕事を獲得する処理の保留間隔"
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr "NVIDIA GPU 向けスケジューリングの優先度"
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr "NVIDIA GPU 向けスケジューリングの優先度"
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr "NVIDIA GPU 向けの仕事を獲得する処理の保留時間"
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr "NVIDIA GPU 向けの仕事を獲得する処理の保留間隔"
 
-#: clientgui/DlgItemProperties.cpp:152
-#, fuzzy
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr "ATI GPU 向けスケジューリングの優先度"
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr "ATI GPU 向けスケジューリングの優先度"
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr "ATI GPU 向けの仕事を獲得する処理の保留時間"
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr "ATI GPU 向けの仕事を獲得する処理の保留間隔"
+
+# good translation not found
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr "Duration correction factor"
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr "タスクのプロパティ : "
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "アプリケーション"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr "ワークユニットの名前"
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr "状態"
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr "受信時刻 "
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "報告期限"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr "リソース"
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr "最新のチェックポイントでの CPU 時間"
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "CPU時間"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 msgid "Elapsed time"
 msgstr "経過時間"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr "処理完了までの想定時間"
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr "仕事の計算完了率"
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr "仮想メモリの大きさ"
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr "ワーキング・セットの大きさ"
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
-msgstr "スロット"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr "ディレクトリ"
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr "プロセスID"
+
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "新規"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "ダウンロード失敗"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "ダウンロード処理中"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "参加者によってプロジェクト一時停止"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr "参加者によってタスク一時停止"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "一時停止中"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr " - バッテリ駆動"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
-msgstr " - ユーザはアクティブ"
+msgstr " - 人がコンピュータを利用中"
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr " - 計算を一時停止"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr " - スケジュールされた時刻"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr " - CPU ベンチマーク"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
-msgstr " - 空き容量が必要"
+msgstr " - 空きディスク容量が必要"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr "メモリ不足のため待機"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
-msgstr "メモリが空くまで待機中"
+msgstr "共有メモリが空くまで待機中"
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr "優先度高で処理中"
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "実行中"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr "実行待機"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr "開始まで待機"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "計算エラー"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "アップロード失敗"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "アップロード処理中"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "参加者によって中止"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "プロジェクトによって中止"
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "中止"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "サーバ確認済み"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "報告待機"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
+#: clientgui/DlgItemProperties.cpp:482
 #, c-format
 msgid "Error: invalid state '%d'"
 msgstr "エラー: 無効状態 '%d'"
@@ -1769,7 +1853,7 @@ msgstr "エラー: 無効状態 '%d'"
 #: clientgui/DlgOptions.cpp:119
 #, c-format
 msgid "%s - Options"
-msgstr "%s - オプション(&O)"
+msgstr "%s - オプション"
 
 #: clientgui/DlgOptions.cpp:157
 msgid "Language:"
@@ -1777,7 +1861,7 @@ msgstr "言語:"
 
 #: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
-msgstr "マネージャ・プログラムはどの言語を使うべきか。"
+msgstr "マネージャ・プログラムはどの言語を使うべきか?"
 
 #: clientgui/DlgOptions.cpp:168
 msgid ""
@@ -1789,11 +1873,11 @@ msgstr ""
 
 #: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
-msgstr "マネージャ・プログラムはどのような頻度でネットワーク接続が必要であることをあなたに思い出させるべきか。"
+msgstr "ネットワーク接続が必要であることをどのような頻度でマネージャ・プログラムはあなたに思い出させるべきか?"
 
 #: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
-msgstr "マネージャをログイン時に起動するか。"
+msgstr "マネージャをログイン時に起動するか?"
 
 #: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
@@ -1842,8 +1926,6 @@ msgstr "アドレス:"
 
 #: clientgui/DlgOptions.cpp:275
 #: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
 msgid "Port:"
 msgstr "ポート番号:"
 
@@ -1859,16 +1941,12 @@ msgstr "プロキシを必要としない場合は空欄のままにしてくだ
 
 #: clientgui/DlgOptions.cpp:296
 #: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
 msgid "User Name:"
 msgstr "プロキシのユーザ名:"
 
 #: clientgui/DlgOptions.cpp:304
 #: clientgui/DlgOptions.cpp:368
 #: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
 msgid "Password:"
 msgstr "パスワード:"
 
@@ -1891,7 +1969,7 @@ msgstr "SOCKS プロキシ"
 #: clientgui/DlgSelectComputer.cpp:90
 #, c-format
 msgid "%s - Select Computer"
-msgstr "%s - コンピュータの選択..."
+msgstr "%s - コンピュータの選択"
 
 #: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
@@ -1925,11 +2003,11 @@ msgstr "掲示板"
 
 #: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
-msgstr "SETI at home の掲示版では他の参加者と連絡をとることができます。"
+msgstr "SETI at home の掲示版で他の参加者と連絡をとることができます"
 
 #: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
-msgstr "質問をしたり、問題の発生報告をします。"
+msgstr "質問をしたり、問題の発生報告をする"
 
 #: clientgui/Localization.cpp:39
 #: clientgui/Localization.cpp:81
@@ -1942,7 +2020,7 @@ msgstr "あなたのアカウント"
 #: clientgui/Localization.cpp:87
 #: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
-msgstr "あなたのアカウント情報と功績 (credit) の総計を表示します。"
+msgstr "あなたのアカウント情報と功績 (credit) の総計を表示します"
 
 #: clientgui/Localization.cpp:43
 msgid "Your preferences"
@@ -1950,7 +2028,7 @@ msgstr "あなたのプレファレンス"
 
 #: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
-msgstr "あなたの SETI at home アカウントのプロファイルとプレファレンス (好みの設定) を表示・修正します。"
+msgstr "あなたの SETI at home アカウントのプロファイルとプレファレンス (好みの設定) を表示・修正します"
 
 #: clientgui/Localization.cpp:47
 #: clientgui/Localization.cpp:89
@@ -1960,7 +2038,7 @@ msgstr "あなたのリザルト"
 #: clientgui/Localization.cpp:49
 #: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
-msgstr "先週 (およびそれ以前)の計算について、リザルトと仕事を表示します。"
+msgstr "先週 (およびそれ以前)の計算について、リザルトと仕事を表示します"
 
 #: clientgui/Localization.cpp:51
 #: clientgui/Localization.cpp:93
@@ -1969,7 +2047,7 @@ msgstr "あなたのコンピュータ"
 
 #: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
-msgstr "SETI at Home に参加させているコンピュータ全ての一覧を表示します。"
+msgstr "SETI at Home に参加させているコンピュータ全ての一覧を表示"
 
 #: clientgui/Localization.cpp:55
 #: clientgui/Localization.cpp:97
@@ -1979,7 +2057,7 @@ msgstr "所属チーム"
 #: clientgui/Localization.cpp:57
 #: clientgui/Localization.cpp:99
 msgid "View information about your team"
-msgstr "あなたの所属するチームの情報を表示します。"
+msgstr "あなたの所属するチームの情報を表示します"
 
 #: clientgui/Localization.cpp:61
 msgid "Common questions"
@@ -1987,7 +2065,7 @@ msgstr "一般的な質問"
 
 #: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
-msgstr "Einstein at Home についてしばしば聞かれる質問 (FAQ) の一覧を読みます"
+msgstr "Einstein at Home についてしばしば聞かれる質問 (FAQ) の一覧を表示"
 
 #: clientgui/Localization.cpp:65
 msgid "Screensaver info"
@@ -1995,11 +2073,11 @@ msgstr "スクリーンセイバー情報"
 
 #: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
-msgstr "Einstein at Home スクリーンセイバーについての詳細な記述を読みます"
+msgstr "Einstein at Home スクリーンセイバーについての詳細を表示"
 
 #: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
-msgstr "Einstein at Home 掲示板で、管理者と参加者に連絡をします"
+msgstr "Einstein at Home 掲示板で、管理者と参加者に連絡"
 
 #: clientgui/Localization.cpp:73
 msgid "Einstein status"
@@ -2011,7 +2089,7 @@ msgstr "Einstein at Home サーバの現在状態"
 
 #: clientgui/Localization.cpp:77
 msgid "Report problems"
-msgstr "問題を報告する"
+msgstr "問題を報告"
 
 #: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
@@ -2019,7 +2097,7 @@ msgstr "Einstein at Home の 問題とバグ報告の掲示板へのリンク"
 
 #: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
-msgstr "Einstein at Home のあなたのアカウントとプレファレンス (好みの設定) を表示・変更します"
+msgstr "Einstein at Home のあなたのアカウントとプレファレンス (好みの設定) の表示・変更"
 
 #: clientgui/Localization.cpp:85
 msgid "Account summary"
@@ -2027,7 +2105,7 @@ msgstr "アカウントの要約"
 
 #: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
-msgstr "あなたが稼動させている Einstein at Home の全コンピュータ一覧を見ます"
+msgstr "あなたが稼動させている Einstein at Home の全コンピュータの一覧"
 
 #: clientgui/Localization.cpp:101
 msgid "LIGO project"
@@ -2035,7 +2113,7 @@ msgstr "LIGO プロジェクト"
 
 #: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
-msgstr "Laser Interferometer Gravitational-wave Observatory (LIGO) プロジェクトのホームページ"
+msgstr "LIGO プロジェクトのホームページ(Laser Interferometer Gravitational-wave Observatory)"
 
 #: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
@@ -2047,10 +2125,6 @@ msgstr "GEO-600 プロジェクトの ホームページ"
 
 #: clientgui/Localization.cpp:115
 #: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
 msgid "Team"
 msgstr "チーム"
 
@@ -2063,7 +2137,6 @@ msgid "Get help for climateprediction.net"
 msgstr "climateprediction.net について助けを求めます"
 
 #: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
 msgid "News"
 msgstr "ニュース"
 
@@ -2073,7 +2146,7 @@ msgstr "climateprediction.net のニュース"
 
 #: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
-msgstr "あなたのアカウントの情報、功績 (credit)、トリクルメッセージを表示します"
+msgstr "あなたのアカウントの情報、功績 (credit)、トリクルメッセージの表示"
 
 #: clientgui/Localization.cpp:135
 msgid "Info about your team"
@@ -2081,7 +2154,7 @@ msgstr "所属チームの情報"
 
 #: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
-msgstr "ヘルプ・システムのヘルプを検索します"
+msgstr "我々のヘルプ・システムで検索"
 
 #: clientgui/Localization.cpp:143
 msgid "Global Statistics"
@@ -2105,7 +2178,7 @@ msgstr "装置のプロファイル"
 
 #: clientgui/Localization.cpp:153
 msgid "Update your device settings"
-msgstr "あなたの装置の設定を更新します"
+msgstr "あなたの装置の設定を更新"
 
 #: clientgui/Localization.cpp:155
 msgid "Research"
@@ -2113,37 +2186,37 @@ msgstr "研究"
 
 #: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
-msgstr "World Community Grid で動作しているプロジェクトについて学びます"
+msgstr "World Community Grid で動作しているプロジェクトについての手引き"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr "クライアントのサービスを開始しています。お待ち下さい ..."
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "システムの状態を読み出しています。お待ちください..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "計算機 (ホスト) の情報を読み出しています。お待ちください..."
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as "インターネット接続が見つかりません"
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 #, fuzzy
 msgid "No Internet connection"
 msgstr "No Internet connection"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "インターネットへ接続してから、もう一度試して下さい。"
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as "プロジェクトが見つかりません"
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 #, fuzzy
 msgid "Project not found"
 msgstr "Project not found"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2154,12 +2227,12 @@ msgstr ""
 "URL を確認の上、もう一度試して下さい。"
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as "アカウント・マネージャが見つかりません"
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 #, fuzzy
 msgid "Account manager not found"
 msgstr "Account manager not found"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2172,54 +2245,67 @@ msgstr ""
 "URL を確認の上、もう一度試して下さい。"
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as "ログイン失敗。"
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 #, fuzzy
 msgid "Login Failed."
 msgstr "Login Failed."
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr "名前とパスワードを確認の上、もう一度試して下さい。"
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr "電子メールアドレスとパスワードを確認の上、もう一度試して下さい。"
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as  "プロジェクトを選んでください"
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 #, fuzzy
 msgid "Choose a project"
 msgstr "Choose a project"
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr "プロジェクトを選択するには、その名前をクリックするか、あるいは下の欄に URL を入力してください。"
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "プロジェクトの URL(&U):"
 
-#: clientgui/ProjectInfoPage.cpp:320
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr "このプロジェクトにはあなたのコンピュータに適合する仕事がないかもしれません。 それでも、続けたいですか?"
+
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr "すでに指定したプロジェクトには参加済みです。別のプロジェクトを選んで下さい。"
 
-#: clientgui/ProjectInfoPage.cpp:321
-msgid "Already Attached to Project"
-msgstr "プロジェクトに参加済み"
+# This string is the default action of objects specified for GetDefaultAction. I'm not sure this is meaningful to be translated, that is, is it a string for Human?
+#: clientgui/ProjectListCtrl.cpp:276
+#, fuzzy
+msgid "Click"
+msgstr "Click"
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
-msgstr "このプロジェクトには、この種のコンピュータに与える仕事はないかもしれません。"
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr "マルチコア CPU サポート済み"
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
-msgstr "%s のウェブサイトに行くにはここをクリック。"
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr "Nvidia GPU サポート済み"
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr "ATI GPU サポート済み"
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr "プロジェクトのウェブサイト"
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as  "プロジェクトと通信中\n
 # お待ち下さい..."
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 #, fuzzy
 msgid ""
 "Communicating with project\n"
@@ -2229,9 +2315,8 @@ msgstr ""
 "Please wait..."
 
 # The dialog does not render this if translated as "対象のサーバに必要なファイルがありません。\n
-# (lookup_account.php/create_account.php)\n
-# "
-#: clientgui/ProjectProcessingPage.cpp:491
+# (lookup_account.php/create_account.php)\n"
+#: clientgui/ProjectProcessingPage.cpp:498
 #, fuzzy
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
@@ -2241,12 +2326,13 @@ msgstr ""
 "(lookup_account.php/create_account.php)\n"
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as  "ネットワーク通信失敗"
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 #, fuzzy
 msgid "Network communication failure"
 msgstr "Network communication failure"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
+#, fuzzy
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2257,26 +2343,26 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
-"The World Community Grid -  BOINC ソフトウェアはインターネット上での通信に\n"
-"失敗しました。よくある原因以下のとおりです。\n"
+"The World Community Grid -  BOINC ソフトウェアはインターネット上での\n"
+"通信に失敗しました。よくある原因は以下のとおりです。\n"
 "\n"
-"1) 接続に問題がある場合。 あなたのネットワークまたはモデムの接続をチェックし\n"
-"[戻る] をクリックしてもう一度試して下さい。\n"
+"1) 接続に問題がある場合。 あなたのネットワークまたはモデムの接続を\n"
+"チェックし、[戻る] をクリックしてもう一度試して下さい。\n"
 "\n"
-"2) パーソナル・ファイアウォールが The World Community Grid - BOINC をブロック\n"
-"している場合。 BOINC および BOINC Manager がポート番号 80 と 443で通信できる\n"
-"ようにパーソナル・ファイアウォールを設定します。設定したら [戻る] をクリックしてもう\n"
-"一度試して下さい。\n"
+"2) パーソナル・ファイアウォールが The World Community Grid - BOINC の\n"
+"通信をブロックしている場合。 BOINC および BOINC Manager が\n"
+"ポート番号 80 と 443で通信できるようにパーソナル・ファイアウォールを設定\n"
+"します。設定したら [戻る] をクリックしてもう一度試して下さい。\n"
 "\n"
 "3) プロキシ・サーバを使っている場合。\n"
 "[次へ] をクリックして BOINC のプロキシ設定を行って下さい。"
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2292,13 +2378,13 @@ msgid ""
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
-"BOINC はインターネット上での通信に失敗しました。よくある原因は\n"
-"以下のとおりです。\n"
+"BOINC はインターネット上での通信に失敗しました。\n"
+"よくある原因は以下のとおりです。\n"
 "\n"
-"1) 接続に問題がある場合。あなたのネットワークまたはモデムの接続をチェックし\n"
-"[戻る] をクリックしてもう一度試して下さい。\n"
+"1) 接続に問題がある場合。あなたのネットワークまたはモデムの接続を\n"
+"チェックし、[戻る] をクリックしてもう一度試して下さい。\n"
 "\n"
-"2) パーソナル・ファイアウォールが BOINC をブロックしている場合。\n"
+"2) パーソナル・ファイアウォールが BOINC の通信をブロックしている場合。\n"
 "BOINC および  BOINC Manager がポート番号 80 で通信できるように\n"
 "パーソナル・ファイアウォールを設定します。設定したら [戻る] をクリック\n"
 "してもう一度試して下さい。\n"
@@ -2307,137 +2393,125 @@ msgstr ""
 "[次へ] をクリックして BOINC のプロキシ設定を行って下さい。"
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as  "プロキシ設定"
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 #, fuzzy
 msgid "Proxy configuration"
 msgstr "Proxy configuration"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "HTTP プロキシ"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "サーバ:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "自動検出"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "SOCKS プロキシ"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr "詳細表示\tCTRL+SHIFT+A"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr "より使いやすい詳細グラフィカルインタフェースを表示する。"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
 #, c-format
 msgid "&%s"
 msgstr "&%s"
 
 #: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
-msgstr "Retrieving current status."
+msgstr "現在の状態を読み出し中"
 
 #: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
-msgstr "You don't have any projects.  Please Add a Project."
+msgstr "どこのプロジェクトにも参加していません。プロジェクトを追加して下さい。"
 
 #: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
-msgstr "Downloading work from the server."
+msgstr "仕事をサーバからダウンロード中"
 
 #: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
-msgstr "Processing Suspended:  Running On Batteries."
+msgstr "処理を一時停止: バッテリー動作中"
 
 #: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
-msgstr "Processing Suspended:  User Active."
+msgstr "処理を一時停止: 人がコンピュータを利用中"
 
 #: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
-msgstr "Processing Suspended:  User paused processing."
+msgstr "処理を一時停止: 参加者の指示による一時停止"
 
 #: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
-msgstr "Processing Suspended:  Time of Day."
+msgstr "処理を一時停止: 動作制限時間帯"
 
 #: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
-msgstr "Processing Suspended:  Benchmarks Running."
+msgstr "処理を一時停止: ベンチマーク走行中"
 
 #: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
-msgstr "Processing Suspended."
+msgstr "処理を一時停止"
 
 #: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
-msgstr "Waiting to contact project servers."
+msgstr "プロジェクトのサーバに接続待機中"
 
 #: clientgui/sg_ClientStateIndicator.cpp:317
 #: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
-msgstr "Retrieving current status"
+msgstr "現在の状態を読み出し中"
 
 #: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
-msgstr "No work available to process"
+msgstr "処理する仕事が不足"
 
 #: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
-msgstr "Unable to connect to the core client"
+msgstr "コア・クライアントに接続不可"
 
 #: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
 msgid "Project"
 msgstr "プロジェクト"
 
 #: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Time"
 msgstr "日時"
 
 #: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Message"
 msgstr "メッセージ"
 
 #: clientgui/sg_DlgMessages.cpp:177
 #: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
 msgid "Copy all the messages to the clipboard."
 msgstr "全メッセージをクリップボードにコピーします。 "
 
 #: clientgui/sg_DlgMessages.cpp:202
 #: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
 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 "選択したメッセージをクリップボードにコピーします。シフトまたはコマンドキーを押しながらクリックすることで複数のメッセージを選択できます。"
 
 #: clientgui/sg_DlgMessages.cpp:204
 #: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
 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 "選択したメッセージをクリップボードにコピーします。シフトキーまたはコントロールキーを押しながら、メッセージをクリックすれば複数のメッセージを選択状態にできます。 "
+msgstr ""
+"選択したメッセージをクリップボードにコピーします。シフトキーまたはコントロールキーを押しながら、メッセージをクリックすれば複数のメッセージを選択状態にで"
+"きます。 "
 
 #: clientgui/sg_DlgMessages.cpp:252
 #: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
 msgid "Get help with BOINC"
 msgstr "BOINC に助けを求めます"
 
@@ -2556,52 +2630,52 @@ msgstr "60"
 
 #: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
-msgstr "Skin"
+msgstr "スキン"
 
 #: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
-msgstr "Skin:"
+msgstr "スキン:"
 
 #: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
-msgstr "Preferences"
+msgstr "プレファレンス"
 
 #: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
-msgstr "I want to customize my preferences for this computer only."
+msgstr "このコンピュータだけについて私のプレファレンス(好みの設定)を変更したい。"
 
 #: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
-msgstr "Customized Preferences"
+msgstr "カスタマイズしたプレファレンス"
 
 #: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
-msgstr "Do work only between:"
+msgstr "動作許容時間帯:"
 
 #: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
-msgstr "Connect to internet only between:"
+msgstr "インターネット接続を許可する時間帯:"
 
 #: clientgui/sg_DlgPreferences.cpp:393
 #: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
-msgstr "Use no more than:"
+msgstr "使用上限:"
 
 #: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
-msgstr "of disk space"
+msgstr "まで(ディスク領域)"
 
 #: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
-msgstr "of the processor"
+msgstr "まで(プロセッサ)"
 
 #: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
-msgstr "Do work while on battery?"
+msgstr "バッテリー動作時に仕事をさせるか?"
 
 #: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
-msgstr "Do work after idle for:"
+msgstr "アイドル時間が次の時間を超えたときのみ仕事をする:"
 
 #: clientgui/sg_DlgPreferences.cpp:678
 #: clientgui/sg_DlgPreferences.cpp:681
@@ -2644,7 +2718,7 @@ msgstr "一時停止状態: 他の仕事の計算を実行中"
 
 #: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
-msgstr "一時停止状態: 人による停止の指示。 継続するには、「再開(Resume)」をクリック"
+msgstr "一時停止状態: 参加者による停止の指示。 継続するには、「再開(Resume)」をクリック"
 
 #: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
@@ -2697,7 +2771,7 @@ msgstr "活動を再開します"
 
 #: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
-msgstr "プレファレンス (好みの設定) 設定ウィンドウを開きます"
+msgstr "プレファレンスの設定ウィンドウを開きます"
 
 #: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
@@ -2705,7 +2779,7 @@ msgstr "BOINC 詳細表示に切り替えます"
 
 #: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
-msgstr "My Projects:"
+msgstr "あなたのプロジェクト:"
 
 #: clientgui/sg_StatImageLoader.cpp:101
 #, c-format
@@ -2718,16 +2792,12 @@ msgstr "プロジェクト離脱"
 
 #: clientgui/sg_StatImageLoader.cpp:217
 #: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
 #, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "プロジェクト '%s' から離脱してよろしいですか?"
 
 #: clientgui/sg_StatImageLoader.cpp:223
 #: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
 msgid "Detach from Project"
 msgstr "プロジェクトから離脱"
 
@@ -2743,14 +2813,10 @@ msgid "%d hr %d min %d sec"
 msgstr "%d hr %d min %d sec"
 
 #: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr "グラフィクスを別の計算機に表示してよろしいですか?"
 
 #: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
 msgid "Show graphics"
 msgstr "グラフィクスを表示"
 
@@ -2768,30 +2834,30 @@ msgid "Elapsed Time: "
 msgstr "経過時間:"
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as  "使用条件"
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 #, fuzzy
 msgid "Terms of Use"
 msgstr "Terms of Use"
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr "以下の使用条件をお読みください:"
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr "使用条件に合意する。"
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr "使用条件に合意しない。"
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as  "プロジェクトは一時的に利用できません"
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 #, fuzzy
 msgid "Project temporarily unavailable"
 msgstr "Project temporarily unavailable"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2802,12 +2868,12 @@ msgstr ""
 "少し待ってからもう一度試して下さい。"
 
 # This dialog title is rendered not correctly if it is translated into Japanese, as  "アカウント・マネージャは一時的に利用できません"
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 #, fuzzy
 msgid "Account manager temporarily unavailable"
 msgstr "Account manager temporarily unavailable"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2887,13 +2953,6 @@ msgstr "'%s' に有効なパス名が含まれていません。 "
 #: clientgui/ViewMessages.cpp:84
 #: clientgui/ViewMessagesGrid.cpp:97
 #: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
 msgid "Commands"
 msgstr "操作"
 
@@ -2959,9 +3018,10 @@ msgstr "メッセージ・グリッド"
 msgid "Copying selected messages to Clipboard..."
 msgstr "選択したメッセージをクリップボードにコピーしています..."
 
+# Not sure the context in which used.
 #: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
-msgstr "ヘルプ(&I)"
+msgstr "Info"
 
 #: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
@@ -2992,80 +3052,53 @@ msgid "Display the latest news about BOINC from the BOINC website"
 msgstr "BOINC ウェブサイトから発信されている BOINC についての最新のニュースを 表示します"
 
 #: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
 msgid "Update"
 msgstr "æ›´æ–°"
 
 #: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr "完了したタスクを報告し、最新の功績 (credit) とプレファレンス (好みの設定) を取得し、可能であれば更にタスクを取得します。"
 
 #: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "一時停止"
 
 #: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr "このプロジェクトが実行しているタスクを一時的に停止します。"
 
 #: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
-msgstr "タスクの取得禁止"
+msgstr "タスクの新規取得禁止"
 
 #: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
 msgid "Don't get new tasks for this project."
-msgstr "このプロジェクトのタスクを取ってくることを禁止します。"
+msgstr "このプロジェクトのタスクを新たに取ってくることを禁止します。"
 
 #: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
 msgid "Reset project"
 msgstr "プロジェクトをリセット"
 
 #: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
 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 "このプロジェクトに関係するすべてのファイルとタスクを削除し新しいタスクを取得します。 完了した仕事を報告するには、先にプロジェクトを最新状態に「更新」してください。"
+msgstr ""
+"このプロジェクトに関係するすべてのファイルとタスクを削除し新しいタスクを取得します。 "
+"完了した仕事を報告するには、先にプロジェクトを最新状態に「更新」してください。"
 
 #: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
 msgid "Detach"
 msgstr "離脱"
 
 #: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
-msgstr "このコンピュータをこのプロジェクトから離脱させます。作業中のタスクは消えてしまいます。 (完了したタスクを報告するため、離脱する前にプロジェクトの「更新」を行ってください)"
+msgstr ""
+"このコンピュータをこのプロジェクトから離脱させます。作業中のタスクは消えてしまいます。 "
+"(完了したタスクを報告するため、離脱する前にプロジェクトの「更新」を行ってください)"
 
 #: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
 msgid "Properties"
 msgstr "プロパティ"
 
@@ -3074,175 +3107,111 @@ msgid "Show project details."
 msgstr "プロジェクトの詳細を表示"
 
 #: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
 msgid "Account"
 msgstr "アカウント"
 
 #: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
 msgid "Work done"
 msgstr "終了した仕事量"
 
 #: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
 msgid "Avg. work done"
 msgstr "終了した仕事量の平均"
 
 #: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
 msgid "Status"
 msgstr "状態"
 
 #: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
 msgid "Projects"
 msgstr "プロジェクト"
 
 #: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
 msgid "Updating project..."
 msgstr "プロジェクト状態を更新しています..."
 
 #: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
 msgid "Resuming project..."
 msgstr "プロジェクトの作業を再開させています..."
 
 #: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
 msgid "Suspending project..."
 msgstr "プロジェクトの作業を一時停止させています..."
 
 #: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
 msgid "Telling project to allow additional task downloads..."
-msgstr "タスクを追加ダウンロードしてよいことをプロジェクトに伝えています..."
+msgstr "タスクをさらにダウンロードしてよいことをプロジェクトに伝えています..."
 
 #: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
 msgid "Telling project to not fetch any additional tasks..."
-msgstr "タスクを追加取得しないようにプロジェクトに伝えています..."
+msgstr "タスクを余分に取得しないようにプロジェクトに伝えています..."
 
 #: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
 msgid "Resetting project..."
 msgstr "プロジェクトをリセットしています..."
 
 #: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
 #, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "プロジェクト '%s' をリセットしてよろしいですか?"
 
 #: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
 msgid "Reset Project"
 msgstr "プロジェクトをリセット"
 
 #: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
 msgid "Detaching from project..."
 msgstr "プロジェクトから離脱しています..."
 
 #: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
 msgid "Launching browser..."
 msgstr "ブラウザを起動中..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "再開"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "このプロジェクトのタスクを再開します"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "新しいタスクを許可"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr "このプロジェクトについて新しいタスクの取得を許可します"
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "このプロジェクトについて新しいタスクの取得を禁止します"
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "参加者の指示により一時停止中"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "新しいタスクを取得しない"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
-msgstr "プロジェクトは終了しました。OKを押すと離脱します。"
+msgstr "プロジェクトは終了しました。 OKを押すと離脱します。"
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
-msgstr "タスクが終了したら離脱します。"
+msgstr "タスクが終了したら離脱します"
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "スケジューラへの要求を保留"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr "スケジューラへ要求中"
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "通信を延期"
 
@@ -3383,19 +3352,19 @@ msgstr "全てのプロジェクト (あわせて表示)"
 msgid "Show one chart with all projects"
 msgstr "全てのプロジェクトをひとつの図に表示します"
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "統計情報"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "図を更新しています..."
 
@@ -3417,7 +3386,9 @@ msgstr "ファイル転送を中止"
 #: clientgui/ViewTransfers.cpp:171
 #: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
-msgstr "ファイル転送の待ち行列からこのファイルを削除するには、「ファイル転送を中止」をクリックします。 この場合、対応するリザルトについての功績 (credit) は付与されなくなります。"
+msgstr ""
+"ファイル転送の待ち行列からこのファイルを削除するには、「ファイル転送を中止」をクリックします。 この場合、対応するリザルトについての功績 "
+"(credit) は付与されなくなります。"
 
 #: clientgui/ViewTransfers.cpp:182
 #: clientgui/ViewTransfersGrid.cpp:129
@@ -3426,7 +3397,7 @@ msgstr "ファイル名"
 
 #: clientgui/ViewTransfers.cpp:183
 #: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
+#: clientgui/ViewWork.cpp:226
 #: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "進捗状況"
@@ -3475,21 +3446,29 @@ msgstr ""
 msgid "Abort File Transfer"
 msgstr "ファイル転送を中止"
 
-#: clientgui/ViewTransfers.cpp:750
+#: clientgui/ViewTransfers.cpp:751
 #: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "右記の時間内に再試行:"
 
-#: clientgui/ViewTransfers.cpp:762
+#: clientgui/ViewTransfers.cpp:763
 #: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr "アップロード保留中"
 
-#: clientgui/ViewTransfers.cpp:762
+#: clientgui/ViewTransfers.cpp:763
 #: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "ダウンロード保留中"
 
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr " (プロジェクトとの通信待機: "
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ")"
+
 #: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr "転送グリッド"
@@ -3513,69 +3492,74 @@ msgid "Abort File Transfer(s)"
 msgstr "ファイル転送を中止"
 
 #: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr "活動中のタスクを表示する"
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr "活動中のタスクだけを表示する。"
+
+#: clientgui/ViewWork.cpp:192
 #: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "ウィンドウを開いてアプリケーションのグラフィクスを表示"
 
-#: clientgui/ViewWork.cpp:191
+#: clientgui/ViewWork.cpp:199
 #: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "このリザルトに対する仕事を一時停止"
 
-#: clientgui/ViewWork.cpp:197
+#: clientgui/ViewWork.cpp:205
 #: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "中止"
 
-#: clientgui/ViewWork.cpp:198
+#: clientgui/ViewWork.cpp:206
 #: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr "このリザルトの仕事を放棄します。このリザルトについて功績 (credit) を受けとることはできません。"
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr "タスクの詳細を表示 : "
 
-#: clientgui/ViewWork.cpp:216
+#: clientgui/ViewWork.cpp:224
 #: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "名前"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr "経過時間"
 
-#: clientgui/ViewWork.cpp:219
+#: clientgui/ViewWork.cpp:227
 #: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "完了までの時間"
 
-#: clientgui/ViewWork.cpp:246
+#: clientgui/ViewWork.cpp:254
 #: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "タスク"
 
-#: clientgui/ViewWork.cpp:315
+#: clientgui/ViewWork.cpp:342
 #: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "タスクを再開しています..."
 
-#: clientgui/ViewWork.cpp:318
+#: clientgui/ViewWork.cpp:345
 #: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "タスクを一時停止しています..."
 
-#: clientgui/ViewWork.cpp:346
+#: clientgui/ViewWork.cpp:373
 #: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "タスクについてのグラフィクスを表示しています..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "リザルトの中止処理をしています..."
-
-#: clientgui/ViewWork.cpp:403
+#: clientgui/ViewWork.cpp:426
 #, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
@@ -3584,29 +3568,55 @@ msgstr ""
 "このタスク '%s' を中止してよろしいですか?\n"
 "(進捗状況: %s, 状態: %s)"
 
-#: clientgui/ViewWork.cpp:411
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "この %d 番のタスクを本当に中止したいですか?"
+
+#: clientgui/ViewWork.cpp:437
 #: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "タスクを中止"
 
-#: clientgui/ViewWork.cpp:624
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "リザルトの中止処理をしています..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr "全てのタスクを表示"
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr "すべてのタスクを表示する。"
+
+#: clientgui/ViewWork.cpp:728
 #: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr "このタスクを再開します。"
 
-#: clientgui/ViewWork.cpp:630
+#: clientgui/ViewWork.cpp:734
 #: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr "このタスクに対する仕事を一時停止します。"
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr "GPU がありません、"
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr " - 排他的なアプリケーションを実行中"
 
-#: clientgui/ViewWork.cpp:1060
+#: clientgui/ViewWork.cpp:1168
 #: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
-msgstr "CPU を常時、使用しているわけではありません"
+msgstr "(常時 CPU を使用するわけではありません)"
+
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr "中止されました: 期限までに開始されませんでした"
 
 #: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
@@ -3621,11 +3631,11 @@ msgstr ""
 "このタスク '%s' を中止してよろしいですか?\n"
 "(進捗状況: %s %%, 状態: %s)"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
-msgstr "World Community Grid の研究アプリケーションを変更"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr "プロジェクトあるいはアカウント・マネージャに接続"
 
-#: clientgui/WelcomePage.cpp:336
+#: clientgui/WelcomePage.cpp:264
 #, c-format
 msgid ""
 "If possible, add projects at the\n"
@@ -3640,15 +3650,15 @@ msgstr ""
 "このウィザードでプロジェクトを追加すると\n"
 "%s 上で表示・管理できません。"
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
 msgstr ""
-"これから、プロジェクトへの参加手順を\n"
-"ガイドいたします。"
+"プロジェクトあるいはアカウント・マネージャに接続する手順を\n"
+"初めから終わりまでガイドします。"
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3676,129 +3686,52 @@ msgstr ""
 "World Community Grid から送られて来る研究アプリケーションを変更するには、以下の\n"
 "ボタンをクリックします:"
 
-# This dialog title is rendered not correctly if it is translated into Japanese, as  "%s の使用を中止(&S)"
-#: clientgui/WelcomePage.cpp:362
-#, fuzzy, c-format
-msgid "&Stop using%s"
-msgstr "&Stop using%s"
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-"%s からこのコンピュータを削除します。これより\n"
-"このコンピュータから直接プロジェクトに参加し離脱します。\n"
-
-# This dialog title is rendered not correctly if it is translated into Japanese, as  "アカウント・マネージャ"
-#: clientgui/WelcomePage.cpp:380
-#, fuzzy
-msgid "Account manager"
-msgstr "Account manager"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"これから、アカウント・マネージャへの追加手順を\n"
-"案内します。\n"
-"\n"
-"ひとつのプロジェクトに参加する場合は,[キャンセル] をクリックして\n"
-"代わりにメニューの「プロジェクトに参加」を選択してください。"
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "デバッグ・フラグ"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "プロジェクト プロパティに問題があります"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr "プロジェクトとの通信に失敗しました"
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "プロジェクト プロパティの URL に問題があります"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "アカウントの作成が停止されています"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "クライアント・アカウントの作成が停止されています"
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "アカウントは既に存在しています"
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "プロジェクトに参加済みでした"
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "プロジェクトへの参加に失敗"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
-msgstr "インターネット接続可否の基準としているサイトとの通信に失敗しました"
-
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "ネットワーク検出に失敗"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr "World Community Grid の研究アプリケーションを変更"
 
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "続けるには [次へ] をクリックして下さい。"
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "本当にキャンセルしますか?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "お答えください"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "次へ(&N) >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< 戻る(&B)"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "終了(&F)"
 
 #: clientgui/common/wxFlatNotebook.cpp:182
-#, fuzzy, c-format
+#, c-format
 msgid "New page inserted. Index = %i"
 msgstr "New page inserted. Index = %i"
 
 #: clientgui/common/wxFlatNotebook.cpp:187
-#, fuzzy, c-format
+#, c-format
 msgid "New page appended. Index = %i"
 msgstr "New page appended. Index = %i"
 
 #: clientgui/common/wxFlatNotebook.cpp:2048
-#, fuzzy, c-format
+#, c-format
 msgid "Old Page Index = %i"
 msgstr "Old Page Index = %i"
 
 #: clientgui/common/wxFlatNotebook.cpp:2053
-#, fuzzy, c-format
+#, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr "OnDropTarget: index by HitTest = %i"
 
@@ -3807,6 +3740,94 @@ msgstr "OnDropTarget: index by HitTest = %i"
 msgid "Pie Ctrl"
 msgstr "Pie Ctrl"
 
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr "アクセシビリティを向上させるには、詳細表示を表示メニューから選ぶか、あるいは コマンドキー+シフト+A を打ってください。"
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr "このパネルには、参加者ごとにプロジェクト横断の合計値を表示するグラフがあります"
+
+# This fragment of English is used in the English-dependent construction sequence.
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+#, fuzzy
+msgid "blank"
+msgstr "blank"
+
+# This fragment of English is used in the English-dependent construction sequence.
+#: clientgui/mac/MacAccessiblity.cpp:530
+#, fuzzy
+msgid "list of "
+msgstr "list of "
+
+# This fragment of English is used in the English-dependent construction sequence.
+#: clientgui/mac/MacAccessiblity.cpp:533
+#, fuzzy
+msgid " is empty"
+msgstr " is empty"
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr "%d (全部で %d) "
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr "現在の順序付けカラム"
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr "降順"
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr "昇順"
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr "カラム"
+
+# This fragment of English is used in the English-dependent construction sequence.
+#: clientgui/mac/MacAccessiblity.cpp:618
+#, fuzzy
+msgid "list is empty"
+msgstr "list is empty"
+
+# This fragment of English is used in the English-dependent construction sequence.
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr "選択中"
+
+# This fragment of English is used in the English-dependent construction sequence.
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr "行 %d"
+
+# This fragment of English is used in the English-dependent construction sequence.
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr "(全部で %d)"
+
+# This fragment of English is used in the English-dependent sequence.
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr "カラム %d "
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr "プロジェクトまたはアカウント・マネージャの一覧"
+
+# This fragment of English is hard to be translated without knowing the context it is used.
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr "行 %d (全体は %d 行)  "
+
 #: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr "処理をする時間帯を「HH:MM-HH:MM」の形式で指定して下さい。"
@@ -3814,15 +3835,3 @@ msgstr "処理をする時間帯を「HH:MM-HH:MM」の形式で指定して下
 #: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr "ネットワークを使う時間帯を「HH:MM-HH:MM」の形式で指定して下さい。"
-
-#~ msgid ""
-#~ "You can copy and paste the URL from your browser's\n"
-#~ "address bar."
-#~ msgstr ""
-#~ "URL の値はブラウザのアドレス・バーから、コピー&ペースト\n"
-#~ "することができます。"
-
-#, fuzzy
-#~ msgid "For a list of account managers go to:"
-#~ msgstr "BOINC ベースのアカウント・マネージャの一覧表を見るには下記のリンクへ:"
-
diff --git a/locale/ja/BOINC-Project-Generic.po b/locale/ja/BOINC-Project-Generic.po
index f6e9d12..558f1db 100644
--- a/locale/ja/BOINC-Project-Generic.po
+++ b/locale/ja/BOINC-Project-Generic.po
@@ -3,21 +3,21 @@ msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: BOINC translation team <translate at boinc.berkeley.edu>\n"
 "POT-Creation-Date: 2009-05-09 21:36 PDT\n"
-"PO-Revision-Date: 2009-06-12 07:21-0700\n"
+"PO-Revision-Date: 2010-02-23 22:55-0700\n"
 "Last-Translator: komo <je2bwm at jarl.com>\n"
 "Language-Team: \n"
 "Language: ja\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Pootle 1.2.1\n"
 "X-Poedit-Language: English\n"
+"X-Poedit-SearchPath-0: html\\user\n"
 "X-Poedit-SourceCharset: utf-8\n"
 "X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
 "X-BOINC-UTF8-Marker: 日本語\n"
 "X-Poedit-Country: UNITED STATES\n"
-"X-Poedit-SearchPath-0: html\\user\n"
 
 msgid "Search for words in forum messages"
 msgstr "フォーラム掲示板内のメッセージを検索します"
@@ -28,12 +28,12 @@ msgstr "フォーラム内を検索"
 msgid "Advanced search"
 msgstr "高度な検索"
 
-#########################################
+# ########################################
 # Private messages
 msgid "Private messages"
 msgstr "非公開メッセージ"
 
-#########################################
+# ########################################
 # Links from the main page
 msgid "Questions and Answers"
 msgstr "質問と答(Q&A)"
@@ -46,16 +46,24 @@ msgstr "掲示板"
 msgid "%1 message board"
 msgstr "%1 掲示板"
 
-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 "%1 の中に新しいスレッドを作るには、一定の量の功績(credit)を獲得済みでなければなりません。これは、悪用を防ぎこの掲示板システムの守るためです。"
+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 ""
+"%1 の中に新しいスレッドを作るには、一定の量の功績(credit)を獲得済みでなければなりません。これは、悪用を防ぎこの掲示板システムの守るためです。"
 
-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 "現在、スレッドを作成することはできません。しばらく待ってからもう一度試して下さい。この時間間隔をとる仕組みは、この掲示板システムを悪用から守るために必要になっています。"
+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 ""
+"現在、スレッドを作成することはできません。しばらく待ってからもう一度試して下さい。この時間間隔をとる仕組みは、この掲示板システムを悪用から守るために必要"
+"になっています。"
 
 msgid "Thread"
 msgstr "スレッド"
 
-#########################################
+# ########################################
 # Forum
 msgid "Posts"
 msgstr "投稿"
@@ -102,7 +110,9 @@ msgstr "メッセージ"
 msgid "Send message"
 msgstr "メッセージ送信"
 
-msgid "You are not allowed to send privates messages so often. Please wait some time before sending more messages."
+msgid ""
+"You are not allowed to send privates messages so often. Please wait some "
+"time before sending more messages."
 msgstr "しばらく非公開メッセージを送信することができません。さらにメッセージを送信したい場合は時間をおいて下さい。"
 
 msgid "unread"
@@ -166,7 +176,6 @@ msgid "Initiate request"
 msgstr "要求を開始する"
 
 # I guess, it should not happen, so it is an error message for the implementors.
-#, fuzzy
 msgid "Deferred"
 msgstr "延期状態"
 
@@ -200,8 +209,12 @@ msgstr "スレッド"
 msgid "Join this team"
 msgstr "このチームに参加する"
 
-msgid "Note: if 'OK to email' is set in your project preferences, joining a team gives its founder access to your email address."
-msgstr "注意: あなたがプロジェクト・プレファレンスの中で 「OK to email」 を選択している状態でチームへ参加すると、そのチームの創設者はあなたの メイルアドレスを知ることができるようになります。"
+msgid ""
+"Note: if 'OK to email' is set in your project preferences, joining a team "
+"gives its founder access to your email address."
+msgstr ""
+"注意: あなたがプロジェクト・プレファレンスの中で 「OK to email」 を選択している状態でチームへ参加すると、そのチームの創設者はあなたの "
+"メイルアドレスを知ることができるようになります。"
 
 msgid "Not accepting new members"
 msgstr "新しいメンバーを受け入れていません"
@@ -263,8 +276,12 @@ msgstr "この操作にはチーム管理者の権限が必要です"
 msgid "Rank"
 msgstr "順位"
 
-msgid "%1Privacy note%2: if you create a team, your project preferences (resource share, graphics preferences) will be visible to the public."
-msgstr "%1プライバシに関連する注意%2: チームを作成すると、あなたのプロジェクト・プレファレンス(資源割り当て、グラフィクスについてのプレファレンス)が、公開されます。"
+msgid ""
+"%1Privacy note%2: if you create a team, your project preferences (resource "
+"share, graphics preferences) will be visible to the public."
+msgstr ""
+"%1プライバシに関連する注意%2: "
+"チームを作成すると、あなたのプロジェクト・プレファレンス(資源割り当て、グラフィクスについてのプレファレンス)が、公開されます。"
 
 msgid "Team name, text version"
 msgstr "チーム名称、テキスト版"
@@ -476,7 +493,7 @@ msgstr "要求は保留中"
 msgid "Add as friend"
 msgstr "友人として追加"
 
-##########################################
+# #########################################
 # Language: English (International)
 # FileID  : $Id: ja.po 14742 2008-02-14 06:38:32Z JensSeidler $
 # Author  : Janus Kristensen
@@ -499,18 +516,25 @@ msgstr "表示したい国の名前があれば、選択してください。"
 msgid "Postal or ZIP Code"
 msgstr "郵便番号/ZIP コード"
 
-#########################################
+# ########################################
 # General stuff (create_account_form.php and others)
 msgid "Optional"
 msgstr "記入は任意"
 
-#########################################
+# ########################################
 # Apps page (apps.php)
 msgid "Applications"
 msgstr "アプリケーション"
 
-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 "%1 プロジェクトには、現在下記のアプリケーションがあります。 %1 プロジェクトに参加すると、これらのアプリケーションのうち、1つまたは複数のアプリケーションの仕事があなたのコンピュータに割り当てられます。これらのアプリケーションの最新版がダウンロードされます。 これらは自動的に行われるので、ダウンロードについてあなたは何もする必要はありません。 "
+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 ""
+"%1 プロジェクトには、現在下記のアプリケーションがあります。 %1 プロジェクトに参加すると、これらのアプリケーションのうち、1つまたは複数のアプリケ"
+"ーションの仕事があなたのコンピュータに割り当てられます。これらのアプリケーションの最新版がダウンロードされます。 "
+"これらは自動的に行われるので、ダウンロードについてあなたは何もする必要はありません。 "
 
 msgid "Platform"
 msgstr "プラットフォーム"
@@ -527,7 +551,7 @@ msgstr "アカウントを作るには、招待コードを入力してくださ
 msgid "The invitation code you gave is not valid."
 msgstr "入力した招待コードの値は正しくありません。"
 
-#########################################
+# ########################################
 # Create account form (create_account_form.php)
 msgid "Create an account"
 msgstr "新しいアカウントを作る"
@@ -538,11 +562,20 @@ msgstr "アカウントの作成機能は停止しています。"
 msgid "Account creation is currently disabled. Please try again later."
 msgstr "アカウントの作成を現在停止しています。 のちほどもう一度お試しください。"
 
-msgid "NOTE: If you use BOINC version 5.2+ with the BOINC Manager, don't use this form. Just run BOINC, select Attach Project, and enter an email address and password."
-msgstr "ご注意: BOINC マネージャの 5.2版以降を使う方は、この入力画面を使わないで下さい。代わりに、BOINC を起動して、[ツール]→[プロジェクトに参加] を選び、メイルアドレスとパスワードを入力するだけで結構です。"
+msgid ""
+"NOTE: If you use BOINC version 5.2+ with the BOINC Manager, don't use this "
+"form. Just run BOINC, select Attach Project, and enter an email address and "
+"password."
+msgstr ""
+"ご注意: BOINC マネージャの 5.2版以降を使う方は、この入力画面を使わないで下さい。代わりに、BOINC "
+"を起動して、[ツール]→[プロジェクトに参加] を選び、メイルアドレスとパスワードを入力するだけで結構です。"
 
-msgid "This account will belong to the team %1 and will have the project preferences of its founder."
-msgstr "作成するアカウントは、チーム %1 に加わります。さらに、そのアカウントの持つプロジェクト・プレファレンス(好みの設定)は、そのチームの創設者のものと同じになります。"
+msgid ""
+"This account will belong to the team %1 and will have the project "
+"preferences of its founder."
+msgstr ""
+"作成するアカウントは、チーム %1 "
+"に加わります。さらに、そのアカウントの持つプロジェクト・プレファレンス(好みの設定)は、そのチームの創設者のものと同じになります。"
 
 msgid "Invitation Code"
 msgstr "招待コード"
@@ -550,6 +583,9 @@ msgstr "招待コード"
 msgid "A valid invitation code is required to create an account."
 msgstr "アカウントを作るには、正しい招待コードが必要です。"
 
+msgid "Email Address"
+msgstr "メイルアドレス"
+
 msgid "Must be a valid address of the form 'name at domain'."
 msgstr "有効なメイルアドレスを、「 name at domain 」の形で記入してください。"
 
@@ -574,7 +610,9 @@ msgstr "写真"
 msgid "%1 Your profile picture is shown to the left."
 msgstr "%1 プロファイルに載せるあなたの写真は左のとおりです。"
 
-msgid "To replace it, click the \"Browse\" button and select a JPEG or PNG file (%1 or less)."
+msgid ""
+"To replace it, click the \"Browse\" button and select a JPEG or PNG file (%1 "
+"or less)."
 msgstr ""
 "置き換えたいなら、「参照」または「ファイルを選択」などと書かれた次のボタンををクリックして、JPEG または PNG ファイル(サイズは "
 "%1以下)を指定して下さい。"
@@ -582,8 +620,12 @@ msgstr ""
 msgid "To remove it from your profile, check this box:"
 msgstr "あなたのプロファイルから写真を削除するには、右のボックスにチェックを入れて下さい :"
 
-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 "プロファイルにあなたの写真を載せたいなら、「参照」または「ファイルを選択」などと書かれた右のボタンををクリックして、JPEG または PNG ファイルを指定して下さい。 サイズが %1 以下のものを選んでください。"
+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 ""
+"プロファイルにあなたの写真を載せたいなら、「参照」または「ファイルを選択」などと書かれた右のボタンををクリックして、JPEG または PNG "
+"ファイルを指定して下さい。 サイズが %1 以下のものを選んでください。"
 
 msgid "Language"
 msgstr "言語"
@@ -594,7 +636,9 @@ msgstr "プロファイルの内容が書かれている言語を選択します
 msgid "Submit profile"
 msgstr "プロファイルを提出する"
 
-msgid "To protect the project's webpages from spam, we kindly ask you to type in the two words shown in the image:<br>\n"
+msgid ""
+"To protect the project's webpages from spam, we kindly ask you to type in "
+"the two words shown in the image:<br>\n"
 msgstr "このプロジェクトのウェブページをスパムから守るため、お手数ですがこのページの画像に示した2つの語を手で打ち込んでいただけませんか:<br>\n"
 
 msgid "Create/edit profile"
@@ -603,17 +647,27 @@ msgstr "プロファイルの作成・編集"
 msgid "The format of your uploaded image is not supported."
 msgstr "あなたがアップロードした画像の形式はサポートしておりません。"
 
-msgid "Your %1profile%2 lets you share your opinions and background with the %3 community."
+msgid ""
+"Your %1profile%2 lets you share your opinions and background with the %3 "
+"community."
 msgstr "%1プロファイル%2 を載せることによって、意見や経歴をこの %3 コミュニティで共有できます。"
 
 msgid "Your ReCaptcha response was not correct.  Please try again."
 msgstr "あなたが ReCaptcha へ打ち込んだ内容は正しくありませんでした。もう一度試して下さい。 "
 
-msgid "Your first response was flagged as spam by the Akismet anti-spam system.  Please modify your text and try again."
-msgstr "あなたが書き込んだ初回の内容は Akismet anti-spam システムからスパムの疑いがあると判定されました。テキストを編集しなおしてから、もう一度試してみて下さい。"
+msgid ""
+"Your first response was flagged as spam by the Akismet anti-spam system.  "
+"Please modify your text and try again."
+msgstr ""
+"あなたが書き込んだ初回の内容は Akismet anti-spam "
+"システムからスパムの疑いがあると判定されました。テキストを編集しなおしてから、もう一度試してみて下さい。"
 
-msgid "Your second response was flagged as spam by the Akismet anti-spam system.  Please modify your text and try again."
-msgstr "あなたが書き込んだ2度目の内容も Akismet anti-spam システムからスパムの疑いがあると判定されました。テキストを編集しなおしてから、もう一度試してみて下さい。"
+msgid ""
+"Your second response was flagged as spam by the Akismet anti-spam system.  "
+"Please modify your text and try again."
+msgstr ""
+"あなたが書き込んだ2度目の内容も Akismet anti-spam "
+"システムからスパムの疑いがあると判定されました。テキストを編集しなおしてから、もう一度試してみて下さい。"
 
 msgid "Your profile submission was empty."
 msgstr "あなたが提出したプロファイルの内容は空でした。"
@@ -627,7 +681,8 @@ msgstr "プロファイルの作成に失敗しました: データベース
 msgid "Profile saved"
 msgstr "プロファイルを保存しました"
 
-msgid "Congratulations! Your profile was successfully entered into our database."
+msgid ""
+"Congratulations! Your profile was successfully entered into our database."
 msgstr "うまくいきました! あなたのプロファイルはこのプロジェクトのデータベースへ格納されました。"
 
 msgid "%1View your profile%2"
@@ -636,8 +691,12 @@ msgstr "%1あなたのプロファイルを見る%2"
 msgid "Create a profile"
 msgstr "プロファイルを作成する"
 
-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 "スパム防止のため、プロファイルを作成または更新するには、功績の平均増加量(average credit)が %1 以上である必要があります。 不便ですがご容赦ください。"
+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 ""
+"スパム防止のため、プロファイルを作成または更新するには、功績の平均増加量(average credit)が %1 以上である必要があります。 "
+"不便ですがご容赦ください。"
 
 msgid "Download BOINC add-on software"
 msgstr " BOINC のアドオン・ソフトウェアをダウンロードする"
@@ -645,15 +704,18 @@ msgstr " BOINC のアドオン・ソフトウェアをダウンロードする"
 msgid "You can download applications in several categories."
 msgstr "いくつかの分類から選んでアプリケーションをダウンロードできます。"
 
-msgid "These applications are not endorsed by %1 and you use them at your own risk."
+msgid ""
+"These applications are not endorsed by %1 and you use them at your own risk."
 msgstr "これらのアプリケーションは、%1 が保証するものではないので、 使うときにはあなたのリスクにおいて使って下さい"
 
 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"
+"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 ""
-"我々はこれらのアプリケーションのインストール方法を提供しません。 しかし、それぞれのアプリケーションの作者がイントールとアンインストールの方法について、ある程度ヘルプを提供しているかもしれません。\n"
+"我々はこれらのアプリケーションのインストール方法を提供しません。 "
+"しかし、それぞれのアプリケーションの作者がイントールとアンインストールの方法について、ある程度ヘルプを提供しているかもしれません。\n"
 "それが充分でなければ、作者に連絡するべきです。"
 
 msgid "Instructions for installing and running BOINC are %1here%2."
@@ -672,12 +734,14 @@ msgstr "題名"
 msgid "Add my signature to this post"
 msgstr "自分の署名をこの投稿に付ける"
 
-#########################################
+# ########################################
 # Forum sample index page
 msgid "%1 Message boards"
 msgstr "%1 掲示板"
 
-msgid "If you have a question or problem, please use the %1Questions & Answers%2 section of the message boards."
+msgid ""
+"If you have a question or problem, please use the %1Questions & Answers%2 "
+"section of the message boards."
 msgstr "疑問や問題をかかえているなら、掲示板の %1質問と答(Q&A)%2 のセクションをご覧ください。"
 
 msgid "Topic"
@@ -689,7 +753,7 @@ msgstr "新しくスレッドを作る"
 msgid "Post to thread"
 msgstr "スレッドに投稿する"
 
-#########################################
+# ########################################
 # Forum search features
 msgid "Forum search"
 msgstr "掲示板内の検索"
@@ -703,7 +767,7 @@ msgstr "id が %1 のスレッドはありません。リンクを確認して
 msgid "This forum is not visible to you."
 msgstr "あなたはこのフォーラムを見ることはできません。"
 
-#########################################
+# ########################################
 # Forum thread
 msgid "This thread has been hidden for administrative purposes"
 msgstr "管理上の都合でこのスレッドは隠されています。"
@@ -711,7 +775,8 @@ msgstr "管理上の都合でこのスレッドは隠されています。"
 msgid "My question was answered"
 msgstr "私の質問に回答がなされました"
 
-msgid "If your question has been adequately answered please click here to close it!"
+msgid ""
+"If your question has been adequately answered please click here to close it!"
 msgstr "あなたの質問に適切な回答があったなら、質問を終了させるためここをクリックしてください。"
 
 msgid "I've also got this question"
@@ -804,7 +869,9 @@ msgstr "そのようなユーザは見つかりません"
 msgid "Add friend"
 msgstr "友人の追加"
 
-msgid "You have asked to add %1 as a friend. We will notify %2 and will ask him/her to confirm that you are friends."
+msgid ""
+"You have asked to add %1 as a friend. We will notify %2 and will ask him/her "
+"to confirm that you are friends."
 msgstr "%1 さんをあなたの友人に加えようとしています。 これから %2 さんに、あなたが友人かどうか確認を求めます。"
 
 msgid "Add an optional message here:"
@@ -897,12 +964,12 @@ msgstr "%1 へようこそ!"
 msgid "View and edit your account preferences using the links below."
 msgstr "アカウントのプレファレンス(好みの設定)を確認・変更するには以下のリンクを使って下さい。"
 
-#########################################
+# ########################################
 # "Your account" page (home.php)
 msgid "Your account"
 msgstr "あなたのアカウント"
 
-#########################################
+# ########################################
 # Rules and Policies page (info.php)
 msgid "Read our rules and policies"
 msgstr "このプロジェクトの「規則と方針」を読んで下さい。"
@@ -910,62 +977,145 @@ msgstr "このプロジェクトの「規則と方針」を読んで下さい。
 msgid "Run %1 only on authorized computers"
 msgstr "%1 を実行するコンピュータは、あなたが権限を持っているものに限定してください。 "
 
-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 "%1 を実行するコンピュータは、あなたの所有するものであるか、あるいは、あなたが所有者から許可を得たコンピュータに限定してください。 会社や学校の一部には、所有するコンピュータを %1 のようなプロジェクトのために使うことを禁じる方針のところがあります。 "
+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 ""
+"%1 を実行するコンピュータは、あなたの所有するものであるか、あるいは、あなたが所有者から許可を得たコンピュータに限定してください。 "
+"会社や学校の一部には、所有するコンピュータを %1 のようなプロジェクトのために使うことを禁じる方針のところがあります。 "
 
 msgid "How %1 will use your computer"
 msgstr "%1 はどのようにあなたのコンピュータを使うか"
 
-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 "あなたのコンピュータで %1 を動かすと、そのコンピュータの CPU パワー、ディスク領域、そしてネットワーク帯域幅の一部を使います。 あなたは、これらの資源をどれだけ、そして何時、 %1 に振り向けるかを制御できます。 "
+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 ""
+"あなたのコンピュータで %1 を動かすと、そのコンピュータの CPU パワー、ディスク領域、そしてネットワーク帯域幅の一部を使います。 "
+"あなたは、これらの資源をどれだけ、そして何時、 %1 に振り向けるかを制御できます。 "
 
-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 "あなたのコンピュータがした仕事は、%1 プロジェクトの目標に貢献します。 その目標はプロジェクトのウェブサイトに書かれています。 そのアプリケーションプログラムは、時間がたつにつれ変更されるかもしれません。 "
+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 ""
+"あなたのコンピュータがした仕事は、%1 プロジェクトの目標に貢献します。 その目標はプロジェクトのウェブサイトに書かれています。 "
+"そのアプリケーションプログラムは、時間がたつにつれ変更されるかもしれません。 "
 
 msgid "Privacy policy"
 msgstr "プライバシーに関する方針"
 
-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 "%1 プロジェクトのあなたのアカウントは、あなたが選んだ名前で識別されます。 この名前は %1 プロジェクトのウェブサイト上で表示されるかもしれません。 そこでは、%1 プロジェクトであなたのコンピュータがやり終えた仕事の要約も表示されるかもしれません。 無名の人のままでいたかったら、あなたが誰なのか分かるような名前を選んではいけません。 "
+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 ""
+"%1 プロジェクトのあなたのアカウントは、あなたが選んだ名前で識別されます。 この名前は %1 プロジェクトのウェブサイト上で表示されるかもしれません。 "
+"そこでは、%1 プロジェクトであなたのコンピュータがやり終えた仕事の要約も表示されるかもしれません。 "
+"無名の人のままでいたかったら、あなたが誰なのか分かるような名前を選んではいけません。 "
 
-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 "%1 に参加すると、あなたのコンピュータに関する情報 (プロセサのタイプや、メモリ量など)は、 %1 プロジェクトにより記録され、どんなタイプの仕事をそのコンピュータに割り当てるかを判断するために使われます。 この情報も、 %1 のウェブサイト上で表示されます。 あなたのコンピュータの位置を明かしてしまうようなもの(たとえば、ドメイン名やネットワークアドレス) は表示されることはありません。"
+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 ""
+"%1 に参加すると、あなたのコンピュータに関する情報 (プロセサのタイプや、メモリ量など)は、 %1 "
+"プロジェクトにより記録され、どんなタイプの仕事をそのコンピュータに割り当てるかを判断するために使われます。 この情報も、 %1 "
+"のウェブサイト上で表示されます。 あなたのコンピュータの位置を明かしてしまうようなもの(たとえば、ドメイン名やネットワークアドレス) "
+"は表示されることはありません。"
 
-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 "%1 に参加するには、メイルを受信できるアドレスを提示しなければなりません。 このアドレスは、 %1 プロジェクトのウェブサイトで表示されることはなく、複数の組織間で共有されることもありません。 %1 プロジェクトは定期的なニュースレターをこのメイルアドレス向けに送ることがありますが、送らないように変更することはいつでもできます。"
+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 ""
+"%1 に参加するには、メイルを受信できるアドレスを提示しなければなりません。 このアドレスは、 %1 "
+"プロジェクトのウェブサイトで表示されることはなく、複数の組織間で共有されることもありません。 %1 "
+"プロジェクトは定期的なニュースレターをこのメイルアドレス向けに送ることがありますが、送らないように変更することはいつでもできます。"
 
-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 "%1 ウェブサイトの中で送信された非公開メッセージは、送信者と受信者だけが見ることができます。 %1 プロジェクトは非公開メッセージの内容をチェックしたり取り締まったりすることはありません。 %1 プロジェクトの他の参加者から、望まぬ非公開メッセージを受信したら、あなたの %2メッセージ・フィルター%3 にその参加者を登録できます。こうすると、その参加者からのメッセージは、公開メッセージであろうと非公開メッセージであろうと、あなたの目に触れることはなくなります。"
+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 ""
+"%1 ウェブサイトの中で送信された非公開メッセージは、送信者と受信者だけが見ることができます。 %1 "
+"プロジェクトは非公開メッセージの内容をチェックしたり取り締まったりすることはありません。 %1 "
+"プロジェクトの他の参加者から、望まぬ非公開メッセージを受信したら、あなたの %2メッセージ・フィルター%3 にその参加者を登録できます。こうすると、その"
+"参加者からのメッセージは、公開メッセージであろうと非公開メッセージであろうと、あなたの目に触れることはなくなります。"
 
-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 "このウェブサイトのフォーラムをお使いになるのでしたら、%2投稿のガイドライン%3 に従っていただく必要があります。 この %1 フォーラムに投稿されたメッセージはメンバー以外の方も含めて、誰にも読めます。 いったんメッセージを投稿すると、どのような人にもあなたの投稿内容を見る許可、そしてそれをコピーする許可を永久に与えることになります。"
+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 ""
+"このウェブサイトのフォーラムをお使いになるのでしたら、%2投稿のガイドライン%3 に従っていただく必要があります。 この %1 "
+"フォーラムに投稿されたメッセージはメンバー以外の方も含めて、誰にも読めます。 "
+"いったんメッセージを投稿すると、どのような人にもあなたの投稿内容を見る許可、そしてそれをコピーする許可を永久に与えることになります。"
 
 msgid "Is it safe to run %1?"
 msgstr "%1 を実行することは安全か?"
 
-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 "インターネットからプログラムをダウンロードするときには、いつでも危険がついて回ります。つまり、そのプログラムが危険な異常を起こしたり、ダウンロードサーバが侵入を受けてダウンロードされるプログラムが改変されていたということがあり得ます。%1 プロジェクトでは、このようなリスクを極力減らす努力をしています。 私たちのアプリケーションは注意深くテストされています。サーバはファイアウォールの背後に置かれていて、安全性の高い設定がなされています。プログラム・ダウンロードの完全性を保証するため、インターネットから隔離した安全なコンピュータを使い、すべての実行可能ファイルにデジタル署名をつけています。"
+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 ""
+"インターネットからプログラムをダウンロードするときには、いつでも危険がついて回ります。つまり、そのプログラムが危険な異常を起こしたり、ダウンロードサーバ"
+"が侵入を受けてダウンロードされるプログラムが改変されていたということがあり得ます。%1 プロジェクトでは、このようなリスクを極力減らす努力をしています。 "
+"私たちのアプリケーションは注意深くテストされています。サーバはファイアウォールの背後に置かれていて、安全性の高い設定がなされています。プログラム・ダウ"
+"ンロードの完全性を保証するため、インターネットから隔離した安全なコンピュータを使い、すべての実行可能ファイルにデジタル署名をつけています。"
 
-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 "%1 プロジェクトで走るアプリケーションは、一部のコンピュータを過熱状態にしてしまうかもしれません。 もしそうなったら、%1 を走らせるのを止めるか、CPU 使用量を制限する %2ユーティリティ・プログラム%3 を使ってください。 "
+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 ""
+"%1 プロジェクトで走るアプリケーションは、一部のコンピュータを過熱状態にしてしまうかもしれません。 もしそうなったら、%1 "
+"を走らせるのを止めるか、CPU 使用量を制限する %2ユーティリティ・プログラム%3 を使ってください。 "
 
-msgid "%1 was developed by %2. BOINC was developed at the University of California."
+msgid ""
+"%1 was developed by %2. BOINC was developed at the University of California."
 msgstr "%1 は %2 で開発されました。 BOINC は、University of California で開発されました。 "
 
 msgid "Liability"
 msgstr "責務"
 
-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 "%1 に参加したことの結果として生じた、あなたのコンピュータの被害、データの消滅、あるいはどんな事件や状況についても、 %1 と %2 は、なんら責任を負いません。"
+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 ""
+"%1 に参加したことの結果として生じた、あなたのコンピュータの被害、データの消滅、あるいはどんな事件や状況についても、 %1 と %2 "
+"は、なんら責任を負いません。"
 
 msgid "Other BOINC projects"
 msgstr "その他の BOINC プロジェクト"
 
-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 "他のプロジェクトも、 %1 と同様、BOINC という同じプラットフォームを使います。 これらのプロジェクトの1つ以上に参加したいと思うかもしれません。 もし他のプロジェクトにも参加すれば、たとえ 渡せる仕事が %1になくなったときでも、あなたのコンピュータは 意味ある仕事を実行することができます。 "
+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 ""
+"他のプロジェクトも、 %1 と同様、BOINC という同じプラットフォームを使います。 これらのプロジェクトの1つ以上に参加したいと思うかもしれません。 "
+"もし他のプロジェクトにも参加すれば、たとえ 渡せる仕事が %1になくなったときでも、あなたのコンピュータは 意味ある仕事を実行することができます。 "
 
-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 "これらの他のプロジェクトは、%1 と共同で運営されているわけではありません。 ですから、それらプロジェクトのセキュリティ管理の実施ぐあいや、研究内容の性質については、なんら私たちが保証できるものではありません。あなた自身のリスクで参加してください。"
+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 ""
+"これらの他のプロジェクトは、%1 と共同で運営されているわけではありません。 ですから、それらプロジェクトのセキュリティ管理の実施ぐあいや、研究内容の性"
+"質については、なんら私たちが保証できるものではありません。あなた自身のリスクで参加してください。"
 
 # The name of this language in an international language (English)
 msgid "LANG_NAME_INTERNATIONAL"
@@ -1014,13 +1164,17 @@ msgstr "%1 さん(ID: %2) は、あなたからの非公開メッセージを受
 msgid "Really block %1?"
 msgstr "本当に %1 をブロックしますか?"
 
-msgid "Are you really sure you want to block user %1 from sending you private messages?"
+msgid ""
+"Are you really sure you want to block user %1 from sending you private "
+"messages?"
 msgstr "本当に %1 から送信される非公開メッセージをブロックしますか?"
 
 msgid "Please note that you can only block a limited amount of users."
 msgstr "ブロックできる相手の数に限りがあります。ご注意下さい。"
 
-msgid "Once the user has been blocked you can unblock it using forum preferences page."
+msgid ""
+"Once the user has been blocked you can unblock it using forum preferences "
+"page."
 msgstr "この利用者をブロックしても、掲示板のプレファレンス(好みの設定)で解除することができます。"
 
 msgid "Add user to filter"
@@ -1041,13 +1195,21 @@ msgstr "ブロックを解除するには、%1掲示板のプレファレンス
 msgid "Profiles"
 msgstr "プロファイル(自己紹介)"
 
-msgid "%1Profiles%2 let individuals share backgrounds and opinions with the %3 community."
-msgstr "%1プロファイル(自己紹介)%2 は、参加者個人それぞれが、このプロジェクトの %3コミュニティとの間で、バックグラウンドや意見を共有することを可能にします。"
+msgid ""
+"%1Profiles%2 let individuals share backgrounds and opinions with the %3 "
+"community."
+msgstr ""
+"%1プロファイル(自己紹介)%2 は、参加者個人それぞれが、このプロジェクトの "
+"%3コミュニティとの間で、バックグラウンドや意見を共有することを可能にします。"
 
-msgid "Explore the diversity of your fellow volunteers, and contribute your own views for others to enjoy."
+msgid ""
+"Explore the diversity of your fellow volunteers, and contribute your own "
+"views for others to enjoy."
 msgstr "ボランティアで参加している仲間の多彩さをみて回りましょう。そして、他の参加者が楽しめるようにあなたの見方を提供しましょう。"
 
-msgid "If you haven't already, you can %1create your own user profile%2 for others to see!"
+msgid ""
+"If you haven't already, you can %1create your own user profile%2 for others "
+"to see!"
 msgstr "まだご自身のプロファイルを作っていないのでしたら、他の参加者が見ることができるように、%1あなたの参加者プロファイルを作りましょう%2。"
 
 msgid "User of the Day"
@@ -1062,7 +1224,9 @@ msgstr "%1参加者の写真ギャラリー%2 を見る"
 msgid "Browse profiles %1by country%2."
 msgstr "%1国ごと%2にプロファイルを見る"
 
-msgid "Browse profiles %1at random%2, %3at random with pictures%2, or %4at random without pictures%2."
+msgid ""
+"Browse profiles %1at random%2, %3at random with pictures%2, or %4at random "
+"without pictures%2."
 msgstr "プロファイルを見る:%1無作為に選択%2、%3無作為に選択(画像付き)%4、%5無作為に選択(画像なし)%6。"
 
 msgid "Alphabetical profile listings:"
@@ -1123,7 +1287,7 @@ msgstr "統計データとリーダーボード"
 msgid "Statistics for %1"
 msgstr "%1 の統計データ"
 
-#########################################
+# ########################################
 # Various top table pages (top users, computers, teams)
 msgid "Top participants"
 msgstr "参加者のランキング"
@@ -1134,19 +1298,28 @@ msgstr "コンピュータのランキング"
 msgid "Top teams"
 msgstr "チームのランキング"
 
-msgid "More detailed statistics for %1 and other BOINC-based projects are available at several web sites:"
+msgid ""
+"More detailed statistics for %1 and other BOINC-based projects are available "
+"at several web sites:"
 msgstr "%1 と他の BOINC プロジェクトについてのより詳しい統計情報を、下記のいくつかのウェブサイトで見ることができます。"
 
-msgid "You can also get your current statistics in the form of a \"signature image\":"
+msgid ""
+"You can also get your current statistics in the form of a \"signature image"
+"\":"
 msgstr "ご自分の統計データを、「署名の画像」の形態で使うことができます。下記をご覧ください。"
 
-msgid "Additionally you can get your individual statistics summed across all BOINC projects from several sites; see your %1home page%2."
-msgstr "さらに、すべての BOINC プロジェクトに渡って集計されたご自分の統計データを得ることも、いくつかのサイトから可能です。 ご自分の%1ホームページ%2をご覧ください。"
+msgid ""
+"Additionally you can get your individual statistics summed across all BOINC "
+"projects from several sites; see your %1home page%2."
+msgstr ""
+"さらに、すべての BOINC プロジェクトに渡って集計されたご自分の統計データを得ることも、いくつかのサイトから可能です。 "
+"ご自分の%1ホームページ%2をご覧ください。"
 
 msgid "%1 participants may form %2teams%3"
 msgstr "%1 の参加者は %2チーム%3 を作ることができます"
 
-msgid "You may belong to only one team. You can join or quit a team at any time."
+msgid ""
+"You may belong to only one team. You can join or quit a team at any time."
 msgstr "所属できるチームは1つまでです。チームへの参加と離脱はいつでも可能です。"
 
 msgid "Each team has a %1founder%2 who may:"
@@ -1179,7 +1352,8 @@ msgstr "%1 チーム"
 msgid "Create a new team"
 msgstr "新しくチームを作る"
 
-msgid "If you cannot find a team that is right for you, you can %1create a team%2."
+msgid ""
+"If you cannot find a team that is right for you, you can %1create a team%2."
 msgstr "あなたに適切だと思うチームが見つからなかったら、新しく %1チームを作る%2 こともできます。"
 
 msgid "You must choose a non-blank team name"
@@ -1194,7 +1368,8 @@ msgstr "チームを作ることができませんでした。しばらくたっ
 msgid "Create a team"
 msgstr "チームを作る"
 
-msgid "You belong to %1. You must %2quit this team%3 before creating a new one."
+msgid ""
+"You belong to %1. You must %2quit this team%3 before creating a new one."
 msgstr "あなたは %1 に属しています。 新しいチームを作るには、%2 このチームから離脱する %3 必要があります。"
 
 msgid "Top hosts"
@@ -1212,22 +1387,38 @@ msgstr "この参加者にはプロファイルは登録されていません"
 msgid "Account data"
 msgstr "アカウントのデータ"
 
-#########################################
+# ########################################
 # "Weak account key" page (weak_auth.php)
-msgid "Your 'weak account key' lets you attach computers to your account on this project, without giving the ability to log in to your account or to change it in any way."
-msgstr "\"弱い\"アカウント・キーはコンピュータをプロジェクトに参加させることができますが、アカウントページへのログオンやアカウントに関する設定変更はできません。"
+msgid ""
+"Your 'weak account key' lets you attach computers to your account on this "
+"project, without giving the ability to log in to your account or to change "
+"it in any way."
+msgstr ""
+"\"弱い\"アカウント・キーはコンピュータをプロジェクトに参加させることができますが、アカウントページへのログオンやアカウントに関する設定変更はできません。"
 
-msgid "This mechanism works only with projects that have upgraded their server software 7 Dec 2007 or later."
+msgid ""
+"This mechanism works only with projects that have upgraded their server "
+"software 7 Dec 2007 or later."
 msgstr "この仕組みは、2007年12月7日以降にサーバソフトウェアをアップグレードしたプロジェクトでのみ作動します。"
 
 msgid "Your weak account key for this project is:"
 msgstr "あなたの、このプロジェクトでの\"弱い\"アカウント・キーは:"
 
-msgid "To use your weak account key on a given host, find or create the 'account file' for this project. This file has a name of the form <b>account_PROJECT_URL.xml</b>. The account file for %1 is <b>%2</b>."
-msgstr "この\"弱い\"アカウント・キーを使うには、このプロジェクトのアカウントファイルを探すか、作るかしてください。ファイルの名前の形式は<b>account_PROJECT_URL.xml</b>です。 %1 用のアカウントファイルは <b>%2</b> です。"
+msgid ""
+"To use your weak account key on a given host, find or create the 'account "
+"file' for this project. This file has a name of the form "
+"<b>account_PROJECT_URL.xml</b>. The account file for %1 is <b>%2</b>."
+msgstr ""
+"この\"弱い\"アカウント・キーを使うには、このプロジェクトのアカウントファイルを探すか、作るかしてください。ファイルの名前の形式は<b>account_P"
+"ROJECT_URL.xml</b>です。 %1 用のアカウントファイルは <b>%2</b> です。"
 
 msgid "Create this file if needed. Set its contents to:"
 msgstr "必要であれば、このファイルを作成して下さい。中身は次の様にして下さい :"
 
-msgid "Your weak account key is a function of your password. If you change your password, your weak account key changes, and your previous weak account key becomes invalid."
-msgstr "\"弱い\"アカウント・キーの値はパスワードによって決まります。パスワードを変更すると、\"弱い\"アカウント・キーは変り、以前の\"弱い\"アカウント・キーは無効になります。"
+msgid ""
+"Your weak account key is a function of your password. If you change your "
+"password, your weak account key changes, and your previous weak account key "
+"becomes invalid."
+msgstr ""
+"\"弱い\"アカウント・キーの値はパスワードによって決まります。パスワードを変更すると、\"弱い\"アカウント・キーは変り、以前の\"弱い\"アカウント・キーは無効"
+"になります。"
diff --git a/locale/ja/BOINC-Web.po b/locale/ja/BOINC-Web.po
index 7b0b9fd..17024fc 100644
--- a/locale/ja/BOINC-Web.po
+++ b/locale/ja/BOINC-Web.po
@@ -2,8 +2,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
-"PO-Revision-Date: 2009-05-17 00:48+0900\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
+"PO-Revision-Date: 2009-11-19 00:29+0900\n"
 "Last-Translator: je2bwm <je2bwm at jarl.com>\n"
 "Language-Team: Japanese <nobody at example.com>\n"
 "MIME-Version: 1.0\n"
@@ -11,354 +11,657 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Translate Toolkit 1.2.1\n"
 "X-Poedit-Language: English\n"
+"X-Poedit-SearchPath-0: doc\n"
 "X-Poedit-SourceCharset: utf-8\n"
 "X-Poedit-Basepath: D:\\_Trans\\BTS\\20090509\n"
 "X-BOINC-UTF8-Marker: 日本語\n"
 "X-Poedit-Country: JAPAN\n"
 "X-Poedit-KeywordsList: tra\n"
-"X-Poedit-SearchPath-0: doc\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
 msgstr "[該当するものすべてにチェックを入れてください]"
 
+#: poll.inc:47
 msgid "Other:"
 msgstr "その他:"
 
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
 msgstr "はい。 今まで BOINC を自分のコンピュータで動かしていた期間は、 "
 
+#: poll_data.inc:22
 msgid "less than a week"
 msgstr "1週間未満"
 
+#: poll_data.inc:23
 msgid "less than a month"
 msgstr "1ヶ月未満"
 
+#: poll_data.inc:24
 msgid "less than a year"
 msgstr "1年未満"
 
+#: poll_data.inc:25
 msgid "more than a year"
 msgstr "1年以上"
 
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
 msgstr "いいえ。 BOINC を動かしていたことがありましたが、停めました。 その理由は、"
 
+#: poll_data.inc:34
 msgid "I lost interest"
 msgstr "興味をなくしたので"
 
+#: poll_data.inc:35
 msgid "it was too complicated"
 msgstr "複雑過ぎるため"
 
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
 msgstr "一度停めたあと、再開するのを忘れていた"
 
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
 msgstr "BOINC は私のコンピュータでは問題を起こしたから"
 
+#: poll_data.inc:38
 msgid "it used too much electricity"
 msgstr "電気を使いすぎるので"
 
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr "BOINC 以外のコンピューティング・プロジェクトに切り替えたので"
 
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
 msgstr "いいえ。 BOINC を使おうと試したのですが、"
 
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
 msgstr "BOINC ソフトウェアが正しくインストールされませんでした"
 
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
 msgstr "この BOINC ソフトウェアをどう使うかわかりませんでした"
 
+#: poll_data.inc:50
 msgid "I had network communication problems"
 msgstr "ネットワーク通信に問題があってうまくいきませんでした"
 
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
 msgstr "プロジェクトに参加できませんでした"
 
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr "あるプロジェクトに参加しましたが、仕事をまったく取り出せません"
 
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
 msgstr "いいえ。 BOINC を試そうとしたことはありません。 というのも、"
 
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr "セキュリティに心配があったからです"
 
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr "どのプロジェクトについても興味がわかなかったからです"
 
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr "使っているコンピュータでは、私は BOINC を動作させる権限を持っていないので"
 
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr "私のコンピュータで使える BOINC の版がなかったからです"
 
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr "どのような種類のコンピュータで BOINC を走らせていますか。"
 
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr "あなたのコンピュータはどこにありますか。"
 
+#: poll_data.inc:87
 msgid "Home"
 msgstr "自宅(Home)"
 
+#: poll_data.inc:88
 msgid "Work"
 msgstr "仕事場(Work)"
 
+#: poll_data.inc:89
 msgid "School"
 msgstr "学校(School)"
 
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr "コンピュータは何台ですか。"
 
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr "平均して、あなたのコンピュータは1日に何時間電源が入っていますか。"
 
+#: poll_data.inc:119
 msgid "Age"
 msgstr "あなたの年齢"
 
+#: poll_data.inc:129
 msgid "Sex"
 msgstr "性別"
 
+#: poll_data.inc:131
 msgid "Male"
 msgstr "男性"
 
+#: poll_data.inc:132
 msgid "Female"
 msgstr "女性"
 
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr "コンピュータに関する専門知識レベル"
 
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr "初心者"
 
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr "中くらい"
 
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr "高度"
 
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr "BOINC のプロジェクトを、どこで知りましたか。"
 
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr "テレビ/ラジオ/新聞"
 
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr "友人、親戚、あるいは同僚から"
 
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr "チームの掲示板・ウェブサイトで"
 
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr "BOINC のウェブサイトで"
 
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr "その他のウェブサイトで"
 
-msgid "Which are the most important factors when you decide whether to participate in a BOINC project?"
+#: poll_data.inc:161
+msgid ""
+"Which are the most important factors when you decide whether to participate "
+"in a BOINC project?"
 msgstr "BOINC のプロジェクトに参加するかどうか判断するときに、以下のどの要因が一番重要ですか。"
 
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr "見栄えのするスクリーンセイバーのグラフィクス"
 
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr "やりおえた仕事に対して、公正にかつ迅速に功績(credit)が付与されること"
 
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr "他のプロジェクトよりもこのプロジェクトの方がより多く功績(credit)が得られること"
 
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr "役に立ち、かつ、親しみやすい掲示板があること"
 
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr "掲示板にそのプロジェクトのスタッフが参加してくれること"
 
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr "プロジェクトのウェブサイトに参考になる情報が多く載っていること"
 
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr "対象としている科学の内容が重要でかつ有益であること"
 
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr "非営利のプロジェクトであって、得られた科学的成果が公開されていること"
 
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr "自分のコンピュータが何か発見したら、個人として認めてもらえること"
 
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr "定期的な科学刊行物でこのプロジェクトによる公表がなされること"
 
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr "プロジェクトから、E-メイルによる定期的なニュースレターが送られてくること"
 
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr "BOINC プロジェクトには、いくつ参加していますか。"
 
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr "BOINC をスクリーンセイバーとして走らせていますか。"
 
+#: poll_data.inc:192
 msgid "Yes"
 msgstr "はい"
 
+#: poll_data.inc:193
 msgid "No"
 msgstr "いいえ"
 
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr "掲示板をどのように使っていますか:"
 
+#: poll_data.inc:200
 msgid "to read information"
 msgstr "読んでいるだけです"
 
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr "読むだけでなく書き込みもします"
 
+#: poll_data.inc:202
 msgid "None"
 msgstr "使っていません"
 
-msgid "Where do you get information to help resolve problems with BOINC and/or BOINC projects?"
+#: poll_data.inc:206
+msgid ""
+"Where do you get information to help resolve problems with BOINC and/or "
+"BOINC projects?"
 msgstr "BOINC あるいは BOINC プロジェクトで問題が生じたときにどこで解決のための情報を得ますか"
 
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr "そのプロジェクトの掲示板"
 
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr "BOINC の掲示板"
 
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr "BOINC のメイリング・リスト"
 
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr "非公式の BOINC Wiki"
 
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr "チームのウェブサイト"
 
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr "Google などの検索エンジン"
 
+#: download.php:40
 msgid "Download BOINC"
 msgstr "BOINC をダウンロードする"
 
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr "%s 版 %s 用 (%s MB)"
 
-msgid "BOINC is a program that lets you donate your idle computer time to science projects like SETI at home, Climateprediction.net, Rosetta at home, World Community Grid, and many others. <p> After installing BOINC on your computer, you can connect it to as many of these projects as you like."
-msgstr " BOINC はあなたのコンピュータの空き時間を、色々な科学プロジェクトに寄付するために使えるプログラムです。 <br>それらの科学プロジェクトとしては、SETI at home、Climateprediction.net、Rosetta at home、World Community Grid など、すでにたくさんのものがあります。 <p>あなたのコンピュータに BOINC  のインストールが済めば、上記のプロジェクトのいくつにでも好きなだけつなげることができます。 "
+#: download.php:89
+msgid ""
+"BOINC is a program that lets you donate your idle computer time to science "
+"projects like SETI at home, Climateprediction.net, Rosetta at home, World "
+"Community Grid, and many others. <p> After installing BOINC on your "
+"computer, you can connect it to as many of these projects as you like."
+msgstr ""
+" BOINC はあなたのコンピュータの空き時間を、色々な科学プロジェクトに寄付するために使えるプログラムです。 "
+"<br>それらの科学プロジェクトとしては、SETI at home、Climateprediction.net、Rosetta at home、World "
+"Community Grid など、すでにたくさんのものがあります。 <p>あなたのコンピュータに BOINC  "
+"のインストールが済めば、上記のプロジェクトのいくつにでも好きなだけつなげることができます。 "
 
+#: download.php:114
 #, php-format
-msgid "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit (GPU), you may be able to %suse it to compute faster%s"
-msgstr "注: あなたのコンピュータに NVIDIA 社の GPU(Graphics Processing Unit) がついているなら、%sそれを使ってより速く計算する%s ことができるかもしれません。"
+msgid ""
+"Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
+"(GPU), you may be able to %suse it to compute faster%s"
+msgstr ""
+"注: あなたのコンピュータに NVIDIA 社の GPU(Graphics Processing Unit) "
+"がついているなら、%sそれを使ってより速く計算する%s ことができるかもしれません。"
 
+#: download.php:120
 msgid "System requirements"
 msgstr "コンピュータの条件"
 
+#: download.php:121
 msgid "Release notes"
 msgstr "公開時の注意書き"
 
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr "ヘルプ"
 
+#: download.php:123
 msgid "All versions"
 msgstr "ダウンロード一覧"
 
+#: download.php:141
 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 "BOINC のオンライン・ヘルプでは、経験ある BOINC 参加者と1対1で話ができます。話の相手となってくれる方は、%s BOINC とボランティア・コンピューティングについて質問に答えることができますし、%s BOINC をインストールして使うところまで、あなたをガイドできます。さらに%s あなたが遭遇するかもしれない問題も解決できるでしょう。"
+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 ""
+"BOINC のオンライン・ヘルプでは、経験ある BOINC 参加者と1対1で話ができます。話の相手となってくれる方は、%s BOINC "
+"とボランティア・コンピューティングについて質問に答えることができますし、%s BOINC "
+"をインストールして使うところまで、あなたをガイドできます。さらに%s あなたが遭遇するかもしれない問題も解決できるでしょう。"
 
+#: 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 "BOINC オンライン・ヘルプは インターネット・ベースの電話システムの1つである %sSkype%s を使います。Skype は無料 (ソフトウェアも通話料も)です。まだ Skype をもっていなければ、どうぞ %s 今すぐダウンロードしてインストールして下さい%s。それが済んだら、このページに戻って下さい。"
+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 ""
+"BOINC オンライン・ヘルプは インターネット・ベースの電話システムの1つである %sSkype%s を使います。Skype は無料 "
+"(ソフトウェアも通話料も)です。まだ Skype をもっていなければ、どうぞ %s "
+"今すぐダウンロードしてインストールして下さい%s。それが済んだら、このページに戻って下さい。"
 
-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 "助けを得る一番良いやり方は、口頭で相談することです。そのためには、あなたのコンピュータに組み込まれたマイクとスピーカ、あるいは、外部接続のヘッドセットが要ります。別の方法としては、Skype のテキストベースのチャットシステムを使って、ヘルプを担当してくれるボランティアとやりとりをすることもできます。 "
+#: 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 ""
+"助けを得る一番良いやり方は、口頭で相談することです。そのためには、あなたのコンピュータに組み込まれたマイクとスピーカ、あるいは、外部接続のヘッドセットが"
+"要ります。別の方法としては、Skype のテキストベースのチャットシステムを使って、ヘルプを担当してくれるボランティアとやりとりをすることもできます。 "
 
-msgid "Volunteers speaking several languages are available. Please select a language:"
+#: 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 "あなたが BOINC 参加者として経験がおありなら、是非、%s ヘルプ担当のボランティアをやって%s いただけませんか。科学研究とボランティア・コンピューティングの主旨を支援する、重要な活動の1つです。さらに、楽しい活動でもあります!"
+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 ""
+"あなたが BOINC 参加者として経験がおありなら、是非、%s ヘルプ担当のボランティアをやって%s "
+"いただけませんか。科学研究とボランティア・コンピューティングの主旨を支援する、重要な活動の1つです。さらに、楽しい活動でもあります!"
 
+#: help.php:56
 #, php-format
-msgid "If you're already a Help Volunteer: to edit your settings, %sclick here%s."
+msgid ""
+"If you're already a Help Volunteer: to edit your settings, %sclick here%s."
 msgstr "既にヘルプ担当のボランティアをされている方へ:あなたの%s 設定を編集する%s には左のリンクをクリックして下さい。"
 
+#: index.php:23
+msgid "Computing power"
+msgstr "計算能力"
+
+#: index.php:25
+msgid "Top 100 volunteers"
+msgstr "上位100位までの参加者"
+
+#: index.php:26
+msgid "Statistics"
+msgstr "統計"
+
+#: index.php:53
+msgid "Active:"
+msgstr "活動中: "
+
+#: index.php:53
+msgid "volunteers,"
+msgstr "人の参加者、"
+
+#: index.php:53
+msgid "computers.\n"
+msgstr "台の計算機\n"
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr "24時間の平均: "
+
+#: index.php:54
+msgid "TeraFLOPS."
+msgstr "TeraFLOPS."
+
+#: index.php:66
+msgid "News"
+msgstr "ニュース"
+
+#: index.php:72
+msgid "... more"
+msgstr "..... 続きを見る"
+
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr "ニュースは %sRSS%s からも読めます"
+
+#: index.php:86
 msgid "Volunteer"
 msgstr "ボランティアとして参加してくださる方へ"
 
+#: index.php:88
 msgid "Download"
 msgstr "ダウンロード"
 
+#: index.php:90 index.php:125 index.php:163
 msgid "Documentation"
 msgstr "説明資料"
 
+#: index.php:96
 #, php-format
-msgid " Use the idle time on your computer (Windows, Mac, or Linux) to cure diseases, study global warming, discover pulsars, and do many other types of scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %sDownload%s and run BOINC software  %sEnter%s an email address and password. "
-msgstr "あなたのコンピュータの空き時間を、病気を治すためや、地球温暖化を研究するため、 パルサーを発見するため、そしてその他たくさんの種類の科学研究のために使って下さい。 (コンピュータは、Windows、Mac、Linux のどれでも大丈夫です)。  やり方は以下のように簡単で、安全かつ安心です。 %s プロジェクトを選択し%s、 %s BOINC ソフトウェアを ダウンロード%s して走らせます。  %s その後、入力 %s する必要があるのは、あなたのメイルアドレスとパスワードです。"
+msgid ""
+" Use the idle time on your computer (Windows, Mac, or Linux) to cure "
+"diseases, study global warming, discover pulsars, and do many other types of "
+"scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %"
+"sDownload%s and run BOINC software  %sEnter%s an email address and password. "
+msgstr ""
+"あなたのコンピュータの空き時間を、病気を治すためや、地球温暖化を研究するため、 "
+"パルサーを発見するため、そしてその他たくさんの種類の科学研究のために使って下さい。 (コンピュータは、Windows、Mac、Linux "
+"のどれでも大丈夫です)。  やり方は以下のように簡単で、安全かつ安心です。 %s プロジェクトを選択し%s、 %s BOINC ソフトウェアを "
+"ダウンロード%s して走らせます。  %s その後、入力 %s する必要があるのは、あなたのメイルアドレスとパスワードです。"
 
+#: index.php:107
 #, php-format
-msgid "Or, if you run several projects, try an %saccount manager%s such as %sGridRepublic%s or %sBAM!%s. "
-msgstr "あるいは、もし複数のプロジェクトに参加したいなら、%3$s GridRepublic %4$s や %5$s BAM! %6$s のような %1$s アカウント・マネージャ%2$s を試して下さい。"
+msgid ""
+"Or, if you run several projects, try an %saccount manager%s such as %"
+"sGridRepublic%s or %sBAM!%s. "
+msgstr ""
+"あるいは、もし複数のプロジェクトに参加したいなら、%3$s GridRepublic %4$s や %5$s BAM! %6$s のような %1$s "
+"アカウント・マネージャ%2$s を試して下さい。"
+
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr " BOINC を使って計算する"
+
+#: index.php:126
+msgid "Software updates"
+msgstr "ソフトウェアのアップデイト"
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr "BOINC プロジェクト"
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr "支援を求む!"
+
+#: index.php:160
+msgid "Programming"
+msgstr "プログラミング"
+
+#: index.php:161
+msgid "Translation"
+msgstr "翻訳"
+
+#: index.php:162
+msgid "Testing"
+msgstr "テスト"
+
+#: index.php:165
+msgid "Software development"
+msgstr "ソフトウェア開発"
 
-#"%s アカウント・マネージャ%s (たとえば、%s GridRepublic %s や %s BAM! %s ) を試して下さい。"
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr "アドオン・ソフトウェアのための API"
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr "主要メンバーと貢献してくれている人々"
+
+#: index.php:168
+msgid "Message boards"
+msgstr "掲示板"
+
+#: index.php:169
+msgid "Email lists"
+msgstr "メイリングリスト"
+
+#: index.php:170
+msgid "Events"
+msgstr "イベント・催し物"
+
+#: index.php:171
+msgid "Conferences"
+msgstr "カンファレンス"
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr "論文、講演"
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr "ロゴ、グラフィクス"
+
+#: index.php:206
+msgid "Browser default"
+msgstr "ブラウザに設定された既定値"
+
+# %s アカウント・マネージャ%s (たとえば、%s GridRepublic %s や %s BAM! %s ) を試して下さい。"
+#: index.php:250
 #, php-format
-msgid "Open-source software for %svolunteer computing%s and %sgrid computing%s."
+msgid ""
+"Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr "BOINC は %sボランティア・コンピューティング%s と %sグリッド・コンピューティング%sのためのオープンソース・ソフトウェアです。"
 
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr "BOINC 参加者サーベイ"
 
-msgid "Several volunteer computing projects, including Climateprediction.net, Einstein at home, and SETI at home, use software called BOINC.  If you participate in projects like this, we request that you answer the following questions.  This will help BOINC-based projects increase participation and achieve greater scientific results. <p> Please answer as many questions as you want, then go to the bottom and click OK. If you previously completed the survey but your answers have changed, please complete it again - your new answers will replace the old ones. <p> The current results of the survey are <a href=poll_results.php>here</a>. "
-msgstr "BOINC ソフトウェアは、いくつものボランティア・コンピューティング・プロジェクトで使われています。 たとえば、Climateprediction.net、 Einstein at home、そして SETI at home といったプロジェクトです。 もしこれらのプロジェクトとのどれかに参加しているなら、以下の質問に答えていただけませんか。 答えることによって、あなたは BOINC を使ったプロジェクトの参加者を増やすことを助け、プロジェクトの科学成果をより大きなものにするでしょう。 <p> 答えたいところだけ記入していただければ結構です。 入力し終わったら、ページ末尾のOK ボタンを押して下さい。 一旦、サーベイに協力した後で、答えた内容を変更したいときには、お手数ですがもう一度入力し直してください。 そうすれば、古い答えは上書きされます。 <p> <a href='poll_results.php'>現在時点のサーベイの結果</a> はここにあります。 "
-
+#: poll.php:19
+msgid ""
+"Several volunteer computing projects, including Climateprediction.net, "
+"Einstein at home, and SETI at home, use software called BOINC.  If you participate "
+"in projects like this, we request that you answer the following questions.  "
+"This will help BOINC-based projects increase participation and achieve "
+"greater scientific results. <p> Please answer as many questions as you want, "
+"then go to the bottom and click OK. If you previously completed the survey "
+"but your answers have changed, please complete it again - your new answers "
+"will replace the old ones. <p> The current results of the survey are <a "
+"href=poll_results.php>here</a>. "
+msgstr ""
+"BOINC ソフトウェアは、いくつものボランティア・コンピューティング・プロジェクトで使われています。 "
+"たとえば、Climateprediction.net、 Einstein at home、そして SETI at home といったプロジェクトです。 "
+"もしこれらのプロジェクトとのどれかに参加しているなら、以下の質問に答えていただけませんか。 答えることによって、あなたは BOINC "
+"を使ったプロジェクトの参加者を増やすことを助け、プロジェクトの科学成果をより大きなものにするでしょう。 <p> "
+"答えたいところだけ記入していただければ結構です。 入力し終わったら、ページ末尾のOK ボタンを押して下さい。 "
+"一旦、サーベイに協力した後で、答えた内容を変更したいときには、お手数ですがもう一度入力し直してください。 そうすれば、古い答えは上書きされます。 <p> "
+"<a href='poll_results.php'>現在時点のサーベイの結果</a> はここにあります。 "
+
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr "BOINC を走らせていますか?"
 
+#: poll.php:30
 msgid "Your participation"
 msgstr "あなたの参加について"
 
+#: poll.php:32
 msgid "Your computers"
 msgstr "あなたのコンピュータについて"
 
+#: poll.php:34
 msgid "You"
 msgstr "あなた自身について"
 
+#: poll.php:39
 msgid "Nationality"
 msgstr "国籍"
 
+#: poll.php:44
 msgid "Comments"
 msgstr "コメント"
 
-msgid "Please suggest ways that BOINC, and the projects that use it, could be improved:"
+#: poll.php:46
+msgid ""
+"Please suggest ways that BOINC, and the projects that use it, could be "
+"improved:"
 msgstr "BOINC とそれを使うプロジェクト群がより良くなる方法について示唆を書いていただきたい:"
 
+#: poll.php:50
 msgid "When done click:"
 msgstr "記入が終わりましたら、右のOKボタンをクリックしてください:"
 
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr "異常発生 - 結果は記録されていません"
 
-msgid "An internal error has prevented us from recording your survey response.  Please try again later."
+#: poll_action.php:10
+msgid ""
+"An internal error has prevented us from recording your survey response.  "
+"Please try again later."
 msgstr "内部異常が発生しました。あなたがサーベイに記入してくれた内容を記録できませんでした。申し訳ありませんが、のちほどまた試してみてください。"
 
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr "サーベイに記入してくれた内容を記録しました"
 
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr "BOINC 参加者サーベイに記入していただき、ありがとうございました。"
 
+#: poll_results.php:195
 msgid "Survey results"
 msgstr "サーベイの結果"
 
-msgid "These are the current results of the <a href=poll.php>BOINC user survey</a>.  This page is updated every hour."
+#: poll_results.php:196
+msgid ""
+"These are the current results of the <a href=poll.php>BOINC user survey</"
+"a>.  This page is updated every hour."
 msgstr "以下は <a href=poll.php>BOINC 参加者サーベイ</a> の現時点での結果です。 このページは1時間ごとに更新されます。 "
 
 # The charset used for the text in this file (please try to use UTF-8 if possible)
@@ -367,22 +670,17 @@ msgstr "以下は <a href=poll.php>BOINC 参加者サーベイ</a> の現時点
 # msgstr "UTF-8"
 #~ msgid "CHARSET"
 #~ msgstr "UTF-8"
-# The name of this language in this language
-# msgid "LANG_NAME_NATIVE"
+
 # msgstr "English"
 #, fuzzy
 #~ msgid "LANG_NAME_NATIVE"
 #~ msgstr "English"
 
-# The name of this language in an international language (English)
-# msgid "LANG_NAME_INTERNATIONAL"
 # msgstr "English"
 #, fuzzy
 #~ msgid "LANG_NAME_INTERNATIONAL"
 #~ msgstr "English"
 
-# poll-related stuff
-########################################
 ########################################
 # poll-related stuff
 # msgid "POLL_TITLE"
@@ -391,8 +689,6 @@ msgstr "以下は <a href=poll.php>BOINC 参加者サーベイ</a> の現時点
 #~ msgid "POLL_TITLE"
 #~ msgstr "BOINC user survey"
 
-# poll.php
-# msgid "POLL_INTRO"
 # msgstr "Several volunteer computing projects, "
 # "including Climateprediction.net, Einstein at home, "
 # "and SETI at home, use software called BOINC. "
@@ -412,452 +708,274 @@ msgstr "以下は <a href=poll.php>BOINC 参加者サーベイ</a> の現時点
 #~ msgid "POLL_INTRO"
 #~ msgstr "Several volunteer computing projects, including Climateprediction.net, Einstein at home, and SETI at home, use software called BOINC. If you participate in projects like this, we request that you answer the following questions. This will help BOINC-based projects increase participation and achieve greater scientific results. <p> Please answer as many questions as you want, then go to the bottom and click OK. If you previously completed the survey but your answers have changed, please complete it again - your new answers will replace the old ones. <p> The current results of the survey are <a href=poll_results.php>here</a>. "
 
-# msgstr "Do you run BOINC?"
-#, fuzzy
 #~ msgid "POLL_RUN"
 #~ msgstr "Do you run BOINC?"
 
-# msgstr "Your participation"
-#, fuzzy
 #~ msgid "POLL_PARTICIPATION"
 #~ msgstr "Your participation"
 
-# msgstr "Your computers"
-#, fuzzy
 #~ msgid "POLL_COMPUTERS"
 #~ msgstr "Your computers"
 
-# msgstr "You"
-#, fuzzy
 #~ msgid "POLL_YOU"
 #~ msgstr "You"
 
-# msgstr "Nationality"
-#, fuzzy
 #~ msgid "POLL_NATIONALITY"
 #~ msgstr "Nationality"
 
-# msgstr "Comments"
-#, fuzzy
 #~ msgid "POLL_COMMENTS"
 #~ msgstr "Comments"
 
-# msgstr "Please suggest ways that BOINC, and the projects that use it, could be improved:"
-#, fuzzy
 #~ msgid "POLL_COMMENTS_QUESTION"
 #~ msgstr "Please suggest ways that BOINC, and the projects that use it, could be improved:"
 
-# msgstr "Other:"
-#, fuzzy
 #~ msgid "POLL_OTHER"
 #~ msgstr "Other:"
 
-# msgstr "[check all that apply]"
-#, fuzzy
 #~ msgid "POLL_CHECK_ALL"
 #~ msgstr "[check all that apply]"
 
-# msgstr "When done click:"
-#, fuzzy
 #~ msgid "POLL_DONE"
 #~ msgstr "When done click:"
 
-# poll_data.inc
-# msgid "POLL_CURRENT"
 # msgstr "Yes - I have been running BOINC on my computer for..."
 #, fuzzy
 #~ msgid "POLL_CURRENT"
 #~ msgstr "Yes - I have been running BOINC on my computer for..."
 
-# msgstr "less than a week"
-#, fuzzy
 #~ msgid "POLL_TWEEK"
 #~ msgstr "less than a week"
 
-# msgstr "less than a month"
-#, fuzzy
 #~ msgid "POLL_TMONTH"
 #~ msgstr "less than a month"
 
-# msgstr "less than a year"
-#, fuzzy
 #~ msgid "POLL_TYEAR"
 #~ msgstr "less than a year"
 
-# msgstr "more than a year"
-#, fuzzy
 #~ msgid "POLL_TMOREYEAR"
 #~ msgstr "more than a year"
 
-# msgstr "No - I was running BOINC, but stopped because..."
-#, fuzzy
 #~ msgid "POLL_LAPSED"
 #~ msgstr "No - I was running BOINC, but stopped because..."
 
-# msgstr "I lost interest"
-#, fuzzy
 #~ msgid "POLL_LINTEREST"
 #~ msgstr "I lost interest"
 
-# msgstr "it was too complicated"
-#, fuzzy
 #~ msgid "POLL_LCOMPLICATED"
 #~ msgstr "it was too complicated"
 
-# msgstr "I stopped it and forgot to start again"
-#, fuzzy
 #~ msgid "POLL_LSTOPPED"
 #~ msgstr "I stopped it and forgot to start again"
 
-# msgstr "it caused problems on my computer"
-#, fuzzy
 #~ msgid "POLL_LPROBLEMS"
 #~ msgstr "it caused problems on my computer"
 
-# msgstr "it used too much electricity"
-#, fuzzy
 #~ msgid "POLL_LPOWER"
 #~ msgstr "it used too much electricity"
 
-# msgstr "I switched to a non-BOINC computing project"
-#, fuzzy
 #~ msgid "POLL_LNONBOINC"
 #~ msgstr "I switched to a non-BOINC computing project"
 
-# msgstr "No - I tried running BOINC, but..."
-#, fuzzy
 #~ msgid "POLL_FAILED"
 #~ msgstr "No - I tried running BOINC, but..."
 
-# msgstr "the software didn't install correctly"
-#, fuzzy
 #~ msgid "POLL_FINSTALL"
 #~ msgstr "the software didn't install correctly"
 
-# msgstr "I couldn't figure out how to use the software"
-#, fuzzy
 #~ msgid "POLL_FFIGURE"
 #~ msgstr "I couldn't figure out how to use the software"
 
-# msgstr "I had network communication problems"
-#, fuzzy
 #~ msgid "POLL_FNETWORK"
 #~ msgstr "I had network communication problems"
 
-# msgstr "I couldn't attach to a project"
-#, fuzzy
 #~ msgid "POLL_FATTACH"
 #~ msgstr "I couldn't attach to a project"
 
-# msgstr "I attached to a project, but never got any work"
-#, fuzzy
 #~ msgid "POLL_FWORK"
 #~ msgstr "I attached to a project, but never got any work"
 
-# msgstr "No - I never tried running BOINC, because..."
-#, fuzzy
 #~ msgid "POLL_NEVER"
 #~ msgstr "No - I never tried running BOINC, because..."
 
-# msgstr "I was concerned about security"
-#, fuzzy
 #~ msgid "POLL_NSECURITY"
 #~ msgstr "I was concerned about security"
 
-# msgstr "I wasn't interested in any of the projects"
-#, fuzzy
 #~ msgid "POLL_NPROJECT"
 #~ msgstr "I wasn't interested in any of the projects"
 
-# msgstr "I don't have permission to run it on my computer"
-#, fuzzy
 #~ msgid "POLL_NPERMISSION"
 #~ msgstr "I don't have permission to run it on my computer"
 
-# msgstr "No version was available for my computer"
-#, fuzzy
 #~ msgid "POLL_NVERSION"
 #~ msgstr "No version was available for my computer"
 
-# msgstr "What kind of computers do you have running BOINC?"
-#, fuzzy
 #~ msgid "POLL_KIND"
 #~ msgstr "What kind of computers do you have running BOINC?"
 
-# msgstr "Where are they?"
-#, fuzzy
 #~ msgid "POLL_WHERE"
 #~ msgstr "Where are they?"
 
-# msgstr "Home"
-#, fuzzy
 #~ msgid "POLL_HOME"
 #~ msgstr "Home"
 
-# msgstr "Work"
-#, fuzzy
 #~ msgid "POLL_WORK"
 #~ msgstr "Work"
 
-# msgstr "School"
-#, fuzzy
 #~ msgid "POLL_SCHOOL"
 #~ msgstr "School"
 
-# msgstr "How many computers?"
-#, fuzzy
 #~ msgid "POLL_HOW_MANY"
 #~ msgstr "How many computers?"
 
-# msgstr "On average, how many hours per day are they powered on?"
-#, fuzzy
 #~ msgid "POLL_TURNED_ON"
 #~ msgstr "On average, how many hours per day are they powered on?"
 
-# msgstr "Age"
-#, fuzzy
 #~ msgid "POLL_AGE"
 #~ msgstr "Age"
 
-# msgstr "Sex"
-#, fuzzy
 #~ msgid "POLL_SEX"
 #~ msgstr "Sex"
 
-# msgstr "Male"
-#, fuzzy
 #~ msgid "POLL_MALE"
 #~ msgstr "Male"
 
-# msgstr "Female"
-#, fuzzy
 #~ msgid "POLL_FEMALE"
 #~ msgstr "Female"
 
-# msgstr "Your level of computer expertise"
-#, fuzzy
 #~ msgid "POLL_EXPERTISE"
 #~ msgstr "Your level of computer expertise"
 
-# msgstr "Beginner"
-#, fuzzy
 #~ msgid "POLL_LEVB"
 #~ msgstr "Beginner"
 
-# msgstr "Intermediate"
-#, fuzzy
 #~ msgid "POLL_LEVI"
 #~ msgstr "Intermediate"
 
-# msgstr "Advanced"
-#, fuzzy
 #~ msgid "POLL_LEVA"
 #~ msgstr "Advanced"
 
-# msgstr "Where did you learn about BOINC projects?"
-#, fuzzy
 #~ msgid "POLL_LEARN_WHERE"
 #~ msgstr "Where did you learn about BOINC projects?"
 
-# msgstr "TV/radio/newspaper"
-#, fuzzy
 #~ msgid "POLL_WTV"
 #~ msgstr "TV/radio/newspaper"
 
-# msgstr "From friends, relatives, or coworkers"
-#, fuzzy
 #~ msgid "POLL_WPERS"
 #~ msgstr "From friends, relatives, or coworkers"
 
-# msgstr "Team message boards or web sites"
-#, fuzzy
 #~ msgid "POLL_WTEAM"
 #~ msgstr "Team message boards or web sites"
 
-# msgstr "The BOINC web site"
-#, fuzzy
 #~ msgid "POLL_WBOINC"
 #~ msgstr "The BOINC web site"
 
-# msgstr "Other web sites"
-#, fuzzy
 #~ msgid "POLL_WWEB"
 #~ msgstr "Other web sites"
 
-# msgstr "Which are the most important factors when you decide whether to participate in a BOINC project?"
-#, fuzzy
 #~ msgid "POLL_FACTOR"
 #~ msgstr "Which are the most important factors when you decide whether to participate in a BOINC project?"
 
-# msgstr "Nice-looking screensaver graphics"
-#, fuzzy
 #~ msgid "POLL_GRAPHICS"
 #~ msgstr "Nice-looking screensaver graphics"
 
-# msgstr "Fair and quick granting of credit for work done"
-#, fuzzy
 #~ msgid "POLL_CREDIT_FAIR"
 #~ msgstr "Fair and quick granting of credit for work done"
 
-# msgstr "Getting more credit from this project than from others"
-#, fuzzy
 #~ msgid "POLL_CREDIT_MORE"
 #~ msgstr "Getting more credit from this project than from others"
 
-# msgstr "Helpful and friendly message boards"
-#, fuzzy
 #~ msgid "POLL_MB_FRIENDLY"
 #~ msgstr "Helpful and friendly message boards"
 
-# msgstr "Participation by project staff on the message boards"
-#, fuzzy
 #~ msgid "POLL_MB_STAFF"
 #~ msgstr "Participation by project staff on the message boards"
 
-# msgstr "Informative project web site"
-#, fuzzy
 #~ msgid "POLL_WEB_SITE"
 #~ msgstr "Informative project web site"
 
-# msgstr "The science is important and beneficial"
-#, fuzzy
 #~ msgid "POLL_SCIENCE_IMPORTANT"
 #~ msgstr "The science is important and beneficial"
 
-# msgstr "Non-profit, and results are public"
-#, fuzzy
 #~ msgid "POLL_SCIENCE_PUBLIC"
 #~ msgstr "Non-profit, and results are public"
 
-# msgstr "Personal recognition if my computer finds something"
-#, fuzzy
 #~ msgid "POLL_RECOGNIZE"
 #~ msgstr "Personal recognition if my computer finds something"
 
-# msgstr "Publication by the project in scientific journals"
-#, fuzzy
 #~ msgid "POLL_PUBLISH"
 #~ msgstr "Publication by the project in scientific journals"
 
-# msgstr "Periodic email newsletters from the project"
-#, fuzzy
 #~ msgid "POLL_EMAIL"
 #~ msgstr "Periodic email newsletters from the project"
 
-# msgstr "How many BOINC projects do you participate in?"
-#, fuzzy
 #~ msgid "POLL_NPROJECTS"
 #~ msgstr "How many BOINC projects do you participate in?"
 
-# msgstr "Do you run BOINC as a screensaver?"
-#, fuzzy
 #~ msgid "POLL_SSAVER"
 #~ msgstr "Do you run BOINC as a screensaver?"
 
-# msgstr "Yes"
-#, fuzzy
 #~ msgid "POLL_YES"
 #~ msgstr "Yes"
 
-# msgstr "No"
-#, fuzzy
 #~ msgid "POLL_NO"
 #~ msgstr "No"
 
-# msgstr "Your usage of project messages boards:"
-#, fuzzy
 #~ msgid "POLL_MBOARDS"
 #~ msgstr "Your usage of project messages boards:"
 
-# msgstr "to read information"
-#, fuzzy
 #~ msgid "POLL_MBR"
 #~ msgstr "to read information"
 
-# msgstr "to read and post information"
-#, fuzzy
 #~ msgid "POLL_MBRW"
 #~ msgstr "to read and post information"
 
-# msgstr "None"
-#, fuzzy
 #~ msgid "POLL_NONE"
 #~ msgstr "None"
 
-# msgstr "Where do you get information to help resolve problems with BOINC and/or BOINC projects?"
-#, fuzzy
 #~ msgid "POLL_HELP"
 #~ msgstr "Where do you get information to help resolve problems with BOINC and/or BOINC projects?"
 
-# msgstr "The project message boards"
-#, fuzzy
 #~ msgid "POLL_HELP_PMB"
 #~ msgstr "The project message boards"
 
-# msgstr "The BOINC message boards"
-#, fuzzy
 #~ msgid "POLL_HELP_BMB"
 #~ msgstr "The BOINC message boards"
 
-# msgstr "The BOINC web site"
-#, fuzzy
 #~ msgid "POLL_HELP_BDOC"
 #~ msgstr "The BOINC web site"
 
-# msgstr "BOINC mailing lists"
-#, fuzzy
 #~ msgid "POLL_HELP_BMLIST"
 #~ msgstr "BOINC mailing lists"
 
-# msgstr "The Unofficial BOINC Wiki"
-#, fuzzy
 #~ msgid "POLL_HELP_WIKI"
 #~ msgstr "The Unofficial BOINC Wiki"
 
-# msgstr "Team web sites"
-#, fuzzy
 #~ msgid "POLL_HELP_TEAM"
 #~ msgstr "Team web sites"
 
-# msgstr "Google or other search engines"
-#, fuzzy
 #~ msgid "POLL_HELP_GOOGLE"
 #~ msgstr "Google or other search engines"
 
-# poll_action.php
-# msgid "POLL_ERROR_TITLE"
 # msgstr "Error - results not recorded"
 #, fuzzy
 #~ msgid "POLL_ERROR_TITLE"
 #~ msgstr "Error - results not recorded"
 
-# msgstr "An internal error has prevented us from recording your survey response.  Please try again later."
-#, fuzzy
 #~ msgid "POLL_ERROR_TEXT"
 #~ msgstr "An internal error has prevented us from recording your survey response.  Please try again later."
 
-# msgstr "Survey response recorded"
-#, fuzzy
 #~ msgid "POLL_RECORDED"
 #~ msgstr "Survey response recorded"
 
-# msgstr "Thank you for completing the BOINC user survey."
-#, fuzzy
 #~ msgid "POLL_THANKS"
 #~ msgstr "Thank you for completing the BOINC user survey."
 
-# msgstr "Survey results"
-#, fuzzy
 #~ msgid "POLL_RESULTS_TITLE"
 #~ msgstr "Survey results"
 
-# msgstr "These are the current results of the <a href=poll.php>BOINC user survey</a>.  This page is updated every hour."
-#, fuzzy
 #~ msgid "POLL_RESULTS_TEXT"
 #~ msgstr "These are the current results of the <a href=poll.php>BOINC user survey</a>.  This page is updated every hour."
 
-# msgstr "Note: files are downloaded from mirror servers "
-# "at boinc.berkeley.edu, morel.mit.edu, einstein.aei.mpg.de, "
 # "einstein.astro.gla.ac.uk, einstein.ligo.caltech.edu, and einstein.aset.psu.edu "
 # "(thanks to these institutions). "
 # "The server is chosen randomly - "
@@ -866,8 +984,6 @@ msgstr "以下は <a href=poll.php>BOINC 参加者サーベイ</a> の現時点
 #~ msgid "DL_MIRRORS"
 #~ msgstr "Note: files are downloaded from mirror servers at boinc.berkeley.edu, morel.mit.edu, einstein.aei.mpg.de, einstein.astro.gla.ac.uk, einstein.ligo.caltech.edu, and einstein.aset.psu.edu (thanks to these institutions). The server is chosen randomly - if a download fails, reload this page and try again. "
 
-# help.php
-##############################################
 ##############################################
 # help.php
 # msgid "HELP_TITLE"
@@ -876,13 +992,9 @@ msgstr "以下は <a href=poll.php>BOINC 参加者サーベイ</a> の現時点
 #~ msgid "HELP_TITLE"
 #~ msgstr "Getting help with BOINC"
 
-# msgstr "Online Help"
-#, fuzzy
 #~ msgid "HELP_HEADING1"
 #~ msgstr "Online Help"
 
-# msgstr "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. "
@@ -890,8 +1002,6 @@ msgstr "以下は <a href=poll.php>BOINC 参加者サーベイ</a> の現時点
 #~ msgid "HELP_P1_1"
 #~ msgstr "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 "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 "
@@ -901,8 +1011,6 @@ msgstr "以下は <a href=poll.php>BOINC 参加者サーベイ</a> の現時点
 #~ msgid "HELP_P1_2"
 #~ msgstr "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 "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. "
 # "Alternatively, you can use Skype's text-based chat system "
 # "to communicate with Help Volunteers."
@@ -910,49 +1018,31 @@ msgstr "以下は <a href=poll.php>BOINC 参加者サーベイ</a> の現時点
 #~ msgid "HELP_P1_3"
 #~ msgstr "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 "Volunteers speaking several languages are available. "
-# "Please select a language: "
 #, fuzzy
 #~ msgid "HELP_P1_4"
 #~ msgstr "Volunteers speaking several languages are available. Please select a language: "
 
-# msgstr "Other sources of help"
-#, fuzzy
 #~ msgid "HELP_HEADING2"
 #~ msgstr "BOINC help on the web"
 
-# msgstr "Running BOINC "
-#, fuzzy
 #~ msgid "HELP_P2_ITEM1"
 #~ msgstr "BOINC user's manual"
 
-# msgstr "Troubleshooting BOINC "
-#, fuzzy
 #~ msgid "HELP_P2_ITEM2"
 #~ msgstr "Troubleshooting BOINC "
 
-# msgstr "BOINC-related web sites "
-#, fuzzy
 #~ msgid "HELP_P2_ITEM3"
 #~ msgstr "BOINC-related web sites "
 
-# msgstr "The BOINC message boards "
-#, fuzzy
 #~ msgid "HELP_P2_ITEM4"
 #~ msgstr "The BOINC message boards "
 
-# msgstr "The message boards on any BOINC-based project "
-#, fuzzy
 #~ msgid "HELP_P2_ITEM5"
 #~ msgstr "The message boards on any BOINC-based project "
 
-# msgstr "Be a Help Volunteer"
-#, fuzzy
 #~ msgid "HELP_HEADING3"
 #~ msgstr "Be a Help Volunteer"
 
-# msgstr "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!  "
@@ -960,14 +1050,10 @@ msgstr "以下は <a href=poll.php>BOINC 参加者サーベイ</a> の現時点
 #~ msgid "HELP_P3_1"
 #~ msgstr "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 "If you're already a Help Volunteer: to edit your settings, "
-# "%sclick here%s. "
 #, fuzzy
 #~ msgid "HELP_P3_2"
 #~ msgstr "If you're already a Help Volunteer: to edit your settings, %sclick here%s. "
 
-# index.php
-##############################################
 ##############################################
 # index.php
 # msgid "HOME_HEADING1"
@@ -976,8 +1062,6 @@ msgstr "以下は <a href=poll.php>BOINC 参加者サーベイ</a> の現時点
 #~ msgid "HOME_HEADING1"
 #~ msgstr "Volunteer"
 
-# msgstr " Use the idle time on your computer "
-# " (Windows, Mac, or Linux) "
 # " to cure diseases, study global warming, "
 # " discover pulsars, and do many other types of scientific research. "
 # " It's safe, secure, and easy: "
@@ -988,45 +1072,28 @@ msgstr "以下は <a href=poll.php>BOINC 参加者サーベイ</a> の現時点
 #~ msgid "HOME_P1"
 #~ msgstr " Use the idle time on your computer  (Windows, Mac, or Linux)  to cure diseases, study global warming,  discover pulsars, and do many other types of scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %sDownload%s and run BOINC software  %sEnter%s an email address and password. "
 
-# msgstr "Or, if you run several projects, try "
-# "an %saccount manager%s such as %sGridRepublic%s or %sBAM!%s. "
 #, fuzzy
 #~ msgid "HOME_P2"
 #~ msgstr "Or, if you run several projects, try an %saccount manager%s such as %sGridRepublic%s or %sBAM!%s. "
 
-# msgstr "If you have any questions, or need help getting started, you can "
-# "%stalk to a Volunteer Helper%s. "
 #, fuzzy
 #~ msgid "HOME_P3"
 #~ msgstr "If you have any questions, or need help getting started, you can %stalk to a Volunteer Helper%s. "
 
-# msgstr "Download"
-#, fuzzy
 #~ msgid "HOME_DOWNLOAD"
 #~ msgstr "Download"
 
-# msgstr "Web sites"
-#, fuzzy
 #~ msgid "HOME_WEB_SITES"
 #~ msgstr "Web"
 
-# msgstr "Add-ons"
-#, fuzzy
 #~ msgid "HOME_ADD_ONS"
 #~ msgstr "Add-ons"
 
-# msgstr "Survey"
-#, fuzzy
 #~ msgid "HOME_SURVEY"
 #~ msgstr "Survey"
 
-# msgstr "Berkeley Open Infrastructure for Network Computing"
-#, fuzzy
 #~ msgid "HOME_BOINC"
 #~ msgstr "Berkeley Open Infrastructure for Network Computing"
 
-# msgstr "Open-source software for %svolunteer computing%s and %sdesktop grid computing%s.
-#, fuzzy
 #~ msgid "HOME_BOINC_DESC"
 #~ msgstr "Open-source software for %svolunteer computing%s and %sgrid computing%s"
-
diff --git a/locale/ja/pootle-boincclient610-ja.prefs b/locale/ja/pootle-boincclient610-ja.prefs
new file mode 100644
index 0000000..4a0ebd8
--- /dev/null
+++ b/locale/ja/pootle-boincclient610-ja.prefs
@@ -0,0 +1,10 @@
+# Pootle preferences for project boinctrunk, language ja
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  je2bwm = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  josesun = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  momdo = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/ja/pootle-boinctrunk-ja.prefs b/locale/ja/pootle-boinctrunk-ja.prefs
deleted file mode 100644
index 265fb66..0000000
--- a/locale/ja/pootle-boinctrunk-ja.prefs
+++ /dev/null
@@ -1,10 +0,0 @@
-# Pootle preferences for project boinctrunk, language ja
-
-rights:
-  default = u'view, suggest, archive, pocompile'
-  nobody = u'view'
-  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  je2bwm = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  josesun = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  momdo = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/ko/BOINC-Manager.mo b/locale/ko/BOINC-Manager.mo
index 6ae0b62..2f01c31 100644
Binary files a/locale/ko/BOINC-Manager.mo and b/locale/ko/BOINC-Manager.mo differ
diff --git a/locale/ko/BOINC-Manager.po b/locale/ko/BOINC-Manager.po
index 58f9be2..272c086 100644
--- a/locale/ko/BOINC-Manager.po
+++ b/locale/ko/BOINC-Manager.po
@@ -1,10 +1,10 @@
 msgid ""
 msgstr ""
-"Project-Id-Version: BOINC Manager 6.6 based rev.16826\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
-"PO-Revision-Date: 2009-05-27 13:53-0700\n"
-"Last-Translator: Kangsan Lee <netpres at chol.com>\n"
+"Project-Id-Version: BOINC Manager 6.10\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2010-01-31 21:50+0900\n"
+"Last-Translator: Lee Kangsan <treppolse at gmail.com>\n"
 "Language-Team: BOINC at KOREA\n"
 "Language: ko\n"
 "MIME-Version: 1.0\n"
@@ -15,15 +15,15 @@ msgstr ""
 "X-Poedit-Language: Korean\n"
 "X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: utf-8\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: KOREA, REPUBLIC OF\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "사용자 정보"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr "계정 확인"
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
@@ -31,7 +31,7 @@ msgstr ""
 "계정 정보를 입력해주세요\n"
 "(계정을 만드시려면, 프로젝트 웹 사이트를 방문해 주세요)"
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
@@ -39,431 +39,479 @@ msgstr ""
 "이 프로젝트는 현재 새로운 계정을 만들 수 없습니다.\n"
 "이미 계정을 갖고 계신 경우에 한해서 연결만이 가능합니다."
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "이미 이 프로젝트를 수행하고 계십니까?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "아니오, 새로운 사용자 입니다"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "예, 기존 사용자 입니다"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+"자동적으로 사용자 계정 정보를 설정할려고 했으나\n"
+"실패했습니다.\n"
+"\n"
+"'로그인 정보 찾기' 링크를 클릭하십시오\n"
+"그 후에 찾고자 하는 계정의 email 주소와 비밀번호 칸을\n"
+"채우신 후에 찾으십시오."
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr "로그인 정보 찾기"
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "비밀번호:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "비밀번호를 입력하세요:"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "비밀번호 확인:"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
 #, c-format
 msgid "Are you already running %s?"
 msgstr "여러분은 이미 %s를(을) 실행하고 있습니까?"
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr "사용자 이름:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "&Email 주소:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
 #, c-format
 msgid "minimum length %d"
 msgstr "최소 %d 이상"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr "비밀번호를 잊어버렸습니까?"
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+"아직 해당 계정 관리자에 등록하시지 않으셨다면 진행하기\n"
+"전에 등록해 주십시오. 아래 링크를 클릭해서 등록하시거나\n"
+"혹은 잊어버린 비밀번호를 다시 받으십시오."
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr "계정 관리자 웹사이트"
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "프로젝트 연결"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "계정 관리자 업데이트"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "계정 관리자 연결"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
 #, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr "이 프로젝트는 최소한 %d글자 이상의 비밀번호가 필요합니다. 다른 비밀번호를 입력해 주세요."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
 #, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr "이 계정 관리자는 최소한 %d글자 이상의 비밀번호가 필요합니다. 다른 비밀번호를 입력해 주세요."
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr "처음 비밀번호와 재입력한 비밀번호가 일치하지 않습니다. 다시 입력해주세요."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "계정 관리자 URL"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr "계정 관리자 선택"
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "계정 관리자 웹 사이트의 URL을 입력하세요."
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"계정 관리자를 선택하려면 이를을 클릭하거나 \n"
+"하단에 URL을 입력하세요."
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "계정 관리자 &URL:"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
 #, c-format
 msgid "Communicating with %s."
 msgstr "%s와(과) 통신 중"
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr "서버와 통신 중"
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "잠시 기다려 주세요..."
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr "내부 서버 오류가 발생했습니다.\n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "접속됨"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "접속해제됨"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "창 닫기(&C)\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr "%s 창 닫기"
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "BOINC 관리자 창 닫기."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr "창 닫기(&C)"
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
+#: clientgui/AdvancedFrame.cpp:319
 #, c-format
-msgid "Exit the %s"
-msgstr "%s 종료"
+msgid "Exit %s"
+msgstr "%s 종료(&E) "
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "종료(&X)"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
-msgstr "고급 보기(&A)\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr "프로젝트(&P)\tCtrl+Shift+P"
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
-msgstr "고급 보기는 다양한 컬럼을 이용한 정렬과 그래픽 진행 막대 표시가 가능합니다."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr "프로젝트를 보여줍니다"
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
-msgstr "간단히 보기(&S)...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr "ìž‘ì—…(&T)\tCtrl+Shift+T"
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "간단한 형태의 BOINC 그래픽 인터페이스를 표시합니다."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr "작업 현황을 보여줍니다"
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "프로젝트 연결(&P)..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr "전송(&F)\tCtrl+Shift+X"
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "프로젝트 연결"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr "전송 현황을 보여줍니다"
+
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr "메세지(&M)\tCtrl+Shift+M"
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr "메세지를 보여줍니다"
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr "통계(&S)\tCtrl+Shift+S"
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "계정 관리자 연결(&A)..."
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr "통계를 보여줍니다"
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "계정 관리자에 연결하기"
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr "디스크 사용량(&D)\tCtrl+Shift+D"
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr "디스크 사용량을 보여줍니다"
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "간단히 보기(&V)...\tCtrl+Shift+V"
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr "간단한 형태의 그래픽 인터페이스로 표시합니다."
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr "프로젝트 혹은 계정 관리자 연결(&P)..."
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr "작업을 시작할 프로젝트 또는 계정 관리자에 연결합니다"
+
+#: clientgui/AdvancedFrame.cpp:397
 #, c-format
 msgid "&Synchronize with %s"
 msgstr "%s와 동기화(&S)"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
 #, c-format
 msgid "Get current settings from %s"
 msgstr "%s 로부터 현재 설정을 가져옵니다"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "프로젝트 연결(&P)..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "작업을 시작할 프로젝트를 연결합니다"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "%s 사용 중지(&S)..."
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "계정 관리자 제어를 클라이언트에서 제거합니다."
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "항상 실행(&R)"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr "설정을 무시하고 작업을 허용합니다"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "설정한 대로 실행(&P)"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "설정에 따라서 작업을 허용합니다"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "일시 정지(&S)"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr "설정을 무시하고 작업을 정지시킵니다"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr "항상 GPU 사용"
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr "설정을 무시하고 GPU 작업을 허용합니다"
+
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr "설정한 대로 GPU 사용(&P)"
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr "설정에 따라서 GPU 작업을 허용합니다"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr "GPU 사용 안 함"
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr "설정을 무시하고 GPU 작업을 정지시킵니다"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "네트워크 활동 항상 가능(&N)"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr "설정을 무시하고 네트워크 활동을 허용합니다"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
-msgstr "설정한 대로 네트워크 네트워크 활동(&P)"
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
+msgstr "설정한 대로 네트워크 네트워크 활동(&F)"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr "설정에 따라서 네트워크 활동을 허용합니다"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
-msgstr "네트워크 활동 일시 정지(&N)"
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
+msgstr "네트워크 활동 일시 정지(&U)"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr "BOINC 네트워크 활동을 정지시킵니다"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "선택 사항(&O)..."
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "GUI 옵션과 프록시 환경을 설정합니다"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "환경 설정(&P)..."
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr "로컬 환경을 설정합니다"
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
 #, c-format
 msgid "Connect to another computer running %s"
 msgstr "%s(이)가 실행중인 다른 컴퓨터로 접속"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "컴퓨터 선택(&S)..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr "연결된 클라이언트 종료..."
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr "현재 연결된 코어 클라이언트를 종료합니다"
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "CPU 벤치마크 실행(&B)"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "BOINC CPU 벤치마크를 실행합니다"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr "네트워크 통신 실행(&C)"
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr "아직 처리되지 않은 네트워크 통신을 실행합니다."
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr "설정 파일 읽기"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr "cc_config.xml로 부터 설정 정보를 읽어옵니다."
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "로컬 환경설정 파일 읽기"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr "global_prefs_override.xml로 부터 환경 설정을 읽어옵니다."
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-#, c-format
-msgid "&Stop using %s..."
-msgstr "%s 사용 중지(&S)..."
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "계정 관리자 제어를 클라이언트에서 제거합니다."
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "프로젝트 연결(&P)"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "작업을 시작할 프로젝트를 연결합니다"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
 #, c-format
 msgid "%s &help"
 msgstr "%s 도움말(&H)"
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
 #, c-format
 msgid "Show information about %s"
 msgstr "%s에 대한 정보 보여주기"
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
 #, c-format
 msgid "&%s help"
 msgstr "&%s 도움말"
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
 #, c-format
 msgid "Show information about the %s"
 msgstr "%s에 대한 정보 보여주기"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
 #, c-format
 msgid "%s &website"
 msgstr "%s 웹 사이트(&W)"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
 #, c-format
 msgid "Show information about BOINC and %s"
 msgstr "BOINC와 %s에 대한 정보 보여주기"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
 #, c-format
 msgid "&About %s..."
-msgstr "%s ì •ë³´(&A)"
+msgstr "%s ì •ë³´(&A)..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "라이센스와 저작권 정보"
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "파일(&F)"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "보기(&V)"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "도구(&T)"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "활동(&A)"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "고급(&A)"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "도움말(&H)"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr "%s - 현재 클라이언트 종료..."
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr "프로젝트 또는 계정 관리자에 연결중..."
 
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-"%s는 현재 연결된 클라이언트에서 종료될 것이며,\n"
-"또다른 호스트로 연결해서 명령을 내릴 수 있습니다.\n"
-
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
 #, c-format
 msgid "%s - Detach from %s"
 msgstr "%s - %s를 분리"
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
 #, c-format
 msgid ""
 "If you stop using %s,\n"
@@ -478,62 +526,64 @@ msgstr ""
 "\n"
 "정말로 %s 사용을 중지하겠습니까?"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "프로젝트를 연결하고 있습니다..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "프로젝트와의 통신 재시도 중..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
 #, c-format
 msgid "%s - Language Selection"
 msgstr "%s - 언어 선택"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
 #, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr "%s가 기본 언어로 설정되었습니다. 이 설정은 %s을(를) 재시작해야 적용됩니다."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - 현재 클라이언트 종료..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s는 현재 연결된 클라이언트에서 종료될 것이며,\n"
+"또다른 호스트로 연결해서 명령을 내릴 수 있습니다.\n"
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "프로젝트와의 통신 재시도 중..."
+
+#: clientgui/AdvancedFrame.cpp:1725
 #, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
 #, c-format
 msgid "%s has successfully attached to %s"
 msgstr "%s는 성공적으로 %s에 연결되었습니다"
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
 #, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
 #, c-format
 msgid "Connecting to %s"
 msgstr "%s에 접속 중"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
 #, c-format
 msgid "Connected to %s (%s)"
 msgstr "%s (%s)에 접속됨"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "사용자 이름이 이미 사용되고 있습니다"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -545,11 +595,11 @@ msgstr ""
 "\n"
 "프로젝트 웹 사이트를 방문해서 그 곳의 지시대로 따라주십시오."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "Email 주소가 이미 사용되고 있습니다"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -561,17 +611,30 @@ msgstr ""
 "\n"
 "프로젝트 웹 사이트를 방문해서 그 곳의 지시대로 따라주십시오."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr "BOINC 클라이언트와 통신하고 있습니다. 잠시 기다려 주세요..."
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr "%s 나가기(&Q)"
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr "%s 종료(&X) "
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "취소"
+
+#: clientgui/BOINCBaseFrame.cpp:422
 #, c-format
 msgid "%s - Connection Error"
 msgstr "%s - 접속 오류"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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."
@@ -579,7 +642,7 @@ msgstr ""
 "현재 클라이언트 관리를 승인받지 못했습니다.\n"
 "관리자에게 문의해서 여러분을 'boinc_users' 로컬 사용자 그룹에 추가하십시오."
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
@@ -587,22 +650,20 @@ msgstr ""
 "실행 중인 클라이언트 접속 인증에 실패했습니다.\n"
 "클라이언트와 같은 디렉토리에서 이 프로그램이 실행되고 있는지 확인하십시오."
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr "실행 중인 클라이언트 접속 인증에 실패했습니다."
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "입력하신 암호가 틀립니다. 다시 시도해 주세요."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
 #, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - 접속 실패"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
 #, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
@@ -611,14 +672,12 @@ msgstr ""
 "%s는 %s 클라이언트에 연결이 불가능합니다.\n"
 "다시 연결하시겠습니까?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
 #, c-format
 msgid "%s - Daemon Start Failed"
 msgstr "%s - 데몬 시작 실패"
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
 #, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
@@ -627,8 +686,7 @@ msgstr ""
 "%s는 %s 클라이언트를 시작할 수 없습니다.\n"
 "제어판→관리 도구→서비스를 실행해서 BOINC 서비스를 시작하세요."
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
 #, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
@@ -637,14 +695,12 @@ msgstr ""
 "%s는 %s 클라이언트를 시작할 수 없습니다.\n"
 "데몬을 시작하고 다시 시도하세요."
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
 #, c-format
 msgid "%s - Connection Status"
 msgstr "%s - 접속 상태"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
 #, c-format
 msgid ""
 "%s is not currently connected to a %s client.\n"
@@ -655,26 +711,21 @@ msgstr ""
 "'고급\\컴퓨터 선택...'메뉴 옵션을 이용해서 %s 클라이언트로 연결하십시오.\n"
 "로컬 컴퓨터로 연결되면 호스트 이름을 'localhost'로 바꿔주십시오."
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "웹 사이트"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
 #, c-format
 msgid "%s - Network Status"
 msgstr "%s - 네트워크 상태"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
 #, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr "%s는 인터넷 연결이 필요합니다. %s 열기를 클릭하십시오."
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
 #, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
@@ -683,8 +734,7 @@ msgstr ""
 "%s는 프로젝트 서버와 통신이 불가능하며, 인터넷 연결이 필요합니다.\n"
 "인터넷에 접속한 다음 고급 메뉴의 '네트워크 통신 실행' 항목을 선택하십시오."
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
 #, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
@@ -693,14 +743,12 @@ msgstr ""
 "%s(은)는 인터넷 연결이 필요합니다.\n"
 "지금 실행하시겠습니까?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
 #, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s가(이) 인터넷에 접속하고 있습니다."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
 #, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
@@ -711,20 +759,17 @@ msgstr ""
 "인터넷에 접속하거나 고급/선택 사항/연결 메뉴에서 \n"
 "기본 연결을 선택해 주세요."
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
 #, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s이(가) 성공적으로 인터넷에 접속 되었습니다."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
 #, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "%s가 인터넷 접속에 실패했습니다."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
 #, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
@@ -733,19 +778,46 @@ msgstr ""
 "%s(이)가 현재 인터넷에 연결된 것을 발견했습니다.\n"
 "모든 프로젝트를 업데이트하고 파일 전송을 다시 시도하는 중"
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
 #, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s가 성공적으로 인터넷 연결을 종료했습니다."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
 #, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s가 인터넷 연결 종료에 실패했습니다."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+"현재 클라이언트 관리를 승인받지 못했습니다.\n"
+"\n"
+"이 사용자로 BOINC를 실행하려면\n"
+" - 비 관리자 사용자에게 권한 부여 옵션에 \"네\"라고 대답한 후\n"
+"    BOINC를 다시 설치하십시요\n"
+" 또는\n"
+" - 관리자에게 문의해서 여러분을 'boinc_master' 사용자 그룹에\n"
+"    추가하십시오."
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"BOINC 소유권이나 권한이 적절히 설정되지 않았습니다. BOINC를 다시 설치해주세요.\n"
+"(Error code %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
@@ -753,136 +825,142 @@ msgstr ""
 "BOINC를 정상적으로 실행하려면 재부팅이 필요합니다.\n"
 "컴퓨터를 다시 시작하고 재시도해 주세요."
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "BOINC 관리자"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr "BOINC 관리자를 운영 체제에서 자동적으로 시작시켰습니다"
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr "BOINC는 시스템 트레이 상태로 시작됨"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr "실행 가능한 BOINC 클라이언트를 포함한 디렉토리"
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr "BOINC 데이터 디렉토리"
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr "BOINC는 해당 인수를 가지고 시작됨"
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr "BOINC 보안 사용자 및 권한 비활성화"
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr "스킨 관리자 오류 메세지 활성화를 위해 스킨 디버깅 모드 설정"
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(자동 감지)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(알 수 없음)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(사용자 지정)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr "계산이 일시 정지되었습니다."
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr "네트워크 활동이 일시 정지되었습니다."
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
 #, c-format
 msgid "%s: %.2f%% completed."
 msgstr "%s: %.2f%% 완료."
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
 #, c-format
 msgid "%d tasks running."
 msgstr "%d 작업 실행 중."
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr "클라이언트에 재연결."
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr "클라이언트에 연결되지 않았습니다."
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
 #, c-format
 msgid "Open %s Web..."
 msgstr "%s 웹 열기..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
 #, c-format
 msgid "Open %s..."
 msgstr "%s 열기..."
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "꾸벅꾸벅 졸기"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr "GPU 사용 중지"
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "프로젝트 연결에 실패했습니다"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr "계정 관리자 업데이트에 실패했습니다"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr "계정 관리자 제거에 실패했습니다"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "계정 관리자 연결에 실패했습니다"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
 "\n"
 "Click Finish to close."
 msgstr ""
-"오류가 발생했습니다.\n"
+"오류가 발생했습니다;\n"
 "자세히를 눌러서 메세지를 확인하세요.\n"
 "\n"
 "닫을려면 완료를 누르세요."
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "닫으려면 완료를 클릭하세요."
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "서버에서 온 메시지:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "프로젝트 연결됨"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "해당 프로젝트 연결이 성공적으로 이뤄졌습니다."
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -890,127 +968,110 @@ msgstr ""
 "완료를 누르면, 브라우저가 계정 이름과 속성을\n"
 "설정할 수 있는 페이지로 갈 것입니다."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
 #, c-format
 msgid "Update from %s completed."
 msgstr "%s로부터 업데이트 완료"
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "업데이트가 완료 되었습니다."
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-#, c-format
-msgid "Removal from %s completed."
-msgstr "%s로부터 제거 완료."
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "제거 성공!"
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
 #, c-format
 msgid "Attached to %s"
 msgstr "%s에 연결됨"
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "계정 관리자 연결됨"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
 #, c-format
 msgid "Welcome to %s!"
 msgstr "%s에 오신 것을 환영합니다!"
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
 #, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "성공적으로 %s 시스템에 연결되었습니다."
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "해당 계정 관리자 연결이 성공적으로 이뤄졌습니다."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
 #, c-format
 msgid "About %s"
 msgstr "%sì •ë³´"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "버전:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr "wx위젯 버전:"
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "저작권:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
 "(C) 2003-2008 University of California, Berkeley.\n"
 "All Rights Reserved."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr "네트워크 컴퓨팅을 위한 Berkeley 개방형 하부구조체"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "확인"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr "invalid float"
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr "잘못된 시간, 올바른 형식은 HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr "잘못된 시간 간격, 올바른 형식은 HH:MM-HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr "잘못된 입력값 발견"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr "인증 오류"
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr "정말로 모든 로컬 환경설정을 지우겠습니까?"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr "확인됨"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
 #, c-format
 msgid "%s - Preferences"
 msgstr "%s - 환경 설정"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
@@ -1020,185 +1081,194 @@ msgstr ""
 "확인을 눌러서 환경을 설정하세요.\n"
 "지우기를 눌러서 웹 기반 설정으로 복원하실 수 있습니다."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr "지우기"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr "모든 로컬 환경 설정이 지워지며 다이얼로그를 닫습니다"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr "계산이 허가되었습니다"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr "배터리가 남은 동안 실행"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr "배터리가 남은 동안 작업을 수행하려면 체크하시십시오"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr "컴퓨터가 사용중이어도 작업함"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr "컴퓨터가 사용중이어도 작업을 수행하려면 체크하십시오"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr "컴퓨터를 사용하는 동안 GPU 사용"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr "컴퓨터가 사용중이어도 GPU로 작업을 수행하려면 체크하십시오"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr "컴퓨터 대기 시간 설정"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr "이 시간(분) 이후로 컴퓨터를 사용하지 않을 때 작업을 수행합니다"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr "분"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+#, fuzzy
+msgid "While processor usage is less than"
+msgstr "프로세서 사용률"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr "매일 이 시간 사이"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr "이 시간에 작업을 시작"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr "부터"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr "이 시간에 작업을 중지"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr "(똑같으면 제한이 없음)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr "일주일 중 작업할 날:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr "일주일 중 작업 일과 시간을 체크"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr "월요일"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr "화요일"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr "수요일"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr "목요일"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr "금요일"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr "토요일"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr "일요일"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr "다른 선택 사항"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+#, fuzzy
+msgid "Switch between applications every"
 msgstr "이 시간 이후로 응용 프로그램을 바꿈"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr "다중 프로세서 시스템일 때 최대 사용량"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
 #, no-c-format
 msgid "% of the processors"
 msgstr "% (프로세서 중)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr "최대 사용량"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
 #, no-c-format
 msgid "% CPU time"
 msgstr "% CPU 시간"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr "프로세서 사용률"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr "일반적인 선택 사항"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr "최대 다운로드 속도"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr "KB/s."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr "최대 업로드 속도"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr "접속 주기"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
@@ -1206,43 +1276,43 @@ msgstr ""
 "이 컴퓨터는 X일동안 계속 인터넷에 접속되어 있습니다\n"
 "(0은 항상 접속됨)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr "일"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr "추가 작업 버퍼"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr "일 (최대 10)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr "이미지 파일 검증 건너뛰기"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr "인터넷 제공자가 이미지 파일을 수정하면 체크하세요"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr "접속 옵션"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr "인터넷 접속 전에 확인"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr "체크되면, 인터넷 접속 시도 전에 확인 다이얼로그가 표시됩니다"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr "완료되면 접속 끊기"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
@@ -1250,134 +1320,124 @@ msgstr ""
 "체크되면, BOINC는 완료시 네트워크 사용을 중단합니다\n"
 "(전화 접속에만 해당됨)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr "네트워크 사용 허가"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr "네트워크 사용 시작 시간"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr "네트워크 사용 중단 시간"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr "네트워크 사용량"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr "디스크 사용량"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr "BOINC가 사용하는 최대 디스크 용량 (단위 GB)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr "GB"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr "최소한"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr "BOINC는 최소한 이 만큼의 디스크 용량을 빈 공간으로 남겨둡니다 (단위 GB)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr "GB를 남겨둡니다"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr "BOINC는 전체 디스크 중 최대 해당 퍼센트만큼 사용합니다"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
 #, no-c-format
 msgid "% of total disk space"
 msgstr "% (전체 디스크 공간 중)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
-msgstr "디스크에 기록할 시간"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr "작업 중간점을 해당 시간마다 디스크 기록"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr "ì´ˆ"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
 #, no-c-format
 msgid "% of page file (swap space)"
 msgstr "% of page file (스왑 영역)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr "메모리 사용량"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
 #, no-c-format
 msgid "% when computer is in use"
 msgstr "%를 컴퓨터 사용 시 씁니다"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
 #, no-c-format
 msgid "% when computer is idle"
 msgstr "%를 컴퓨터가 대기 중일때 씁니다"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr "일시 정지시 응용 프로그램을 메모리에서 비웁니다"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr "체크되면 일시 정지시 작업 유닛을 메모리에서 비웁니다"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr "디스크와 메모리 사용량"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr "확인"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr "모든 값을 저장하고 창을 닫습니다"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr "취소"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr "저장하지 않고 창을 닫습니다"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "도움말"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr "환경 설정 웹 페이지를 보여줍니다"
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
 #, c-format
 msgid "%s - Exit Confirmation"
 msgstr "%s - 종료 확인"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
 #, c-format
 msgid ""
 "You have requested to exit the %s,\n"
@@ -1394,8 +1454,7 @@ msgstr ""
 "만약 관리자를 종료할 때 과학 응용 프로그램도 같이 실행을 멈추도록\n"
 "원한다면, 다음 선택사항을 선택하세요:"
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
 #, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
@@ -1412,414 +1471,376 @@ msgstr ""
 "프로그램을 종료하는게 낫습니다; 여러분이 환경 설정에서 선택한\n"
 "시간에 %s의 작업 실행이 허용될 것입니다."
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr "관리자 종료시 과학 응용 프로그램 실행 정지"
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr "이 설정을 기억하고 이 창을 다시 보여주지 않습니다."
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "취소(&C)"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr "이 창을 다시 보여주지 않습니다."
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr "닫기"
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr "프로젝트 속성"
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "일반"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr "마스터 URL"
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
 msgstr "사용자 이름"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr "팀 이름"
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "자원 공유"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr "스케줄러 RPC 지연"
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr "파일 다운로드 지연"
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr "파일 업로드 지연"
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr "컴퓨터 ID"
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr "CPU 비 집약적"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr "예"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr "아니오"
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr "GUI를 통해서 일시정지"
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr "더 이상 작업을 요청하지 않습니다"
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr "현재 진행중인 스케쥴러 부르기"
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
 msgstr "계정 관리자에 연결됨"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr "완료시 분리"
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr "끝남"
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr "크레딧"
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr "사용자"
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr "호스트"
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr "스케쥴 조정"
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr "CPU 예약 순위"
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr "CPU 작업 할당 순위"
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr "CPU가 이 시간 이후로 작업"
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr "CPU가 이 시간 이후로 작업"
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr "NVIDIA GPU 예약 순위"
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr "NVIDIA GPU 작업 할당 순위"
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr "NVIDIA GPU가 이 시간 이후로 작업"
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr "NVIDIA GPU가 이 시간 이후로 작업"
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr "ATI GPU 예약 순위"
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr "ATI GPU 작업 할당 순위"
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr "ATI GPU가 이 시간 이후로 작업"
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr "ATI GPU 작업 지연 간격"
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr "지연 정정 값"
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr "작업 속성"
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "애플리케이션"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr "워크유닛 이름"
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr "상태"
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr "수신됨"
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "리포트 마감 시한"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr "자원"
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr "마지막 기록 지점의 CPU 시간"
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "CPU 시간"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 msgid "Elapsed time"
 msgstr "지난 시간"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr "남은 시간 추정"
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr "분류 완료"
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr "가상 메모리 크기"
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr "설정한 크기로 작업 중"
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
-msgstr "슬롯"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr "디렉토리"
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr "프로세스 ID"
+
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "새로 만들기"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "다운로드 실패"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "다운로드 중"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "사용자에 의해 일시 정지된 프로젝트"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr "사용자가 작업을 일시 정지했습니다"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "일시 정지됨"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr " - 배터리 가동"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr " - 사용자가 활동합니다"
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr " - 계산이 일시 정지되었습니다"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr " - 설정한 시간이 아닙니다"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr " - CPU 벤치마크"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr " - 디스크 공간이 부족합니다"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr " - 디스크 공간이 부족합니다"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr "공유된 메모리가 비길 기다리고 있습니다"
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr "높은 우선 순위로 실행 중"
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "실행 중"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr "실행 대기 중"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr "시작 대기"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "계산 오류"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "업로드 실패"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "업로드 중"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "사용자에 의해 중지됨"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "프로젝트가 중지되었습니다"
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "중지됨"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
-msgstr "도착 통지됨"
+msgstr "다운로드 성공"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "리포트 준비 됨"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
 #, c-format
 msgid "Error: invalid state '%d'"
 msgstr "오류: 잘못된 상태 '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
 #, c-format
 msgid "%s - Options"
 msgstr "%s - 선택 사항"
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr "언어:"
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr "관리자가 어떤 언어를 사용하길 원하십니까?"
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
@@ -1827,125 +1848,116 @@ msgstr ""
 "네트워크 알리미 간격:\n"
 "(분)"
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr "얼마나 자주 관리자가 네트워크 연결이 필요한지 알려주길 원하십니까?"
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr "로그인시 관리자를 실행할까요?"
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr "로그온시 BOINC 관리자를 실행합니다."
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr "관리자 종료 창을 표시할까요?"
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr "관리자를 종료할 때 종료 창을 표시합니다."
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "전화 접속과 가상 사설 네트워크(VPN) 설정"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "기본값 설정((&S)"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "기본값 지우기(&C)"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "기본 접속:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "접속"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "HTTP 프록시 서버를 통해 접속"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "HTTP 프록시 서버 설정"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "주소:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "포트:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr "다음 경우 프록시를 사용 안 함:"
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "필요없으면 빈 칸으로 남겨두세요"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "사용자 이름:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "암호:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "HTTP 프록시"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "SOCKS 프록시 서버를 통해 접속"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "SOCKS 프록시 서버 설정"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "SOCKS 프록시"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
 #, c-format
 msgid "%s - Select Computer"
 msgstr "%s - 컴퓨터 선택"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "호스트 이름:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
 #, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s - 웹 브라우저를 찾을 수 없음"
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
 #, c-format
 msgid ""
 "%s tried to display the web page\n"
@@ -1962,228 +1974,223 @@ msgstr ""
 "웹 브라우저의 경로를 가리키도록 설정 하고,\n"
 "%s을(를) 다시 시작 하십시오."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "게시판"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "SETI at home상의 다른 사용자와 게시판에서 이야기를 주고 받으세요"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "질문하기와 문제 보고"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "계정"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "계정 정보와 모든 크레딧을 볼 수 있습니다"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "설정"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr "SETI at home 계정 프로필과 환경 설정을 보고 수정할 수 있습니다"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "ê²°ê³¼"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr "지난 주 (혹은 그 이전)의 계산 결과 및 작업을 볼 수 있습니다"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "컴퓨터"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr "SETI at Home을 수행 중인 모든 컴퓨터 목록을 보여줍니다"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "팀"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "여러분이 속한 팀 정보를 보여줍니다"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "일반 질문"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "Einstein at Home FAQ목록을 읽습니다"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "화면보호기 정보"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "Einstein at Home 화면보호기에 대해서 보다 자세한 정보를 읽어봅니다"
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr "Einstein at Home 게시판에서 운영자 및 다른 사용자와 이야기를 주고 받으세요"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "Einstein 상태"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Einstein at Home서버의 현재 상태"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "문제점 보고"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr "Einstein at Home문제와 버그 리포트 게시판 링크"
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr "Einstein at Home 계정 프로필과 환경 설정을 보고 수정할 수 있습니다"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "계정 요약"
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr "Einstein at Home을 수행 중인 모든 컴퓨터 목록을 보여줍니다"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "LIGO 프로젝트"
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr "레이저 간섭계 중력파 관측소 (LIGO) 프로젝트 홈 페이지"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "GEO-600 프로젝트"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "GEO-600 프로젝트의 홈 페이지"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "팀"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "소속 팀에 대해서 알려줍니다"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "climateprediction.net을 위한 도움말"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "뉴스"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "climateprediction.net 뉴스"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr "계정 정보, 크레딧과 trickles을 보여줍니다"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "소속 팀에 대해서 알려줍니다"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr "도움말 시스템에서 도움말을 검색합니다"
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "세계 통계"
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "World Community Grid를 위한 통계 요약"
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr "내 그리드"
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "통계와 설정"
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr "장치 프로파일"
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr "장치 설정을 업데이트"
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr "연구"
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "World Community Grid가 주관하는 프로젝트를 알아봅니다"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr "클라이언트 서비스를 시작합니다; 잠시 기다려 주세요..."
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "시스템 상태를 검색 중 입니다; 잠시만 기다려 주세요..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "호스트 정보를 검색 중 입니다; 잠시만 기다려 주세요..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "인터넷 연결 없음"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "인터넷에 접속하고 다시 시도하세요."
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "프로젝트를 찾지 못했습니다"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2193,11 +2200,11 @@ msgstr ""
 "\n"
 "URL을 확인하시고 다시 시도해 주세요."
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "계정 관리자를 찾지 못했습니다"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2208,50 +2215,60 @@ msgstr ""
 "\n"
 "URL을 확인하시고 다시 시도해 주세요."
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr "로그인 실패."
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr "사용자 이름과 비밀번호를 확인하시고 다시 시도해 주세요."
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr "Email 주소와 비밀번호를 확인하시고, 다시 시도해 주세요."
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr "프로젝트를 선택하세요"
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr "프로젝트를 선택하려면 이를을 클릭하거나 하단에 URL을 입력하세요."
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "프로젝트 &URL:"
 
-#: clientgui/ProjectInfoPage.cpp:320
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr "이 프로젝트는 해당 컴퓨터에서 동작하지 않을 수도 있습니다. 계속하시겠습니까?"
+
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr "이미 이 프로젝트에 연결되어 있습니다. 다른 프로젝트를 선택해주세요."
 
-#: clientgui/ProjectInfoPage.cpp:321
-msgid "Already Attached to Project"
-msgstr "이미 프로젝트에 연결되어 있습니다"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr "Click"
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
-msgstr "이 프로젝트는 해당 컴퓨터에서 동작하지 않을 수도 있습니다."
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr "멀티코어 CPU 지원됨"
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-#, c-format
-msgid "Click here to go to %s's website."
-msgstr "여기를 누르면 %s 웹 사이트로 이동합니다"
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr "Nvidia GPU 지원됨"
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr "ATI GPU 지원됨"
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr "프로젝트 웹 사이트"
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
@@ -2259,7 +2276,7 @@ msgstr ""
 "프로젝트 서버와 통신하고 있습니다\n"
 "잠시 기다려 주세요..."
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
@@ -2267,11 +2284,12 @@ msgstr ""
 "대상 서버에서 필요한 마법사 파일이 빠졌습니다.\n"
 "(lookup_account.php/create_account.php)\n"
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "네트워크 통신 실패"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
+#, fuzzy
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2282,7 +2300,7 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
@@ -2301,7 +2319,7 @@ msgstr ""
 "3) 프록시 서버를 사용하고 계시다면\n"
 "다음을 눌러 BOINC 프록시 설정을 설정해주세요."
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2329,499 +2347,467 @@ msgstr ""
 "3) 프록시 서버를 사용하고 계시다면\n"
 "다음을 눌러 BOINC 프록시 설정을 설정해주세요."
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "프록시 설정"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "HTTP 프록시"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "서버:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "자동 감지"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "SOCKS 프록시"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr "고급 보기...\tCtrl+Shift+A"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr "고급 사용자(장애인용) 그래픽 인터페이스를 표시합니다."
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
 #, c-format
 msgid "&%s"
 msgstr "&%s"
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr "현재 상태를 복구중."
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr "어떤 프로젝트도 없습니다. 프로젝트를 추가해주세요."
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr "작업 유닛을 서버에서 다운로드하고 있습니다."
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr "작업 일시 정지: 컴퓨터가 배터리로 가동되고 있습니다."
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr "작업 일시 정지: 사용자가 활동을 시작했습니다."
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr "작업 일시 정지: 사용자가 작업을 중지시켰습니다."
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr "작업 일시 정지: 설정한 시간이 아닙니다."
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr "작업 일시 정지: 벤치마크를 실행하고 있습니다."
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr "작업이 일시 정지되었습니다."
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr "프로젝트 서버 접속을 기다리고 있습니다."
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr "현재 상태 복구중"
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr "수행가능한 작업이 없습니다"
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr "코어 클라이언트와 연결이 불가능합니다"
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "프로젝트"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "시간"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "메시지"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "모든 메시지를 클립보드에 복사"
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 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 ""
 "선택한 메세지를 클립보드로 복사합니다. 메세지를 클릭하는 동안 shift 키나 control 키를 눌러 여러 메세지를 선택할 수 있습니다"
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
 "클립보드에 선택한 메시지를 복사합니다. 메시지를 클릭하는 동안 Shift나 Control 키를 누른 상태에서 여러 메시지를 선택할 수 "
 "있습니다."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr "BOINC 도움말을 얻으세요"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
 #, c-format
 msgid "%s - Messages"
 msgstr "%s - 메시지"
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr "100 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr "200 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr "500 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr "1 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr "2 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr "5 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr "10 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr "20 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr "50 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr "100 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr "10%"
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr "20%"
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr "30%"
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr "40%"
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr "50%"
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr "60%"
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr "70%"
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr "80%"
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr "90%"
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr "100%"
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr "1"
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr "3"
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr "5"
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr "10"
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr "15"
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr "30"
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr "60"
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr "스킨"
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr "스킨:"
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr "환경 설정"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr "환경 설정을 이 컴퓨터에서만 변경하고 싶습니다."
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr "사용자 정의된 환경 설정"
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr "이 시간 사이에만 작업:"
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr "이 시간 사이에만 인터넷이 접속:"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr "최대 사용 한도:"
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr "디스크 공간"
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr "프로세서"
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr "배터리 가동 중에도 작업하시겠습니까?"
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr "이 시간 이상 대기 후 작업:"
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr "언제든"
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
 #, c-format
 msgid "%d MB"
 msgstr "%d MB"
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
 #, c-format
 msgid "%4.2f GB"
 msgstr "%4.2f GB"
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
 #, c-format
 msgid "%d%%"
 msgstr "%d%%"
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr "0 (항상 실행)"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
 #, c-format
 msgid "%d"
 msgstr "%d"
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr "중지: 다른 작업이 실행되고 있습니다"
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr "중지: 사용자가 요청했습니다. 계속하려면 '계속'을 누르세요."
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr "중지: 사용자가 활동합니다"
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr "중지: 컴퓨터가 배터리로 가동되고 있습니다"
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr "중지: 설정한 시간이 아닙니다"
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr "중지: 벤치마크를 실행하고 있습니다"
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr "중지됨"
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr "중지: 응용 프로그램 시작이 지연되었습니다"
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr "클릭하면 프로젝트 그래픽을 보여줍니다"
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr "부가적인 프로젝트를 연결"
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr "계정 관리자 시스템과 프로젝트를 동기화"
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr "메세지 창 열기"
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr "모든 활동 중지"
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr "활동 재개"
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr "환경 설정 창을 엽니다"
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr "BOINC 고급 보기로 전환합니다"
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr "내 프로젝트:"
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
 #, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr "%s. 작업 완료 %s: %0.2f"
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr "프로젝트 제거"
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
 #, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "정말로 프로젝트 '%s' 분리를 원하십니까?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "프로젝트에서 분리하기"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
 #, c-format
 msgid "%.1lf"
 msgstr "%.1lf"
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
 #, c-format
 msgid "%d hr %d min %d sec"
 msgstr "%d 시 %d 분 %d 초"
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr "정말로 원격 컴퓨터에서 그래픽 표시를 원하십니까?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "그래픽 보여주기"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
 msgstr "응용 프로그램"
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr "남은 시간:"
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
 msgstr "지난 시간:"
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr "사용 계약"
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr "다음 사용 계약을 읽어주세요:"
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr "사용 계약에 동의합니다."
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr "사용 계약에 동의하지 않습니다."
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "프로젝트가 일시적으로 불가능"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2831,11 +2817,11 @@ msgstr ""
 "\n"
 "나중에 다시 시도해주세요."
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "계정 관리자가 일시적으로 불가능"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2845,32 +2831,32 @@ msgstr ""
 "\n"
 "나중에 다시 시도해주세요."
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "계속하려면 계정 키를 정의해 주세요."
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr "잘못된 계정 키; 올바른 계정 키를 입력하세요"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "확인 충돌"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr "email 주소를 입력해 주세요"
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr "잘못된 이메일 주소입니다; 올바른 이메일 주소를 입력 하세요"
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "URL 없음"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2880,18 +2866,18 @@ msgstr ""
 "예를 들어:\n"
 "http://www.example.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "잘못된 URL"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2901,601 +2887,494 @@ msgstr ""
 "예를 들어:\n"
 "http://boincproject.example.com"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
 #, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "'%s'은(는) 유효한 호스트 이름을 포함하고 있지 않습니다."
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
 #, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "'%s'은(는) 유효한 경로를 포함하고 있지 않습니다."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "명령"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "모든 메시지 복사"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "선택한 메시지 복사"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr "이 프로젝만 보여주기"
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr "선택한 프로젝의 메세지만 보여줍니다."
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "메시지"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "모든 메시지를 클립보드에 복사 중..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 msgid "Copying selected messages to the clipboard..."
 msgstr "선택한 메시지를 클립보드로 복사하고 있습니다..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr "메세지를 걸러내고 있습니다..."
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 msgid "Show all messages"
 msgstr "모든 메시지 보여주기"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr "모든 프로젝트의 메세지를 보여줍니다."
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr "ID"
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr "우선 순위"
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr "메세지"
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr "선택한 메시지를 클립보드로 복사하고 있습니다..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr "알림"
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr "경고"
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr "오류"
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr "뉴스 피드"
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr "BOINC"
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr "BOINC와 관련된 최신 뉴스를 표시합니다"
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
 msgstr "BOINC 웹 사이트"
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr "BOINC 웹 사이트에서 BOINC와 관련된 최신 뉴스를 표시합니다"
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "업데이트"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr "모든 완료된 작업을 보고하고 마지막 크레딧과 환경 설정을 받아오며 가능하면 추가 작업을 받아옵니다."
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "일시 정지"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr "이 프로젝트 작업을 일시 정지 합니다."
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr "새 작업 금지"
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr "이 프로젝트의 새로운 작업을 받지 않습니다."
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "프로젝트 다시 설정"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 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 ""
 "이 프로젝트와 관련된 모든 작업과 파일들을 삭제하고 새 작업을 받아옵니다. 그 전에 먼저 완료된 작업을 보고하도록 업데이트할 수 "
 "있습니다."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "분리하기"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr "이 프로젝트를 컴퓨터로부터 분리합니다. 진행 중인 작업은 소실됩니다. (완료된 작업을 보고하려면 '업데이트'를 이용해 주세요)"
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr "속성"
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr "자세한 프로젝트 정보를 보여줍니다."
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "계정"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "완료된 작업"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr "평균 완료된 작업"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "상태"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "프로젝트"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "프로젝트 업데이트 중..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "프로젝트 다시 시작 중..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "프로젝트 일시 정지 중..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr "추가적인 작업 다운로드를 허용하도록 프로젝트에 알리는 중..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "프로젝트에게 추가 작업 수용 금지를 통보하고 있습니다..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "프로젝트 다시 설정 중..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
 #, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "정말로 프로젝트 '%s' 다시 설정을 원하십니까?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "프로젝트 다시 설정"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "프로젝트에서 분리하는 중..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "브라우저 시작 중..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "다시 시작"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "이 프로젝트를 재개합니다."
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "새 작업 허용"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr "이 프로젝트의 새 작업 수용을 허용합니다."
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "이 프로젝트의 새 작업을 수용하지 않습니다."
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "사용자에 의한 일시 정지"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "새 작업을 받지 않음"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr "프로젝트가 끝남 - 확인을 누르면 분리됩니다"
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr "작업 완료시 분리"
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "스케줄러 요청을 기다리고 있는 중"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr "스케쥴러 요청을 진행"
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "통신 연기됨 "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr "프로젝트"
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr "전체 디스크 사용량"
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr "BOINC 프로젝트가 사용하는 디스크 용량"
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "디스크"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr "어떤 BOINC 프로젝트도 연결되지 않았습니다 - 0 bytes"
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr "BOINC가 사용함:"
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr "빈, BOINC가 사용 가능:"
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr "빈, BOINC가 사용 불가능:"
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr "빈:"
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr "다른 프로그램이 사용 중:"
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "사용자 전체"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "사용자 평균"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "호스트 전체"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "호스트 평균"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
 #, c-format
 msgid "Last update: %.0f days ago"
 msgstr "마지막 업데이트: %.0f 일 전"
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "사용자 전체 보여주기"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr "사용자 전체 크레딧 보여주기"
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "사용자 평균 보여주기"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr "사용자 평균 크레딧 보여주기"
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "호스트 전체 보여주기"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr "전체 호스트 크레딧을 보여줍니다"
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "호스트 평균 보여주기"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr "호스트 별로 평균 크레딧을 보여줍니다"
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< 이전 프로젝트"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr "이전 프로젝트를 차트로 보여줍니다"
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "다음 프로젝트 >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr "다음 프로젝트를 차트로 보여줍니다"
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "모드 뷰"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "모든 프로젝트"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr "모든 프로젝트를 각각 하나의 차트로 보여줍니다"
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "한 프로젝트"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr "선택한 프로젝트를 차트로 보여줍니다"
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr "모든 프로젝트(합계)"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr "모든 프로젝트를 하나의 차트로 보여줍니다"
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "통계"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "차트 업데이트 중..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "지금 다시 시도"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "파일을 바로 전송하려면 '지금 다시 시도'를 클릭"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "전송 취소"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr "전송 큐에서 파일을 삭제하려면 '전송 중지'을 클릭하세요. 이것은 이 결과로 크레디트가 주어지는 것을 무효로 할 수 있습니다."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "파일"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "진행"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "크기"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "소요된 시간"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "속도"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "전송"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "현재 전송을 다시 시도 중..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "전송 취소 중..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
 #, c-format
 msgid ""
 "Are you sure you want to abort this file transfer '%s'?\n"
@@ -3506,34 +3385,42 @@ msgstr ""
 "주의: 전송 중지하기는 작업을 무효화하여 해당 작업에\n"
 "대한 크레디트를 받지 못하게 됩니다."
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "파일 전송 취소"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "다시 시도 "
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr "업로드를 기다리고 있는 중"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "다운로드를 기다리고 있는 중"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr " (프로젝트 전송 지연: "
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ")"
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr "전송"
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 msgid "Aborting transfer(s)..."
 msgstr "전송을 중지하고 있습니다..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
@@ -3543,75 +3430,79 @@ msgstr ""
 "참고: 전송을 중지하면 작업 인증이 되지 않으며\n"
 "크레딧을 받을 수 없습니다."
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 msgid "Abort File Transfer(s)"
 msgstr "파일 전송 중지"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr "활동 중인 테스크 보여주기"
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr "활동 중인 테스크만 보여줍니다."
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "창에서 애플리케이션 그래픽 보여주기"
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "이 결과에 대하여 작업을 일시 정지 합니다."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "취소"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr "이 결과에서 작업을 버립니다. 크래디트를 얻을 수 없게됩니다."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr "자세한 작업 정보를 보여줍니다."
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "이름"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr "경과 시간"
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "완료까지"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "ìž‘ì—…"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "작업 다시 시작 중..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "작업 일시 중지 중..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "작업 그래픽 보여주는 중..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "작업 중지 중..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
 #, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
@@ -3620,36 +3511,61 @@ msgstr ""
 "정말로 작업 '%s' 중지 할까요?\n"
 "(진행도: %s, 상태: %s)"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "정말로 작업 '%d'를(을) 중단하겠습니까?"
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "작업 중지"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "작업 중지 중..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr "모든 테스크 보여주기"
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr "모든 테스크를 보여줍니다."
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr "이 작업을 다시 시작"
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr "이 작업을 일시 중지"
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr "GPU 탐지 실패,"
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr " - 독점 프로그램이 실행 중"
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr "(CPU 비 집약적)"
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr "취소됨: 마감 기한이 지났습니다"
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr "ìž‘ì—…"
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
 #, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
@@ -3658,12 +3574,11 @@ msgstr ""
 "정말로 '%s' 작업을 중지하시겠습니까?\n"
 "(진행: %s, 상태: %s)"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
-msgstr "World Community Grid 연구 응용 프로그램을 바꿉니다"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr "계정 관리자 혹은 프로젝트에 연결합니다"
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
 #, c-format
 msgid ""
 "If possible, add projects at the\n"
@@ -3678,15 +3593,15 @@ msgstr ""
 "이 마법사 목록에서 제공하지 않거나\n"
 "%s를 통해 관리되는 프로젝트가 추가되었습니다."
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
 msgstr ""
-"지금부터 프로젝트를 연결하는 방법을 진행하면서\n"
-"알려드리겠습니다."
+"지금부터 프로젝트 혹은 계정 관리자에 연결하는 방법을\n"
+"진행하면서 알려드리겠습니다."
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3714,143 +3629,138 @@ msgstr ""
 "World Community Grid에서 여러분에게 전송해 줄 연구 응용\n"
 "프로그램을 바꿀려면 다음에 나오는 버튼을 누르십시오:"
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-#, c-format
-msgid "&Stop using%s"
-msgstr "%s 사용 중지 "
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-"지금 %s를 이 컴퓨터에서 제거합니다. 지금부터\n"
-"이 컴퓨터에서 직접 프로젝트를 연결하고 분리합니다.\n"
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "계정 관리자"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"여러분에게 계정 관리자를 연결하는 방법을\n"
-" 진행하면서 알려드리겠습니다.\n"
-"\n"
-"만약 하나의 프로젝트를 첨부하실려면 취소를 누르시고,\n"
-"대신에 '프로젝트 연결' 메뉴 항목을 선택하세요."
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "디버그 플래그"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "프로젝트 속성 실패"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr "프로젝트 서버와 통신 실패"
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "프로젝트 속성 URL 실패"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "계정 생성 불가"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "클라이언트 계정 생성 불가"
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "계정이 이미 존재합니다"
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "프로젝트가 이미 연결됨"
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "프로젝트 연결 실패"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
-msgstr "표준 사이트와 통신 실패"
-
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "네트워크 발견 실패"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr "World Community Grid 연구 응용 프로그램을 바꿉니다"
 
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "계속하려면, 다음을 누르세요."
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "정말 취소할까요?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "질문"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "다음 >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< 뒤로"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "완료"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
 #, c-format
 msgid "New page inserted. Index = %i"
 msgstr "새 페이지 삽입됨. Index = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
 #, c-format
 msgid "New page appended. Index = %i"
 msgstr "새 페이지 첨부됨. Index = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
 #, c-format
 msgid "Old Page Index = %i"
 msgstr "Old Page Index = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
 #, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr "OnDropTarget: index by HitTest = %i"
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr "Pie Ctrl"
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr "장애인 지원을 위해서는 보기 메뉴에서 고급 보기를 선택하거나 shift a를 입력하세요"
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr "이 패널은 해당 프로젝트의 전체 사용자를 보여주는 그래프를 포함합니다"
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr "공백"
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr "목록"
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr " 가 없습니다"
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr "%d %d "
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr "현재 정렬 컬럼"
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr " 내림차순 정렬"
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr " 오름차순 정렬"
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr "컬럼"
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr "목록이 비었습니다"
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr "선택됨"
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr "줄 %d"
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr "%d "
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr "컬럼 %d"
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr "계정 관리자 혹은 프로젝트 목록"
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr "줄 %d %d"
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr "작업 시작 및 중지 시간을 HH:MM-HH:MM 형식대로 입력해 주세요"
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr "네트워크 사용 시작 및 중지 시간을 HH:MM-HH:MM 형식대로 입력해 주세요"
diff --git a/locale/ko/BOINC-Web.po b/locale/ko/BOINC-Web.po
index 8de8829..83f15be 100644
--- a/locale/ko/BOINC-Web.po
+++ b/locale/ko/BOINC-Web.po
@@ -11,12 +11,12 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Translate Toolkit 1.2.1\n"
 "X-Poedit-Language: Korean\n"
+"X-Poedit-SearchPath-0: doc\n"
 "X-Poedit-SourceCharset: utf-8\n"
 "X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: KOREA, REPUBLIC OF\n"
 "X-Poedit-KeywordsList: tra\n"
-"X-Poedit-SearchPath-0: doc\n"
 
 #: poll.inc:18
 msgid "[check all that apply]"
@@ -194,8 +194,7 @@ msgstr "친구, 친인척, 또는 직장동료로부터"
 msgid "Team message boards or web sites"
 msgstr "팀 게시판 또는 웹 사이트"
 
-#: poll_data.inc:154
-#: poll_data.inc:210
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr "BOINC 웹 사이트"
 
@@ -204,7 +203,9 @@ msgid "Other web sites"
 msgstr "다른 웹 사이트들"
 
 #: poll_data.inc:161
-msgid "Which are the most important factors when you decide whether to participate in a BOINC project?"
+msgid ""
+"Which are the most important factors when you decide whether to participate "
+"in a BOINC project?"
 msgstr "여러분이 BOINC 프로젝트 참여를 결정하는데 있어서 가장 중요한 요소는 무엇이었습니까?"
 
 #: poll_data.inc:163
@@ -284,7 +285,9 @@ msgid "None"
 msgstr "없음"
 
 #: poll_data.inc:206
-msgid "Where do you get information to help resolve problems with BOINC and/or BOINC projects?"
+msgid ""
+"Where do you get information to help resolve problems with BOINC and/or "
+"BOINC projects?"
 msgstr "귀하는 BOINC나 BOINC 프로젝트에서 생긴 문제를 해결하기 위해 필요한 정보를 어디서 구하십니까? "
 
 #: poll_data.inc:208
@@ -313,7 +316,6 @@ msgstr "구글 혹은 다른 검색 엔진"
 
 # #######################################
 # download.php
-# #######################################
 #: download.php:40
 msgid "Download BOINC"
 msgstr "BOINC 다운로드"
@@ -324,13 +326,24 @@ msgid "%s for %s (%s MB)"
 msgstr "%s버전 %s용 (%s MB)"
 
 #: download.php:89
-msgid "BOINC is a program that lets you donate your idle computer time to science projects like SETI at home, Climateprediction.net, Rosetta at home, World Community Grid, and many others. <p> After installing BOINC on your computer, you can connect it to as many of these projects as you like."
-msgstr "BOINC는 SETI at home, Climateprediction.net, Rosetta at home, World Community Grid 그리고 다른 많은 과학 프로젝트들에게 여러분의 컴퓨터 대기 시간을 기여하도록 하는 프로그램입니다. <p> BOINC를 여러분 컴퓨터에 설치한 후 여러분의 취향에 따라서 이런 다양한 프로젝트에 접속하실 수 있습니다."
+msgid ""
+"BOINC is a program that lets you donate your idle computer time to science "
+"projects like SETI at home, Climateprediction.net, Rosetta at home, World "
+"Community Grid, and many others. <p> After installing BOINC on your "
+"computer, you can connect it to as many of these projects as you like."
+msgstr ""
+"BOINC는 SETI at home, Climateprediction.net, Rosetta at home, World Community Grid "
+"그리고 다른 많은 과학 프로젝트들에게 여러분의 컴퓨터 대기 시간을 기여하도록 하는 프로그램입니다. <p> BOINC를 여러분 컴퓨터에 "
+"설치한 후 여러분의 취향에 따라서 이런 다양한 프로젝트에 접속하실 수 있습니다."
 
 #: download.php:114
 #, php-format
-msgid "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit (GPU), you may be able to %suse it to compute faster%s"
-msgstr "참고: 만약 여러분 컴퓨터에 NVIDIA 그래픽 처리 유닛(GPU)가 장착되어 있으면 %s그 것을 이용해서 계산을 더 빠르게 할 수 있습니다%s"
+msgid ""
+"Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
+"(GPU), you may be able to %suse it to compute faster%s"
+msgstr ""
+"참고: 만약 여러분 컴퓨터에 NVIDIA 그래픽 처리 유닛(GPU)가 장착되어 있으면 %s그 것을 이용해서 계산을 더 빠르게 할 수 "
+"있습니다%s"
 
 #: download.php:120
 msgid "System requirements"
@@ -340,8 +353,7 @@ msgstr "시스템 요구 사항"
 msgid "Release notes"
 msgstr "릴리즈 노트"
 
-#: download.php:122
-#: index.php:89
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr "도움말"
 
@@ -355,20 +367,41 @@ msgstr "BOINC: 과학을 위한 컴퓨팅"
 
 #: 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 "BOINC 온라인 도움말은 경험많은 BOINC 사용자와 1:1대화를 하도록 합니다 대상: %s는 BOINC와 기여자 컴퓨팅에 대해서 답합니다. %s는 BOINC 설치 진행 및 사용을 도와드릴 것입니다. %s는 여러분이 겪는 각종 문제를 해결해 드릴 것입니다."
+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 ""
+"BOINC 온라인 도움말은 경험많은 BOINC 사용자와 1:1대화를 하도록 합니다 대상: %s는 BOINC와 기여자 컴퓨팅에 대해서 "
+"답합니다. %s는 BOINC 설치 진행 및 사용을 도와드릴 것입니다. %s는 여러분이 겪는 각종 문제를 해결해 드릴 것입니다."
 
 #: 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 "BOINC 온라인 도움말은 인터넷 전화인 %sSkype%s에 기반을 두고 있습니다. Skype는 소프트웨어와 전화 모두 무료입니다. 아직 Skype를 사용하고 계시지 않았다면, %s지금 다운로드하고 설치하십시오%s. 완료되면 이 페이지로 돌아오십시오."
+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 ""
+"BOINC 온라인 도움말은 인터넷 전화인 %sSkype%s에 기반을 두고 있습니다. Skype는 소프트웨어와 전화 모두 무료입니다. 아직 "
+"Skype를 사용하고 계시지 않았다면, %s지금 다운로드하고 설치하십시오%s. 완료되면 이 페이지로 돌아오십시오."
 
 #: 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 "도움을 구하는 가장 좋은 방법은 목소리입니다. 이를 위해서 여러분 컴퓨터에는 마이크와 스피커 또는 외부 헤드셋이 필요합니다. 여러분은 또한 도우미 기여자들과 Skype 텍스트 기반 대화 시스템이나 일반적인 email (만약 Skype를 쓰지 않을 경우)로 대화를 주고받을 수 있습니다. "
+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 ""
+"도움을 구하는 가장 좋은 방법은 목소리입니다. 이를 위해서 여러분 컴퓨터에는 마이크와 스피커 또는 외부 헤드셋이 필요합니다. 여러분은 "
+"또한 도우미 기여자들과 Skype 텍스트 기반 대화 시스템이나 일반적인 email (만약 Skype를 쓰지 않을 경우)로 대화를 주고받을 "
+"수 있습니다. "
 
 #: help.php:31
-msgid "Volunteers speaking several languages are available. Please select a language:"
+msgid ""
+"Volunteers speaking several languages are available. Please select a "
+"language:"
 msgstr "기여자들은 몇가지 언어로 얘기하는 게 가능합니다. 언어를 선택해 주세요:"
 
 #: help.php:47
@@ -377,12 +410,18 @@ 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 "만약 여러분이 경험많은 BOINC 사용자라면, 우리는 여러분이 %s도우미 기여자%s가 되길 장려합니다. 그 것은 과학적 연구와 기여자 컴퓨팅을 돕는 위대한 방법입니다 - 그리고 그 것을 즐기세요!"
+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 ""
+"만약 여러분이 경험많은 BOINC 사용자라면, 우리는 여러분이 %s도우미 기여자%s가 되길 장려합니다. 그 것은 과학적 연구와 기여자 "
+"컴퓨팅을 돕는 위대한 방법입니다 - 그리고 그 것을 즐기세요!"
 
 #: help.php:56
 #, php-format
-msgid "If you're already a Help Volunteer: to edit your settings, %sclick here%s."
+msgid ""
+"If you're already a Help Volunteer: to edit your settings, %sclick here%s."
 msgstr "여러분이 이미 도우미 기여자일 경우: 설정을 바꾸실려면 %s여기를 누르십시오%s."
 
 #: index.php:23
@@ -436,26 +475,33 @@ msgstr "기여자"
 
 # #######################################
 # download.php
-# #######################################
 #: index.php:88
 msgid "Download"
 msgstr "다운로드"
 
-#: index.php:90
-#: index.php:125
-#: index.php:163
+#: index.php:90 index.php:125 index.php:163
 msgid "Documentation"
 msgstr "문서"
 
 #: index.php:96
 #, php-format
-msgid " Use the idle time on your computer (Windows, Mac, or Linux) to cure diseases, study global warming, discover pulsars, and do many other types of scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %sDownload%s and run BOINC software  %sEnter%s an email address and password. "
-msgstr "질병 치료, 지구 온난화 연구, 펄서 발견 그리고 또 다른 종류의 과학연구를 위해 여러분 컴퓨터(윈도우, 맥, 리눅스)의 대기 시간을 사용하십시오. 이 것은 안전하고 보안이 철저하며 쉽습니다;  %s프로젝트%s를 선택하십시오 %sBOINC 소프트웨어%s를 다운로드받고 실행하십시오 %semail 주소와 비밀번호를 입력%s하십시오."
+msgid ""
+" Use the idle time on your computer (Windows, Mac, or Linux) to cure "
+"diseases, study global warming, discover pulsars, and do many other types of "
+"scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %"
+"sDownload%s and run BOINC software  %sEnter%s an email address and password. "
+msgstr ""
+"질병 치료, 지구 온난화 연구, 펄서 발견 그리고 또 다른 종류의 과학연구를 위해 여러분 컴퓨터(윈도우, 맥, 리눅스)의 대기 시간을 "
+"사용하십시오. 이 것은 안전하고 보안이 철저하며 쉽습니다;  %s프로젝트%s를 선택하십시오 %sBOINC 소프트웨어%s를 다운로드받고 "
+"실행하십시오 %semail 주소와 비밀번호를 입력%s하십시오."
 
 #: index.php:107
 #, php-format
-msgid "Or, if you run several projects, try an %saccount manager%s such as %sGridRepublic%s or %sBAM!%s. "
-msgstr "혹시 여러 개의 프로젝트를 수행하고 계시다면 %s계정 관리자%s(%sGridRepublic%s이나 %sBAM!%s등)를 사용해 보십시오."
+msgid ""
+"Or, if you run several projects, try an %saccount manager%s such as %"
+"sGridRepublic%s or %sBAM!%s. "
+msgstr ""
+"혹시 여러 개의 프로젝트를 수행하고 계시다면 %s계정 관리자%s(%sGridRepublic%s이나 %sBAM!%s등)를 사용해 보십시오."
 
 #: index.php:123
 msgid "Compute with BOINC"
@@ -527,7 +573,8 @@ msgstr "브라우저 기본 설정"
 
 #: index.php:250
 #, php-format
-msgid "Open-source software for %svolunteer computing%s and %sgrid computing%s."
+msgid ""
+"Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr "%s기여자 컴퓨팅%s과 %s그리드 컴퓨팅%s을 위한 오픈 소스 소프트웨어"
 
 #: poll.php:9
@@ -535,8 +582,22 @@ msgid "BOINC user survey"
 msgstr "BOINC 사용자 설문조사"
 
 #: poll.php:19
-msgid "Several volunteer computing projects, including Climateprediction.net, Einstein at home, and SETI at home, use software called BOINC.  If you participate in projects like this, we request that you answer the following questions.  This will help BOINC-based projects increase participation and achieve greater scientific results. <p> Please answer as many questions as you want, then go to the bottom and click OK. If you previously completed the survey but your answers have changed, please complete it again - your new answers will replace the old ones. <p> The current results of the survey are <a href=poll_results.php>here</a>. "
-msgstr "Climateprediction.net, Einstein at home, SETI at home을 포함한, 몇몇의 기여자 컴퓨팅 프로젝트는 BOINC 소프트웨어를 사용합니다. 만약 이러한 프로젝트에 참여하고 있다면, 우리는 다음 질문의 대답을 듣고자 합니다. 이 것은 BOINC-기반 프로젝트의 참여자 증가 및 위대한 과학적 결과를 달성하는데 도움이 될 것입니다. 여러분이 원하는 만큼 많은 질문에 답을 한 뒤, OK 버튼을 누르십시오. 만약 전에 설문 조사를 완료했지만 답을 바꾸고 싶으시다면, 다시 작성해 주세요 - 기존 답은 새로운 답으로 교체됩니다. 현재 설문 조사 결과는 <a href=poll_results.php>여기</a>에 있습니다."
+msgid ""
+"Several volunteer computing projects, including Climateprediction.net, "
+"Einstein at home, and SETI at home, use software called BOINC.  If you participate "
+"in projects like this, we request that you answer the following questions.  "
+"This will help BOINC-based projects increase participation and achieve "
+"greater scientific results. <p> Please answer as many questions as you want, "
+"then go to the bottom and click OK. If you previously completed the survey "
+"but your answers have changed, please complete it again - your new answers "
+"will replace the old ones. <p> The current results of the survey are <a "
+"href=poll_results.php>here</a>. "
+msgstr ""
+"Climateprediction.net, Einstein at home, SETI at home을 포함한, 몇몇의 기여자 컴퓨팅 프로젝트는 "
+"BOINC 소프트웨어를 사용합니다. 만약 이러한 프로젝트에 참여하고 있다면, 우리는 다음 질문의 대답을 듣고자 합니다. 이 것은 "
+"BOINC-기반 프로젝트의 참여자 증가 및 위대한 과학적 결과를 달성하는데 도움이 될 것입니다. 여러분이 원하는 만큼 많은 질문에 답을 "
+"한 뒤, OK 버튼을 누르십시오. 만약 전에 설문 조사를 완료했지만 답을 바꾸고 싶으시다면, 다시 작성해 주세요 - 기존 답은 새로운 "
+"답으로 교체됩니다. 현재 설문 조사 결과는 <a href=poll_results.php>여기</a>에 있습니다."
 
 #: poll.php:25
 msgid "Do you run BOINC?"
@@ -563,7 +624,9 @@ msgid "Comments"
 msgstr "코멘트"
 
 #: poll.php:46
-msgid "Please suggest ways that BOINC, and the projects that use it, could be improved:"
+msgid ""
+"Please suggest ways that BOINC, and the projects that use it, could be "
+"improved:"
 msgstr "BOINC와 BOINC를 사용하는 프로젝트를 보다 향상시킬 수 있는 제안을 해주십시오:"
 
 #: poll.php:50
@@ -575,7 +638,9 @@ msgid "Error - results not recorded"
 msgstr "오류 - 결과가 기록되지 않았습니다"
 
 #: poll_action.php:10
-msgid "An internal error has prevented us from recording your survey response.  Please try again later."
+msgid ""
+"An internal error has prevented us from recording your survey response.  "
+"Please try again later."
 msgstr "내부 오류로 귀하의 설문조사 응답을 기록하는데 지장이 있습니다.  나중에 다시 시도해 주세요."
 
 #: poll_action.php:32
@@ -591,6 +656,7 @@ msgid "Survey results"
 msgstr "설문 조사 결과"
 
 #: poll_results.php:196
-msgid "These are the current results of the <a href=poll.php>BOINC user survey</a>.  This page is updated every hour."
+msgid ""
+"These are the current results of the <a href=poll.php>BOINC user survey</"
+"a>.  This page is updated every hour."
 msgstr "현재 <a href=poll.php>BOINC 사용자 설문 조사</a> 결과입니다.  이 페이지는 매시간 업데이트됩니다."
-
diff --git a/locale/ko/pootle-boincclient610-ko.prefs b/locale/ko/pootle-boincclient610-ko.prefs
new file mode 100644
index 0000000..93eab0a
--- /dev/null
+++ b/locale/ko/pootle-boincclient610-ko.prefs
@@ -0,0 +1,12 @@
+# Pootle preferences for project boinctrunk, language ko
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  josesun = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  treppolse = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  noturn234 = u'view, suggest, translate, overwrite, review, archive, pocompile, commit'
+goals:
+  'Web page':
+    files = u'BOINC-Project-Customized.po, BOINC-Project-Generic.po, BOINC-Web.po'
diff --git a/locale/ko/pootle-boinctrunk-ko.prefs b/locale/ko/pootle-boinctrunk-ko.prefs
deleted file mode 100644
index 3b0f233..0000000
--- a/locale/ko/pootle-boinctrunk-ko.prefs
+++ /dev/null
@@ -1,12 +0,0 @@
-# Pootle preferences for project boinctrunk, language ko
-
-rights:
-  default = u'view, suggest, archive, pocompile'
-  nobody = u'view'
-  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  josesun = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  treppolse = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  noturn234 = u'view, suggest, translate, overwrite, review, archive, pocompile, commit'
-goals:
-  'Web page':
-    files = u'BOINC-Project-Customized.po, BOINC-Project-Generic.po, BOINC-Web.po'
diff --git a/locale/lt/BOINC-Manager.mo b/locale/lt/BOINC-Manager.mo
index f75d7a8..92f69d6 100644
Binary files a/locale/lt/BOINC-Manager.mo and b/locale/lt/BOINC-Manager.mo differ
diff --git a/locale/lt/BOINC-Manager.po b/locale/lt/BOINC-Manager.po
index 02839af..e8b8a72 100644
--- a/locale/lt/BOINC-Manager.po
+++ b/locale/lt/BOINC-Manager.po
@@ -1,14 +1,14 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 4.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
 "PO-Revision-Date: 2009-05-04 12:32-0700\n"
 "Last-Translator: Rytis Slatkevičius <rytis.s at gmail.com>\n"
 "Language-Team: BOINC Development Team <rwalton at ssl.berkeley.edu>\n"
 "Language: lt\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
 "(n%100<10 || n%100>=20) ? 1 : 2);\n"
@@ -16,15 +16,15 @@ msgstr ""
 "X-Poedit-Language: English\n"
 "X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: iso-8859-1\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: UNITED STATES\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "Vartotojo informacija"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
@@ -32,7 +32,7 @@ msgstr ""
 "Įveskite vartotojo informaciją\n"
 "(norÄ—dami prisiregistruoti, apsilankykite projekto tinklapyje)"
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
@@ -40,417 +40,481 @@ msgstr ""
 "Šis projektas neleidžia registruotis naujiems dalyviams.\n"
 "Galite prisijungti, tik jei jau esate užsiregistravęs."
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "Ar jau dalyvaujate Å¡iame projekte?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "&Ne, naujas dalyvis"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "&Taip, esu dalyvis"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "Slaptažodis:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "Pasirinkite slaptažodį:"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "Pakartokite slaptažodį:"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr "Ar jau dalyvaujate %s?"
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr "&Vartotojo vardas:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "El. pašto adresas:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr "minimalus ilgis %d"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr "Pamiršote slaptažodį?"
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "Prisijungti prie projekto"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "Susisiekti su abonemento valdikliu"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "Prisijungti prie abonemento valdiklio"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr ""
 "Mažiausias slaptažodžio ilgis šiame projekte yra %d. Prašome pasirinkti kitą "
 "slaptažodį."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
 "Mažiausias slaptažodžio ilgis šiame abonemento valdiklyje yra %d. Prašome "
 "pasirinkti kitą slaptažodį."
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr "Nesutampa įvesti slaptažodžiai. Prašome juos įvesti dar kartą."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "Abonemento valdiklio tinklapis"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Įveskite abonemento valdiklio tinklapio adresą."
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "Abonemento valdiklio tinklapio adresas:"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr "Jungiamasi prie %s."
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr "Jungiamasi prie serverio."
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "Prašome palaukti..."
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr "VidinÄ— serverio klaida.\n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Prisijungta"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Atsijungta"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "&Uždaryti langą\tCtrl+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "Uždaryti BOINC valdiklio langą."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
-msgstr "Išeiti iš %s"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "IÅ¡eiti"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
 msgstr ""
-"Pažengusiųjų režime galima rūšiuoti informaciją pagal įvairius stulpelius ir "
-"matomas grafinis būsenos atvaizdavimas."
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
-msgstr "&Supaprastinas režimas...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "Parodyti supaprastintÄ… BOINC vartotojo sÄ…sajÄ…."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "Prisijungti prie &projekto..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "Prisijungti prie projekto"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "Prisijungti prie &abonemento valdiklio..."
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Prisijungti prie abonemento valdiklio"
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:371
+#, fuzzy
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "&Supaprastinas režimas...\tCTRL+SHIFT+S"
+
+#: clientgui/AdvancedFrame.cpp:372
+#, fuzzy
+msgid "Display the simple graphical interface."
+msgstr "Parodyti supaprastintÄ… BOINC vartotojo sÄ…sajÄ…."
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr "&Sinchronizuoti su %s"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr "Gauti naujausius nustatymus iš %s"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "Prisijungti prie &projekto..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Prisijungite prie projekto ir pradÄ—kite apdoroti darbÄ…"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "Nustoti naudoti %s..."
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Nebenaudoti abonemento valdiklio Å¡iame kliente."
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "Veikti visada"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr "Darbas vykdomas nepaisant nustatymų"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "Veikti pagal nustatymus"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "Darbas vykdomas pagal nustatymus"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "&Sustabdyti"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr "Darbas sustabdomas nepaisant nustatymų"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+#, fuzzy
+msgid "Allow GPU work regardless of preferences"
+msgstr "Darbas vykdomas nepaisant nustatymų"
+
+#: clientgui/AdvancedFrame.cpp:473
+#, fuzzy
+msgid "Use GPU based on &preferences"
+msgstr "Veikti pagal nustatymus"
+
+#: clientgui/AdvancedFrame.cpp:474
+#, fuzzy
+msgid "Allow GPU work according to your preferences"
+msgstr "Darbas vykdomas pagal nustatymus"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+#, fuzzy
+msgid "Stop GPU work regardless of preferences"
+msgstr "Darbas sustabdomas nepaisant nustatymų"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "Veiksmai tinkle bet kada"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr "Veiksmai tinkle galimi nepaisant nustatymų"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+#, fuzzy
+msgid "Network activity based on pre&ferences"
 msgstr "Veiksmai tinkle pagal nustatymus"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr "Veiksmai tinkle vykdomi pagal nustatymus"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+#, fuzzy
+msgid "Network activity s&uspended"
 msgstr "Veiksmai tikle sustabdyti"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr "Veiksmai tinkle negalimi"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "&Nustatymai..."
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "Vartotojo sÄ…sajos ir tarpinio serverio nustatymai"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "&Vietiniai nustatymai..."
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr "Pakeisti vietinius nustatymus"
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
 msgid "Connect to another computer running %s"
 msgstr "Prisijungti prie kito kompiuterio, kuriame veikia %s"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "Pasirinkti kompiuterį..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr "Išjungti prisijungusį klientą..."
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr "Išjungti šiuo metu prisijungusį pagrindinį klientą"
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "Matuoti sistemos greitį"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "Matuoja sistemos procesoraus darbo našumą"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr "Atlikti susijungimus tinkle"
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr "Atlikti visus laukiančius susijungimus tinkle."
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr "Nuskaityti nustatymų bylą"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr "Nuskaityti nustatymus iš cc_config.xml."
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "Nuskaityti vietinių nustatymų bylą"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr "Nuskaityti nustatymus iš global_prefs_override.xml."
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr "Nustoti naudoti %s..."
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "Nebenaudoti abonemento valdiklio Å¡iame kliente."
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "Prisijungti prie &projekto"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "Prisijungite prie projekto ir pradÄ—kite apdoroti darbÄ…"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
 msgstr "%s &pagalba"
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
 msgid "Show information about %s"
 msgstr "Rodyti informacijÄ… apie %s"
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr "&%s pagalba"
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr "Rodyti informacijÄ… apie %s"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr "%s &tinklapis"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
 msgid "Show information about BOINC and %s"
 msgstr "Rodyti informacijÄ… apie BOINC ir %s"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr "&Apie %s..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "Licensijų ir autorinių teisių informacija."
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "&Byla"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "&Režimas"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "&Įrankiai"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "&Veikla"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "&Papildomi"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "&Pagalba"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr "%s - išjungti prisijungusį klientą..."
-
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
 msgstr ""
-"%s išjungs šiuo metu prisijungusį klientą\n"
-"ir pasiūlys prisijungti prie kito kompiuterio.\n"
 
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr "%s - atsijungti nuo %s"
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -464,57 +528,66 @@ msgstr ""
 "\n"
 "Ar tikrai norite atsijungti nuo %s?"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "Prisijungiama prie projekto..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "Bandoma susisiekti su projektu(-ais)..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr "%s - kalbos pasirinkimas"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr ""
 "%s aptiko pasirinktos kalbos pakeitimą. %s turi būti paleistas iš naujo, kad "
 "įsigaliotų kalbos pakeitimas."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - išjungti prisijungusį klientą..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s išjungs šiuo metu prisijungusį klientą\n"
+"ir pasiūlys prisijungti prie kito kompiuterio.\n"
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Bandoma susisiekti su projektu(-ais)..."
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr "%s sÄ—kmingai prisijungÄ— prie %s"
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "Jungiamasi prie %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
 msgid "Connected to %s (%s)"
 msgstr "Prisijungta prie %s (%s)"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "Å is vartotojo vardas jau yra naudojamas"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -527,11 +600,11 @@ msgstr ""
 "Prašome apsilankyti projekto tinklapyje ir veikti pagal ten\n"
 "nurodytas instrukcijas."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "Šis el. pašto adresas jau yra naudojamas"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -544,16 +617,30 @@ msgstr ""
 "Prašome apsilankyti projekto tinklapyje ir veikti pagal ten\n"
 "nurodytas instrukcijas."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr "Jungiamasi prie BOINC kliento. Prašome palaukti..."
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "Atšaukti"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr "%s - ryšio klaida"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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."
@@ -562,7 +649,7 @@ msgstr ""
 "Susisiekite su savo administratoriumi, kad jis pridėtų jus į \"boinc_users\" "
 "vartotojų grupę."
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
@@ -571,21 +658,21 @@ msgstr ""
 "Įsitikinkite, kad bandote paleisti šią programą tame pačiame kataloge, kaip "
 "ir klientas."
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr "Nepavyko prisijungti prie veikiančio kliento."
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "Slaptažodis yra neteisingas, bandykite dar kartą."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - susijungimas nepavyko"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
@@ -593,32 +680,32 @@ msgstr ""
 "%s negali prisijungti prie %s kliento.\n"
 "Ar norite dar kartÄ… bandyti prisijungti?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr "%s - susijungimo būklė"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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"
@@ -630,24 +717,21 @@ msgstr ""
 "NorÄ—dami prisijungti prie vietinio kompiuterio, kaip kompiuterio vardÄ… "
 "įrašykite \"localhost\"."
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Tinklapiai"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr "%s - tinklo būsena"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr "%s reikia prisijungti prie interneto. SpustelÄ—kite, kad atidaryti %s."
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
 #, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
@@ -657,8 +741,8 @@ msgstr ""
 "Prisijunkite prie interneto ir paspauskite \"Atlikti susijungimus tinkle\" "
 "meniu punkte \"Papildomi\"."
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
@@ -666,13 +750,13 @@ msgstr ""
 "%s reikia prisijungti prie interneto.\n"
 "Ar galima tai daryti dabar?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s jungiasi prie interneto."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
 "Please connect to the Internet, or select a default connection\n"
@@ -683,18 +767,18 @@ msgstr ""
 "Prašome prisijungti prie interneto arba pasirinkti numatytą interneto jungtį\n"
 "meniu Papildomi->Parinktys->Susijungimai."
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s sÄ—kmingai prisijungÄ— prie interneto."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "%s negali prisijungti prie interneto."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
@@ -702,17 +786,36 @@ msgstr ""
 "%s aptiko prisijungimÄ… prie interneto.\n"
 "Atnaujinami projektai ir duomenų siuntimas."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s sÄ—kmingai atsijungÄ— nuo interneto."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s nepavyko atsijungti nuo interneto."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
@@ -720,102 +823,113 @@ msgstr ""
 "Kad BOINC veiktų teisingai, būtina perkrauti sistemą.\n"
 "Perkraukite kompiuterį ir pamėginkite dar kartą."
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "BOINC valdiklis"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr "BOINC valdiklis buvo automatiškai paleistas operacinės sistemos"
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr "Paleisti BOINC tik su matoma piktograma sistemos dÄ—kle"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr "Paleisti BOINC su Å¡iais parametrais"
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr "atjungti BOINC saugumo vartotojus ir įgaliojimus"
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 "įjungti apvalkalų derinimo režimą, kad būtų įjungti apvalkalų valdiklio "
 "klaidų pranešimai"
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Automatinis aptikimas)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Nežinoma)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Vartotojo nustatyta)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr "Skaičiavimai sustabdyti."
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr "Veiksmai tinkle sustabdyti."
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr "%s: %.2f%% atlikta."
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr "Vykdoma užduočių: %d."
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr "IÅ¡ naujo prisijungiama prie kliento."
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr "Neprisijungta prie kliento."
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr "Atidaryti %s tinklapį..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr "Atidaryti %s..."
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "Sustabdyti trumpam"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "Nepavyko prisijungti prie projekto"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr "Nepavyko atnaujinti abonemento valdiklio"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr "Nepavyko atsijungti nuo abonemento valdiklio"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "Nepavyko prisijungti prie abonemento valdiklio"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -826,27 +940,26 @@ msgstr ""
 "\n"
 "Norėdami uždaryti, spauskite \"Baigta\"."
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "Norėdami uždaryti spauskite \"Baigti\"."
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "Pranešimai iš serverio:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "Prisijungta prie projekto"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "JÅ«s sÄ—kmingai prisijungÄ—te prie Å¡io projekto."
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -854,121 +967,111 @@ msgstr ""
 "Kai paspausite \"Baigti\", interneto naršyklė atvers tinklapį, kuriame\n"
 "galÄ—site nustatyti abonemento pavadinimÄ… ir nustatymus."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr "Atnaujinimas iš %s baigas."
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "Atnaujinimas baigtas."
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr "Pašalinimas iš %s baigtas."
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "Pašalinimas pavyko!"
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr "Prisijungta prie %s"
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "Prisijungta prie abonemento valdiklio"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
 msgstr "Prisijungta prie %s!"
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
 #, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "SÄ—kmingai prisijungÄ—te prie %s sistemos."
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "SÄ—kmingai prisijungÄ—te prie abonemento valdiklio."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr "Apie %s"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "Versija:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr "wxWidgets versija:"
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Copyright:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
+#, fuzzy
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
 "(C) 2003-2009 University of California, Berkeley.\n"
 "Visos teisÄ—s saugomos."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr "Berkeley Open Infrastructure for Network Computing"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "&Gerai"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr "neteisingas skaičius su kableliu"
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr "neteisingas laikas, formatas yra VV:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr "neteisingas laiko intervalas, formatas yra VV:MM-VV:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr "įvesta negalima reikšmė"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr "Patikrinimo klaida"
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr "Ar norite pašalinti visus vietinius nustatymus?"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr "Patvirtinimas"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
 msgstr "%s - nustatymai"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
@@ -979,359 +1082,366 @@ msgstr ""
 "Spauskite Pašalinti, kad vėl pradėtumėte naudoti internete pasirinktus "
 "nustatymus."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr "Pašalinti"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr "išvalyti vietinius nustatymus ir uždaryti šį langą"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr "Skaičiavimai leidžiami"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr "Kai kompiuteris veikia iš baterijų"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr ""
 "pažymėkite, jei norite vykdyti skaičiavimus kai kompiuteris veikia iš "
 "baterijų"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr "Kai kompiuteris naudojamas"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr "pažymėkite, jei norite vykdyti skaičiavimus kai naudojatės kompiuteriu"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr "Naudoti grafikos plokštę kai kompiuteris naudojamas"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
 "pažymėkite, jei norite skaičiavimams naudoti grafikos plokštę kai naudojatės "
 "kompiuteriu"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr "Tik kai kompiuteris buvo nenaudojamas"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 "vykdyti skaičiavimus tik kai kompiuteris nenaudojamas nurodytą minučių "
 "skaičių"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr "minutes"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+#, fuzzy
+msgid "While processor usage is less than"
+msgstr "procesoriaus naudojimas"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr "KiekvienÄ… dienÄ… tarp"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr "pradÄ—ti vykdyti"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr "ir"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr "baigti vykdyti"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr "(be apribojimų jei vienodi)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr "Pirmadienis"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr "Antradienis"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr "Trečiadienis"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr "Ketvirtadienis"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr "Penktadienis"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr "Šeštadienis"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr "Sekmadienis"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr "Kiti pasirinkimai"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+#, fuzzy
+msgid "Switch between applications every"
 msgstr "Keisti programas kas"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr "Sistemose su keletu procesorių naudoti daugiausiai"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
 msgid "% of the processors"
 msgstr "% procesorių"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr "Naudoti daugiausiai"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
 msgid "% CPU time"
 msgstr "% procesoriaus laiko"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr "procesoriaus naudojimas"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr "Bendri nustatymai"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr "Didžiausia parsiuntimo sparta"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr "KB/s"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr "Didžiausia išsiuntimo sparta"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr "Praleisti bylų tikrinimą"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr "Susijungimo nustatymai"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr "Klausti prieš jungiantis prie interneto"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr "Atsijungti pabaigus"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr "tinklo naudojimas"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr "Disko naudojimas"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr "% kai kompiuteris naudojamas"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr "% kai kompiuteris nenaudojamas"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr "Gerai"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr "Atšaukti"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "Pagalba"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
 msgstr "%s - išėjimo patvirtinimas"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1341,8 +1451,8 @@ msgid ""
 "exit the Manager, then choose from the following options:"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1352,534 +1462,492 @@ msgid ""
 "tasks at the times you selected in your preferences."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "&Atšaukti"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "Bendri"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
 msgstr "Vartotojo vardas"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Resursų padalijimas"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr "Jungiamasi prie projekto serverio"
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
 msgstr "Prisijungta naudojant abonemento valdiklį"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr "Atsijungti pabaigus"
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr "Užbaigtas"
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Programa"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Atlikti iki"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "Procesoriaus laikas"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 msgid "Elapsed time"
 msgstr "Praėjęs laikas"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr "Numanomas likęs laikas"
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr "Atlikta dalis"
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Nauja"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "Parsiuntimas nepavyko"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "Parsiunčiama"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "ProjektÄ… sustabdÄ— vartotojas"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr "SustabdÄ— vartotojas"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Sustabdyta"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr " - veikia iš baterijų"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr " - vartotojas aktyvus"
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr " - skaičiavimai sustabdyti"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr " - dienos laikas"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr " - matuojamas greitis"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr " - trūksta disko vietos"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr "Laukiama atminties"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "Vykdoma"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr "Paruoštas vykdymui"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr "Paruoštas vykdymui"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Skaičiavimo klaida"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "IÅ¡siuntimas nepavyko"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "Išsiunčiama"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Atšaukė vartotojas"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "Atšaukė projektas"
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "Nutrauktas"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Patvirtinta"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "Paruoštas perdavimui"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Klaida: neteisinga būsena \"%d\""
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "Jungimosi telefono linija ir virtualiu privačiu tinklu (VPN) nustatymai"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "&Nustatyti numatytus nustatymus"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "&IÅ¡valyti numatytus nustatymus"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Numatyta jungtis:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Susijungimai"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Jungtis per HTTP proxy serverį"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "HTTP proxy serverio nustatymai"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Adresas:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Jungtis:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Jei nereikalingi, palikite tuščius"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Vartotojo vardas:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Slaptažodis:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "HTTP Proxy"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Jungtis per SOCKS proxy serverį"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "SOCKS Proxy serverio nustatymai"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "SOCKS Proxy"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
 msgid "%s - Select Computer"
 msgstr "%s - kompiuterio pasirinkimas"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Kompiuterio pavadinimas:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s - nepavyksta rasti interneto naršyklės"
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
+#, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1895,236 +1963,231 @@ msgstr ""
 "\"BROWSER\" nustatykite į interneto naršyklės vietą\n"
 "ir iš naujo paleiskite %s."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "Pranešimų lentos"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "Susirašinėkite su kitais SETI at HOME vartotojais pranešimų lentose"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "Klauskite klausimus ir praneškite apie problemas"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "Jūsų abonementas"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "Peržiūrėkite abonemento informaciją ir kreditų sumas"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "Jūsų nustatymai"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr ""
 "Peržiūrėkite ir keiskite savo SETI at Home vartotojo abonemento aprašymą ir "
 "nustatymus"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "Jūsų rezultatai"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr "Peržiūrėkite neseniai atliktų skaičiavimų rezultatus ir užduotis"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "Jūsų kompiuteriai"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr "Peržiūrėkite visų kompiuterių, kurie vykdo SETI at Home, sąrašą"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "Jūsų komanda"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "Peržiūrėkite informaciją apie savo komandą"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "Dažniausi klausimai"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "Perskaitykite Einstein at Home dažniausiai užduodamų klausimų sąrašą"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "Ekrano užsklandos informacija"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "Perskaitykite detalų Einstein at Home ekrano užsklandos aprašymą"
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr ""
 "Susirašinėkite su administratoriais ar kitais Einstein at Home vartotojais "
 "pranešimų lentose"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "Einstein būklė"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Einstein at Home serverių būklė"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "Praneškite apie problemas"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr "Nuoroda į Einstein at Home problemų pranešimų lentas"
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr ""
 "Peržiūrėkite ir keiskite savo Einstein at Home vartotojo abonemento aprašymą ir "
 "nustatymus"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "Vartotojo abonento apibendrinimas"
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr "Peržiūrėkite visų kompiuterių, kurie vykdo Einstein at Home, sąrašą"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "LIGO projektas"
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr ""
 "Laser Interferometer Gravitational-wave Observatory (LIGO) projekto "
 "tinklapis"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "GEO-600 projektas"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "GEO-600 projekto tinklapis"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Komanda"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "Informacija apie jūsų komandą"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "Pagalba climateprediction.net"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "Naujienos"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "climateprediction.net naujienos"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr "Peržiūrėkite abonemento informaciją, kreditų sumas, atliktas užduotis"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "Informacija apie jūsų komandą"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr "Ieškokite pagalbos mūsų pagalbos sistemoje"
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "Globali statistika"
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "Apibendrinta World Community Grid statistika"
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr "Mano skaičiavimai"
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "Jūsų statistika ir nustatymai"
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr "Kompiuterių grupės"
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr "Keiskite kompiuterių nustatymus"
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr "Tyrimai"
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "Sužinokite daugiau apie World Community Grid projektus"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr ""
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "Gaunama sistemos būklė; prašome palaukti..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "Gaunama kompiuterio informacija; prašome palaukti..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "Nėra ryšio su internetu"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Prisijunkite prie interneto ir pabandykite dar kartÄ…."
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Projektas nerastas"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2134,11 +2197,11 @@ msgstr ""
 "\n"
 "Patikrinkite adresÄ… ir pabandykite dar kartÄ…."
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "Abonemento valdiklis nerastas"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2150,50 +2213,60 @@ msgstr ""
 "\n"
 "Patikrinkite adresÄ… ir pabandykite dar kartÄ…."
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr "Prisijungimas nepavyko."
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr "Patikrinkite vartotojo vardą ir slaptažodį ir pabandykite dar kartą."
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr "Patikrinkite el. pašto adresą ir slaptažodį ir pabandykite dar kartą."
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "Projekto tinklapis:"
 
-#: clientgui/ProjectInfoPage.cpp:320
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:321
-#, fuzzy
-msgid "Already Attached to Project"
-msgstr "Projektas jau prijungtas"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
 msgstr ""
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
 msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
@@ -2201,7 +2274,7 @@ msgstr ""
 "Jungiamasi su projektu\n"
 "Prašome palaukti..."
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
@@ -2209,11 +2282,11 @@ msgstr ""
 "Vedliui reikalingos bylos serveryje nerastos.\n"
 "(lookup_account.php/create_account.php)\n"
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "Tinklo klaida"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
 #, fuzzy
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
@@ -2225,7 +2298,7 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
@@ -2242,7 +2315,7 @@ msgstr ""
 "\n"
 "3) Jūs naudojate proxy serverį ir BOINC reikia duomenų apie jį."
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 #, fuzzy
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
@@ -2271,490 +2344,468 @@ msgstr ""
 "\n"
 "3) Jūs naudojate proxy serverį ir BOINC reikia duomenų apie jį."
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Tarpinio serverio nustatymai"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "HTTP tarpinis serveris"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "Serveris:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "Automatinis aptikimas"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "SOCKS tarpinis serveris"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr "%s"
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr "Gaunama dabartinė būsena."
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr "Jūs neprisijungęs prie nė vieno projekto. Prisijunkite."
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr "Gaunamos užduotys iš serverio."
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr "Skaičiavimai sustabdyti: veikiama iš baterijų."
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr "Skaičiavimai sustabdyti: vartotojas aktyvus."
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr "Skaičiavimai sustabdyti: sustabdė vartotojas."
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr "Skaičiavimai sustabdyti: dienos laikas."
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr "Skaičiavimai sustabdyti: matuojamas greitis."
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr "Skaičiavimai sustabdyti."
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr "Laukiama susijungimo su projekto serveriais."
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr "Gaunama dabartinė būsena"
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr "Nėra vykdymui paruoštų užduočių"
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr "Nepavyksta prisijungti prie kliento"
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Projektas"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "Laikas"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Pranešimas"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Kopijuoti visus pranešimus į atmintį."
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 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 ""
 "Kopijuoti pasirinktus pranešimus į atmintį. Keletą pranešimų galite pažymėti "
 "spausdami shift arba command klavišus žymėjimo metu."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
 "Kopijuoti pasirinktus pranešimus į atmintį. Keletą pranešimų galite pažymėti "
 "spausdami shift arba control klavišus žymėjimo metu."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr "Gauti pagalbÄ… dÄ—l BOINC naudojimo"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr "%s - žinutės"
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr "Vietiniai nustatymai"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr "Pritaikyti nustatymai"
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr "Vykdyti užduotis tik tarp:"
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr "Jungtis prie interneto tik tarp:"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr "disko vietos"
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr "procesoriaus"
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr "0 (veikti visada)"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr "Prisijungti prie kito projekto"
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr "Atverti langą žinučių peržiūrai"
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr "Sustabdyti visus veiksmus"
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr "Atverti langą nustatymų keitimui"
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "Ar tikrai norite atsijungti nuo projekto \"%s\"?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "Atsijungti nuo projekto"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr "Ar tikrai norite rodyti grafikÄ… nutolusiame kompiuteryje?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Rodyti grafikÄ…"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
 msgstr "Programa:"
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr "Likęs laikas:"
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
 msgstr "Praėjęs laikas:"
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Projektas laikinai nepasiekiamas"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2764,11 +2815,11 @@ msgstr ""
 "\n"
 "Prašome pabandyti vėliau."
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "Abonemento valdiklis laikinai nepasiekiamas"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2778,32 +2829,32 @@ msgstr ""
 "\n"
 "Prašome pabandyti vėliau."
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "Nurodykite abonemento raktÄ…."
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr "Neteisingas abonemento raktas; įveskite teisingą abonemento raktą"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Tikrinimo klaida"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr "Įveskite elektroninio pašto adresą"
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr "Neteisingas el. pašto adresas; įveskite teisingą el. pašto adresą"
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "Neįvestas tinklapis"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2812,18 +2863,18 @@ msgstr ""
 "Nurodykite tinklapį, pavyzdžiui:\n"
 "http://www.example.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "Neteisingas tinklapis"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2832,603 +2883,501 @@ msgstr ""
 "Nurodykite galiojantį tinklapį, pavyzdžiui:\n"
 "http://boincproject.example.com"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "\"%s\" nÄ—ra teisingas kompiuterio pavadinimas."
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "\"%s\" nÄ—ra teisingai nurodytas kelias."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "Komandos"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Kopijuoti visus pranešimus"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Kopijuoti pasirinktus pranešimus"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Pranešimai"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "Visi pranešimai kopijuojami į atmintį..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 msgid "Copying selected messages to the clipboard..."
 msgstr "Pasirinkti pranešimai kopijuojami į atmintį..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 msgid "Show all messages"
 msgstr "Rodyti visus pranešimus"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr "Svarbumas"
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr "Pasirinkti pranešimai kopijuojami į atmintį..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr "Informacija"
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr "PerspÄ—jimas"
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr "Klaida"
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Atnaujinti"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr ""
 "Pranešti apie atliktą darbą, gauti duomenis apie kreditą, naujausius "
 "nustatymus ir galbūt daugiau darbo."
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Sustabdyti"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr "Sustabdyti Å¡io projekto darbus."
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr "Negauti naujo darbo"
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr "Negauti naujo darbo Å¡iam projektui."
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Perkrauti projektÄ…"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 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 ""
 "Ištrinti visas projekto bylas ir gauti naujo darbo. Priš tai galite "
 "atnaujinti projekto duomenis ir nusiųsti atliktą darbą."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Atjungti"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr ""
 "Atjungti kompiuterį nuo šio projekto. Visas atliekamas darbas bus prarastas "
 "(spauskite \"Atnaujinti\" tam, kad būtų nusiųstas atliktas darbas)."
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr "SavybÄ—s"
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Vartotojas"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "Atliktas darbas"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr "Vid. atliekamas darbas"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "BÅ«klÄ—"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Projektai"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "Atnaujinamas projektas..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "Pratęsiamas darbas su projektu..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "Stabdomas projektas..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr "Leidžiama projektui parsisiųsti papildomo darbo..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "Liepiama projektui nesiųsti naujų užduočių..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "Perkraunamas projektas..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Ar tikrai norite perkrauti projektÄ… \"%s\"?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Perkrauti projektÄ…"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "Atsijungiama nuo projekto..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "Paleidžiama naršyklė..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Tęsti"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "Tęsti šio projekto darbą."
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "Leisti naujÄ… darbÄ…"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr "Leisti projektui gauti naujo darbo."
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "Negauti naujo darbo iš šio projekto."
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "SustabdÄ— vartotojas"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "Negaus naujo darbo"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Laukiama jungimosi prie projekto serverio"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr "Jungiamasi prie projekto serverio"
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "Jungimasis atidÄ—tas "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr "Naudojama disko vieta"
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr "BOINC projektų naudojama disko vieta"
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Diskas"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr "naudojama BOINC: "
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr "naudojama kitų programų: "
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Vartotojo suminiai rodikliai"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Vartotojo vidurkiai"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Kompiuterio suminiai rodikliai"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Kompiuterio vidurkiai"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
 msgstr "Paskutinis atnaujinimas: prieš %.0f dienų"
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Vartotojo suminiai rodikliai"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr "Rodyti bendrą vartotojo kreditų kiekį"
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "Vartotojo vidurkiai"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr "Rodyti vidutinį vartotojo kreditų kiekį"
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Kompiuterio suminiai rodikliai"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr "Rodyti bendrą kompiuterio kreditų kiekį"
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "Kompiuterio vidurkiai"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr "Rodyti vidutinį kompiuterio kreditų kiekį"
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< &Ankstesnis projektas"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr "Rodyti ankstesnio projekto diagramÄ…"
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "&Kitas projektas >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr "Rodyti kito projekto diagramÄ…"
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "Peržiūros režimas"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "Visi projektai"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "Vienas projektas"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr "Visi projektai(apibendrinta)"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Statistika"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "Atnaujinami grafikai..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Kartoti dabar"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "Spauskite \"Kartoti vÄ—l\" norÄ—dami perduoti bylÄ… dabar"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Nutraukti perdavimÄ…"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr ""
 "Spauskite \"Nutraukti perdavimą\" tam, kad būtų pašalinta byla iš perdavimų "
 "sąrašo. Dėl šio veiksmo jūs negausite kreditų už šį darbą."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "Byla"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Progresas"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Dydis"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "TrukmÄ—"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Greitis"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Perdavimai"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "Bandoma perduoti dabar..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "Nutraukiamas perdavimas..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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"
@@ -3438,35 +3387,43 @@ msgstr ""
 "PASTABA: Perdavimo nutraukimas panaikins užduotį ir jūs\n"
 "negausite kredito už atliktą darbą."
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Nutraukti bylos perdavimÄ…"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "Bandymas po "
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr "Laukiama išsiuntimo"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "Laukiama parsiuntimo"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 #, fuzzy
 msgid "Aborting transfer(s)..."
 msgstr "Nutraukiamas perdavimas..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 #, fuzzy
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
@@ -3477,76 +3434,81 @@ msgstr ""
 "PASTABA: Perdavimo nutraukimas panaikins užduotį ir jūs\n"
 "negausite kredito už atliktą darbą."
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 #, fuzzy
 msgid "Abort File Transfer(s)"
 msgstr "Nutraukti bylos perdavimÄ…"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "Rodyti programos grafikÄ… lange."
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "Sustabdyti šį skaičiavimo darbą."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Nutraukti"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr "Atsisakyti darbo. JÅ«s negausite jokio kredito."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Pavadinimas"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "Iki atlikimo"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Užduotys"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "Tęsiamas darbas..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "Stabdomas darbas..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "Rodoma grafika Å¡iam darbui..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Nutraukiamas darbas..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
@@ -3554,38 +3516,63 @@ msgstr ""
 "Ar tikrai norite nutraukti šią užduotį '%s'?\n"
 "(Pažanga: %s, Būklė: %s)"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "Nutraukti užduotį"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Nutraukiamas darbas..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr "Tęsti šį skaičiavimo darbą."
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr "Sustabdyti šį skaičiavimo darbą."
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
@@ -3593,12 +3580,12 @@ msgstr ""
 "Ar tikrai norite nutraukti šią užduotį '%s'?\n"
 "(Pažanga: %s, Būklė: %s)"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3607,14 +3594,13 @@ msgid ""
 "listed on or managed via %s."
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:350
-#, fuzzy
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
-msgstr "Dabar JÅ«s pradÄ—site prisijungimo prie projekto procesÄ…."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3630,136 +3616,243 @@ msgid ""
 "World Community Grid then please click on the following button:"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-#, c-format
-#, fuzzy
-msgid "&Stop using%s"
-msgstr "Nu&stoti naudoti %s"
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "Vartotojo abonento valdymas"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "Programos klaidų žymės"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "Projekto nustatymu klaida"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "Projekto nustatymų URL klaida"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "Abonementų kūrimas yra išjungtas"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "Vartotojo abonementų kūrimas yra išjungtas"
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "Toks abonementas jau yra"
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "Projektas jau prijungtas"
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "Nepavyko prisijungti prie projekto"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "Tinklo aptikimo klaida"
-
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "Norėdami tęsti, spauskite Toliau."
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "Ar norite atšaukti?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "Klausimas"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "Toliau >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< &Atgal"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "Baigti"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
 msgid "New page inserted. Index = %i"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
 msgid "New page appended. Index = %i"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
 msgid "Old Page Index = %i"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr ""
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 
+#, fuzzy
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "&Uždaryti langą\tCtrl+W"
+
+#, fuzzy
+#~ msgid ""
+#~ "You currently are not authorized to manage the client.\n"
+#~ "Please contact your administrator to add you to the 'boinc_master' user "
+#~ "group."
+#~ msgstr ""
+#~ "Jums nėra leidžiama valdyti kliento.\n"
+#~ "Susisiekite su savo administratoriumi, kad jis pridėtų jus į \"boinc_users"
+#~ "\" vartotojų grupę."
+
+#~ msgid "User information"
+#~ msgstr "Vartotojo informacija"
+
+#~ msgid "Account Manager URL"
+#~ msgstr "Abonemento valdiklio tinklapis"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "Įveskite abonemento valdiklio tinklapio adresą."
+
+#~ msgid "Close BOINC Manager Window."
+#~ msgstr "Uždaryti BOINC valdiklio langą."
+
+#~ msgid "Exit the %s"
+#~ msgstr "Išeiti iš %s"
+
+#~ msgid ""
+#~ "Advanced views allow you to sort various columns and displays graphical "
+#~ "progress bars."
+#~ msgstr ""
+#~ "Pažengusiųjų režime galima rūšiuoti informaciją pagal įvairius stulpelius "
+#~ "ir matomas grafinis būsenos atvaizdavimas."
+
+#~ msgid "Attach to a project"
+#~ msgstr "Prisijungti prie projekto"
+
+#~ msgid "Attach to &account manager..."
+#~ msgstr "Prisijungti prie &abonemento valdiklio..."
+
+#~ msgid "Attach to an account manager"
+#~ msgstr "Prisijungti prie abonemento valdiklio"
+
+#~ msgid "Attach to &project"
+#~ msgstr "Prisijungti prie &projekto"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "Prisijungiama prie projekto..."
+
+#~ msgid "Removal from %s completed."
+#~ msgstr "Pašalinimas iš %s baigtas."
+
+#~ msgid "Removal succeeded!"
+#~ msgstr "Pašalinimas pavyko!"
+
+#, fuzzy
+#~ msgid "Already Attached to Project"
+#~ msgstr "Projektas jau prijungtas"
+
+#, fuzzy
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr "Dabar JÅ«s pradÄ—site prisijungimo prie projekto procesÄ…."
+
+#, fuzzy
+#~ msgid "&Stop using%s"
+#~ msgstr "Nu&stoti naudoti %s"
+
+#~ msgid "Account manager"
+#~ msgstr "Vartotojo abonento valdymas"
+
+#~ msgid "Debug Flags"
+#~ msgstr "Programos klaidų žymės"
+
+#~ msgid "Project Properties Failure"
+#~ msgstr "Projekto nustatymu klaida"
+
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "Projekto nustatymų URL klaida"
+
+#~ msgid "Account Creation Disabled"
+#~ msgstr "Abonementų kūrimas yra išjungtas"
+
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "Vartotojo abonementų kūrimas yra išjungtas"
+
+#~ msgid "Account Already Exists"
+#~ msgstr "Toks abonementas jau yra"
+
+#~ msgid "Project Already Attached"
+#~ msgstr "Projektas jau prijungtas"
+
+#~ msgid "Project Attach Failure"
+#~ msgstr "Nepavyko prisijungti prie projekto"
+
+#~ msgid "Net Detection Failure"
+#~ msgstr "Tinklo aptikimo klaida"
+
 #~ msgid ""
 #~ "You can copy and paste the URL from your browser's\n"
 #~ "address bar."
@@ -3811,23 +3904,18 @@ msgstr ""
 #~ msgid "Retry all deferred network communication."
 #~ msgstr "Kartoti visus atidÄ—tus susijungimus."
 
-#, c-format
 #~ msgid "BOINC Manager - Detach from %s"
 #~ msgstr "BOINC valdiklis - Atsijungti nuo %s"
 
-#, c-format
 #~ msgid "%s is currently suspended...\n"
 #~ msgstr "%s Å¡iuo metu sustabdytas...\n"
 
-#, c-format
 #~ msgid "%s networking is currently suspended...\n"
 #~ msgstr "%s veikla tinkle Å¡iuo metu yra sustabdyta...\n"
 
-#, c-format
 #~ msgid "%s is currently reconnecting to a %s client...\n"
 #~ msgstr "%s Å¡iuo metu pakartotinai jungiasi prie %s kliento...\n"
 
-#, c-format
 #~ msgid "%s is not currently connected to a %s client...\n"
 #~ msgstr "%s šiuo metu nėra prisijungęs prie %s kliento...\n"
 
@@ -3838,7 +3926,8 @@ msgstr ""
 #~ msgstr ""
 #~ "Å is dialogo langas valdo tik Å¡io kompiuterio nustatymus.\n"
 #~ "Paspaudus \"Išsaugoti\" nustatymai bus išsaugoti lokaliai.\n"
-#~ "Jei nori grįžti prie internete pasirinktų nustatymų, spauskite \"Pašalinti\"."
+#~ "Jei nori grįžti prie internete pasirinktų nustatymų, spauskite \"Pašalinti"
+#~ "\"."
 
 #~ msgid "do work"
 #~ msgstr "atlikti darbÄ…"
@@ -3867,8 +3956,12 @@ msgstr ""
 #~ msgid "Reminder Frequency:"
 #~ msgstr "Priminimo dažnumas:"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
-#~ msgstr "Kaip dažnai (minutėmis) valdiklis turėtų jums priminti apie galimus prisijungimus prie tinklo."
+#~ msgid ""
+#~ "How often, in minutes, should the manager remind you of possible "
+#~ "connection events."
+#~ msgstr ""
+#~ "Kaip dažnai (minutėmis) valdiklis turėtų jums priminti apie galimus "
+#~ "prisijungimus prie tinklo."
 
 #~ msgid "Project Selection"
 #~ msgstr "Projektų pasirinkimas"
@@ -3897,6 +3990,5 @@ msgstr ""
 #~ msgid "BOINC Manager - Options"
 #~ msgstr "BOINC valdiklis - nustatymai"
 
-#, c-format
 #~ msgid "BOINC Manager - Select Computer"
 #~ msgstr "BOINC valdiklis - pasirinkti kompiuterį"
diff --git a/locale/lt/BOINC-Project-Generic.po b/locale/lt/BOINC-Project-Generic.po
index 941c6fe..022a651 100644
--- a/locale/lt/BOINC-Project-Generic.po
+++ b/locale/lt/BOINC-Project-Generic.po
@@ -8,7 +8,7 @@ msgstr ""
 "Language-Team: \n"
 "Language: lt\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
 "(n%100<10 || n%100>=20) ? 1 : 2);\n"
@@ -1388,8 +1388,9 @@ msgstr ""
 msgid "Could not create team - please try later."
 msgstr ""
 
+#, fuzzy
 msgid "Create a team"
-msgstr ""
+msgstr "Sukurti naujÄ… temÄ…"
 
 msgid ""
 "You belong to %1. You must %2quit this team%3 before creating a new one."
@@ -1485,7 +1486,9 @@ msgstr ""
 #~ msgid "Really delete?"
 #~ msgstr "Tikrai ištrinti?"
 
-#~ msgid "Are you sure you want to delete the message with subject &quot;%1&quot; (sent by %2 on %3)?"
+#~ msgid ""
+#~ "Are you sure you want to delete the message with subject &quot;%1&quot; "
+#~ "(sent by %2 on %3)?"
 #~ msgstr ""
 #~ "Ar tikrai norite ištrinti žinutę, kurios tema &quot;%1&quot; (išsiuntė %2 "
 #~ "%3)?"
@@ -1496,8 +1499,11 @@ msgstr ""
 #~ msgid "No such message."
 #~ msgstr "Žinutė nerasta."
 
-#~ msgid "Account creation is disabled for %1 at the moment. Please try again later."
-#~ msgstr "Abonementų kūrimas %1 šiuo metu yra išjungtas. Pabandykite dar kartą vėliau."
+#~ msgid ""
+#~ "Account creation is disabled for %1 at the moment. Please try again later."
+#~ msgstr ""
+#~ "Abonementų kūrimas %1 šiuo metu yra išjungtas. Pabandykite dar kartą "
+#~ "vÄ—liau."
 
 #~ msgid "Edit message"
 #~ msgstr "Taisyti žinutę"
diff --git a/locale/lt/BOINC-Web.po b/locale/lt/BOINC-Web.po
index 4975b03..7e46bf9 100644
--- a/locale/lt/BOINC-Web.po
+++ b/locale/lt/BOINC-Web.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -17,386 +17,312 @@ msgstr ""
 "X-Generator: Translate Toolkit 1.2.1\n"
 "X-Poedit-SourceCharset: utf-8\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
 msgstr ""
 
-"
-
+#: poll.inc:47
 msgid "Other:"
 msgstr ""
 
-"
-
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
 msgstr ""
 
-"
-
+#: poll_data.inc:22
 msgid "less than a week"
 msgstr ""
 
-"
-
+#: poll_data.inc:23
 msgid "less than a month"
 msgstr ""
 
-"
-
+#: poll_data.inc:24
 msgid "less than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:25
 msgid "more than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:34
 msgid "I lost interest"
 msgstr ""
 
-"
-
+#: poll_data.inc:35
 msgid "it was too complicated"
 msgstr ""
 
-"
-
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
 msgstr ""
 
-"
-
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:38
 msgid "it used too much electricity"
 msgstr ""
 
-"
-
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr ""
 
-"
-
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
 msgstr ""
 
-"
-
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
 msgstr ""
 
-"
-
+#: poll_data.inc:50
 msgid "I had network communication problems"
 msgstr ""
 
-"
-
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
 msgstr ""
 
-"
-
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr ""
 
-"
-
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
 msgstr ""
 
-"
-
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr ""
 
-"
-
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr ""
 
-"
-
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr ""
 
-"
-
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr ""
 
-"
-
+#: poll_data.inc:87
 msgid "Home"
 msgstr ""
 
-"
-
+#: poll_data.inc:88
 msgid "Work"
 msgstr ""
 
-"
-
+#: poll_data.inc:89
 msgid "School"
 msgstr ""
 
-"
-
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr ""
 
-"
-
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr ""
 
-"
-
+#: poll_data.inc:119
 msgid "Age"
 msgstr ""
 
-"
-
+#: poll_data.inc:129
 msgid "Sex"
 msgstr ""
 
-"
-
+#: poll_data.inc:131
 msgid "Male"
 msgstr ""
 
-"
-
+#: poll_data.inc:132
 msgid "Female"
 msgstr ""
 
-"
-
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr ""
 
-"
-
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr ""
 
-"
-
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr ""
 
-"
-
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr ""
 
-"
-
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr ""
 
-"
-
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr ""
 
-"
-
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
 msgstr ""
 
-"
-
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr ""
 
-"
-
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr ""
 
-"
-
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr ""
 
-"
-
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr ""
 
-"
-
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr ""
 
-"
-
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr ""
 
-"
-
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr ""
 
-"
-
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr ""
 
-"
-
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr ""
 
-"
-
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr ""
 
-"
-
+#: poll_data.inc:192
 msgid "Yes"
 msgstr ""
 
-"
-
+#: poll_data.inc:193
 msgid "No"
 msgstr ""
 
-"
-
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr ""
 
-"
-
+#: poll_data.inc:200
 msgid "to read information"
 msgstr ""
 
-"
-
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr ""
 
-"
-
+#: poll_data.inc:202
 msgid "None"
 msgstr ""
 
-"
-
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr ""
 
-"
-
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr ""
 
-"
-
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr ""
 
-"
-
+#: download.php:40
 msgid "Download BOINC"
 msgstr ""
 
-"
-
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr ""
 
-"
-
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -404,41 +330,34 @@ msgid ""
 "computer, you can connect it to as many of these projects as you like."
 msgstr ""
 
-"
-
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
 "(GPU), you may be able to %suse it to compute faster%s"
 msgstr ""
 
-"
-
+#: download.php:120
 msgid "System requirements"
 msgstr ""
 
-"
-
+#: download.php:121
 msgid "Release notes"
 msgstr ""
 
-"
-
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr ""
 
-"
-
+#: download.php:123
 msgid "All versions"
 msgstr ""
 
-"
-
+#: download.php:141
 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 "
@@ -447,8 +366,7 @@ msgid ""
 "problems you might have."
 msgstr ""
 
-"
-
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -457,8 +375,7 @@ msgid ""
 "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 "
@@ -466,20 +383,17 @@ msgid ""
 "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 "
@@ -487,30 +401,70 @@ msgid ""
 "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 ""
 
-"
+#: index.php:23
+msgid "Computing power"
+msgstr ""
 
-msgid "Volunteer"
+#: index.php:25
+msgid "Top 100 volunteers"
 msgstr ""
 
-"
+#: index.php:26
+msgid "Statistics"
+msgstr ""
 
-msgid "Download"
+#: index.php:53
+msgid "Active:"
 msgstr ""
 
-"
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
 
-msgid "Documentation"
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
 msgstr ""
 
-"
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
 
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -519,28 +473,92 @@ msgid ""
 "sDownload%s and run BOINC software  %sEnter%s an email address and password. "
 msgstr ""
 
-"
-
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
 "sGridRepublic%s or %sBAM!%s. "
 msgstr ""
 
-"
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
 
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
 
-"
-
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr ""
 
-"
-
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -553,80 +571,64 @@ msgid ""
 "href=poll_results.php>here</a>. "
 msgstr ""
 
-"
-
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr ""
 
-"
-
+#: poll.php:30
 msgid "Your participation"
 msgstr ""
 
-"
-
+#: poll.php:32
 msgid "Your computers"
 msgstr ""
 
-"
-
+#: poll.php:34
 msgid "You"
 msgstr ""
 
-"
-
+#: poll.php:39
 msgid "Nationality"
 msgstr ""
 
-"
-
+#: poll.php:44
 msgid "Comments"
 msgstr ""
 
-"
-
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
 msgstr ""
 
-"
-
+#: poll.php:50
 msgid "When done click:"
 msgstr ""
 
-"
-
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
 msgstr ""
 
-"
-
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr ""
 
-"
-
+#: poll_results.php:195
 msgid "Survey results"
 msgstr ""
 
-"
-
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
 msgstr ""
-
-"
diff --git a/locale/lt/pootle-boincclient610-lt.prefs b/locale/lt/pootle-boincclient610-lt.prefs
new file mode 100644
index 0000000..2da3474
--- /dev/null
+++ b/locale/lt/pootle-boincclient610-lt.prefs
@@ -0,0 +1,8 @@
+# Pootle preferences for project boinctrunk, language lt
+
+rights:
+  Rytis = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/lt/pootle-boinctrunk-lt.prefs b/locale/lt/pootle-boinctrunk-lt.prefs
deleted file mode 100644
index 543004d..0000000
--- a/locale/lt/pootle-boinctrunk-lt.prefs
+++ /dev/null
@@ -1,6 +0,0 @@
-# Pootle preferences for project boinctrunk, language lt
-
-rights:
-  Rytis = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  default = u'view, suggest, archive, pocompile'
-  nobody = u'view'
diff --git a/locale/lv/BOINC-Manager.mo b/locale/lv/BOINC-Manager.mo
index 5198c6e..5054aef 100644
Binary files a/locale/lv/BOINC-Manager.mo and b/locale/lv/BOINC-Manager.mo differ
diff --git a/locale/lv/BOINC-Manager.po b/locale/lv/BOINC-Manager.po
index 08fd7ed..7b08a3b 100644
--- a/locale/lv/BOINC-Manager.po
+++ b/locale/lv/BOINC-Manager.po
@@ -1,464 +1,524 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 5.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
 "PO-Revision-Date: 2005-11-29 22:46+0200\n"
 "Last-Translator: Atis Kozulis <boinc_at_latvia at mac.com>\n"
 "Language-Team: BOINC at Latvia <boinc_at_latvia at mac.com>\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Translate Toolkit 1.2.1\n"
 "X-Poedit-Language: English\n"
 "X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: iso-8859-1\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: UNITED STATES\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "&Parole:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "&Vēlreiz to pašu paroli:"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 #, fuzzy
 msgid "&Username:"
 msgstr "Lietotāja vārds:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "&E-pasta adrese:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "Pievienoties projektam"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "Pievienoties konta menedžerim"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr ""
 "Minimālais paroles garums šim projektam ir %d. Lūdzu, izvēlieties citu "
 "paroli."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
 "Minimālais paroles garums šim konta menedžerim ir %d. Lūdzu, izvēlieties "
 "citu paroli."
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr "Abas ievadītās paroles nesakrīt. Lūdzu, ievadiet no jauna."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "Konta menedžera URL"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Ievadiet konta menedžera tīmekļa vietnes URL."
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "Konta menedžera &URL:"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Pieslēdzies"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Atvienojies"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "I&ziet"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:345
-#, fuzzy
-msgid "Attach to &project..."
-msgstr "P&ievienoties projektam"
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:346
-#, fuzzy
-msgid "Attach to a project"
-msgstr "Pievienoties projektam"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:350
-#, fuzzy
-msgid "Attach to &account manager..."
-msgstr "Pievienoties konta menedžerim"
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Pievienoties konta menedžerim"
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+#, fuzzy
+msgid "Attach to &project..."
+msgstr "P&ievienoties projektam"
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Pievienoties projektam, lai uzsāktu uzdevumu izpildi"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "Izpildīt &vienmēr"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 #, fuzzy
 msgid "Allow work regardless of preferences"
 msgstr "Izpilda uzdevumus neskatoties uz preferencēm"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "&Izpildīt balstoties uz preferencēm"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 #, fuzzy
 msgid "Allow work according to your preferences"
 msgstr "Izpilda uzdevumus saskaņā uz jūsu preferencēm"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "Uzdevumu izpilde &atlikta"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 #, fuzzy
 msgid "Stop work regardless of preferences"
 msgstr "Pārstāj izpildīt uzdevumus neskatoties uz preferencēm"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+#, fuzzy
+msgid "Allow GPU work regardless of preferences"
+msgstr "Izpilda uzdevumus neskatoties uz preferencēm"
+
+#: clientgui/AdvancedFrame.cpp:473
+#, fuzzy
+msgid "Use GPU based on &preferences"
+msgstr "&Izpildīt balstoties uz preferencēm"
+
+#: clientgui/AdvancedFrame.cpp:474
+#, fuzzy
+msgid "Allow GPU work according to your preferences"
+msgstr "Izpilda uzdevumus saskaņā uz jūsu preferencēm"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+#, fuzzy
+msgid "Stop GPU work regardless of preferences"
+msgstr "Pārstāj izpildīt uzdevumus neskatoties uz preferencēm"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "&Tīkls vienmēr pieejams"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 #, fuzzy
 msgid "Allow network activity regardless of preferences"
 msgstr "Lieto tīklu neskatoties uz preferencēm"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+#, fuzzy
+msgid "Network activity based on pre&ferences"
 msgstr "&Pieslēgties tīklam balstoties uz preferencēm"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 #, fuzzy
 msgid "Allow network activity according to your preferences"
 msgstr "Lieto tīklu saskaņā ar jūsu preferencēm"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+#, fuzzy
+msgid "Network activity s&uspended"
 msgstr "Pi&eslēgums tīklam atlikts"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 #, fuzzy
 msgid "Stop BOINC network activity"
 msgstr "BOINC nepieslēgsies tīklam"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "Konfigurēt grafiskā lietotāja interfeisa opcijas un proxy parametrus"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "Connect to another computer running %s"
 msgstr "Pieslēgties pie cita datora uz kura izpildās BOINC"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "&Izvēlieties datoru..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 #, fuzzy
 msgid "Run CPU &benchmarks"
 msgstr "Palaist veiktspējas te&stu"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "Palaist etalonuzdevumu, lai noteiktu procesora veiktspēju"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "P&ievienoties projektam"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "Pievienoties projektam, lai uzsāktu uzdevumu izpildi"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
 msgid "Show information about %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "Show information about BOINC and %s"
 msgstr "Parādīt informāciju par BOINC menedžeri"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "Licencēšanas un autortiesību informācija"
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "&Fails"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "P&alīdzība"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -467,61 +527,66 @@ msgid ""
 "Do you want to stop using %s?"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "Pievienojas projektam..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "Atkārtot komunikācijas ar projektu(-iem)..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr ""
 "BOINC menedžera noklusētā valoda tika izmainīta. Lai tā stātos spēkā ir "
 "jāpārstartē menedžeris."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Atkārtot komunikācijas ar projektu(-iem)..."
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "Pieslēdzas pie %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "Connected to %s (%s)"
 msgstr "Pieslēdzās pie %s"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr ""
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 #, fuzzy
 msgid ""
 "An account with that username already exists and has a\n"
@@ -535,11 +600,11 @@ msgstr ""
 "Lūdzu, apmeklējiet projekta tīmekļa vietni un sekojiet tur norādītajām "
 "instrukcijām."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "E-pasta adrese jau ir lietošanā"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -552,44 +617,58 @@ msgstr ""
 "Lūdzu, apmeklējiet projekta tīmekļa vietni un sekojiet tur norādītajām "
 "instrukcijām."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1229
+#, fuzzy
+msgid "Cancel"
+msgstr "&Atcelt"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "Jūsu norādītā parole ir nepareiza, lūdzu, mēģiniet vēlreiz."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
@@ -597,34 +676,33 @@ msgstr ""
 "BOINC menedžeris nespēja pieslēgties pie BOINC klienta.\n"
 "Vai vēlētos mēģināt vēlreiz?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
 #, c-format
-#, fuzzy
+#, fuzzy, 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"
@@ -635,33 +713,30 @@ msgstr ""
 "pie BOINC klienta.\n"
 "Lai pieslēgtos pie pašreizējā datora izmantojiet vārdu 'localhost'."
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Tīmekļa vietnes"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
 "Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
@@ -669,39 +744,35 @@ msgstr ""
 "BOINC nepieciešams pieslēgties pie tīkla.\n"
 "Vai drīkst to darīt tagad?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s is connecting to the Internet."
 msgstr "BOINC pieslēdzas pie Interneta."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
 "Please connect to the Internet, or select a default connection\n"
 "using Advanced/Options/Connections."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "BOINC veiksmīgi pieslēdzās pie Interneta."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "BOINC neizdevās pieslēgties pie Interneta."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
@@ -709,124 +780,152 @@ msgstr ""
 "BOINC noteica, ka ir pieslēdzies pie Interneta. Tagad aktualizē visus "
 "projektus un atjauno datu pārsūtīšanu."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "BOINC veiksmīgi atvienojās no Interneta."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "BOINC neizdevās atvienoties no Interneta."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "BOINC menedžeris"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr ""
 "Startēt BOINC tā, lai rīkjoslas paziņojumu laukā būtu redzama tikai ikona"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Automātiska noteikšana)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Nezināms)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Lietotāja definēts)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 #, fuzzy
 msgid "Network activity is suspended."
 msgstr "Pi&eslēgums tīklam atlikts"
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "Neizdevās pieslēgties projektam"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 #, fuzzy
 msgid "Failed to update account manager"
 msgstr "Neizdevās pieslēgties konta menedžerim"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 #, fuzzy
 msgid "Failed to remove account manager"
 msgstr "Neizdevās pieslēgties konta menedžerim"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "Neizdevās pieslēgties konta menedžerim"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -834,27 +933,26 @@ msgid ""
 "Click Finish to close."
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "Noklikšķiniet uz Beigt, lai aizvērtu."
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "Ziņas no servera:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "Pievienots projektam"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "Jūs veiksmīgi pieslēdzāties projektam."
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -862,481 +960,473 @@ msgstr ""
 "Kad jūs noklikšķināsiet uz Beigt jūsu pārlūkprogramma ies uz lapu,\n"
 "kur varēsiet norādīt jūsu konta vārdu un preferences."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr ""
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr ""
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "Pievienots konta menedžerim"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "Jūs veiksmīgi pieslēdzāties projektam."
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "Jūs veiksmīgi pievienojāties šim konta menedžerim."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "Versija:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Autortiesības:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 #, fuzzy
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
 "(C) 2005 Kalifornijas Universitāte Berklijā.\n"
 "Visas tiesības aizsargātas."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr ""
 "Berkeley Open Infrastructure for Network Computing (BOINC)\n"
 "Berklijas atvērtā infrastruktūra tīklskaitļošanai"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "&Labi"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
 "Click Clear to restore web-based settings."
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
 msgid "% of the processors"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
 #, no-c-format
-#, fuzzy
+#, fuzzy, no-c-format
 msgid "% CPU time"
 msgstr "CPU laiks"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-#, fuzzy
-msgid "Cancel"
-msgstr "&Atcelt"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "Palīdzība"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1346,8 +1436,8 @@ msgid ""
 "exit the Manager, then choose from the following options:"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1357,542 +1447,498 @@ msgid ""
 "tasks at the times you selected in your preferences."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "&Atcelt"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "Vispārējais"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 #, fuzzy
 msgid "User name"
 msgstr "Lietotāja vārds:"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Resursu sadale"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 #, fuzzy
 msgid "Attached via account manager"
 msgstr "Pievienots konta menedžerim"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Lietojums"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Termiņš"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "CPU laiks"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 #, fuzzy
 msgid "Elapsed time"
 msgstr "Pavadītais laiks"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Jauns"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "Lejupielāde neizdevās"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "Lejupielādē"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Atlikts"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 #, fuzzy
 msgid " - CPU benchmarks"
 msgstr "Palaist veiktspējas te&stu"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "Izpildās"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Aprēķinu kļūda"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "Augšupielāde neizdevās"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "Augšupielādē"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Lietotāja pārtraukts"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Atzīts"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "Gatavs ziņošanai"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Kļūda: nederīgs stāvoklis '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "Iezvanpieejas un virtuālā privātā tīkla parametri"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "Ie&stādīt kā noklusēto"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "Noņemt no&klusēto"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Noklusētais pieslēgums:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Pieslēgumi"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Pieslēgties caur HTTP proxy serveri"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "HTTP proxy servera konfigurācija"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Adrese:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Ports:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Atstājiet laukus tukšus, ja nevajag"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Lietotāja vārds:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Parole:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "HTTP proxy"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Pieslēgties caur SOCKS proxy serveri"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "SOCKS proxy servera konfigurācija"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "SOCKS proxy"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s - Select Computer"
 msgstr "Izvēlieties datoru"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Datora vārds:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
 msgstr ""
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1908,245 +1954,240 @@ msgstr ""
 "BROWSER ar ceļu līdz pārlūkprogrammai,\n"
 "tad pārstartējiet BOINC."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "Ziņojumu dēļi"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "Sarakstīties ar citiem lietotājiem SETI at home ziņojumu dēļos"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "Jautājiet un nosūtiet problēmas"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "JÅ«su konts"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "Skatīt informāciju par jūsu kontu un kredītpunktiem"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "JÅ«su preferences"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr "Skatīt un modificēt jūsu SETI at home konta profilu un preferences"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "Jūsu rezultāti"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr ""
 "Apskatīt (vismaz) pēdējās nedēļas uzdevumus un par to izpildi piešķirtos "
 "kredītpunktus"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "JÅ«su datori"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr "Apskatīt visu datoru sarakstu uz kuriem jūs izpildāt SETI at Home"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "JÅ«su komanda"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "Apskatīt informāciju par jūsu komandu"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "Biežāk uzdotie jautājumi"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "Skatīt Einstein at Home biežāk uzdoto jautājumu sarakstu"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "Ekrānsaudzētāja informācija"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "Lasīt detalizētu aprakstu par Einstein at Home ekrānsaudzētāju"
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr ""
 "Sarakstīties ar administratoriem un citiem lietotājiem Einstein at Home "
 "ziņojumu dēļos"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "Einstein at Home statuss"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Einstein at Home servera pašreizējais statuss"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "Ziņot par problēmām"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr "Saite uz Einstein at Home problēmu un kļūdu ziņojumu dēli"
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr "Skatīt un modificēt jūsu Einstein at Home konta profilu un preferences"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "Konta kopsavilkums"
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr "Apskatīt visu datoru sarakstu uz kuriem jūs izpildāt Einstein at Home"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "LIGO projekts"
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr ""
 "Gravitācijas viļņu lāzerinterferometrijas observatorijas (LIGO projekta) "
 "mājas lapa"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "GEO-600 projekts"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "GEO-600 projekta mājas lapa"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Komanda"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "Apskatīt informāciju par jūsu komandu"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "Iegūt palīdzību par climateprediction.net"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "Jaunumi"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "Climateprediction.net jaunumi"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr "Skatīt informāciju par jūsu kontu, kredītpunktiem un starprezultātiem"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "Apskatīt informāciju par jūsu komandu"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr ""
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr ""
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr ""
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr ""
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr ""
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr ""
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr ""
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr ""
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr ""
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr ""
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "Atjauno sistēmas stāvokli, lūdzu, uzgaidiet..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "Atjauno datora informāciju, lūdzu, uzgaidiet..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "Nav savienojuma ar Internetu"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Lūdzu, pieslēdzieties pie Interneta un mēģiniet vēlreiz."
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Projekts nav atrasts"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/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 ""
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "Konta menedžeris nav atrasts"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2154,50 +2195,60 @@ msgid ""
 "Please check the URL and try again."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr "Pārbaudiet lietotāja vārdu un paroli, un mēģiniet vēlreiz."
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr "Pārbaudiet e-pasta adresi un paroli, un mēģiniet vēlreiz."
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "Projekta &URL:"
 
-#: clientgui/ProjectInfoPage.cpp:320
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:321
-#, fuzzy
-msgid "Already Attached to Project"
-msgstr "Jau ir pievienots projektam"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
 msgstr ""
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
 msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 #, fuzzy
 msgid ""
 "Communicating with project\n"
@@ -2206,17 +2257,18 @@ msgstr ""
 "Komunicējas ar projektu\n"
 "LÅ«dzu, uzgaidiet..."
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
 msgstr ""
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "Tīkla komunikāciju kļūda"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
+#, fuzzy
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2227,13 +2279,25 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
+"BOINC neizdevās komunicēties Internetā. Iespējams, ka tam\n"
+"par iemeslu ir:\n"
+"\n"
+"1) Jūsu ugunsmūra programmatūra bloķē BOINC. Jums vajag\n"
+"nokonfigurēt ugunsmūri, lai tas ļauj BOINC komunicēties caur\n"
+"80. portu. Tiklīdz tas ir darīts, noklikšķiniet Atpakaļ, lai mēģinātu\n"
+"vēlreiz.\n"
+"\n"
+"2) Jūs lietojat proxy serveri un BOINC ir nepieciešams par to zināt.\n"
+"\n"
+"Noklikšķiniet uz Nākamais, lai konfigurētu BOINC proxy parametrus.\n"
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
+#, fuzzy
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2249,494 +2313,483 @@ msgid ""
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
+"BOINC neizdevās komunicēties Internetā. Iespējams, ka tam\n"
+"par iemeslu ir:\n"
+"\n"
+"1) Jūsu ugunsmūra programmatūra bloķē BOINC. Jums vajag\n"
+"nokonfigurēt ugunsmūri, lai tas ļauj BOINC komunicēties caur\n"
+"80. portu. Tiklīdz tas ir darīts, noklikšķiniet Atpakaļ, lai mēģinātu\n"
+"vēlreiz.\n"
+"\n"
+"2) Jūs lietojat proxy serveri un BOINC ir nepieciešams par to zināt.\n"
+"\n"
+"Noklikšķiniet uz Nākamais, lai konfigurētu BOINC proxy parametrus.\n"
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Proxy konfigurācija"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "HTTP proxy"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "Serveris:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "Noteikt automātiski"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "SOCKS proxy"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Projekts"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "Laiks"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Ziņojums"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Kopēt visus ziņojumus starpliktuvē"
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 #, fuzzy
 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 ""
 "Kopēt atzīmētos ziņojumus starpliktuvē. Jūs varat atzīmēt vairākas ziņas "
 "pieturot Shift vai Ctrl taustiņus, kamēr spiežat uz ziņojuma."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
 "Kopēt atzīmētos ziņojumus starpliktuvē. Jūs varat atzīmēt vairākas ziņas "
 "pieturot Shift vai Ctrl taustiņus, kamēr spiežat uz ziņojuma."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "Vai tiešām vēlaties atvienoties no '%s' projekta?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "Atvienoties no projekta"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr "Vai tiešām vēlaties rādīt grafiku uz attālinātā datora?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Rādīt grafisko informāciju"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 #, fuzzy
 msgid "Application: "
 msgstr "Lietojums"
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 #, fuzzy
 msgid "Elapsed Time: "
 msgstr "Pavadītais laiks"
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Projekts īslaicīgi nav pieejams"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2746,11 +2799,11 @@ msgstr ""
 "\n"
 "Lūdzu vēlāk mēģiniet vēlreiz."
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "Konta menedžeris īslaicīgi nav pieejams"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2760,32 +2813,32 @@ msgstr ""
 "\n"
 "Lūdzu vēlāk mēģiniet vēlreiz."
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "Lūdzu, norādiet konta atslēgu, lai turpinātu."
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr "Nederīga konta atslēga. Lūdzu, ievadiet derīgu konta atslēgu"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Validācijas konflikts"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr ""
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "Iztrūkst URL"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2795,18 +2848,18 @@ msgstr ""
 "Piemēram:\n"
 "http://www.example.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "Nederīgs URL"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2816,192 +2869,159 @@ msgstr ""
 "Piemēram:\n"
 "http://boincprojekts.example.com"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "'%s' nesatur derīgu datora vārdu."
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "'%s' nesatur derīgu ceļu."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 #, fuzzy
 msgid "Commands"
 msgstr "&Komandas"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Kopēt visus ziņojumus"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Kopēt atzīmētos ziņojumus"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Ziņojumi"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "Kopē visus ziņojumus starpliktuvē..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 #, fuzzy
 msgid "Copying selected messages to the clipboard..."
 msgstr "Kopē visus ziņojumus starpliktuvē..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 #, fuzzy
 msgid "Show all messages"
 msgstr "Kopēt visus ziņojumus"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 #, fuzzy
 msgid "Copying selected messages to Clipboard..."
 msgstr "Kopē visus ziņojumus starpliktuvē..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 #, fuzzy
 msgid "BOINC Website"
 msgstr "BOINC &tīmekļa vietne"
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Aktualizēt"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 #, fuzzy
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr ""
 "Ziņot par paveikto, aktualizēt kredītpunktus un preferences, kā arī, "
 "iespējams, iegūt jaunus uzdevumus"
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Atlikt"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 #, fuzzy
 msgid "Suspend tasks for this project."
 msgstr "Atlikt uzdevumu izpildi no Å¡Ä« projekta"
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 #, fuzzy
 msgid "Don't get new tasks for this project."
 msgstr "Neņemt jaunus uzdevumus no šī projekta"
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Atjaunināt projektu"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 #, fuzzy
 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 ""
@@ -3010,591 +3030,562 @@ msgstr ""
 "Pirms tam jūs varat aktualizēt projektu, lai ziņotu par izpildītiem "
 "uzdevumiem."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Atvienoties no projekta"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 #, fuzzy
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr ""
 "Atvienot datoru no šī projekta. Nepabeigtie uzdevumi tiks zaudēti (lietojiet "
 "vispirms 'Aktualizēt', lai ziņotu par jau izpildītajiem)."
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Konts"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Statuss"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Projekti"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "Aktualizē projektu..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "Atsāk projektu..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "Atliek projektu..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 #, fuzzy
 msgid "Telling project to allow additional task downloads..."
 msgstr "Ziņo projektam par atļauju uz jaunu uzdevumu lejupielādi..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 #, fuzzy
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "Ziņo projektam par nevēlēšanos saņemt papildus uzdevumus..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "Atjaunina projektu..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Vai tiešām vēlaties atjaunināt projektu '%s'?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Atjaunināt projektu"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "Atvienojas no projekta..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "Palaiž pārlūkprogrammu..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Atsākt"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 #, fuzzy
 msgid "Resume tasks for this project."
 msgstr "Atsākt uzdevumu apstrādi šim projektam"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 #, fuzzy
 msgid "Allow fetching new tasks for this project."
 msgstr "Atļauj saņemt jaunus uzdevumus no šī projekta"
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 #, fuzzy
 msgid "Don't fetch new tasks for this project."
 msgstr "Nepieprasīt jaunus uzdevumus no šī projekta"
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Lietotāja atlikts"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 #, fuzzy
 msgid "Won't get new tasks"
 msgstr "Nesaņems jaunus uzdevumus"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Gaida plānotāja pieprasījuma rezultātu"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "Komunikācija atlikta uz "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Disks"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Lietotāja kopā iegūtie kredītpunkti"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Lietotāja vidēji iegūtie kredītpunkti"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Datora kopējie kredītpunkti"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Datora vidēji iegūtie kredītpunkti"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Rādīt lietotāja kopējo"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "Rādīt lietotāja vidējo"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Rādīt datora kopējo"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "Rādīt datora vidējo"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 #, fuzzy
 msgid "&Next project >"
 msgstr "Nākamais projekts"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "Režīma skats"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Statistika"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "Aktualizē diagrammas..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Mēģināt tagad"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "Klikšķiniet uz 'Mēģināt tagad', lai pārsūtītu failu"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Pārtraukt pārsūtīšanu"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr ""
 "Klikšķiniet uz 'Pārtraukt pārsūtīšanu', lai dzēstu failu no pārsūtīšanas "
 "rindas. Tas arī neļaus jums saņemt kredītpunktus par šo uzdevumu."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "Fails"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Progress"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Izmērs"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "Pavadītais laiks"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Ä€trums"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Pārsūtīšana"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "Mēģina pārsūtīt vēlreiz..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "Pārtrauc pārsūtīšanu..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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 ""
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Pārtraukt faila pārsūtīšanu"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "Atkārtos pēc "
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 #, fuzzy
 msgid "Aborting transfer(s)..."
 msgstr "Pārtrauc pārsūtīšanu..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
 "will not receive credit for it."
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 #, fuzzy
 msgid "Abort File Transfer(s)"
 msgstr "Pārtraukt faila pārsūtīšanu"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "Rādīt lietojuma grafisko informāciju logā"
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "Atlikt Å¡Ä« uzdevuma izpildi"
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Pārtraukt"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr ""
 "Atteikties no darba pie šī uzdevuma. Jūs neiegūsiet kredītpunktus par "
 "nepabeigtu darbu."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Uzdevums"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "Līdz pabaigšanai"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Uzdevumi"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 #, fuzzy
 msgid "Suspending task..."
 msgstr "Atliek Å¡Ä« uzdevuma izpildi..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 #, fuzzy
 msgid "Showing graphics for task..."
 msgstr "Rāda uzdevuma grafisko informāciju..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Pārtrauc uzdevumu..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+#, fuzzy, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "Vai tiešām vēlaties pārtaukt apstrādāt šo uzdevumu '%s'?"
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Pārtrauc uzdevumu..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 #, fuzzy
 msgid "Resume work for this task."
 msgstr "Atsākt šī uzdevuma izpildi."
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 #, fuzzy
 msgid "Suspend work for this task."
 msgstr "Atlikt Å¡Ä« uzdevuma izpildi"
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3603,14 +3594,13 @@ msgid ""
 "listed on or managed via %s."
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:350
-#, fuzzy
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
-msgstr "Tagad jūs vadīs caur pievienošanās procesu projektam."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3626,134 +3616,205 @@ msgid ""
 "World Community Grid then please click on the following button:"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "&Konta menedžeris"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "Atkļūdošanas karodziņi"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "Projekta īpašību kļūda"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "Projekta īpašību URL kļūda"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "Konta izveidošana nav iespējama"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "Klienta konta izveidošana nav iespējama"
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "Konts jau eksistē"
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "Projekts jau ir pievienots"
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "Projekta pievienošanas kļūda"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "Tīkla noteikšanas kļūda"
-
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "Lai turpinātu nospiediet Nākamais."
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "Vai tiešām vēlaties atcelt?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "Jautājums"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "&Nākamais >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< &Atpakaļ"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "&Beigt"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
 msgid "New page inserted. Index = %i"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
 msgid "New page appended. Index = %i"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
 msgid "Old Page Index = %i"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr ""
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 
+#~ msgid "Account Manager URL"
+#~ msgstr "Konta menedžera URL"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "Ievadiet konta menedžera tīmekļa vietnes URL."
+
+#, fuzzy
+#~ msgid "Attach to a project"
+#~ msgstr "Pievienoties projektam"
+
+#, fuzzy
+#~ msgid "Attach to &account manager..."
+#~ msgstr "Pievienoties konta menedžerim"
+
+#~ msgid "Attach to an account manager"
+#~ msgstr "Pievienoties konta menedžerim"
+
+#~ msgid "Attach to &project"
+#~ msgstr "P&ievienoties projektam"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "Pievienojas projektam..."
+
+#, fuzzy
+#~ msgid "Already Attached to Project"
+#~ msgstr "Jau ir pievienots projektam"
+
+#, fuzzy
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr "Tagad jūs vadīs caur pievienošanās procesu projektam."
+
+#~ msgid "Account manager"
+#~ msgstr "&Konta menedžeris"
+
+#~ msgid "Debug Flags"
+#~ msgstr "Atkļūdošanas karodziņi"
+
+#~ msgid "Project Properties Failure"
+#~ msgstr "Projekta īpašību kļūda"
+
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "Projekta īpašību URL kļūda"
+
+#~ msgid "Account Creation Disabled"
+#~ msgstr "Konta izveidošana nav iespējama"
+
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "Klienta konta izveidošana nav iespējama"
+
+#~ msgid "Account Already Exists"
+#~ msgstr "Konts jau eksistē"
+
+#~ msgid "Project Already Attached"
+#~ msgstr "Projekts jau ir pievienots"
+
+#~ msgid "Project Attach Failure"
+#~ msgstr "Projekta pievienošanas kļūda"
+
+#~ msgid "Net Detection Failure"
+#~ msgstr "Tīkla noteikšanas kļūda"
+
 #, fuzzy
 #~ msgid ""
 #~ "You can copy and paste the URL from your browser's\n"
@@ -3782,7 +3843,8 @@ msgstr ""
 #~ msgid ""
 #~ "If you haven't set a password, copy and paste your account\n"
 #~ "key into the Password box."
-#~ msgstr "Ja jums nav uzstādīta parole, tad pārkopējiet konta atslēgu paroles laukā."
+#~ msgstr ""
+#~ "Ja jums nav uzstādīta parole, tad pārkopējiet konta atslēgu paroles laukā."
 
 #~ msgid "Email address:"
 #~ msgstr "E-pasta adrese:"
@@ -3791,7 +3853,8 @@ msgstr ""
 #~ msgstr "Ievadiet konta atslēgu"
 
 #~ msgid "This project uses an \"account key\" to identify you."
-#~ msgstr "Šis projekts izmanto konta atslēgu (account key), lai jūs identificētu."
+#~ msgstr ""
+#~ "Šis projekts izmanto konta atslēgu (account key), lai jūs identificētu."
 
 #~ msgid ""
 #~ "Go to the project's web site to create an account. Your account\n"
@@ -3823,7 +3886,9 @@ msgstr ""
 #~ msgstr "BOINC pieslēgums tīklam pašlaik ir atlikts...\n"
 
 #~ msgid "BOINC Manager is currently reconnecting to a BOINC client...\n"
-#~ msgstr "BOINC menedžeris pašlaik mēģina atkārtoti pieslēgties pie BOINC klienta...\n"
+#~ msgstr ""
+#~ "BOINC menedžeris pašlaik mēģina atkārtoti pieslēgties pie BOINC "
+#~ "klienta...\n"
 
 #~ msgid "BOINC Manager is not currently connected to a BOINC client...\n"
 #~ msgstr "BOINC menedžeris pašlaik nav pieslēdzies pie BOINC klienta...\n"
@@ -3834,8 +3899,12 @@ msgstr ""
 #~ msgid "&About BOINC Manager..."
 #~ msgstr "Pa&r BOINC menedžeri..."
 
-#~ msgid "A software platform for distributed computing using volunteered computer resources"
-#~ msgstr "Programmatūras platforma dalītai skaitļošanai, lietojot brīvprātīgi ziedotos datora resursus"
+#~ msgid ""
+#~ "A software platform for distributed computing using volunteered computer "
+#~ "resources"
+#~ msgstr ""
+#~ "Programmatūras platforma dalītai skaitļošanai, lietojot brīvprātīgi "
+#~ "ziedotos datora resursus"
 
 #~ msgid "Your current account manager is:"
 #~ msgstr "Jūsu pašreizējais konta menedžeris ir:"
@@ -3864,8 +3933,12 @@ msgstr ""
 #~ msgid "Reminder Frequency:"
 #~ msgstr "Atgādinājumu biežums:"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
-#~ msgstr "Cik bieži (minūtēs) menedžerim vajadzētu jums atgādināt par iespējamiem pieslēguma notikumiem"
+#~ msgid ""
+#~ "How often, in minutes, should the manager remind you of possible "
+#~ "connection events."
+#~ msgstr ""
+#~ "Cik bieži (minūtēs) menedžerim vajadzētu jums atgādināt par iespējamiem "
+#~ "pieslēguma notikumiem"
 
 #~ msgid "&Automatically detect network connection settings"
 #~ msgstr "&Automātiski noteikt tīkla pieslēguma parametrus"
@@ -3894,8 +3967,12 @@ msgstr ""
 #~ msgid "Retry &communications"
 #~ msgstr "Atkārtot &datu apmaiņu ar projektu"
 
-#~ msgid "Report completed work, get latest credit, get latest preferences, and possibly get more work."
-#~ msgstr "Ziņot par paveikto, aktualizēt kredītpunktus un preferences, kā arī, iespējams, iegūt jaunus uzdevumus"
+#~ msgid ""
+#~ "Report completed work, get latest credit, get latest preferences, and "
+#~ "possibly get more work."
+#~ msgstr ""
+#~ "Ziņot par paveikto, aktualizēt kredītpunktus un preferences, kā arī, "
+#~ "iespējams, iegūt jaunus uzdevumus"
 
 #~ msgid "&Account manager"
 #~ msgstr "&Konta menedžeris"
@@ -3918,8 +3995,13 @@ msgstr ""
 #~ msgid "BOINC Manager - Network Status"
 #~ msgstr "BOINC menedžeris - tīkla statuss"
 
-#~ msgid "BOINC needs a connection to the Internet to perform some maintenance, open the BOINC Manager to connect up and perform the needed work."
-#~ msgstr "BOINC ir nepieciešams pieslēgties pie Interneta, lai veiktu apkopes darbus. Atveriet BOINC menedžeri, lai pieslēgtos un izpildītu nepieciešamo darbu."
+#~ msgid ""
+#~ "BOINC needs a connection to the Internet to perform some maintenance, "
+#~ "open the BOINC Manager to connect up and perform the needed work."
+#~ msgstr ""
+#~ "BOINC ir nepieciešams pieslēgties pie Interneta, lai veiktu apkopes "
+#~ "darbus. Atveriet BOINC menedžeri, lai pieslēgtos un izpildītu "
+#~ "nepieciešamo darbu."
 
 #~ msgid "BOINC Manager - Connection Failed"
 #~ msgstr "BOINC menedžeris - pieslēgties neizdevās"
@@ -3952,31 +4034,6 @@ msgstr ""
 #~ msgid "For a list of BOINC-based projects go to:"
 #~ msgstr "Lai iegūtu BOINC-bāzēto projektu sarakstu ejiet uz:"
 
-#~ msgid ""
-#~ "BOINC failed to communicate on the Internet. The most likely\n"
-#~ "reasons are:\n"
-#~ "\n"
-#~ "1) Personal firewall software is blocking BOINC. You must\n"
-#~ "configure your personal firewall to let BOINC communicate\n"
-#~ "on port 80. Once this is fixed, click Back to try again.\n"
-#~ "\n"
-#~ "2) You are using a proxy server and BOINC needs to know\n"
-#~ "about it.\n"
-#~ "\n"
-#~ "Click Next to configure BOINC's proxy settings.\n"
-#~ msgstr ""
-#~ "BOINC neizdevās komunicēties Internetā. Iespējams, ka tam\n"
-#~ "par iemeslu ir:\n"
-#~ "\n"
-#~ "1) Jūsu ugunsmūra programmatūra bloķē BOINC. Jums vajag\n"
-#~ "nokonfigurēt ugunsmūri, lai tas ļauj BOINC komunicēties caur\n"
-#~ "80. portu. Tiklīdz tas ir darīts, noklikšķiniet Atpakaļ, lai mēģinātu\n"
-#~ "vēlreiz.\n"
-#~ "\n"
-#~ "2) Jūs lietojat proxy serveri un BOINC ir nepieciešams par to zināt.\n"
-#~ "\n"
-#~ "Noklikšķiniet uz Nākamais, lai konfigurētu BOINC proxy parametrus.\n"
-
 #~ msgid "No new work"
 #~ msgstr "Neņemt jaunus uzdevumus"
 
@@ -3992,7 +4049,6 @@ msgstr ""
 #~ msgid "Disk Space"
 #~ msgstr "Aizņemtā diska vieta"
 
-#, c-format
 #~ msgid "Are you sure you want to abort this file transfer '%s'?"
 #~ msgstr "Vai tiešām vēlaties pārtraukt šī faila pārsūtīšanu '%s'?"
 
@@ -4002,10 +4058,6 @@ msgstr ""
 #~ msgid "Resuming result..."
 #~ msgstr "Atsāk izpildīt uzdevumu..."
 
-#, c-format
-#~ msgid "Are you sure you want to abort this result '%s'?"
-#~ msgstr "Vai tiešām vēlaties pārtaukt apstrādāt šo uzdevumu '%s'?"
-
 #~ msgid "Abort result"
 #~ msgstr "Pārtraukt uzdevumu"
 
diff --git a/locale/lv/BOINC-Web.po b/locale/lv/BOINC-Web.po
index 9b0134c..6d9ecaa 100644
--- a/locale/lv/BOINC-Web.po
+++ b/locale/lv/BOINC-Web.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -18,386 +18,312 @@ msgstr ""
 "X-Poedit-Country: UNITED STATES\n"
 "X-Poedit-KeywordsList: tra\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
 msgstr ""
 
-"
-
+#: poll.inc:47
 msgid "Other:"
 msgstr ""
 
-"
-
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
 msgstr ""
 
-"
-
+#: poll_data.inc:22
 msgid "less than a week"
 msgstr ""
 
-"
-
+#: poll_data.inc:23
 msgid "less than a month"
 msgstr ""
 
-"
-
+#: poll_data.inc:24
 msgid "less than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:25
 msgid "more than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:34
 msgid "I lost interest"
 msgstr ""
 
-"
-
+#: poll_data.inc:35
 msgid "it was too complicated"
 msgstr ""
 
-"
-
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
 msgstr ""
 
-"
-
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:38
 msgid "it used too much electricity"
 msgstr ""
 
-"
-
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr ""
 
-"
-
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
 msgstr ""
 
-"
-
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
 msgstr ""
 
-"
-
+#: poll_data.inc:50
 msgid "I had network communication problems"
 msgstr ""
 
-"
-
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
 msgstr ""
 
-"
-
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr ""
 
-"
-
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
 msgstr ""
 
-"
-
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr ""
 
-"
-
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr ""
 
-"
-
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr ""
 
-"
-
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr ""
 
-"
-
+#: poll_data.inc:87
 msgid "Home"
 msgstr ""
 
-"
-
+#: poll_data.inc:88
 msgid "Work"
 msgstr ""
 
-"
-
+#: poll_data.inc:89
 msgid "School"
 msgstr ""
 
-"
-
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr ""
 
-"
-
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr ""
 
-"
-
+#: poll_data.inc:119
 msgid "Age"
 msgstr ""
 
-"
-
+#: poll_data.inc:129
 msgid "Sex"
 msgstr ""
 
-"
-
+#: poll_data.inc:131
 msgid "Male"
 msgstr ""
 
-"
-
+#: poll_data.inc:132
 msgid "Female"
 msgstr ""
 
-"
-
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr ""
 
-"
-
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr ""
 
-"
-
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr ""
 
-"
-
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr ""
 
-"
-
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr ""
 
-"
-
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr ""
 
-"
-
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
 msgstr ""
 
-"
-
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr ""
 
-"
-
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr ""
 
-"
-
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr ""
 
-"
-
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr ""
 
-"
-
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr ""
 
-"
-
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr ""
 
-"
-
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr ""
 
-"
-
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr ""
 
-"
-
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr ""
 
-"
-
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr ""
 
-"
-
+#: poll_data.inc:192
 msgid "Yes"
 msgstr ""
 
-"
-
+#: poll_data.inc:193
 msgid "No"
 msgstr ""
 
-"
-
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr ""
 
-"
-
+#: poll_data.inc:200
 msgid "to read information"
 msgstr ""
 
-"
-
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr ""
 
-"
-
+#: poll_data.inc:202
 msgid "None"
 msgstr ""
 
-"
-
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr ""
 
-"
-
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr ""
 
-"
-
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr ""
 
-"
-
+#: download.php:40
 msgid "Download BOINC"
 msgstr ""
 
-"
-
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr ""
 
-"
-
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -405,41 +331,34 @@ msgid ""
 "computer, you can connect it to as many of these projects as you like."
 msgstr ""
 
-"
-
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
 "(GPU), you may be able to %suse it to compute faster%s"
 msgstr ""
 
-"
-
+#: download.php:120
 msgid "System requirements"
 msgstr ""
 
-"
-
+#: download.php:121
 msgid "Release notes"
 msgstr ""
 
-"
-
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr ""
 
-"
-
+#: download.php:123
 msgid "All versions"
 msgstr ""
 
-"
-
+#: download.php:141
 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 "
@@ -448,8 +367,7 @@ msgid ""
 "problems you might have."
 msgstr ""
 
-"
-
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -458,8 +376,7 @@ msgid ""
 "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 "
@@ -467,20 +384,17 @@ msgid ""
 "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 "
@@ -488,30 +402,70 @@ msgid ""
 "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 ""
 
-"
+#: index.php:23
+msgid "Computing power"
+msgstr ""
 
-msgid "Volunteer"
+#: index.php:25
+msgid "Top 100 volunteers"
 msgstr ""
 
-"
+#: index.php:26
+msgid "Statistics"
+msgstr ""
 
-msgid "Download"
+#: index.php:53
+msgid "Active:"
 msgstr ""
 
-"
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
 
-msgid "Documentation"
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
 msgstr ""
 
-"
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
 
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -520,28 +474,92 @@ msgid ""
 "sDownload%s and run BOINC software  %sEnter%s an email address and password. "
 msgstr ""
 
-"
-
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
 "sGridRepublic%s or %sBAM!%s. "
 msgstr ""
 
-"
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
 
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
 
-"
-
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr ""
 
-"
-
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -554,84 +572,68 @@ msgid ""
 "href=poll_results.php>here</a>. "
 msgstr ""
 
-"
-
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr ""
 
-"
-
+#: poll.php:30
 msgid "Your participation"
 msgstr ""
 
-"
-
+#: poll.php:32
 msgid "Your computers"
 msgstr ""
 
-"
-
+#: poll.php:34
 msgid "You"
 msgstr ""
 
-"
-
+#: poll.php:39
 msgid "Nationality"
 msgstr ""
 
-"
-
+#: poll.php:44
 msgid "Comments"
 msgstr ""
 
-"
-
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
 msgstr ""
 
-"
-
+#: poll.php:50
 msgid "When done click:"
 msgstr ""
 
-"
-
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
 msgstr ""
 
-"
-
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr ""
 
-"
-
+#: poll_results.php:195
 msgid "Survey results"
 msgstr ""
 
-"
-
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
 msgstr ""
 
-"
-
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 #~ msgid "CHARSET"
 #~ msgstr "UTF-8"
diff --git a/locale/lv/pootle-boincclient610-lv.prefs b/locale/lv/pootle-boincclient610-lv.prefs
new file mode 100644
index 0000000..fde74e5
--- /dev/null
+++ b/locale/lv/pootle-boincclient610-lv.prefs
@@ -0,0 +1,8 @@
+# Pootle preferences for project boinctrunk, language lv
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  Atis = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/lv/pootle-boinctrunk-lv.prefs b/locale/lv/pootle-boinctrunk-lv.prefs
deleted file mode 100644
index 79b833a..0000000
--- a/locale/lv/pootle-boinctrunk-lv.prefs
+++ /dev/null
@@ -1,2 +0,0 @@
-# Pootle preferences for project boinctrunk, language lv
-
diff --git a/locale/nb/BOINC-Manager.mo b/locale/nb/BOINC-Manager.mo
new file mode 100644
index 0000000..d2fd50c
Binary files /dev/null and b/locale/nb/BOINC-Manager.mo differ
diff --git a/locale/nb/BOINC-Manager.po b/locale/nb/BOINC-Manager.po
new file mode 100644
index 0000000..4b142cb
--- /dev/null
+++ b/locale/nb/BOINC-Manager.po
@@ -0,0 +1,3942 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: BOINC 610\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2009-11-30 12:04+0100\n"
+"Last-Translator: Kenneth Skjold <kenneth at skjold.biz>\n"
+"Language-Team: Hjelp andre <kenneth at skjold.biz>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.2.1\n"
+"X-Poedit-SearchPath-0: clientgui\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
+"X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
+
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr "Identifiser din konto"
+
+#: clientgui/AccountInfoPage.cpp:382
+msgid ""
+"Please enter your account information\n"
+"(to create an account, visit the project's web site)"
+msgstr ""
+"Vennligst skriv inn din konto informasjon\n"
+"(for å lage en konto, besøk prosjektets nettside)"
+
+#: clientgui/AccountInfoPage.cpp:386
+msgid ""
+"This project is not currently accepting new accounts.\n"
+"You can attach only if you already have an account."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:390
+msgid "Are you already running this project?"
+msgstr "Kjører du dette prosjektet allerede?"
+
+#: clientgui/AccountInfoPage.cpp:394
+msgid "&No, new user"
+msgstr "&Nei, ny bruker"
+
+#: clientgui/AccountInfoPage.cpp:397
+msgid "&Yes, existing user"
+msgstr "&Ja, eksisterende bruker"
+
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr "Finn påloggings informasjon"
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
+msgid "&Password:"
+msgstr "&Passord:"
+
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
+msgid "Choose a &password:"
+msgstr "Velg et &passord:"
+
+#: clientgui/AccountInfoPage.cpp:435
+#, fuzzy
+msgid "C&onfirm password:"
+msgstr "%w - Proxy passord"
+
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
+#, fuzzy, c-format
+msgid "Are you already running %s?"
+msgstr "Er du sikker på at du vil avslutte?"
+
+#: clientgui/AccountInfoPage.cpp:459
+msgid "&Username:"
+msgstr "&Brukernavn:"
+
+#: clientgui/AccountInfoPage.cpp:473
+msgid "&Email address:"
+msgstr "&Epost adresse:"
+
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
+msgid "minimum length %d"
+msgstr "minimums lengde %d"
+
+#: clientgui/AccountInfoPage.cpp:488
+msgid "Forgot your password?"
+msgstr "Glemt passordet ditt?"
+
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+#, fuzzy
+msgid "Account manager website"
+msgstr "Feil ved åpning av nettside"
+
+#: clientgui/AccountInfoPage.cpp:530
+#, fuzzy
+msgid "Attach to project"
+msgstr "Kryss-prosjekt statistikk"
+
+#: clientgui/AccountInfoPage.cpp:532
+#, fuzzy
+msgid "Update account manager"
+msgstr "Ã…pne Serveradministrasjon"
+
+#: clientgui/AccountInfoPage.cpp:534
+#, fuzzy
+msgid "Attach to account manager"
+msgstr "Koble til den spesifiserte serveren i Serveradministrasjonen"
+
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
+msgid "The minimum password length for this project is %d. Please enter a different password."
+msgstr ""
+"Minimums passordlengde for dette prosjektet er %d. Vennligst tast inn et "
+"annet passord."
+
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
+msgid "The minimum password length for this account manager is %d. Please enter a different password."
+msgstr ""
+"Minimums passordlengde for denne konto manageren er %d. Vennligst tast inn "
+"et annet passord."
+
+#: clientgui/AccountInfoPage.cpp:560
+msgid "The password and confirmation password do not match. Please type them again."
+msgstr ""
+"Passordet og bekreftese av passordet stemmer ikke. Vennligst skriv dem "
+"igjen."
+
+#: clientgui/AccountManagerInfoPage.cpp:249
+#, fuzzy
+msgid "Choose an account manager"
+msgstr "Ã…pne Serveradministrasjon"
+
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+
+#: clientgui/AccountManagerInfoPage.cpp:255
+#, fuzzy
+msgid "Account Manager &URL:"
+msgstr "Klarte ikke åpne URL «%s»"
+
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
+#, fuzzy, c-format
+msgid "Communicating with %s."
+msgstr "Erstatt med:"
+
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
+#, fuzzy
+msgid "Communicating with server."
+msgstr "Tilkobling med testserveren feilet."
+
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
+#, fuzzy
+msgid "Please wait..."
+msgstr "Vent mens utskriften pågår\n"
+
+#: clientgui/AccountManagerProcessingPage.cpp:325
+#, fuzzy
+msgid "An internal server error has occurred.\n"
+msgstr "En intern feil har oppstått i DDEML-en."
+
+#: clientgui/AdvancedFrame.cpp:93
+msgid "Connected"
+msgstr "Tilkoblet"
+
+#: clientgui/AdvancedFrame.cpp:101
+#, fuzzy
+msgid "Disconnected"
+msgstr "Koblet fra serveren"
+
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+#, fuzzy, c-format
+msgid "Close the %s window"
+msgstr "Lukk vindu"
+
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr "Avslutt %s"
+
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
+msgid "E&xit"
+msgstr "&Avslutt"
+
+#: clientgui/AdvancedFrame.cpp:333
+#, fuzzy
+msgid "&Projects\tCtrl+Shift+P"
+msgstr "Sett bokmerke %i\tCtrl-%i"
+
+#: clientgui/AdvancedFrame.cpp:334
+#, fuzzy
+msgid "Display projects"
+msgstr "Vis innhold"
+
+#: clientgui/AdvancedFrame.cpp:339
+#, fuzzy
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr "Sett bokmerke %i\tCtrl-%i"
+
+#: clientgui/AdvancedFrame.cpp:340
+#, fuzzy
+msgid "Display tasks"
+msgstr "Vis innhold"
+
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr "Overføringer\tCtrl+Shift+X"
+
+#: clientgui/AdvancedFrame.cpp:346
+#, fuzzy
+msgid "Display transfers"
+msgstr "Samtidige overføringer"
+
+#: clientgui/AdvancedFrame.cpp:351
+#, fuzzy
+msgid "&Messages\tCtrl+Shift+M"
+msgstr "Sett bokmerke %i\tCtrl-%i"
+
+#: clientgui/AdvancedFrame.cpp:352
+#, fuzzy
+msgid "Display messages"
+msgstr "Private meldinger"
+
+#: clientgui/AdvancedFrame.cpp:357
+#, fuzzy
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr "Sett bokmerke %i\tCtrl-%i"
+
+#: clientgui/AdvancedFrame.cpp:358
+#, fuzzy
+msgid "Display statistics"
+msgstr "Vis innhold"
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr "&Disk bruk\tCtrl+Shift+D"
+
+#: clientgui/AdvancedFrame.cpp:364
+#, fuzzy
+msgid "Display disk usage"
+msgstr "Total diskbruk"
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "Enkel &Visning...\tCtrl+Shift+V"
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr "Vis det enkle grafiske brukergrensesnittet."
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr "Koble til et &prosjekt eller en konto manager..."
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+"Koble til et prosjekt eller en konto manager for å begynne å prosessere "
+"arbeid"
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
+#, fuzzy, c-format
+msgid "&Synchronize with %s"
+msgstr "Erstatt med:"
+
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
+#, fuzzy, c-format
+msgid "Get current settings from %s"
+msgstr "Slett gjeldende side fra bokmerker"
+
+#: clientgui/AdvancedFrame.cpp:412
+#, fuzzy
+msgid "Attach to &project..."
+msgstr "Kryss-prosjekt statistikk"
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Koble til et prosjekt for å begynne å prosessere arbeid"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+#, fuzzy, c-format
+msgid "&Stop using %s..."
+msgstr "Bruker proxy %s"
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Fjern klient fra konto manager kontroll."
+
+#: clientgui/AdvancedFrame.cpp:432
+#, fuzzy
+msgid "&Run always"
+msgstr "Kjø&r kommando..."
+
+#: clientgui/AdvancedFrame.cpp:433
+msgid "Allow work regardless of preferences"
+msgstr "Tillat arbeid uavhengig av preferanser"
+
+#: clientgui/AdvancedFrame.cpp:437
+msgid "Run based on &preferences"
+msgstr "Kjør basert på &preferansene"
+
+#: clientgui/AdvancedFrame.cpp:438
+msgid "Allow work according to your preferences"
+msgstr "Tillat arbeid i henhold til dine preferanser"
+
+#: clientgui/AdvancedFrame.cpp:442
+msgid "&Suspend"
+msgstr "&Suspendert"
+
+#: clientgui/AdvancedFrame.cpp:443
+msgid "Stop work regardless of preferences"
+msgstr "Stopp arbeid uavhengig av preferanser"
+
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+#, fuzzy
+msgid "Allow GPU work regardless of preferences"
+msgstr "Tillat arbeid uavhengig av preferanser"
+
+#: clientgui/AdvancedFrame.cpp:473
+#, fuzzy
+msgid "Use GPU based on &preferences"
+msgstr "Kjør basert på &preferansene"
+
+#: clientgui/AdvancedFrame.cpp:474
+#, fuzzy
+msgid "Allow GPU work according to your preferences"
+msgstr "Tillat arbeid i henhold til dine preferanser"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+#, fuzzy
+msgid "Stop GPU work regardless of preferences"
+msgstr "Stopp arbeid uavhengig av preferanser"
+
+#: clientgui/AdvancedFrame.cpp:503
+msgid "&Network activity always available"
+msgstr "&Nettverks aktivitet alltid tillatt"
+
+#: clientgui/AdvancedFrame.cpp:504
+msgid "Allow network activity regardless of preferences"
+msgstr "Tillat nettverks bruk uavhengig av preferansene"
+
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
+msgstr "Nettverks bruk basert på pre&feransene"
+
+#: clientgui/AdvancedFrame.cpp:509
+msgid "Allow network activity according to your preferences"
+msgstr "Tillat nettverks bruk i henhold til dine preferanser"
+
+#: clientgui/AdvancedFrame.cpp:513
+#, fuzzy
+msgid "Network activity s&uspended"
+msgstr "&Veiviser for nettverkskonfigurasjon..."
+
+#: clientgui/AdvancedFrame.cpp:514
+msgid "Stop BOINC network activity"
+msgstr "Stopp BOINC nettverks aktivitet"
+
+#: clientgui/AdvancedFrame.cpp:521
+#, fuzzy
+msgid "&Options..."
+msgstr "Opsjoner"
+
+#: clientgui/AdvancedFrame.cpp:522
+msgid "Configure GUI options and proxy settings"
+msgstr "Konfigurer GUI alternativer og proxy settinger"
+
+#: clientgui/AdvancedFrame.cpp:526
+#, fuzzy
+msgid "&Preferences..."
+msgstr "&Innstillinger ..."
+
+#: clientgui/AdvancedFrame.cpp:527
+#, fuzzy
+msgid "Configure local preferences"
+msgstr "&Lokalt mappetre"
+
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
+msgid "Connect to another computer running %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:538
+msgid "Select computer..."
+msgstr "Velg datamaskin..."
+
+#: clientgui/AdvancedFrame.cpp:543
+msgid "Shut down connected client..."
+msgstr "Avslutt tilkoblet klient..."
+
+#: clientgui/AdvancedFrame.cpp:544
+msgid "Shut down the currently connected core client"
+msgstr "Avslutt den nåværende tilkoblete kjerne klient"
+
+#: clientgui/AdvancedFrame.cpp:548
+#, fuzzy
+msgid "Run CPU &benchmarks"
+msgstr "&Kjør konfigurasjonsveiviser nå..."
+
+#: clientgui/AdvancedFrame.cpp:549
+msgid "Runs BOINC CPU benchmarks"
+msgstr "Kjører BOINC CPU benchmarks"
+
+#: clientgui/AdvancedFrame.cpp:553
+#, fuzzy
+msgid "Do network &communication"
+msgstr "&Veiviser for nettverkskonfigurasjon..."
+
+#: clientgui/AdvancedFrame.cpp:554
+msgid "Do all pending network communication."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:558
+#, fuzzy
+msgid "Read config file"
+msgstr "Lesefeil i fil «%s»"
+
+#: clientgui/AdvancedFrame.cpp:559
+msgid "Read configuration info from cc_config.xml."
+msgstr "Les konfigurasjon info fra cc_config.xml."
+
+#: clientgui/AdvancedFrame.cpp:563
+#, fuzzy
+msgid "Read local prefs file"
+msgstr "Lesefeil i fil «%s»"
+
+#: clientgui/AdvancedFrame.cpp:564
+msgid "Read preferences from global_prefs_override.xml."
+msgstr "Les preferanser fra global_prefs_overide.xml."
+
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
+#, fuzzy, c-format
+msgid "%s &help"
+msgstr "&Hjelp"
+
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
+#, fuzzy, c-format
+msgid "Show information about %s"
+msgstr "Vis om-dialogen"
+
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
+#, fuzzy, c-format
+msgid "&%s help"
+msgstr "&Hjelp"
+
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
+#, fuzzy, c-format
+msgid "Show information about the %s"
+msgstr "Vis om-dialogen"
+
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
+#, fuzzy, c-format
+msgid "%s &website"
+msgstr "BOINC Nettside"
+
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
+msgid "Show information about BOINC and %s"
+msgstr "Vis informasjon om BOINC og %s"
+
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
+msgid "&About %s..."
+msgstr "&Om %s..."
+
+#: clientgui/AdvancedFrame.cpp:634
+msgid "Licensing and copyright information."
+msgstr "Lisensiering og informasjon om opphavsrett."
+
+#: clientgui/AdvancedFrame.cpp:641
+msgid "&File"
+msgstr "&Fil"
+
+#: clientgui/AdvancedFrame.cpp:645
+msgid "&View"
+msgstr "&Visning"
+
+#: clientgui/AdvancedFrame.cpp:649
+msgid "&Tools"
+msgstr "&Verktøy"
+
+#: clientgui/AdvancedFrame.cpp:653
+msgid "&Activity"
+msgstr "&Aktivitet"
+
+#: clientgui/AdvancedFrame.cpp:657
+msgid "A&dvanced"
+msgstr "Avansert"
+
+#: clientgui/AdvancedFrame.cpp:661
+msgid "&Help"
+msgstr "&Hjelp"
+
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr "Kobler til et prosjekt eller en konto manager..."
+
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
+#, fuzzy, c-format
+msgid "%s - Detach from %s"
+msgstr "Gyldig fra:"
+
+#: clientgui/AdvancedFrame.cpp:1126
+#, 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 ""
+
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
+#, fuzzy, c-format
+msgid "%s - Language Selection"
+msgstr "Språk valg"
+
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
+msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+#, fuzzy, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "Avbryt nåværende tilkobling?"
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
+msgid "%s"
+msgstr "%s"
+
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
+msgid "%s has successfully attached to %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
+msgid "%s - (%s)"
+msgstr "%s - (%s)"
+
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
+msgid "Connecting to %s"
+msgstr "Kobler til %s"
+
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
+#, fuzzy, c-format
+msgid "Connected to %s (%s)"
+msgstr "Kobler til %s"
+
+#: clientgui/AlreadyExistsPage.cpp:182
+#, fuzzy
+msgid "Username already in use"
+msgstr "Filetternavnet '%s' finnes allerede i listen"
+
+#: clientgui/AlreadyExistsPage.cpp:185
+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 ""
+
+#: clientgui/AlreadyExistsPage.cpp:189
+msgid "Email address already in use"
+msgstr "Epost adressen er alllerede i bruk"
+
+#: clientgui/AlreadyExistsPage.cpp:192
+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 ""
+
+#: clientgui/AsyncRPC.cpp:1207
+msgid "Communicating with BOINC client.  Please wait ..."
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+#, fuzzy, c-format
+msgid "&Quit %s"
+msgstr "&Slutt"
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+#, fuzzy, c-format
+msgid "E&xit %s"
+msgstr "&Avslutt"
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "Avbryt"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
+#, fuzzy, c-format
+msgid "%s - Connection Error"
+msgstr "Tilkoblingsfeil: %(msg)s"
+
+#: clientgui/BOINCBaseFrame.cpp:431
+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 ""
+
+#: clientgui/BOINCBaseFrame.cpp:440
+msgid ""
+"Authorization failed connecting to running client.\n"
+"Make sure you start this program in the same directory as the client."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:442
+msgid "Authorization failed connecting to running client."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:450
+msgid "The password you have provided is incorrect, please try again."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
+#, fuzzy, c-format
+msgid "%s - Connection Failed"
+msgstr "Tilkoblingsforsøket feilet"
+
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
+msgid ""
+"%s is not able to connect to a %s client.\n"
+"Would you like to try to connect again?"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
+#, fuzzy, c-format
+msgid "%s - Daemon Start Failed"
+msgstr "Utførelse av kommandoen «%s» feilet"
+
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
+
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
+msgid ""
+"%s is not able to start a %s client.\n"
+"Please start the daemon and try again."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
+#, fuzzy, c-format
+msgid "%s - Connection Status"
+msgstr "Tilkoblingen lukket"
+
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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 ""
+
+#: clientgui/BOINCBaseView.cpp:723
+#, fuzzy
+msgid "Web sites"
+msgstr "Mine FTP-servere"
+
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
+#, fuzzy, c-format
+msgid "%s - Network Status"
+msgstr "Nettverk utilgjengelig"
+
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
+msgid "%s needs to connect to the Internet.  Please click to open %s."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
+msgid ""
+"%s is unable to communicate with a project and needs an Internet connection.\n"
+"Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
+msgid ""
+"%s needs to connect to the Internet.\n"
+"May it do so now?"
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
+#, fuzzy, c-format
+msgid "%s is connecting to the Internet."
+msgstr "Kobler til %s gjennom proxy"
+
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
+msgid ""
+"%s couldn't do Internet communication, and no default connection is selected.\n"
+"Please connect to the Internet, or select a default connection\n"
+"using Advanced/Options/Connections."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
+msgid "%s has successfully connected to the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
+#, fuzzy, c-format
+msgid "%s failed to connect to the Internet."
+msgstr "Klarte ikke opprette forbindelse: manglende brukernavn/passord."
+
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
+msgid ""
+"%s has detected it is now connected to the Internet.\n"
+"Updating all projects and retrying all transfers."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
+msgid "%s has successfully disconnected from the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
+#, fuzzy, c-format
+msgid "%s failed to disconnected from the Internet."
+msgstr "Klarte ikke hente data fra utklippstavlen."
+
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:378
+msgid ""
+"A reboot is required in order for BOINC to run properly.\n"
+"Please reboot your computer and try again."
+msgstr ""
+"En restart er nødvendig for at BOINC skal kjøre skikkelig.\n"
+"Vennligst restart din datamaskin og forsøk igjen."
+
+#: clientgui/BOINCGUIApp.cpp:379
+#, fuzzy
+msgid "BOINC Manager"
+msgstr "&Serveradministrasjon..."
+
+#: clientgui/BOINCGUIApp.cpp:526
+msgid "BOINC Manager was started by the operating system automatically"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:528
+msgid "Startup BOINC so only the system tray icon is visible"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+#, fuzzy
+msgid "BOINC data directory"
+msgstr "Opprett ny mappe"
+
+#: clientgui/BOINCGUIApp.cpp:533
+msgid "Startup BOINC with these optional arguments"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:534
+msgid "disable BOINC security users and permissions"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:535
+msgid "set skin debugging mode to enable skin manager error messages"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:725
+#, fuzzy
+msgid "(Automatic Detection)"
+msgstr "Automatisk stavekontroll"
+
+#: clientgui/BOINCGUIApp.cpp:726
+#, fuzzy
+msgid "(Unknown)"
+msgstr "ukjent"
+
+#: clientgui/BOINCGUIApp.cpp:727
+#, fuzzy
+msgid "(User Defined)"
+msgstr "%s - Proxy bruker"
+
+#: clientgui/BOINCTaskBar.cpp:348
+#, fuzzy
+msgid "Computation is suspended."
+msgstr "er lik"
+
+#: clientgui/BOINCTaskBar.cpp:356
+msgid "Network activity is suspended."
+msgstr "Nettverks aktiviteten er suspendert."
+
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
+#, fuzzy, c-format
+msgid "%s: %.2f%% completed."
+msgstr "Nedlasting ferdig"
+
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
+#, fuzzy, c-format
+msgid "%d tasks running."
+msgstr "Vis alle oppgaver"
+
+#: clientgui/BOINCTaskBar.cpp:412
+#, fuzzy
+msgid "Reconnecting to client."
+msgstr "Klient til server MAC:"
+
+#: clientgui/BOINCTaskBar.cpp:418
+#, fuzzy
+msgid "Not connected to a client."
+msgstr "Er ikke tilkoblet noen server"
+
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
+#, fuzzy, c-format
+msgid "Open %s Web..."
+msgstr "Nettside"
+
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
+#, fuzzy, c-format
+msgid "Open %s..."
+msgstr "&Ã…pne"
+
+#: clientgui/BOINCTaskBar.cpp:623
+msgid "Snooze"
+msgstr "Snooze"
+
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
+#, fuzzy
+msgid "Failed to attach to project"
+msgstr "Klarte ikke %s oppringingsforbindelse: %s"
+
+#: clientgui/CompletionErrorPage.cpp:204
+#, fuzzy
+msgid "Failed to update account manager"
+msgstr "Klarte ikke oppdatere bruker konfigurasjonsfil."
+
+#: clientgui/CompletionErrorPage.cpp:208
+#, fuzzy
+msgid "Failed to remove account manager"
+msgstr "Klarte ikke slette låsefil «%s»"
+
+#: clientgui/CompletionErrorPage.cpp:212
+#, fuzzy
+msgid "Failed to attach to account manager"
+msgstr "Klarte ikke oppdatere bruker konfigurasjonsfil."
+
+#: clientgui/CompletionErrorPage.cpp:221
+msgid ""
+"An error has occurred;\n"
+"check Messages for details.\n"
+"\n"
+"Click Finish to close."
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
+#, fuzzy
+msgid "Click Finish to close."
+msgstr "Klarte ikke lukke utklippstavlen."
+
+#: clientgui/CompletionErrorPage.cpp:234
+#, fuzzy
+msgid "Messages from server:"
+msgstr "&Koble fra server"
+
+#: clientgui/CompletionPage.cpp:208
+#, fuzzy
+msgid "Attached to project"
+msgstr "Kryss-prosjekt statistikk"
+
+#: clientgui/CompletionPage.cpp:214
+msgid "You are now successfully attached to this project."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:219
+msgid ""
+"When you click Finish, your web browser will go to a page where\n"
+"you can set your account name and preferences."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:236
+#, c-format
+#, fuzzy, c-format
+msgid "Update from %s completed."
+msgstr "&Oppdater fra kilden"
+
+#: clientgui/CompletionPage.cpp:240
+#, fuzzy
+msgid "Update completed."
+msgstr "Nedlasting ferdig"
+
+#: clientgui/CompletionPage.cpp:257
+#, c-format
+#, fuzzy, c-format
+msgid "Attached to %s"
+msgstr "Kobler til %s"
+
+#: clientgui/CompletionPage.cpp:261
+#, fuzzy
+msgid "Attached to account manager"
+msgstr "Koble til den spesifiserte serveren i Serveradministrasjonen"
+
+#: clientgui/CompletionPage.cpp:271
+#, c-format
+#, fuzzy, c-format
+msgid "Welcome to %s!"
+msgstr "Kobler til %s"
+
+#: clientgui/CompletionPage.cpp:285
+#, c-format
+msgid "You are now successfully attached to the %s system."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:289
+msgid "You are now successfully attached to this account manager."
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:98
+#, c-format
+#, fuzzy, c-format
+msgid "About %s"
+msgstr "%Om"
+
+#: clientgui/DlgAbout.cpp:155
+#, fuzzy
+msgid "Version:"
+msgstr "&Versjon %s"
+
+#: clientgui/DlgAbout.cpp:163
+#, fuzzy
+msgid "wxWidgets Version:"
+msgstr "Se etter _oppdateringer..."
+
+#: clientgui/DlgAbout.cpp:171
+msgid "Copyright:"
+msgstr "Copyright:"
+
+#: clientgui/DlgAbout.cpp:175
+#, fuzzy
+msgid ""
+"(C) 2003-2010 University of California, Berkeley.\n"
+"All Rights Reserved."
+msgstr ""
+"(C) 2003-2008 University of California, Berkeley.\n"
+"All Rights Reserved."
+
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
+msgid "Berkeley Open Infrastructure for Network Computing"
+msgstr "Berkeley Open Infrastructure for Network Computing"
+
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
+msgid "&OK"
+msgstr "&OK"
+
+#: clientgui/DlgAdvPreferences.cpp:485
+#, fuzzy
+msgid "invalid float"
+msgstr "«%s» er ugyldig"
+
+#: clientgui/DlgAdvPreferences.cpp:486
+msgid "invalid time, format is HH:MM"
+msgstr "ugyldig tid, formatet er TT:MM"
+
+#: clientgui/DlgAdvPreferences.cpp:487
+msgid "invalid time interval, format is HH:MM-HH:MM"
+msgstr "ugyldig tidsintervall, formatet er TT:MM-TT:MM"
+
+#: clientgui/DlgAdvPreferences.cpp:601
+#, fuzzy
+msgid "invalid input value detected"
+msgstr "ugyldig eof() returverdi."
+
+#: clientgui/DlgAdvPreferences.cpp:603
+#, fuzzy
+msgid "Validation Error"
+msgstr "(feil %ld: %s)"
+
+#: clientgui/DlgAdvPreferences.cpp:747
+msgid "Do you really want to clear all local preferences ?"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:748
+msgid "Confirmation"
+msgstr "Bekreftelse"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
+#, fuzzy, c-format
+msgid "%s - Preferences"
+msgstr "&Innstillinger"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:49
+msgid ""
+"This dialog controls preferences for this computer only.\n"
+"Click OK to set preferences.\n"
+"Click Clear to restore web-based settings."
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:52
+#, fuzzy
+msgid "Clear"
+msgstr "&Tøm"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:53
+msgid "clear all local preferences and close the dialog"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:76
+#, fuzzy
+msgid "Computing allowed"
+msgstr "Databehandling preferanser"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:80
+msgid " While computer is on batteries"
+msgstr "Mens datamaskinen er på batterier"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:83
+msgid "check this if you want this computer to do work while it runs on batteries"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:89
+#, fuzzy
+msgid " While computer is in use"
+msgstr "% når datamaskinen er i bruk"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:92
+msgid "check this if you want this computer to do work even when you're using it"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:98
+msgid " Use GPU while computer is in use"
+msgstr "Bruk GPU mens datamaskinen er i bruk"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:101
+msgid "check this if you want your GPU to do work even when you're using the computer"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:113
+msgid "Only after computer has been idle for"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:123
+msgid "do work only after you haven't used the computer for this number of minutes"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
+#, fuzzy
+msgid "minutes"
+msgstr "Minutter"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+#, fuzzy
+msgid "While processor usage is less than"
+msgstr "prosessor bruk"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
+msgid "Every day between hours of"
+msgstr "Hver dag mellom"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:181
+msgid "start work at this time"
+msgstr "start arbeid klokken"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
+#, fuzzy
+msgid "and"
+msgstr "%s og %s. Total størrelse: %s"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:189
+msgid "stop work at this time"
+msgstr "stopp arbeid klokken"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
+msgid "(no restriction if equal)"
+msgstr "(ingen begrensninger hvis lik)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
+#, fuzzy
+msgid "Day-of-week override:"
+msgstr "%(count)d dag siden"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
+msgid "check box to specify hours for this day of week"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
+msgid "Monday"
+msgstr "Mandag"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
+msgid "Tuesday"
+msgstr "Tirsdag"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
+msgid "Wednesday"
+msgstr "Onsdag"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
+msgid "Thursday"
+msgstr "Torsdag"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
+msgid "Friday"
+msgstr "Fredag"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
+msgid "Saturday"
+msgstr "Lørdag"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
+msgid "Sunday"
+msgstr "Søndag"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:272
+#, fuzzy
+msgid "Other options"
+msgstr "Skriveropsjoner"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:289
+msgid "On multiprocessor systems, use at most"
+msgstr "PÃ¥ flerprosessor systemer, ikke bruk mer enn"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
+msgid "% of the processors"
+msgstr "% av prosessorene"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
+#, fuzzy
+msgid "Use at most"
+msgstr "(Minst 7 dager)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
+#, fuzzy, no-c-format
+msgid "% CPU time"
+msgstr "Forløpt tid :"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:316
+msgid "processor usage"
+msgstr "prosessor bruk"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:324
+#, fuzzy
+msgid "General options"
+msgstr "Skriveropsjoner"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:331
+#, fuzzy
+msgid "Maximum download rate"
+msgstr "Last ned valgt mappe"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
+msgid "KBytes/sec."
+msgstr "KBytes/sek."
+
+#: clientgui/DlgAdvPreferencesBase.cpp:340
+#, fuzzy
+msgid "Maximum upload rate"
+msgstr "Last opp valgte mappe"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:349
+#, fuzzy
+msgid "Connect about every"
+msgstr "Hvert 30. minutt"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:353
+msgid ""
+"this computer is connected to the Internet about every X days\n"
+"(0 if it's always connected)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:357
+#, fuzzy
+msgid "days"
+msgstr "3 dager"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:360
+#, fuzzy
+msgid "Additional work buffer"
+msgstr "«%s» er sannsynligvis en binær buffer."
+
+#: clientgui/DlgAdvPreferencesBase.cpp:366
+#, fuzzy
+msgid "days (max. 10)"
+msgstr "Sett 10 dager siden"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:369
+#, fuzzy
+msgid " Skip image file verification"
+msgstr "ICO: Feil ved skriving av bildefil!"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:371
+msgid "check this if your Internet provider modifies image files"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:380
+#, fuzzy
+msgid "Connect options"
+msgstr "Skriveropsjoner"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:382
+msgid "Confirm before connecting to internet"
+msgstr "Bekreft før internett tilkobling"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:384
+msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:388
+#, fuzzy
+msgid "Disconnect when done"
+msgstr "&Koble fra server"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:390
+msgid ""
+"if checked, BOINC hangs up when network usage is done\n"
+"(only relevant for dialup-connection)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:397
+#, fuzzy
+msgid "Network usage allowed"
+msgstr "Total diskbruk"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:406
+msgid "network usage start hour"
+msgstr "nettverksbruk start tidspunkt"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:414
+msgid "network usage stop hour"
+msgstr "nettverksbruk stopp tidspunkt"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:499
+msgid "network usage"
+msgstr "Nettverks bruk"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
+msgid "Disk usage"
+msgstr "Diskbruk"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:519
+msgid "the maximum disk space used by BOINC (in Gigabytes)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:523
+#, fuzzy
+msgid "Gigabytes disk space"
+msgstr "Ikke nok lagringsplass"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:526
+#, fuzzy
+msgid "Leave at least"
+msgstr "(Minst 7 dager)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:530
+msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:534
+#, fuzzy
+msgid "Gigabytes disk space free"
+msgstr "Ledig plass på disken:"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:541
+msgid "BOINC uses at most this percentage of total disk space"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
+#, fuzzy, no-c-format
+msgid "% of total disk space"
+msgstr "Total diskbruk"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:555
+#, fuzzy
+msgid "seconds"
+msgstr "(0-999 sekunder)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
+msgid "% of page file (swap space)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:573
+#, fuzzy
+msgid "Memory usage"
+msgstr "prosessor bruk"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
+msgid "% when computer is in use"
+msgstr "% når datamaskinen er i bruk"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
+#, fuzzy, no-c-format
+msgid "% when computer is idle"
+msgstr "% når datamaskinen er i bruk"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:603
+msgid " Leave applications in memory while suspended"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:605
+msgid "if checked, suspended work units are left in memory"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:614
+msgid "disk and memory usage"
+msgstr "disk og minne bruk"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:627
+msgid "OK"
+msgstr "OK"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:628
+msgid "save all values and close the dialog"
+msgstr "lagre alle verdier og lukk dialogen"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:633
+msgid "close the dialog without saving"
+msgstr "lukk dialogen uten å lagre"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
+msgid "Help"
+msgstr "Hjelp"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:638
+#, fuzzy
+msgid "shows the preferences web page"
+msgstr "URL til Teamets nettside, hvis det er en nettside"
+
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
+#, fuzzy, c-format
+msgid "%s - Exit Confirmation"
+msgstr "Bekreftelse nødvendig"
+
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
+msgid ""
+"You have requested to exit the %s,\n"
+"which allows you to view and manage\n"
+"the science applications running on your computer.\n"
+"\n"
+"If you also want to stop running the science applications when you\n"
+"exit the Manager, then choose from the following options:"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
+msgid ""
+"This will shut down %s and its tasks entirely until either the\n"
+"%s application 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 ""
+
+#: clientgui/DlgExitMessage.cpp:153
+msgid "Stop running science applications when exiting the Manager"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:164
+msgid "Remember this decision and do not show this dialog."
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
+msgid "&Cancel"
+msgstr "&Avbryt"
+
+#: clientgui/DlgGenericMessage.cpp:112
+#, fuzzy
+msgid "Don't show this dialog again."
+msgstr "&Ikke vis denne dialogen igjen."
+
+#: clientgui/DlgItemProperties.cpp:63
+msgid "&Close"
+msgstr "&Lukk"
+
+#: clientgui/DlgItemProperties.cpp:195
+#, fuzzy
+msgid "Properties of project "
+msgstr "Slett prosjekt"
+
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
+msgid "General"
+msgstr "Generell"
+
+#: clientgui/DlgItemProperties.cpp:200
+#, fuzzy
+msgid "Master URL"
+msgstr "FTP URL"
+
+#: clientgui/DlgItemProperties.cpp:201
+msgid "User name"
+msgstr "Brukernavn"
+
+#: clientgui/DlgItemProperties.cpp:202
+msgid "Team name"
+msgstr "Team navn"
+
+#: clientgui/DlgItemProperties.cpp:203
+#, fuzzy
+msgid "Resource share"
+msgstr "Resurs deling og grafikk"
+
+#: clientgui/DlgItemProperties.cpp:205
+msgid "Scheduler RPC deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:208
+#, fuzzy
+msgid "File downloads deferred for"
+msgstr "Grense for samtidige &nedlastinger:"
+
+#: clientgui/DlgItemProperties.cpp:211
+#, fuzzy
+msgid "File uploads deferred for"
+msgstr "Grense for samtidige o&pplastinger:"
+
+#: clientgui/DlgItemProperties.cpp:214
+#, fuzzy
+msgid "Computer ID"
+msgstr "Bruker ID"
+
+#: clientgui/DlgItemProperties.cpp:215
+msgid "Non CPU intensive"
+msgstr "Ikke CPU intensiv"
+
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "yes"
+msgstr "ja"
+
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "no"
+msgstr "nei"
+
+#: clientgui/DlgItemProperties.cpp:216
+msgid "Suspended via GUI"
+msgstr "Suspendert via GUI"
+
+#: clientgui/DlgItemProperties.cpp:217
+msgid "Don't request more work"
+msgstr "Ikke anmod om mer arbeid"
+
+#: clientgui/DlgItemProperties.cpp:218
+#, fuzzy
+msgid "Scheduler call in progress"
+msgstr "Filoverføring pågår fremdeles."
+
+#: clientgui/DlgItemProperties.cpp:219
+#, fuzzy
+msgid "Attached via account manager"
+msgstr "Koble til den spesifiserte serveren i Serveradministrasjonen"
+
+#: clientgui/DlgItemProperties.cpp:220
+#, fuzzy
+msgid "Detach when done"
+msgstr "NÃ¥r jeg trykker lukk-knappen:"
+
+#: clientgui/DlgItemProperties.cpp:221
+msgid "Ended"
+msgstr "Ferdig"
+
+#: clientgui/DlgItemProperties.cpp:222
+#, fuzzy
+msgid "Credit"
+msgstr "Total kreditt"
+
+#: clientgui/DlgItemProperties.cpp:223
+msgid "User"
+msgstr "Bruker"
+
+#: clientgui/DlgItemProperties.cpp:230
+#, fuzzy
+msgid "Host"
+msgstr "%h - Vert"
+
+#: clientgui/DlgItemProperties.cpp:239
+msgid "Scheduling"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:240
+#, fuzzy
+msgid "CPU scheduling priority"
+msgstr "Klarte ikke sette trådprioritet"
+
+#: clientgui/DlgItemProperties.cpp:241
+msgid "CPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:244
+msgid "CPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:245
+msgid "CPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:247
+#, fuzzy
+msgid "NVIDIA GPU scheduling priority"
+msgstr "Klarte ikke sette trådprioritet"
+
+#: clientgui/DlgItemProperties.cpp:248
+msgid "NVIDIA GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:251
+msgid "NVIDIA GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:252
+msgid "NVIDIA GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:255
+#, fuzzy
+msgid "ATI GPU scheduling priority"
+msgstr "Klarte ikke sette trådprioritet"
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
+msgid "Duration correction factor"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:272
+#, fuzzy
+msgid "Properties of task "
+msgstr "Kolonneegenskaper"
+
+#: clientgui/DlgItemProperties.cpp:276
+msgid "Application"
+msgstr "Program"
+
+#: clientgui/DlgItemProperties.cpp:277
+#, fuzzy
+msgid "Workunit name"
+msgstr "Vanlig navn:"
+
+#: clientgui/DlgItemProperties.cpp:278
+msgid "State"
+msgstr "Tilstand"
+
+#: clientgui/DlgItemProperties.cpp:281
+#, fuzzy
+msgid "Received"
+msgstr "Ugyldig data mottatt"
+
+#: clientgui/DlgItemProperties.cpp:284
+#, fuzzy
+msgid "Report deadline"
+msgstr "&Rapporter en feil..."
+
+#: clientgui/DlgItemProperties.cpp:286
+msgid "Resources"
+msgstr "Ressurser"
+
+#: clientgui/DlgItemProperties.cpp:289
+msgid "CPU time at last checkpoint"
+msgstr "CPU tid ved siste sjekkpunkt"
+
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
+#, fuzzy
+msgid "CPU time"
+msgstr "Forløpt tid :"
+
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
+#, fuzzy
+msgid "Elapsed time"
+msgstr "Forløpt tid :"
+
+#: clientgui/DlgItemProperties.cpp:294
+#, fuzzy
+msgid "Estimated time remaining"
+msgstr "Sammenlign &modifikasjonstidspunkt"
+
+#: clientgui/DlgItemProperties.cpp:295
+msgid "Fraction done"
+msgstr "Brøkdel ferdig"
+
+#: clientgui/DlgItemProperties.cpp:296
+#, fuzzy
+msgid "Virtual memory size"
+msgstr "Skriftpunktstørrelse"
+
+#: clientgui/DlgItemProperties.cpp:297
+#, fuzzy
+msgid "Working set size"
+msgstr "Skriftpunktstørrelse"
+
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr "Mappe"
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:400
+#, fuzzy
+msgid "New"
+msgstr "Nye"
+
+#: clientgui/DlgItemProperties.cpp:404
+#, fuzzy
+msgid "Download failed"
+msgstr "Forgrening feilet"
+
+#: clientgui/DlgItemProperties.cpp:406
+msgid "Downloading"
+msgstr "Laster  ned"
+
+#: clientgui/DlgItemProperties.cpp:411
+#, fuzzy
+msgid "Project suspended by user"
+msgstr "Overføringen avbrutt av bruker"
+
+#: clientgui/DlgItemProperties.cpp:413
+#, fuzzy
+msgid "Task suspended by user"
+msgstr "Overføringen avbrutt av bruker"
+
+#: clientgui/DlgItemProperties.cpp:415
+msgid "Suspended"
+msgstr "Suspendert"
+
+#: clientgui/DlgItemProperties.cpp:417
+#, fuzzy
+msgid " - on batteries"
+msgstr "Kompilert på:"
+
+#: clientgui/DlgItemProperties.cpp:420
+#, fuzzy
+msgid " - user active"
+msgstr "Aktiv modus"
+
+#: clientgui/DlgItemProperties.cpp:423
+msgid " - computation suspended"
+msgstr " - databehandling suspendert"
+
+#: clientgui/DlgItemProperties.cpp:426
+#, fuzzy
+msgid " - time of day"
+msgstr "Dagens tips"
+
+#: clientgui/DlgItemProperties.cpp:429
+#, fuzzy
+msgid " - CPU benchmarks"
+msgstr "CPU funksjoner"
+
+#: clientgui/DlgItemProperties.cpp:432
+#, fuzzy
+msgid " - need disk space"
+msgstr "Ikke nok lagringsplass"
+
+#: clientgui/DlgItemProperties.cpp:436
+#, fuzzy
+msgid "Waiting for memory"
+msgstr "Venter på passord"
+
+#: clientgui/DlgItemProperties.cpp:438
+#, fuzzy
+msgid "Waiting for shared memory"
+msgstr "Venter på "
+
+#: clientgui/DlgItemProperties.cpp:441
+#, fuzzy
+msgid "Running, high priority"
+msgstr "Klarte ikke sette trådprioritet"
+
+#: clientgui/DlgItemProperties.cpp:443
+msgid "Running"
+msgstr "Kjører"
+
+#: clientgui/DlgItemProperties.cpp:446
+#, fuzzy
+msgid "Waiting to run"
+msgstr "Venter til neste forsøk..."
+
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
+#, fuzzy
+msgid "Ready to start"
+msgstr "Start overføring &umiddelbart"
+
+#: clientgui/DlgItemProperties.cpp:455
+#, fuzzy
+msgid "Computation error"
+msgstr "(feil %ld: %s)"
+
+#: clientgui/DlgItemProperties.cpp:459
+msgid "Upload failed"
+msgstr "Opplasting feilet"
+
+#: clientgui/DlgItemProperties.cpp:461
+msgid "Uploading"
+msgstr "Laster opp"
+
+#: clientgui/DlgItemProperties.cpp:467
+#, fuzzy
+msgid "Aborted by user"
+msgstr "Overføringen avbrutt av bruker"
+
+#: clientgui/DlgItemProperties.cpp:470
+#, fuzzy
+msgid "Aborted by project"
+msgstr "Overføringen avbrutt av bruker"
+
+#: clientgui/DlgItemProperties.cpp:473
+#, fuzzy
+msgid "Aborted"
+msgstr "Program avbrutt."
+
+#: clientgui/DlgItemProperties.cpp:478
+msgid "Acknowledged"
+msgstr "Erkjent"
+
+#: clientgui/DlgItemProperties.cpp:480
+#, fuzzy
+msgid "Ready to report"
+msgstr "Send kræsjrapport"
+
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
+#, fuzzy, c-format
+msgid "Error: invalid state '%d'"
+msgstr "GIF: Ugyldig GIF-indeks"
+
+#: clientgui/DlgOptions.cpp:119
+#, c-format
+#, fuzzy, c-format
+msgid "%s - Options"
+msgstr "Opsjoner"
+
+#: clientgui/DlgOptions.cpp:157
+msgid "Language:"
+msgstr "Språk:"
+
+#: clientgui/DlgOptions.cpp:164
+msgid "What language should the manager use?"
+msgstr "Hvilket språk skal manageren bruke?"
+
+#: clientgui/DlgOptions.cpp:168
+msgid ""
+"Network reminder interval:\n"
+"(minutes)"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:180
+msgid "How often should the Manager remind you when a network connection is needed?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:185
+msgid "Run Manager at login?"
+msgstr "Kjør Manager ved pålogging?"
+
+#: clientgui/DlgOptions.cpp:191
+msgid "Run the BOINC Manager when you log on."
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:196
+msgid "Enable Manager exit dialog?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:202
+msgid "Display the exit dialog when shutting down the Manager."
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:213
+msgid "Dial-up and Virtual Private Network settings"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:227
+#, fuzzy
+msgid "&Set Default"
+msgstr "Standardkoding"
+
+#: clientgui/DlgOptions.cpp:232
+#, fuzzy
+msgid "&Clear Default"
+msgstr "Standardkoding"
+
+#: clientgui/DlgOptions.cpp:239
+#, fuzzy
+msgid "Default Connection:"
+msgstr "Tilkoblingen lukket"
+
+#: clientgui/DlgOptions.cpp:246
+#, fuzzy
+msgid "Connections"
+msgstr "&Maksimalt antall tilkoblinger:"
+
+#: clientgui/DlgOptions.cpp:255
+msgid "Connect via HTTP proxy server"
+msgstr "Koble til via HTTP proxy server"
+
+#: clientgui/DlgOptions.cpp:259
+msgid "HTTP Proxy Server Configuration"
+msgstr "HTTP Proxy server konfigurasjon"
+
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
+msgid "Address:"
+msgstr "Adresse:"
+
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
+msgid "Port:"
+msgstr "Port:"
+
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
+#, fuzzy
+msgid "Don't use proxy for:"
+msgstr "Ikke bruk HTML tags."
+
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
+msgid "Leave these blank if not needed"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
+#, fuzzy
+msgid "User Name:"
+msgstr "Brukernavn"
+
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
+msgid "Password:"
+msgstr "Passord:"
+
+#: clientgui/DlgOptions.cpp:311
+#, fuzzy
+msgid "HTTP Proxy"
+msgstr "%s - Proxy bruker"
+
+#: clientgui/DlgOptions.cpp:319
+msgid "Connect via SOCKS proxy server"
+msgstr "Koble til via SOCS proxy server"
+
+#: clientgui/DlgOptions.cpp:323
+#, fuzzy
+msgid "SOCKS Proxy Server Configuration"
+msgstr "Generell SOCKS serverfeil"
+
+#: clientgui/DlgOptions.cpp:375
+#, fuzzy
+msgid "SOCKS Proxy"
+msgstr "%s - Proxy bruker"
+
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
+#, fuzzy, c-format
+msgid "%s - Select Computer"
+msgstr "Velg datamaskin..."
+
+#: clientgui/DlgSelectComputer.cpp:127
+#, fuzzy
+msgid "Host name:"
+msgstr "Vanlig navn:"
+
+#: clientgui/hyperlink.cpp:181
+#, c-format
+#, fuzzy, c-format
+msgid "%s - Can't find web browser"
+msgstr "Klarte ikke finne gjeldende posisjon i filen «%s»"
+
+#: clientgui/hyperlink.cpp:192
+#, c-format
+msgid ""
+"%s tried to display the web page\n"
+"\t%s\n"
+"but couldn't find a web browser.\n"
+"To fix this, set the environment variable\n"
+"BROWSER to the path of your web browser,\n"
+"then restart the %s."
+msgstr ""
+
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
+msgid "Message boards"
+msgstr "Oppslagstavler"
+
+#: clientgui/Localization.cpp:33
+msgid "Correspond with other users on the SETI at home message boards"
+msgstr ""
+
+#: clientgui/Localization.cpp:37
+msgid "Ask questions and report problems"
+msgstr "Still spårsmål og rapporter problemer"
+
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
+#, fuzzy
+msgid "Your account"
+msgstr "Identifiser din konto"
+
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
+msgid "View your account information and credit totals"
+msgstr ""
+
+#: clientgui/Localization.cpp:43
+#, fuzzy
+msgid "Your preferences"
+msgstr "Databehandling preferanser"
+
+#: clientgui/Localization.cpp:45
+msgid "View and modify your SETI at home account profile and preferences"
+msgstr ""
+
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
+#, fuzzy
+msgid "Your results"
+msgstr "Testresultater"
+
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
+msgid "View your last week (or more) of computational results and work"
+msgstr ""
+
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
+#, fuzzy
+msgid "Your computers"
+msgstr "&Navn:"
+
+#: clientgui/Localization.cpp:53
+msgid "View a listing of all the computers on which you are running SETI at Home"
+msgstr ""
+
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
+#, fuzzy
+msgid "Your team"
+msgstr "Team navn"
+
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
+msgid "View information about your team"
+msgstr "Se informasjon om teamet ditt"
+
+#: clientgui/Localization.cpp:61
+#, fuzzy
+msgid "Common questions"
+msgstr "Vanlig navn:"
+
+#: clientgui/Localization.cpp:63
+msgid "Read the Einstein at Home Frequently Asked Question list"
+msgstr ""
+
+#: clientgui/Localization.cpp:65
+#, fuzzy
+msgid "Screensaver info"
+msgstr "Prosjektinfo"
+
+#: clientgui/Localization.cpp:67
+msgid "Read a detailed description of the Einstein at Home screensaver"
+msgstr ""
+
+#: clientgui/Localization.cpp:71
+msgid "Correspond with admins and other users on the Einstein at Home message boards"
+msgstr ""
+
+#: clientgui/Localization.cpp:73
+#, fuzzy
+msgid "Einstein status"
+msgstr "Status&bar til filliste"
+
+#: clientgui/Localization.cpp:75
+msgid "Current status of the Einstein at Home server"
+msgstr ""
+
+#: clientgui/Localization.cpp:77
+#, fuzzy
+msgid "Report problems"
+msgstr "&Rapporter en feil..."
+
+#: clientgui/Localization.cpp:79
+msgid "A link to the Einstein at Home problems and bug reports message board"
+msgstr ""
+
+#: clientgui/Localization.cpp:83
+msgid "View and modify your Einstein at Home account profile and preferences"
+msgstr ""
+
+#: clientgui/Localization.cpp:85
+#, fuzzy
+msgid "Account summary"
+msgstr "Sammendrag"
+
+#: clientgui/Localization.cpp:95
+msgid "View a listing of all the computers on which you are running Einstein at Home"
+msgstr ""
+
+#: clientgui/Localization.cpp:101
+#, fuzzy
+msgid "LIGO project"
+msgstr "Slett prosjekt"
+
+#: clientgui/Localization.cpp:103
+msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
+msgstr ""
+
+#: clientgui/Localization.cpp:105
+#, fuzzy
+msgid "GEO-600 project"
+msgstr "Kryss-prosjekt statistikk"
+
+#: clientgui/Localization.cpp:107
+msgid "The home page of the GEO-600 project"
+msgstr "Hjemmesiden til GEO-600 prosjektet"
+
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
+msgid "Team"
+msgstr "Team"
+
+#: clientgui/Localization.cpp:117
+#, fuzzy
+msgid "Info about your Team"
+msgstr "Klarte ikke finne informasjon om registernøkkel «%s»"
+
+#: clientgui/Localization.cpp:123
+msgid "Get help for climateprediction.net"
+msgstr ""
+
+#: clientgui/Localization.cpp:125
+msgid "News"
+msgstr "Nyheter"
+
+#: clientgui/Localization.cpp:127
+msgid "climateprediction.net News"
+msgstr "climateprediction.net Nyheter"
+
+#: clientgui/Localization.cpp:131
+msgid "View your account information, credits, and trickles"
+msgstr ""
+
+#: clientgui/Localization.cpp:135
+#, fuzzy
+msgid "Info about your team"
+msgstr "Klarte ikke finne informasjon om registernøkkel «%s»"
+
+#: clientgui/Localization.cpp:141
+msgid "Search for help in our help system"
+msgstr "Søk etter hjelp i vårt hjelp system"
+
+#: clientgui/Localization.cpp:143
+#, fuzzy
+msgid "Global Statistics"
+msgstr "Kryss-prosjekt statistikk"
+
+#: clientgui/Localization.cpp:145
+msgid "Summary statistics for World Community Grid"
+msgstr ""
+
+#: clientgui/Localization.cpp:147
+#, fuzzy
+msgid "My Grid"
+msgstr "Min Datamaskin"
+
+#: clientgui/Localization.cpp:149
+msgid "Your statistics and settings"
+msgstr "Dine statestikker og settinger"
+
+#: clientgui/Localization.cpp:151
+#, fuzzy
+msgid "Device Profiles"
+msgstr "DVD-enhet"
+
+#: clientgui/Localization.cpp:153
+msgid "Update your device settings"
+msgstr ""
+
+#: clientgui/Localization.cpp:155
+msgid "Research"
+msgstr "Forskning"
+
+#: clientgui/Localization.cpp:157
+msgid "Learn about the projects hosted at World Community Grid"
+msgstr ""
+
+#: clientgui/MainDocument.cpp:536
+msgid "Starting client services; please wait..."
+msgstr ""
+
+#: clientgui/MainDocument.cpp:1073
+msgid "Retrieving system state; please wait..."
+msgstr ""
+
+#: clientgui/MainDocument.cpp:1082
+msgid "Retrieving host information; please wait..."
+msgstr ""
+
+#: clientgui/NoInternetConnectionPage.cpp:179
+#, fuzzy
+msgid "No Internet connection"
+msgstr "Avbryt nåværende tilkobling?"
+
+#: clientgui/NoInternetConnectionPage.cpp:182
+msgid "Please connect to the Internet and try again."
+msgstr ""
+
+#: clientgui/NotDetectedPage.cpp:181
+#, fuzzy
+msgid "Project not found"
+msgstr "Fil ikke funnet"
+
+#: clientgui/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 ""
+
+#: clientgui/NotDetectedPage.cpp:188
+#, fuzzy
+msgid "Account manager not found"
+msgstr "Finner ikke tilordnet program"
+
+#: clientgui/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 ""
+
+#: clientgui/NotFoundPage.cpp:181
+#, fuzzy
+msgid "Login Failed."
+msgstr "Forgrening feilet"
+
+#: clientgui/NotFoundPage.cpp:185
+msgid "Check the username and password, and try again."
+msgstr "Sjekk brukernavn og passord, og prøv igjen."
+
+#: clientgui/NotFoundPage.cpp:189
+msgid "Check the email address and password, and try again."
+msgstr "Sjekk epost adresse og passord, og prøv igjen."
+
+#: clientgui/ProjectInfoPage.cpp:259
+#, fuzzy
+msgid "Choose a project"
+msgstr "Slett prosjekt"
+
+#: clientgui/ProjectInfoPage.cpp:262
+msgid "To choose a project, click its name or type its URL below."
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:265
+#, fuzzy
+msgid "Project &URL:"
+msgstr "FTP URL"
+
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:417
+msgid "You are already attached to this project. Please choose a different project."
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr "Klikk"
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
+msgid ""
+"Communicating with project\n"
+"Please wait..."
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:498
+msgid ""
+"Required wizard file(s) are missing from the target server.\n"
+"(lookup_account.php/create_account.php)\n"
+msgstr ""
+
+#: clientgui/ProxyInfoPage.cpp:195
+#, fuzzy
+msgid "Network communication failure"
+msgstr "Feil ved forhåndsvisning av utskrift"
+
+#: clientgui/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"
+"hen click Back to try again.\n"
+"\n"
+"3) You are using a proxy server.\n"
+"Click Next to configure BOINC's proxy settings."
+msgstr ""
+
+#: clientgui/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 ""
+
+#: clientgui/ProxyPage.cpp:331
+#, fuzzy
+msgid "Proxy configuration"
+msgstr "Konfigurasjonstest"
+
+#: clientgui/ProxyPage.cpp:334
+#, fuzzy
+msgid "HTTP proxy"
+msgstr "%s - Proxy bruker"
+
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
+msgid "Server:"
+msgstr "Server:"
+
+#: clientgui/ProxyPage.cpp:350
+#, fuzzy
+msgid "Autodetect"
+msgstr "&Automatisk"
+
+#: clientgui/ProxyPage.cpp:354
+#, fuzzy
+msgid "SOCKS proxy"
+msgstr "%s - Proxy bruker"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
+msgid "&%s"
+msgstr "&%s"
+
+#: clientgui/sg_ClientStateIndicator.cpp:288
+#, fuzzy
+msgid "Retrieving current status."
+msgstr "Status&bar til filliste"
+
+#: clientgui/sg_ClientStateIndicator.cpp:291
+msgid "You don't have any projects.  Please Add a Project."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:294
+#, fuzzy
+msgid "Downloading work from the server."
+msgstr "Kobler fra forrige server"
+
+#: clientgui/sg_ClientStateIndicator.cpp:299
+msgid "Processing Suspended:  Running On Batteries."
+msgstr "Prosessering Suspendert: Kjører på batterier."
+
+#: clientgui/sg_ClientStateIndicator.cpp:301
+msgid "Processing Suspended:  User Active."
+msgstr "Prosessering Suspendert: Bruker er aktiv."
+
+#: clientgui/sg_ClientStateIndicator.cpp:303
+msgid "Processing Suspended:  User paused processing."
+msgstr "Prosessering Suspendert: Bruker har pauset prosesseringen."
+
+#: clientgui/sg_ClientStateIndicator.cpp:305
+msgid "Processing Suspended:  Time of Day."
+msgstr "Prosessering Suspendert: Tid på dag."
+
+#: clientgui/sg_ClientStateIndicator.cpp:307
+msgid "Processing Suspended:  Benchmarks Running."
+msgstr "Prosessering Suspendert: Benchmarks kjører."
+
+#: clientgui/sg_ClientStateIndicator.cpp:309
+#, fuzzy
+msgid "Processing Suspended."
+msgstr "Skrur av og på prosessering av overføringskøen"
+
+#: clientgui/sg_ClientStateIndicator.cpp:313
+msgid "Waiting to contact project servers."
+msgstr "Venter for å kontakte prosjekt servere."
+
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
+#, fuzzy
+msgid "Retrieving current status"
+msgstr "Status&bar til filliste"
+
+#: clientgui/sg_ClientStateIndicator.cpp:320
+msgid "No work available to process"
+msgstr "Ingen arbeid tilgjengelig for prosessering"
+
+#: clientgui/sg_ClientStateIndicator.cpp:322
+msgid "Unable to connect to the core client"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:107
+msgid "Project"
+msgstr "Prosjekt"
+
+#: clientgui/sg_DlgMessages.cpp:108
+msgid "Time"
+msgstr "Tid"
+
+#: clientgui/sg_DlgMessages.cpp:109
+msgid "Message"
+msgstr "Melding"
+
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
+#, fuzzy
+msgid "Copy all the messages to the clipboard."
+msgstr "Kopierer alle meldinger til utklippstavlen..."
+
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
+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 ""
+"Kopier valgte meldinger til utklipstavlen. Du kan velge flere meldinger ved "
+"å holde nede shift eller kommando knappen, mens du klikker på meldingene."
+
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
+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 ""
+"Kopier valgte meldinger til utklipstavlen. Du kan velge flere meldinger ved "
+"å holde nede shift eller kontrol knappen, mens du klikker på meldingene."
+
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
+msgid "Get help with BOINC"
+msgstr "FÃ¥ hjelp med BOINC"
+
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
+#, fuzzy, c-format
+msgid "%s - Messages"
+msgstr "Beskjeder"
+
+#: clientgui/sg_DlgPreferences.cpp:95
+msgid "100 MB"
+msgstr "100 MB"
+
+#: clientgui/sg_DlgPreferences.cpp:96
+msgid "200 MB"
+msgstr "200 MB"
+
+#: clientgui/sg_DlgPreferences.cpp:97
+msgid "500 MB"
+msgstr "500 MB"
+
+#: clientgui/sg_DlgPreferences.cpp:98
+msgid "1 GB"
+msgstr "1 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:99
+msgid "2 GB"
+msgstr "2 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:100
+msgid "5 GB"
+msgstr "5 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:101
+msgid "10 GB"
+msgstr "10 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:102
+msgid "20 GB"
+msgstr "20 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:103
+msgid "50 GB"
+msgstr "50 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:104
+msgid "100 GB"
+msgstr "100 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:135
+msgid "10%"
+msgstr "10%"
+
+#: clientgui/sg_DlgPreferences.cpp:136
+msgid "20%"
+msgstr "20%"
+
+#: clientgui/sg_DlgPreferences.cpp:137
+msgid "30%"
+msgstr "30%"
+
+#: clientgui/sg_DlgPreferences.cpp:138
+msgid "40%"
+msgstr "40%"
+
+#: clientgui/sg_DlgPreferences.cpp:139
+msgid "50%"
+msgstr "50%"
+
+#: clientgui/sg_DlgPreferences.cpp:140
+msgid "60%"
+msgstr "60%"
+
+#: clientgui/sg_DlgPreferences.cpp:141
+msgid "70%"
+msgstr "70%"
+
+#: clientgui/sg_DlgPreferences.cpp:142
+msgid "80%"
+msgstr "80%"
+
+#: clientgui/sg_DlgPreferences.cpp:143
+msgid "90%"
+msgstr "90%"
+
+#: clientgui/sg_DlgPreferences.cpp:144
+msgid "100%"
+msgstr "100%"
+
+#: clientgui/sg_DlgPreferences.cpp:169
+msgid "1"
+msgstr "1"
+
+#: clientgui/sg_DlgPreferences.cpp:170
+msgid "3"
+msgstr "3"
+
+#: clientgui/sg_DlgPreferences.cpp:171
+msgid "5"
+msgstr "5"
+
+#: clientgui/sg_DlgPreferences.cpp:172
+msgid "10"
+msgstr "10"
+
+#: clientgui/sg_DlgPreferences.cpp:173
+msgid "15"
+msgstr "15"
+
+#: clientgui/sg_DlgPreferences.cpp:174
+msgid "30"
+msgstr "30"
+
+#: clientgui/sg_DlgPreferences.cpp:175
+msgid "60"
+msgstr "60"
+
+#: clientgui/sg_DlgPreferences.cpp:284
+msgid "Skin"
+msgstr "Skin"
+
+#: clientgui/sg_DlgPreferences.cpp:291
+msgid "Skin:"
+msgstr "Skin:"
+
+#: clientgui/sg_DlgPreferences.cpp:307
+#, fuzzy
+msgid "Preferences"
+msgstr "Innstillinger"
+
+#: clientgui/sg_DlgPreferences.cpp:324
+msgid "I want to customize my preferences for this computer only."
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:333
+#, fuzzy
+msgid "Customized Preferences"
+msgstr "Databehandling preferanser"
+
+#: clientgui/sg_DlgPreferences.cpp:349
+msgid "Do work only between:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:371
+msgid "Connect to internet only between:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
+#, fuzzy
+msgid "Use no more than:"
+msgstr "Ingen flere filer i køen!"
+
+#: clientgui/sg_DlgPreferences.cpp:406
+#, fuzzy
+msgid "of disk space"
+msgstr "Diskplass"
+
+#: clientgui/sg_DlgPreferences.cpp:423
+#, fuzzy
+msgid "of the processor"
+msgstr "prosessor bruk"
+
+#: clientgui/sg_DlgPreferences.cpp:427
+msgid "Do work while on battery?"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:440
+msgid "Do work after idle for:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
+msgid "Anytime"
+msgstr "Alltid"
+
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
+msgid "%d MB"
+msgstr "%d MB"
+
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
+msgid "%4.2f GB"
+msgstr "%4.2f GB"
+
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
+msgid "%d%%"
+msgstr "%d%%"
+
+#: clientgui/sg_DlgPreferences.cpp:864
+#, fuzzy
+msgid "0 (Run Always)"
+msgstr "Kjø&r kommando..."
+
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
+msgid "%d"
+msgstr "%d"
+
+#: clientgui/sg_ImageButton.cpp:90
+msgid "Paused: Other work running"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:92
+msgid "Paused: User initiatied.  Click 'Resume' to continue"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:94
+#, fuzzy
+msgid "Paused: User active"
+msgstr "Aktivmodus IP"
+
+#: clientgui/sg_ImageButton.cpp:96
+msgid "Paused: Computer on battery"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:98
+#, fuzzy
+msgid "Paused: Time of Day"
+msgstr "%(count)d dag siden"
+
+#: clientgui/sg_ImageButton.cpp:100
+#, fuzzy
+msgid "Paused: Benchmarks running"
+msgstr "%(count)d midlertidig stoppet element"
+
+#: clientgui/sg_ImageButton.cpp:102
+#, fuzzy
+msgid "Paused"
+msgstr "midlertidig stoppet"
+
+#: clientgui/sg_ImageButton.cpp:104
+msgid "Paused: Application start delayed"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:132
+msgid "Click to show project graphics"
+msgstr "Klikk for å vise prosjektets grafikk"
+
+#: clientgui/sg_ProjectsComponent.cpp:106
+#, fuzzy
+msgid "Attach to an additional project"
+msgstr "Vil du slette prosjektet?"
+
+#: clientgui/sg_ProjectsComponent.cpp:123
+msgid "Synchronize projects with account manager system"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
+msgid "Open a window to view messages"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:223
+#, fuzzy
+msgid "Stop all activity"
+msgstr "Stopp og fjern &alle"
+
+#: clientgui/sg_ProjectsComponent.cpp:235
+#, fuzzy
+msgid "Resume activity"
+msgstr "Fortsett med alle"
+
+#: clientgui/sg_ProjectsComponent.cpp:252
+msgid "Open a window to set your preferences"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:269
+msgid "Switch to the BOINC advanced view"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:296
+#, fuzzy
+msgid "My Projects:"
+msgstr "Min Datamaskin"
+
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
+msgid "%s. Work done by %s: %0.2f"
+msgstr "%s. Arbeid gjort av %s: %0.2f"
+
+#: clientgui/sg_StatImageLoader.cpp:154
+#, fuzzy
+msgid "Remove Project"
+msgstr "Slett prosjekt"
+
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
+#, fuzzy, c-format
+msgid "Are you sure you want to detach from project '%s'?"
+msgstr "Er du sikker på at du vil fjerne dette elementet?"
+
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
+#, fuzzy
+msgid "Detach from Project"
+msgstr "Kryss-prosjekt statistikk"
+
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
+msgid "%.1lf"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
+#, fuzzy, c-format
+msgid "%d hr %d min %d sec"
+msgstr "%(num).0f min"
+
+#: clientgui/sg_ViewTabPage.cpp:421
+msgid "Are you sure you want to display graphics on a remote machine?"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:422
+#, fuzzy
+msgid "Show graphics"
+msgstr "Vis alle"
+
+#: clientgui/sg_ViewTabPage.cpp:444
+msgid "Application: "
+msgstr "Program:"
+
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
+#, fuzzy
+msgid "Time Remaining: "
+msgstr "Gjenstående tid :"
+
+#: clientgui/sg_ViewTabPage.cpp:450
+#, fuzzy
+msgid "Elapsed Time: "
+msgstr "Forløpt tid :"
+
+#: clientgui/TermsOfUsePage.cpp:218
+#, fuzzy
+msgid "Terms of Use"
+msgstr "Br&uk tusen-separator"
+
+#: clientgui/TermsOfUsePage.cpp:222
+msgid "Please read the following terms of use:"
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:231
+#, fuzzy
+msgid "I agree to the terms of use."
+msgstr "oppgi temaet som skal bruker"
+
+#: clientgui/TermsOfUsePage.cpp:237
+msgid "I do not agree with the terms of use."
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:183
+#, fuzzy
+msgid "Project temporarily unavailable"
+msgstr "Kryss-prosjekt statistikk"
+
+#: clientgui/UnavailablePage.cpp:186
+#, fuzzy
+msgid ""
+"The project is temporarily unavailable.\n"
+"\n"
+"Please try again later."
+msgstr ""
+"Konto manager midlertidig utilgjegelig.\n"
+"\n"
+"Vennigst prøv igjen senere."
+
+#: clientgui/UnavailablePage.cpp:190
+msgid "Account manager temporarily unavailable"
+msgstr "Konto manager midlertidig utilgjegelig"
+
+#: clientgui/UnavailablePage.cpp:193
+msgid ""
+"The account manager is temporarily unavailable.\n"
+"\n"
+"Please try again later."
+msgstr ""
+"Konto manager midlertidig utilgjegelig.\n"
+"\n"
+"Vennigst prøv igjen senere."
+
+#: clientgui/ValidateAccountKey.cpp:68
+msgid "Please specify an account key to continue."
+msgstr "Vennligst spesifiser en kontonøkkel for å fortsette."
+
+#: clientgui/ValidateAccountKey.cpp:71
+msgid "Invalid Account Key; please enter a valid Account Key"
+msgstr "Ugyldig Kontonøkkel; vennligst tast inn en gyldig Kontonøkkel"
+
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
+msgid "Validation conflict"
+msgstr "Valideringskonflikt"
+
+#: clientgui/ValidateEmailAddress.cpp:72
+#, fuzzy
+msgid "Please specify an email address"
+msgstr "Vennligst angi din eksterne IP-adresse"
+
+#: clientgui/ValidateEmailAddress.cpp:75
+msgid "Invalid email address; please enter a valid email address"
+msgstr "Ugyldig epost adresse; vennligst tast inn en gyldig epost adresse"
+
+#: clientgui/ValidateURL.cpp:69
+#, fuzzy
+msgid "Missing URL"
+msgstr "FTP URL"
+
+#: clientgui/ValidateURL.cpp:70
+msgid ""
+"Please specify a URL.\n"
+"For example:\n"
+"http://www.example.com/"
+msgstr ""
+"Vennligst spesifiser en URL.\n"
+"For eksempel:\n"
+"http://www.eksempel.com/"
+
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
+#, fuzzy
+msgid "Invalid URL"
+msgstr "Ugyldig adresse (URL)"
+
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
+msgid ""
+"Please specify a valid URL.\n"
+"For example:\n"
+"http://boincproject.example.com"
+msgstr ""
+"Vennligst spesifiser en gyldig URL.\n"
+"For eksempel:\n"
+"http://boincprosjekt.eksempel.com"
+
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
+msgid "'%s' does not contain a valid host name."
+msgstr "'%s' inneholder ikke et gyldig verts navn."
+
+#: clientgui/ValidateURL.cpp:111
+#, c-format
+#, fuzzy, c-format
+msgid "'%s' does not contain a valid path."
+msgstr "Filen inneholder ikke data vi kan importere"
+
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
+msgid "Commands"
+msgstr "Kommandoer"
+
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
+#, fuzzy
+msgid "Copy all messages"
+msgstr "Slå &av alle"
+
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
+#, fuzzy
+msgid "Copy selected messages"
+msgstr "Slett valgte mappe"
+
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
+#, fuzzy
+msgid "Show only this project"
+msgstr "vis denne hjelpmeldingen"
+
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
+msgid "Show only the messages for the selected project."
+msgstr "Vis bare meldinger fra valgte prosjekt."
+
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
+#, fuzzy
+msgid "Messages"
+msgstr "Beskjeder"
+
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
+msgid "Copying all messages to the clipboard..."
+msgstr "Kopierer alle meldinger til utklippstavlen..."
+
+#: clientgui/ViewMessages.cpp:223
+msgid "Copying selected messages to the clipboard..."
+msgstr "Kopierer valgte meldinger til Utklippstavlen..."
+
+#: clientgui/ViewMessages.cpp:286
+#, fuzzy
+msgid "Filtering messages..."
+msgstr "Private meldinger"
+
+#: clientgui/ViewMessages.cpp:494
+#, fuzzy
+msgid "Show all messages"
+msgstr "Vis alle oppgaver"
+
+#: clientgui/ViewMessages.cpp:495
+msgid "Show messages for all projects."
+msgstr "Vis meldinger for alle prosjekter."
+
+#: clientgui/ViewMessagesGrid.cpp:128
+msgid "ID"
+msgstr "ID"
+
+#: clientgui/ViewMessagesGrid.cpp:128
+msgid "Priority"
+msgstr "Prioritet"
+
+#: clientgui/ViewMessagesGrid.cpp:151
+msgid "MessagesGrid"
+msgstr "MeldingsGrid"
+
+#: clientgui/ViewMessagesGrid.cpp:209
+msgid "Copying selected messages to Clipboard..."
+msgstr "Kopierer valgte meldinger til utklippstavlen..."
+
+#: clientgui/ViewMessagesGrid.cpp:396
+#, fuzzy
+msgid "Info"
+msgstr "2 - Informasjon"
+
+#: clientgui/ViewMessagesGrid.cpp:399
+msgid "Warning"
+msgstr "Advarsel"
+
+#: clientgui/ViewMessagesGrid.cpp:403
+msgid "Error"
+msgstr "Feil"
+
+#: clientgui/ViewNews.cpp:76
+#, fuzzy
+msgid "News Feeds"
+msgstr "LYDKILDER"
+
+#: clientgui/ViewNews.cpp:80
+msgid "BOINC"
+msgstr "BOINC"
+
+#: clientgui/ViewNews.cpp:81
+msgid "Display the latest news about BOINC"
+msgstr "Vis de siste nyhetene om BOINC"
+
+#: clientgui/ViewNews.cpp:87
+msgid "BOINC Website"
+msgstr "BOINC Nettside"
+
+#: clientgui/ViewNews.cpp:88
+msgid "Display the latest news about BOINC from the BOINC website"
+msgstr "Vis de siste nyhetene om BOINC fra BOINC sin nettside"
+
+#: clientgui/ViewProjects.cpp:173
+msgid "Update"
+msgstr "Oppdater"
+
+#: clientgui/ViewProjects.cpp:174
+msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
+msgid "Suspend"
+msgstr "Suspender"
+
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
+msgid "Suspend tasks for this project."
+msgstr "Suspender oppgaver for dette prosjektet."
+
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
+#, fuzzy
+msgid "No new tasks"
+msgstr "&Nei, ny bruker"
+
+#: clientgui/ViewProjects.cpp:188
+msgid "Don't get new tasks for this project."
+msgstr "Ikke hent nye oppgaver for dette prosjektet."
+
+#: clientgui/ViewProjects.cpp:194
+#, fuzzy
+msgid "Reset project"
+msgstr "Slett prosjekt"
+
+#: clientgui/ViewProjects.cpp:195
+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 ""
+
+#: clientgui/ViewProjects.cpp:201
+msgid "Detach"
+msgstr "Koble fra"
+
+#: clientgui/ViewProjects.cpp:202
+msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
+msgstr ""
+"Koble fra datamaskinen fra dette prosjektet. Oppgaver i fremgang vil bli "
+"mistet (bruk 'oppdater' først for å rapportere fullførte oppgaver)."
+
+#: clientgui/ViewProjects.cpp:208
+#, fuzzy
+msgid "Properties"
+msgstr "&Egenskaper"
+
+#: clientgui/ViewProjects.cpp:209
+#, fuzzy
+msgid "Show project details."
+msgstr "Vis oppgave detajer."
+
+#: clientgui/ViewProjects.cpp:219
+msgid "Account"
+msgstr "Konto"
+
+#: clientgui/ViewProjects.cpp:221
+msgid "Work done"
+msgstr "Arbeid gjort"
+
+#: clientgui/ViewProjects.cpp:222
+#, fuzzy
+msgid "Avg. work done"
+msgstr "Klarte ikke konvertere til tegnsett «%s»."
+
+#: clientgui/ViewProjects.cpp:224
+msgid "Status"
+msgstr "Status"
+
+#: clientgui/ViewProjects.cpp:249
+msgid "Projects"
+msgstr "Prosjekter"
+
+#: clientgui/ViewProjects.cpp:296
+#, fuzzy
+msgid "Updating project..."
+msgstr "Slett prosjekt"
+
+#: clientgui/ViewProjects.cpp:338
+#, fuzzy
+msgid "Resuming project..."
+msgstr "Slett prosjekt"
+
+#: clientgui/ViewProjects.cpp:342
+#, fuzzy
+msgid "Suspending project..."
+msgstr "Slett prosjekt"
+
+#: clientgui/ViewProjects.cpp:379
+msgid "Telling project to allow additional task downloads..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:383
+msgid "Telling project to not fetch any additional tasks..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:419
+#, fuzzy
+msgid "Resetting project..."
+msgstr "Slett prosjekt"
+
+#: clientgui/ViewProjects.cpp:432
+#, c-format
+#, fuzzy, c-format
+msgid "Are you sure you want to reset project '%s'?"
+msgstr "Er du sikker på at du vil fjerne dette elementet?"
+
+#: clientgui/ViewProjects.cpp:438
+#, fuzzy
+msgid "Reset Project"
+msgstr "Slett prosjekt"
+
+#: clientgui/ViewProjects.cpp:477
+#, fuzzy
+msgid "Detaching from project..."
+msgstr "Kryss-prosjekt statistikk"
+
+#: clientgui/ViewProjects.cpp:537
+#, fuzzy
+msgid "Launching browser..."
+msgstr "Innstillinger for hjelpleser"
+
+#: clientgui/ViewProjects.cpp:703
+#, fuzzy
+msgid "Resume"
+msgstr "&Fortsett (resume)"
+
+#: clientgui/ViewProjects.cpp:703
+#, fuzzy
+msgid "Resume tasks for this project."
+msgstr "Suspender oppgaver for dette prosjektet."
+
+#: clientgui/ViewProjects.cpp:722
+#, fuzzy
+msgid "Allow new tasks"
+msgstr "Vis alle oppgaver"
+
+#: clientgui/ViewProjects.cpp:722
+#, fuzzy
+msgid "Allow fetching new tasks for this project."
+msgstr "Ikke hent nye oppgaver for dette prosjektet."
+
+#: clientgui/ViewProjects.cpp:726
+#, fuzzy
+msgid "Don't fetch new tasks for this project."
+msgstr "Ikke hent nye oppgaver for dette prosjektet."
+
+#: clientgui/ViewProjects.cpp:1052
+#, fuzzy
+msgid "Suspended by user"
+msgstr "Avbrutt av bruker"
+
+#: clientgui/ViewProjects.cpp:1055
+msgid "Won't get new tasks"
+msgstr "Henter ikke nye oppgaver"
+
+#: clientgui/ViewProjects.cpp:1058
+msgid "Project ended - OK to detach"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1061
+msgid "Will detach when tasks done"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1064
+#, fuzzy
+msgid "Scheduler request pending"
+msgstr "(anmodning om grunnlegger endring forestående)"
+
+#: clientgui/ViewProjects.cpp:1068
+#, fuzzy
+msgid "Scheduler request in progress"
+msgstr "Filoverføring pågår fremdeles."
+
+#: clientgui/ViewProjects.cpp:1074
+msgid "Communication deferred "
+msgstr "Kommunikasjon utsatt"
+
+#: clientgui/ViewProjectsGrid.cpp:193
+msgid "ProjectsGrid"
+msgstr "ProsjektGrid"
+
+#: clientgui/ViewResources.cpp:61
+msgid "Total disk usage"
+msgstr "Total diskbruk"
+
+#: clientgui/ViewResources.cpp:82
+msgid "Disk usage by BOINC projects"
+msgstr "Disk bruk av BOINC prosjekter"
+
+#: clientgui/ViewResources.cpp:117
+msgid "Disk"
+msgstr "Disk"
+
+#: clientgui/ViewResources.cpp:223
+msgid "not attached to any BOINC project: 0 bytes"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:260
+#, fuzzy
+msgid "used by BOINC: "
+msgstr "Avbrutt av bruker"
+
+#: clientgui/ViewResources.cpp:270
+msgid "free, available to BOINC: "
+msgstr "ledig, tilgjengelig for BOINC"
+
+#: clientgui/ViewResources.cpp:280
+msgid "free, not available to BOINC: "
+msgstr "ledig, ikke tilgjengelig for BOINC"
+
+#: clientgui/ViewResources.cpp:290
+msgid "free: "
+msgstr "ledig:"
+
+#: clientgui/ViewResources.cpp:300
+#, fuzzy
+msgid "used by other programs: "
+msgstr "&Begrens de lokale portene FileZilla bruker"
+
+#: clientgui/ViewStatistics.cpp:1142
+#, fuzzy
+msgid "User Total"
+msgstr "Nedlastet totalt"
+
+#: clientgui/ViewStatistics.cpp:1143
+#, fuzzy
+msgid "User Average"
+msgstr "Gjennomsnittlig kreditt"
+
+#: clientgui/ViewStatistics.cpp:1144
+#, fuzzy
+msgid "Host Total"
+msgstr "Nedlastet totalt"
+
+#: clientgui/ViewStatistics.cpp:1145
+#, fuzzy
+msgid "Host Average"
+msgstr "Gjennomsnittlig kreditt"
+
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
+msgid "Last update: %.0f days ago"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1745
+#, fuzzy
+msgid "Show user total"
+msgstr "%d fil. Total størrelse: %s"
+
+#: clientgui/ViewStatistics.cpp:1746
+#, fuzzy
+msgid "Show total credit for user"
+msgstr "Vis total kreditt for vert"
+
+#: clientgui/ViewStatistics.cpp:1752
+#, fuzzy
+msgid "Show user average"
+msgstr "Nylig gjennomsnitts kreditt"
+
+#: clientgui/ViewStatistics.cpp:1753
+#, fuzzy
+msgid "Show average credit for user"
+msgstr "Vis total kreditt for vert"
+
+#: clientgui/ViewStatistics.cpp:1759
+#, fuzzy
+msgid "Show host total"
+msgstr "%d fil. Total størrelse: %s"
+
+#: clientgui/ViewStatistics.cpp:1760
+msgid "Show total credit for host"
+msgstr "Vis total kreditt for vert"
+
+#: clientgui/ViewStatistics.cpp:1766
+#, fuzzy
+msgid "Show host average"
+msgstr "Nylig gjennomsnitts kreditt"
+
+#: clientgui/ViewStatistics.cpp:1767
+#, fuzzy
+msgid "Show average credit for host"
+msgstr "Vis total kreditt for vert"
+
+#: clientgui/ViewStatistics.cpp:1776
+#, fuzzy
+msgid "< &Previous project"
+msgstr "Slett prosjekt"
+
+#: clientgui/ViewStatistics.cpp:1777
+msgid "Show chart for previous project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1782
+#, fuzzy
+msgid "&Next project >"
+msgstr "Slett prosjekt"
+
+#: clientgui/ViewStatistics.cpp:1783
+msgid "Show chart for next project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1788
+#, fuzzy
+msgid "Mode view"
+msgstr "Vis|Alle"
+
+#: clientgui/ViewStatistics.cpp:1791
+#, fuzzy
+msgid "All projects"
+msgstr "Alle filer (%s)|%s"
+
+#: clientgui/ViewStatistics.cpp:1792
+msgid "Show all projects, one chart per project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1798
+#, fuzzy
+msgid "One project"
+msgstr "Slett prosjekt"
+
+#: clientgui/ViewStatistics.cpp:1799
+msgid "Show one chart with selected project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1805
+#, fuzzy
+msgid "All projects(sum)"
+msgstr "Slå &av alle"
+
+#: clientgui/ViewStatistics.cpp:1806
+msgid "Show one chart with all projects"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1833
+#, fuzzy
+msgid "Statistics"
+msgstr "Kryss-prosjekt statistikk"
+
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
+#, fuzzy
+msgid "Updating charts..."
+msgstr "Oppdaterer katalog ..."
+
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
+#, fuzzy
+msgid "Retry Now"
+msgstr "Restart nå"
+
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
+msgid "Click 'Retry now' to transfer the file now"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
+#, fuzzy
+msgid "Abort Transfer"
+msgstr "&Manuell overføring..."
+
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
+msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
+msgid "File"
+msgstr "Fil"
+
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
+msgid "Progress"
+msgstr "Fremdrift"
+
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
+msgid "Size"
+msgstr "Størrelse"
+
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
+#, fuzzy
+msgid "Elapsed Time"
+msgstr "Forløpt tid :"
+
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
+msgid "Speed"
+msgstr "Fart"
+
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
+msgid "Transfers"
+msgstr "Overføringer"
+
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
+#, fuzzy
+msgid "Retrying transfer now..."
+msgstr "Oppdater kilder nå"
+
+#: clientgui/ViewTransfers.cpp:309
+#, fuzzy
+msgid "Aborting transfer..."
+msgstr "&Manuell overføring..."
+
+#: clientgui/ViewTransfers.cpp:322
+#, 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 ""
+
+#: clientgui/ViewTransfers.cpp:328
+#, fuzzy
+msgid "Abort File Transfer"
+msgstr "Filoverføring vellykket"
+
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
+msgid "Retry in "
+msgstr "Forsøk igjen om"
+
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
+#, fuzzy
+msgid "Upload pending"
+msgstr "Fjern ventende handlinger"
+
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
+#, fuzzy
+msgid "Download pending"
+msgstr "Fjern ventende handlinger"
+
+#: clientgui/ViewTransfers.cpp:770
+#, fuzzy
+msgid " (project backoff: "
+msgstr "Slett prosjekt"
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ")"
+
+#: clientgui/ViewTransfersGrid.cpp:161
+msgid "TransfersGrid"
+msgstr "OverføringsGrid"
+
+#: clientgui/ViewTransfersGrid.cpp:228
+#, fuzzy
+msgid "Aborting transfer(s)..."
+msgstr "&Manuell overføring..."
+
+#: clientgui/ViewTransfersGrid.cpp:230
+msgid ""
+"Are you sure you want to abort this file(s) transfer ?\n"
+"NOTE: Aborting a transfer will invalidate a task and you\n"
+"will not receive credit for it."
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:231
+#, fuzzy
+msgid "Abort File Transfer(s)"
+msgstr "Filoverføring vellykket"
+
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+#, fuzzy
+msgid "Show active tasks"
+msgstr "Vis alle oppgaver"
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+#, fuzzy
+msgid "Show only active tasks."
+msgstr "Vis bare aktive team"
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
+msgid "Show application graphics in a window."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
+msgid "Suspend work for this result."
+msgstr "Suspender arbeid for dette resultatet."
+
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
+msgid "Abort"
+msgstr "Avbryt"
+
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
+msgid "Abandon work on the result. You will get no credit for it."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:213
+msgid "Show task details."
+msgstr "Vis oppgave detajer."
+
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
+msgid "Name"
+msgstr "Navn"
+
+#: clientgui/ViewWork.cpp:225
+#, fuzzy
+msgid "Elapsed"
+msgstr "%H:%M:%S forløpt"
+
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
+#, fuzzy
+msgid "To completion"
+msgstr "Kobler til %s"
+
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
+msgid "Tasks"
+msgstr "Oppgaver"
+
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
+#, fuzzy
+msgid "Resuming task..."
+msgstr "Vis oppgave detajer."
+
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
+#, fuzzy
+msgid "Suspending task..."
+msgstr "Vis oppgave detajer."
+
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
+msgid "Showing graphics for task..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:426
+#, c-format
+msgid ""
+"Are you sure you want to abort this task '%s'?\n"
+"(Progress: %s, Status: %s)"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
+#, fuzzy
+msgid "Abort task"
+msgstr "Vis oppgave detajer."
+
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+#, fuzzy
+msgid "Aborting result..."
+msgstr "Ingen kommando gitt, avslutter."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr "Vis alle oppgaver"
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr "Vis alle oppgaver."
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
+#, fuzzy
+msgid "Resume work for this task."
+msgstr "Suspender arbeidet på denne oppgaven"
+
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
+msgid "Suspend work for this task."
+msgstr "Suspender arbeidet på denne oppgaven"
+
+#: clientgui/ViewWork.cpp:1108
+#, fuzzy
+msgid "GPU missing, "
+msgstr "Høyeste antall &manglende ord:"
+
+#: clientgui/ViewWork.cpp:1149
+msgid " - an exclusive app is running"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
+msgid " (non-CPU-intensive)"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
+msgid "TasksGrid"
+msgstr "OppgaveGrid"
+
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
+msgid ""
+"Are you sure you want to abort this task '%s'?\n"
+"(Progress: %s %%, Status: %s)"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:256
+#, fuzzy
+msgid "Attach to project or account manager"
+msgstr "Koble til et &prosjekt eller en konto manager..."
+
+#: clientgui/WelcomePage.cpp:264
+#, 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 ""
+
+#: clientgui/WelcomePage.cpp:277
+msgid ""
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:281
+msgid ""
+"You have selected to attach to a new BOINC project.  Attaching to a new\n"
+"project means that you will be connecting your computer to a new website\n"
+"and organization.  If this is what you wanted to do, then please click on\n"
+"the 'Next' button below.\n"
+"\n"
+"Some projects like World Community Grid run multiple research applications.\n"
+"If you want to change which research applications are sent to your computer\n"
+"to run, then you should visit the project's website and modify your\n"
+"preferences there.\n"
+"\n"
+"To change which research applications are sent to you from\n"
+"World Community Grid then please click on the following button:"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr "Skift forsknings program på World Community Grid"
+
+#: clientgui/WelcomePage.cpp:301
+#, fuzzy
+msgid "To continue, click Next."
+msgstr "Ved siden av overføringskøen"
+
+#: clientgui/WizardAttachProject.cpp:610
+#, fuzzy
+msgid "Do you really want to cancel?"
+msgstr "Vil du virkelig lukke FileZilla?"
+
+#: clientgui/WizardAttachProject.cpp:611
+msgid "Question"
+msgstr "Spørsmål"
+
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
+msgid "&Next >"
+msgstr "&Neste >"
+
+#: clientgui/wizardex.cpp:383
+msgid "< &Back"
+msgstr "< &Tilbake"
+
+#: clientgui/wizardex.cpp:553
+msgid "&Finish"
+msgstr "&Ferdig"
+
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
+msgid "New page inserted. Index = %i"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
+msgid "New page appended. Index = %i"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
+#, fuzzy, c-format
+msgid "Old Page Index = %i"
+msgstr "GIF: Ugyldig GIF-indeks"
+
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
+msgid "OnDropTarget: index by HitTest = %i"
+msgstr ""
+
+#: clientgui/common/wxPieCtrl.cpp:66
+msgid "Pie Ctrl"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
+msgid "specify work start and stop hours in format HH:MM-HH:MM"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:30
+msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
+msgstr ""
+
+#, fuzzy
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "Lukk dette vinduet"
+
+#, fuzzy
+#~ msgid "&News\tCtrl+Shift+N"
+#~ msgstr "Sett bokmerke %i\tCtrl-%i"
+
+#, fuzzy
+#~ msgid "Display news"
+#~ msgstr "Vis innhold"
diff --git a/locale/nb/BOINC-Project-Generic.po b/locale/nb/BOINC-Project-Generic.po
new file mode 100644
index 0000000..b603f3d
--- /dev/null
+++ b/locale/nb/BOINC-Project-Generic.po
@@ -0,0 +1,1336 @@
+# 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 project generic\n"
+"Report-Msgid-Bugs-To: BOINC translation team <translate at boinc.berkeley.edu>\n"
+"POT-Creation-Date: 2009-05-09 21:36 PDT\n"
+"PO-Revision-Date: 2009-11-25 11:52+0100\n"
+"Last-Translator: Kenneth Skjold <kenneth at skjold.biz>\n"
+"Language-Team: Hjel andre <kenneth at skjold.biz>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.2.1\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+msgid "Search for words in forum messages"
+msgstr "Søk etter ord i forum meldinger"
+
+msgid "Search forums"
+msgstr "Søk i forumene"
+
+msgid "Advanced search"
+msgstr "Avansert søk"
+
+msgid "Private messages"
+msgstr "Private meldinger"
+
+msgid "Questions and Answers"
+msgstr "Spørsmål og svar"
+
+msgid "Message boards"
+msgstr "Oppslagstavler"
+
+msgid "%1 message board"
+msgstr "%1 oppslagstavle"
+
+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 ""
+"For å kunne lage et nytt innlegg i %1 må du ha en hvis mengde kreditt. Dette "
+"for å forebygge og beskytte mot misbruk av systemet."
+
+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 ""
+"Du kan ikke lage flere innlegg akkurat nå. Vennligst vent en stund før du "
+"prøver igjen. Denne forsinkelsen er lagt til som beskyttelse mot misbruk av "
+"systemet"
+
+msgid "Thread"
+msgstr "Tråd"
+
+msgid "Posts"
+msgstr "Innlegg"
+
+msgid "Author"
+msgstr "Forfatter"
+
+msgid "Views"
+msgstr "Visninger"
+
+msgid "Last post"
+msgstr "Siste innlegg"
+
+msgid "Mark all threads as read"
+msgstr "Merk alle trådene som lest"
+
+msgid "Mark all threads in all message boards as 'read'."
+msgstr "Merk alle trådene i alle meldings-tavler som 'lest'."
+
+msgid "Inbox"
+msgstr "Innboks"
+
+msgid "Write"
+msgstr "Skriv"
+
+msgid "Send private message"
+msgstr "Send en privat melding"
+
+msgid "Preview"
+msgstr "Forhåndsvisning"
+
+msgid "To"
+msgstr "Til"
+
+msgid "User IDs or unique usernames, separated with commas"
+msgstr "Bruker ID's eller unike brukernavn, separert med komma"
+
+msgid "Subject"
+msgstr "Emne"
+
+msgid "Message"
+msgstr "Melding"
+
+msgid "Send message"
+msgstr "Send melding"
+
+msgid ""
+"You are not allowed to send privates messages so often. Please wait some "
+"time before sending more messages."
+msgstr ""
+"Du har ikke tillatelse til å sende private meldinger så ofte. Vennligst vent "
+"litt før du sender flere meldinger."
+
+msgid "unread"
+msgstr "ulest"
+
+msgid "Edit your profile"
+msgstr "Redigere din profil"
+
+msgid "Your feedback on this profile"
+msgstr "Din tilbakemelding på denne profilen"
+
+msgid "Recommend this profile for User of the Day:"
+msgstr "Anbefal denne profilen til Dagens Bruker:"
+
+msgid "I %1like%2 this profile"
+msgstr "Jeg %1liker%2 denne profilen"
+
+msgid "Alert administrators to an offensive profile:"
+msgstr "Varsle administrator om en støtende profil:"
+
+msgid "I %1do not like%2 this profile"
+msgstr "Jeg %1like ikke%2 denne profilen"
+
+msgid "Search criteria (use one or more)"
+msgstr "Søke kriteria (bruk en eller flere)"
+
+msgid "Key words"
+msgstr "Nøkkelord"
+
+msgid "Find teams with these words in their names or descriptions"
+msgstr "Finn team med disse ordene i navnet eller i beskrivelsen."
+
+msgid "Country"
+msgstr "Land"
+
+msgid "Type of team"
+msgstr "Type team"
+
+msgid "Show only active teams"
+msgstr "Vis bare aktive team"
+
+msgid "Search"
+msgstr "Søk"
+
+msgid "Requested by you, and founder response deadline has passed."
+msgstr "Anmodet av deg, og grunnleggers svarfrist er passert."
+
+msgid "Complete foundership transfer"
+msgstr "Fullført grunnlegger overføring"
+
+msgid "Requested by you"
+msgstr "Anmodet av deg"
+
+msgid "founder response deadline is %1"
+msgstr "grunnleggers svarfrist er %1"
+
+msgid "None"
+msgstr "Ingen"
+
+msgid "Initiate request"
+msgstr "Initiere anmodning"
+
+msgid "Deferred"
+msgstr "Utsatt"
+
+msgid "Team info"
+msgstr "Team info"
+
+msgid "Description"
+msgstr "Beskrivelse"
+
+msgid "Web site"
+msgstr "Nettside"
+
+msgid "Total credit"
+msgstr "Total kreditt"
+
+msgid "Recent average credit"
+msgstr "Nylig gjennomsnitts kreditt"
+
+msgid "Cross-project stats"
+msgstr "Kryss-prosjekt statistikk"
+
+msgid "Type"
+msgstr "Type"
+
+msgid "Message board"
+msgstr "Meldingstavle"
+
+msgid "Threads"
+msgstr "Tråder"
+
+msgid "Join this team"
+msgstr "Bli med i dette teamet "
+
+msgid ""
+"Note: if 'OK to email' is set in your project preferences, joining a team "
+"gives its founder access to your email address."
+msgstr ""
+"Obs: hvis 'Motta epost' er satt i dine prosjekt preferanser, vil "
+"grunnleggeren av et team få tilgang til din epost adresse hvis du blir "
+"medlem."
+
+msgid "Not accepting new members"
+msgstr "Aksepterer ikke nye medlemmer"
+
+msgid "Foundership change requested"
+msgstr "Endring av grunnlegger er anmodet"
+
+msgid "Respond by %1"
+msgstr "Respons av %1"
+
+msgid "Team foundership change"
+msgstr "Team grunnlegger endring"
+
+msgid "Members"
+msgstr "Medlemmer"
+
+msgid "Founder"
+msgstr "Grunnlegger"
+
+msgid "Admins"
+msgstr "Administratorer"
+
+msgid "New members in last day"
+msgstr "Nye medlemmer, siste dag"
+
+msgid "Total members"
+msgstr "Medlemmer totalt"
+
+msgid "view"
+msgstr "visning"
+
+msgid "Active members"
+msgstr "Aktive medlemmer"
+
+msgid "Members with credit"
+msgstr "Medlemmer med kreditt"
+
+msgid "Name"
+msgstr "Navn"
+
+msgid "Admin"
+msgstr "Administrator"
+
+msgid "Last %1"
+msgstr "Sist %1"
+
+msgid "Next %1"
+msgstr "Neste %1"
+
+msgid "No such team."
+msgstr "Ingen slikt team."
+
+msgid "This operation requires foundership."
+msgstr "Denne handlingen krever grunnlegger rolle."
+
+msgid "This operation requires team admin privileges"
+msgstr "Denne handlingen krever team administrator rettigheter"
+
+msgid "Rank"
+msgstr "Plassering"
+
+msgid ""
+"%1Privacy note%2: if you create a team, your project preferences (resource "
+"share, graphics preferences) will be visible to the public."
+msgstr ""
+"%1Personvern notat%2: hvis du lager et team, vil dine prosjekt preferanser "
+"(resurs deling, grafikk preferanser) være synlig for alle."
+
+msgid "Team name, text version"
+msgstr "Team navn, tekst versjon"
+
+msgid "Don't use HTML tags."
+msgstr "Ikke bruk HTML tags."
+
+msgid "Team name, HTML version"
+msgstr "Team navn, HTML versjon"
+
+msgid "You may use %1limited HTML tags%2."
+msgstr "Du kan bruke %1begrensede HTML tags%2."
+
+msgid "If you don't know HTML, leave this box blank."
+msgstr "Hvis du ikke kan HTML, la denne boksen være blank."
+
+msgid "URL of team web page, if any"
+msgstr "URL til Teamets nettside, hvis det er en nettside"
+
+msgid "without \"http://\""
+msgstr "uten \"http://\""
+
+msgid "This URL will be linked to from the team's page on this site."
+msgstr "Denne URL'en vil bli linket til, fra teamsiden på dette nettstedet."
+
+msgid "Description of team"
+msgstr "Beskrivelse av teamet"
+
+msgid "Projects in which you are participating"
+msgstr "Prosjekter du deltar i."
+
+msgid "Projects in which %1 is participating"
+msgstr "Prosjekter som %1 deltar i"
+
+msgid "Project"
+msgstr "Prosjekt"
+
+msgid "Click for user page"
+msgstr "Klikk for brukerside"
+
+msgid "Average credit"
+msgstr "Gjennomsnittlig kreditt"
+
+msgid "Since"
+msgstr "Siden"
+
+msgid "Computing and credit"
+msgstr "Databehandling og kreditt"
+
+msgid "Pending credit"
+msgstr "Forestående kreditt"
+
+msgid "View"
+msgstr "Vis"
+
+msgid "Computers on this account"
+msgstr "Datamaskiner på denne kontoen"
+
+msgid "Tasks"
+msgstr "Oppgaver"
+
+msgid "Cross-project ID"
+msgstr "Kryss-prosjekt ID"
+
+msgid "Cross-project statistics"
+msgstr "Kryss-prosjekt statistikk"
+
+msgid "Certificate"
+msgstr "Sertifikat"
+
+msgid "Stats on your cell phone"
+msgstr "Statistikk på din mobiltelefon"
+
+msgid "Account information"
+msgstr "Konto informasjon"
+
+msgid "Email address"
+msgstr "Epost adresse"
+
+msgid "URL"
+msgstr "URL"
+
+msgid "Postal code"
+msgstr "Postnummer"
+
+msgid "%1 member since"
+msgstr "%1 medlem siden"
+
+msgid "Change"
+msgstr "Endre"
+
+msgid "email address"
+msgstr "epost adresse"
+
+msgid "password"
+msgstr "passord"
+
+msgid "other account info"
+msgstr "annen konto informasjon"
+
+msgid "Log out"
+msgstr "Logg ut"
+
+msgid "User ID"
+msgstr "Bruker ID"
+
+msgid "Used in community functions"
+msgstr "Brukes i fellesskap funksjoner"
+
+msgid "Account key"
+msgstr "Konto nøkkel"
+
+msgid "Provides full access to your account"
+msgstr "Gir full tilgang til din konto"
+
+msgid "Weak account key"
+msgstr "Svak konto nøkkel"
+
+msgid "Provides %1limited access%2 to your account"
+msgstr "Gir %1begrenset tilgang%2 til din konto"
+
+msgid "Preferences"
+msgstr "Preferanser"
+
+msgid "When and how BOINC uses your computer"
+msgstr "NÃ¥r og hvordan BOINC bruker din datamaskin"
+
+msgid "Computing preferences"
+msgstr "Databehandling preferanser"
+
+msgid "Message boards and private messages"
+msgstr "Meldingstavle og private meldinger"
+
+msgid "Community preferences"
+msgstr "Fellesskap preferanser"
+
+msgid "Resource share and graphics"
+msgstr "Resurs deling og grafikk"
+
+msgid "%1 preferences"
+msgstr "%1 preferanser"
+
+msgid "Community"
+msgstr "Fellesskap"
+
+msgid "Delete"
+msgstr "Slett"
+
+msgid "Create"
+msgstr "Lag"
+
+msgid "Profile"
+msgstr "Profil"
+
+msgid "%1 posts"
+msgstr "%1 innlegg"
+
+msgid "Notifications"
+msgstr "Varsler"
+
+msgid "Quit team"
+msgstr "Forlat team"
+
+msgid "Administer"
+msgstr "Administrer"
+
+msgid "(foundership change request pending)"
+msgstr "(anmodning om grunnlegger endring forestående)"
+
+msgid "Member of team"
+msgstr "Medlem av team"
+
+msgid "Team"
+msgstr "Team"
+
+msgid "find a team"
+msgstr "Finn et team"
+
+msgid "Founder but not member of"
+msgstr "Grunnlegger men ikke medlem av"
+
+msgid "Find friends"
+msgstr "Finn venner"
+
+msgid "Friends"
+msgstr "Venner"
+
+msgid "Computers"
+msgstr "Datamaskiner"
+
+msgid "hidden"
+msgstr "skjult"
+
+msgid "Donor"
+msgstr "Giver"
+
+msgid "Contact"
+msgstr "Kontakt"
+
+msgid "This person is a friend"
+msgstr "Denne personen er en venn"
+
+msgid "Cancel friendship"
+msgstr "Kanslere vennskap "
+
+msgid "Request pending"
+msgstr "Anmodning forestående"
+
+msgid "Add as friend"
+msgstr "Legg til venn"
+
+msgid "CHARSET"
+msgstr "CHARSET"
+
+msgid "Use BBCode tags to format your text"
+msgstr "Bruk BBkode tag's for å formatere teksten din"
+
+msgid "Identifies you on our web site. Use your real name or a nickname."
+msgstr ""
+"Identifiserer deg på vår nettside. Bruk ditt virkelige navn, eller et "
+"kallenavn."
+
+msgid "Select the country you want to represent, if any."
+msgstr "Velg det landet du vil representere, hvis noen."
+
+msgid "Postal or ZIP Code"
+msgstr "Postnummer"
+
+msgid "Optional"
+msgstr "Valgfritt"
+
+msgid "Applications"
+msgstr "Programmer"
+
+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 ""
+"%1 har nå følgende programmer. Når du bidrar i %1, arbeid for et eller flere "
+"av disse programmene bli tildelt din datamaskin. Den gjeldende versjon av "
+"programmet vil bli lastet ned til din datamaskin. Dette skjer automatisk; du "
+"trenger ikke å gjøre noenting."
+
+msgid "Platform"
+msgstr "Plattform"
+
+msgid "Version"
+msgstr "Versjon"
+
+msgid "Installation time"
+msgstr "Installasjons tid"
+
+msgid "You must supply an invitation code to create an account."
+msgstr "Du må ha en invitasjons kode for å lage en konto."
+
+msgid "The invitation code you gave is not valid."
+msgstr "Invitasjons koden du skrev er ikke gyldig."
+
+msgid "Create an account"
+msgstr "Lag en konto"
+
+msgid "Account creation is disabled"
+msgstr "Konto etablering er deaktivert"
+
+msgid "Account creation is currently disabled. Please try again later."
+msgstr ""
+"Konto etablering er midlertidig deaktivert. Vennligst prøv igjen senere."
+
+msgid ""
+"NOTE: If you use BOINC version 5.2+ with the BOINC Manager, don't use this "
+"form. Just run BOINC, select Attach Project, and enter an email address and "
+"password."
+msgstr ""
+"Obs: Hvis du bruker BOINC versjon 5.2+ med BOINC Manager, ikke bruk dette "
+"skjemaet. Bare kjør BOINC, velg Legg til Prosjekt og skriv epost adresse og "
+"passord."
+
+msgid ""
+"This account will belong to the team %1 and will have the project "
+"preferences of its founder."
+msgstr ""
+"Denne kontoen vil tilhøre team %1 og vil ha samme prosjekt preferanser som "
+"grunnleggeren."
+
+msgid "Invitation Code"
+msgstr "Invitasjons kode"
+
+msgid "A valid invitation code is required to create an account."
+msgstr "En gyldig invitasjons kode er nødvendig for å lage en konto."
+
+msgid "Email Address"
+msgstr "Epost adresse"
+
+msgid "Must be a valid address of the form 'name at domain'."
+msgstr "Må være en gyldig adresse i denne formen 'name at domene'."
+
+msgid "Password"
+msgstr "Passord"
+
+msgid "Must be at least %1 characters"
+msgstr "Må være minst %1 karakterer"
+
+msgid "Confirm password"
+msgstr "Bekreft passord"
+
+msgid "Create account"
+msgstr "Lag konto"
+
+msgid "ERROR: %1 does not exist!  Cannot create combo box.<br>"
+msgstr "ERROR: %1 eksisterer ikke!  Kan ikke lage combo boks.<br>"
+
+msgid "Picture"
+msgstr "Bilde"
+
+msgid "%1 Your profile picture is shown to the left."
+msgstr "%1 Ditt profil bilde blir vist til venstre."
+
+msgid ""
+"To replace it, click the \"Browse\" button and select a JPEG or PNG file (%1 "
+"or less)."
+msgstr ""
+
+msgid "To remove it from your profile, check this box:"
+msgstr ""
+
+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 ""
+
+msgid "Language"
+msgstr "Språk"
+
+msgid "Select the language in which your profile is written:"
+msgstr ""
+
+msgid "Submit profile"
+msgstr "Send inn profil"
+
+msgid ""
+"To protect the project's webpages from spam, we kindly ask you to type in "
+"the two words shown in the image:<br>\n"
+msgstr ""
+
+msgid "Create/edit profile"
+msgstr "Lag/rediger profil"
+
+msgid "The format of your uploaded image is not supported."
+msgstr ""
+
+msgid ""
+"Your %1profile%2 lets you share your opinions and background with the %3 "
+"community."
+msgstr ""
+
+msgid "Your ReCaptcha response was not correct.  Please try again."
+msgstr ""
+
+msgid ""
+"Your first response was flagged as spam by the Akismet anti-spam system.  "
+"Please modify your text and try again."
+msgstr ""
+
+msgid ""
+"Your second response was flagged as spam by the Akismet anti-spam system.  "
+"Please modify your text and try again."
+msgstr ""
+
+msgid "Your profile submission was empty."
+msgstr ""
+
+msgid "Could not update the profile: database error"
+msgstr ""
+
+msgid "Could not create the profile: database error"
+msgstr ""
+
+msgid "Profile saved"
+msgstr "Profilen er lagret"
+
+msgid ""
+"Congratulations! Your profile was successfully entered into our database."
+msgstr ""
+
+msgid "%1View your profile%2"
+msgstr "%1Se din profil%2"
+
+msgid "Create a profile"
+msgstr "Lag en profil"
+
+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 ""
+
+msgid "Download BOINC add-on software"
+msgstr "Last ned BOINC legg-til software"
+
+msgid "You can download applications in several categories."
+msgstr ""
+
+msgid ""
+"These applications are not endorsed by %1 and you use them at your own risk."
+msgstr ""
+
+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 ""
+
+msgid "Instructions for installing and running BOINC are %1here%2."
+msgstr ""
+
+msgid "This list is managed centrally at %1the BOINC website%2."
+msgstr ""
+
+msgid "fll"
+msgstr "fll"
+
+msgid "Title"
+msgstr "Tittel"
+
+msgid "Add my signature to this post"
+msgstr "Legg til min signatur til dette innlegget"
+
+msgid "%1 Message boards"
+msgstr "%1Oppslagstavler"
+
+msgid ""
+"If you have a question or problem, please use the %1Questions & Answers%2 "
+"section of the message boards."
+msgstr ""
+
+msgid "Topic"
+msgstr "Emne"
+
+msgid "Create a new thread"
+msgstr "Lag en ny tråd"
+
+msgid "Post to thread"
+msgstr "Post til tråd"
+
+msgid "Forum search"
+msgstr "Forum søk"
+
+msgid "Forum search results"
+msgstr "Forum søkeresultat"
+
+msgid "No thread with id %1. Please check the link and try again."
+msgstr ""
+
+msgid "This forum is not visible to you."
+msgstr "Dette forumet er ikke synlig for deg."
+
+msgid "This thread has been hidden for administrative purposes"
+msgstr ""
+
+msgid "My question was answered"
+msgstr "Mitt spørsmål ble besvart"
+
+msgid ""
+"If your question has been adequately answered please click here to close it!"
+msgstr ""
+
+msgid "I've also got this question"
+msgstr "Jeg har også fått dette spørsmålet"
+
+msgid "Add a new message to this thread"
+msgstr "Legg til en ny melding til denne tråden"
+
+msgid "Unsubscribe"
+msgstr "Avslutt abonement"
+
+msgid "You are subscribed to this thread.  Click here to unsubscribe."
+msgstr ""
+
+msgid "Subscribe"
+msgstr "Abonnér"
+
+msgid "Click to get email when there are new posts in this thread"
+msgstr ""
+
+msgid "Unhide"
+msgstr ""
+
+#, fuzzy
+msgid "Unhide this thread"
+msgstr "Lås opp denne tråden"
+
+msgid "Hide"
+msgstr "Skjul"
+
+#, fuzzy
+msgid "Hide this thread"
+msgstr "Lås denne tråden"
+
+msgid "Make unsticky"
+msgstr ""
+
+msgid "Make this thread not sticky"
+msgstr ""
+
+msgid "Make sticky"
+msgstr ""
+
+msgid "Make this thread sticky"
+msgstr ""
+
+msgid "Unlock"
+msgstr "LÃ¥s opp"
+
+msgid "Unlock this thread"
+msgstr "Lås opp denne tråden"
+
+msgid "Lock"
+msgstr "LÃ¥s"
+
+msgid "Lock this thread"
+msgstr "Lås denne tråden"
+
+msgid "Move"
+msgstr "&Flytt"
+
+msgid "Move this thread to a different forum"
+msgstr ""
+
+msgid "Edit title"
+msgstr "Rediger tittel"
+
+msgid "Edit thread title"
+msgstr "Rediger tråd tittel"
+
+msgid "Sort"
+msgstr "Sorter"
+
+msgid "Already friends"
+msgstr "Allerede venner"
+
+msgid "You requested friendship with %1 on %2."
+msgstr ""
+
+msgid "This request is still pending confirmation."
+msgstr ""
+
+msgid "%1 is not accepting friendship requests from you"
+msgstr "%1 aksepterer ikke vennskaps forespørsler fra deg"
+
+msgid "You can't be friends with yourself"
+msgstr "Du kan ikke være venner med deg selv"
+
+msgid "No such user"
+msgstr "Ingen slik bruker"
+
+msgid "Add friend"
+msgstr "Legg til venn"
+
+msgid ""
+"You have asked to add %1 as a friend. We will notify %2 and will ask him/her "
+"to confirm that you are friends."
+msgstr ""
+
+msgid "Add an optional message here:"
+msgstr "Legg til en valgfri melding her:"
+
+msgid "Database error"
+msgstr "Databasefeil"
+
+msgid "Friend request sent"
+msgstr "Venne forespørsel sent"
+
+msgid "We have notified %1 of your request."
+msgstr ""
+
+msgid "Request not found"
+msgstr ""
+
+msgid "Friend request"
+msgstr "Venne forespørsel"
+
+msgid "%1 has added you as a friend."
+msgstr ""
+
+msgid "%1 says: %2"
+msgstr "%1 sier: %2"
+
+msgid "Accept friendship"
+msgstr "Aksepter vennskap"
+
+msgid "Click accept if %1 is in fact a friend"
+msgstr ""
+
+msgid "Decline"
+msgstr "Avslå"
+
+msgid "Click decline if %1 is not a friend"
+msgstr ""
+
+msgid "No request"
+msgstr "Ingen anmodning"
+
+msgid "Friendship confirmed"
+msgstr ""
+
+msgid "Your friendship with %1 has been confirmed."
+msgstr ""
+
+msgid "Friendship declined"
+msgstr "Vennskap avslått"
+
+msgid "You have declined friendship with %1"
+msgstr ""
+
+msgid "Notification not found"
+msgstr ""
+
+msgid "Friend confirmed"
+msgstr ""
+
+msgid "You are now friends with %1."
+msgstr ""
+
+#, fuzzy
+msgid "Cancel friendship?"
+msgstr "Kanslere vennskap "
+
+msgid "Are you sure you want to cancel your friendship with %1?"
+msgstr ""
+
+msgid "Yes"
+msgstr "Ja"
+
+msgid "No"
+msgstr "Nei"
+
+msgid "Stay friends"
+msgstr "Forbli venner"
+
+msgid "Friendship cancelled"
+msgstr ""
+
+msgid "Your friendship with %1 has been cancelled."
+msgstr ""
+
+msgid "Unknown action"
+msgstr "Ukjent handling"
+
+msgid "Welcome to %1"
+msgstr "Velkommen til %1"
+
+msgid "View and edit your account preferences using the links below."
+msgstr ""
+
+msgid "Your account"
+msgstr "Din konto"
+
+msgid "Read our rules and policies"
+msgstr ""
+
+msgid "Run %1 only on authorized computers"
+msgstr ""
+
+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 ""
+
+msgid "How %1 will use your computer"
+msgstr "Hvordan %1 vil bruke din datamaskin"
+
+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 ""
+
+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 ""
+
+msgid "Privacy policy"
+msgstr "Personvern"
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+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 ""
+
+msgid "Is it safe to run %1?"
+msgstr ""
+
+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 ""
+
+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 ""
+
+msgid ""
+"%1 was developed by %2. BOINC was developed at the University of California."
+msgstr ""
+
+msgid "Liability"
+msgstr "Ansvar"
+
+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 ""
+
+msgid "Other BOINC projects"
+msgstr "Andre BOINC prosjekter"
+
+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 ""
+
+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 ""
+
+msgid "LANG_NAME_INTERNATIONAL"
+msgstr ""
+
+msgid "LANG_NAME_NATIVE"
+msgstr ""
+
+msgid "Your message has been sent."
+msgstr "Meldingen din har blitt sendt"
+
+msgid "You have no private messages."
+msgstr "Du har ingen private meldinger."
+
+msgid "Sender and date"
+msgstr "Avsender og dato"
+
+msgid "Reply"
+msgstr "Svar"
+
+msgid "Delete selected messages"
+msgstr "Slett valgte meldinger"
+
+msgid "Sender"
+msgstr "Avsender"
+
+msgid "Date"
+msgstr "Dato"
+
+msgid "You need to fill all fields to send a private message"
+msgstr ""
+
+msgid "Could not find user with id %1"
+msgstr "Kunne ikke finne bruker med id %1"
+
+msgid "Could not find user with username %1"
+msgstr "Kunne ikke finne bruker med brukernavn %1"
+
+msgid "%1 is not a unique username; you will have to use user ID"
+msgstr ""
+
+msgid "User %1 (ID: %2) is not accepting private messages from you."
+msgstr ""
+
+msgid "Really block %1?"
+msgstr ""
+
+msgid ""
+"Are you really sure you want to block user %1 from sending you private "
+"messages?"
+msgstr ""
+
+msgid "Please note that you can only block a limited amount of users."
+msgstr ""
+
+msgid ""
+"Once the user has been blocked you can unblock it using forum preferences "
+"page."
+msgstr ""
+
+msgid "Add user to filter"
+msgstr ""
+
+msgid "No, cancel"
+msgstr "Nei, avbryt"
+
+msgid "User %1 blocked"
+msgstr "Bruker %1 blokkert"
+
+msgid "User %1 has been blocked from sending you private messages."
+msgstr ""
+
+msgid "To unblock, visit %1message board preferences%2"
+msgstr ""
+
+msgid "Profiles"
+msgstr "Profiler"
+
+msgid ""
+"%1Profiles%2 let individuals share backgrounds and opinions with the %3 "
+"community."
+msgstr ""
+
+msgid ""
+"Explore the diversity of your fellow volunteers, and contribute your own "
+"views for others to enjoy."
+msgstr ""
+
+msgid ""
+"If you haven't already, you can %1create your own user profile%2 for others "
+"to see!"
+msgstr ""
+
+msgid "User of the Day"
+msgstr "Dagens Bruker"
+
+msgid "User Profile Explorer"
+msgstr "Bruker Profil Utforsker"
+
+msgid "View the %1User Picture Gallery%2."
+msgstr ""
+
+msgid "Browse profiles %1by country%2."
+msgstr ""
+
+msgid ""
+"Browse profiles %1at random%2, %3at random with pictures%2, or %4at random "
+"without pictures%2."
+msgstr ""
+
+msgid "Alphabetical profile listings:"
+msgstr ""
+
+msgid "Search profile text"
+msgstr "Søk profil tekst"
+
+msgid "No profiles"
+msgstr "Ingen profiler"
+
+msgid "No profiles matched your query."
+msgstr "Ingen prifiler passet med din spørring"
+
+msgid "Invalid vote type:"
+msgstr "Ugyldig stemme type:"
+
+msgid "Vote Recorded"
+msgstr "Stemme registrert"
+
+msgid "Thank you"
+msgstr "Takk"
+
+msgid "Your recommendation has been recorded."
+msgstr "Din anbefaling har blitt registrert"
+
+msgid "Your vote to reject this profile has been recorded."
+msgstr ""
+
+msgid "Return to profile."
+msgstr "Retuner til profil"
+
+msgid "This feature is turned off temporarily"
+msgstr "Denne funksjonen er midlertidig avslått "
+
+msgid "No computer with ID %1 found"
+msgstr "Ingen datamaskin medID %1 funnet"
+
+msgid "Tasks for computer %1"
+msgstr "Oppgaver for datamaskin %1"
+
+msgid "No access"
+msgstr "Ingen tilgang"
+
+msgid "Missing user ID or host ID"
+msgstr "Mangler bruker ID eller verts ID"
+
+msgid "User of the day"
+msgstr "Dagens Bruker"
+
+msgid "Account data for %1"
+msgstr "Konto data for %1"
+
+msgid "Statistics and leaderboards"
+msgstr ""
+
+msgid "Statistics for %1"
+msgstr "Statistikk for %1"
+
+msgid "Top participants"
+msgstr ""
+
+msgid "Top computers"
+msgstr "Topp datamaskiner"
+
+msgid "Top teams"
+msgstr "Topp teams"
+
+msgid ""
+"More detailed statistics for %1 and other BOINC-based projects are available "
+"at several web sites:"
+msgstr ""
+
+msgid ""
+"You can also get your current statistics in the form of a \"signature image"
+"\":"
+msgstr ""
+
+msgid ""
+"Additionally you can get your individual statistics summed across all BOINC "
+"projects from several sites; see your %1home page%2."
+msgstr ""
+
+msgid "%1 participants may form %2teams%3"
+msgstr ""
+
+msgid ""
+"You may belong to only one team. You can join or quit a team at any time."
+msgstr ""
+
+msgid "Each team has a %1founder%2 who may:"
+msgstr ""
+
+msgid "access team members' email addresses"
+msgstr ""
+
+msgid "edit the team's name and description"
+msgstr "Rediger teamet's navn og beskrivelse"
+
+msgid "remove members from the team"
+msgstr "fjern medlemmer fra teamet"
+
+msgid "disband a team if it has no members"
+msgstr ""
+
+msgid "To join a team, visit its team page and click %1Join this team%2."
+msgstr ""
+
+msgid "Find a team"
+msgstr "Finn et team"
+
+msgid "All teams"
+msgstr "Alle team"
+
+msgid "%1 teams"
+msgstr "%1 team"
+
+msgid "Create a new team"
+msgstr "Lag et nytt team"
+
+msgid ""
+"If you cannot find a team that is right for you, you can %1create a team%2."
+msgstr ""
+
+msgid "You must choose a non-blank team name"
+msgstr "Du må velge et ikke-blankt team navn"
+
+msgid "A team named %1 already exists - try another name"
+msgstr "Et team med det navnet %1 eksisterer allerede - velg et annet navn"
+
+msgid "Could not create team - please try later."
+msgstr "Kunne ikke lage team - vennligst prøv igjen senere"
+
+msgid "Create a team"
+msgstr "Lag et team"
+
+msgid ""
+"You belong to %1. You must %2quit this team%3 before creating a new one."
+msgstr ""
+
+msgid "Top hosts"
+msgstr "Topp vert"
+
+msgid "Top %1 teams"
+msgstr "Topp %1 team"
+
+msgid "Participant since"
+msgstr "Deltatt siden"
+
+msgid "This user has no profile"
+msgstr "Denne brukeren har ingen profil"
+
+msgid "Account data"
+msgstr "Konto informasjon"
+
+msgid ""
+"Your 'weak account key' lets you attach computers to your account on this "
+"project, without giving the ability to log in to your account or to change "
+"it in any way."
+msgstr ""
+
+msgid ""
+"This mechanism works only with projects that have upgraded their server "
+"software 7 Dec 2007 or later."
+msgstr ""
+
+msgid "Your weak account key for this project is:"
+msgstr ""
+
+msgid ""
+"To use your weak account key on a given host, find or create the 'account "
+"file' for this project. This file has a name of the form "
+"<b>account_PROJECT_URL.xml</b>. The account file for %1 is <b>%2</b>."
+msgstr ""
+
+msgid "Create this file if needed. Set its contents to:"
+msgstr ""
+
+msgid ""
+"Your weak account key is a function of your password. If you change your "
+"password, your weak account key changes, and your previous weak account key "
+"becomes invalid."
+msgstr ""
diff --git a/locale/nb/BOINC-Web.po b/locale/nb/BOINC-Web.po
new file mode 100644
index 0000000..f8cf6ec
--- /dev/null
+++ b/locale/nb/BOINC-Web.po
@@ -0,0 +1,633 @@
+# 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: BOINC610-web\n"
+"Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
+"PO-Revision-Date: 2009-11-24 22:50+0100\n"
+"Last-Translator: Kenneth Skjold <kenneth at skjold.biz>\n"
+"Language-Team: Hjelp andre <kenneth at skjold.biz>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.2.1\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+#: poll.inc:18
+msgid "[check all that apply]"
+msgstr ""
+
+#: poll.inc:47
+msgid "Other:"
+msgstr ""
+
+#: poll_data.inc:19
+msgid "Yes - I have been running BOINC on my computer for..."
+msgstr ""
+
+#: poll_data.inc:22
+msgid "less than a week"
+msgstr "mindre enn en uke"
+
+#: poll_data.inc:23
+msgid "less than a month"
+msgstr "mindre enn en måned"
+
+#: poll_data.inc:24
+msgid "less than a year"
+msgstr "mindre enn et år"
+
+#: poll_data.inc:25
+msgid "more than a year"
+msgstr "mer enn et år"
+
+#: poll_data.inc:31
+msgid "No - I used to run BOINC, but..."
+msgstr ""
+
+#: poll_data.inc:34
+msgid "I lost interest"
+msgstr ""
+
+#: poll_data.inc:35
+msgid "it was too complicated"
+msgstr ""
+
+#: poll_data.inc:36
+msgid "I stopped it and forgot to start again"
+msgstr ""
+
+#: poll_data.inc:37
+msgid "it caused problems on my computer"
+msgstr ""
+
+#: poll_data.inc:38
+msgid "it used too much electricity"
+msgstr ""
+
+#: poll_data.inc:39
+msgid "I switched to a non-BOINC computing project"
+msgstr ""
+
+#: poll_data.inc:45
+msgid "No - I tried running BOINC, but..."
+msgstr ""
+
+#: poll_data.inc:48
+msgid "the software didn't install correctly"
+msgstr ""
+
+#: poll_data.inc:49
+msgid "I couldn't figure out how to use the software"
+msgstr ""
+
+#: poll_data.inc:50
+msgid "I had network communication problems"
+msgstr ""
+
+#: poll_data.inc:51
+msgid "I couldn't attach to a project"
+msgstr ""
+
+#: poll_data.inc:52
+msgid "I attached to a project, but never got any work"
+msgstr ""
+
+#: poll_data.inc:58
+msgid "No - I never tried running BOINC, because..."
+msgstr ""
+
+#: poll_data.inc:61
+msgid "I was concerned about security"
+msgstr ""
+
+#: poll_data.inc:62
+msgid "I wasn't interested in any of the projects"
+msgstr ""
+
+#: poll_data.inc:63
+msgid "I don't have permission to run it on my computer"
+msgstr ""
+
+#: poll_data.inc:64
+msgid "No version was available for my computer"
+msgstr ""
+
+#: poll_data.inc:75
+msgid "What kind of computers do you have running BOINC?"
+msgstr ""
+
+#: poll_data.inc:85
+msgid "Where are they?"
+msgstr ""
+
+#: poll_data.inc:87
+msgid "Home"
+msgstr "Hjem"
+
+#: poll_data.inc:88
+msgid "Work"
+msgstr "Arbeid"
+
+#: poll_data.inc:89
+msgid "School"
+msgstr "Skole"
+
+#: poll_data.inc:96
+msgid "How many computers?"
+msgstr "Hvor mange datamaskiner?"
+
+#: poll_data.inc:107
+msgid "On average, how many hours per day are they powered on?"
+msgstr ""
+
+#: poll_data.inc:119
+msgid "Age"
+msgstr "Alder"
+
+#: poll_data.inc:129
+msgid "Sex"
+msgstr "Kjønn"
+
+#: poll_data.inc:131
+msgid "Male"
+msgstr "Mann"
+
+#: poll_data.inc:132
+msgid "Female"
+msgstr "Kvinne"
+
+#: poll_data.inc:137
+msgid "Your level of computer expertise"
+msgstr ""
+
+#: poll_data.inc:139
+msgid "Beginner"
+msgstr ""
+
+#: poll_data.inc:140
+msgid "Intermediate"
+msgstr ""
+
+#: poll_data.inc:141
+msgid "Advanced"
+msgstr ""
+
+#: poll_data.inc:149
+msgid "Where did you learn about BOINC projects?"
+msgstr ""
+
+#: poll_data.inc:151
+msgid "TV/radio/newspaper"
+msgstr "TV/radio/avis"
+
+#: poll_data.inc:152
+msgid "From friends, relatives, or coworkers"
+msgstr ""
+
+#: poll_data.inc:153
+msgid "Team message boards or web sites"
+msgstr ""
+
+#: poll_data.inc:154 poll_data.inc:210
+msgid "The BOINC web site"
+msgstr "BOINC nettside"
+
+#: poll_data.inc:155
+msgid "Other web sites"
+msgstr "Andre nettsider"
+
+#: poll_data.inc:161
+msgid ""
+"Which are the most important factors when you decide whether to participate "
+"in a BOINC project?"
+msgstr ""
+
+#: poll_data.inc:163
+msgid "Nice-looking screensaver graphics"
+msgstr ""
+
+#: poll_data.inc:164
+msgid "Fair and quick granting of credit for work done"
+msgstr ""
+
+#: poll_data.inc:165
+msgid "Getting more credit from this project than from others"
+msgstr ""
+
+#: poll_data.inc:166
+msgid "Helpful and friendly message boards"
+msgstr ""
+
+#: poll_data.inc:167
+msgid "Participation by project staff on the message boards"
+msgstr ""
+
+#: poll_data.inc:168
+msgid "Informative project web site"
+msgstr ""
+
+#: poll_data.inc:169
+msgid "The science is important and beneficial"
+msgstr ""
+
+#: poll_data.inc:170
+msgid "Non-profit, and results are public"
+msgstr ""
+
+#: poll_data.inc:171
+msgid "Personal recognition if my computer finds something"
+msgstr ""
+
+#: poll_data.inc:172
+msgid "Publication by the project in scientific journals"
+msgstr ""
+
+#: poll_data.inc:173
+msgid "Periodic email newsletters from the project"
+msgstr ""
+
+#: poll_data.inc:180
+msgid "How many BOINC projects do you participate in?"
+msgstr ""
+
+#: poll_data.inc:190
+msgid "Do you run BOINC as a screensaver?"
+msgstr ""
+
+#: poll_data.inc:192
+msgid "Yes"
+msgstr "Ja"
+
+#: poll_data.inc:193
+msgid "No"
+msgstr "Nei"
+
+#: poll_data.inc:198
+msgid "Your usage of project messages boards:"
+msgstr ""
+
+#: poll_data.inc:200
+msgid "to read information"
+msgstr ""
+
+#: poll_data.inc:201
+msgid "to read and post information"
+msgstr ""
+
+#: poll_data.inc:202
+msgid "None"
+msgstr "Ingen"
+
+#: poll_data.inc:206
+msgid ""
+"Where do you get information to help resolve problems with BOINC and/or "
+"BOINC projects?"
+msgstr ""
+
+#: poll_data.inc:208
+msgid "The project message boards"
+msgstr ""
+
+#: poll_data.inc:209
+msgid "The BOINC message boards"
+msgstr ""
+
+#: poll_data.inc:211
+msgid "BOINC mailing lists"
+msgstr "BOINC epost liste"
+
+#: poll_data.inc:212
+msgid "The Unofficial BOINC Wiki"
+msgstr ""
+
+#: poll_data.inc:213
+msgid "Team web sites"
+msgstr ""
+
+#: poll_data.inc:214
+msgid "Google or other search engines"
+msgstr ""
+
+#: download.php:40
+msgid "Download BOINC"
+msgstr "Last ned BOINC"
+
+#: download.php:42
+#, php-format
+msgid "%s for %s (%s MB)"
+msgstr ""
+
+#: download.php:89
+msgid ""
+"BOINC is a program that lets you donate your idle computer time to science "
+"projects like SETI at home, Climateprediction.net, Rosetta at home, World "
+"Community Grid, and many others. <p> After installing BOINC on your "
+"computer, you can connect it to as many of these projects as you like."
+msgstr ""
+
+#: download.php:114
+#, php-format
+msgid ""
+"Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
+"(GPU), you may be able to %suse it to compute faster%s"
+msgstr ""
+
+#: download.php:120
+msgid "System requirements"
+msgstr ""
+
+#: download.php:121
+msgid "Release notes"
+msgstr ""
+
+#: download.php:122 index.php:89
+msgid "Help"
+msgstr ""
+
+#: download.php:123
+msgid "All versions"
+msgstr "Alle versjoner"
+
+#: download.php:141
+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 ""
+
+#: index.php:23
+msgid "Computing power"
+msgstr ""
+
+#: index.php:25
+msgid "Top 100 volunteers"
+msgstr ""
+
+#: index.php:26
+msgid "Statistics"
+msgstr ""
+
+#: index.php:53
+msgid "Active:"
+msgstr ""
+
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
+
+#: index.php:53
+msgid "computers.\n"
+msgstr "datamaskiner.\n"
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
+msgstr "TeraFLOPS."
+
+#: index.php:66
+msgid "News"
+msgstr "Nyheter"
+
+#: index.php:72
+msgid "... more"
+msgstr ""
+
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr "Frivillig"
+
+#: index.php:88
+msgid "Download"
+msgstr "Last ned"
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
+#, php-format
+msgid ""
+" Use the idle time on your computer (Windows, Mac, or Linux) to cure "
+"diseases, study global warming, discover pulsars, and do many other types of "
+"scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %"
+"sDownload%s and run BOINC software  %sEnter%s an email address and password. "
+msgstr ""
+
+#: index.php:107
+#, php-format
+msgid ""
+"Or, if you run several projects, try an %saccount manager%s such as %"
+"sGridRepublic%s or %sBAM!%s. "
+msgstr ""
+
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr "Software oppdateringer"
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr "Testing"
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
+
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr "Epost liste"
+
+#: index.php:170
+msgid "Events"
+msgstr "Hendelser"
+
+#: index.php:171
+msgid "Conferences"
+msgstr "Konferanser"
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
+#, php-format
+msgid ""
+"Open-source software for %svolunteer computing%s and %sgrid computing%s."
+msgstr ""
+
+#: poll.php:9
+msgid "BOINC user survey"
+msgstr ""
+
+#: poll.php:19
+msgid ""
+"Several volunteer computing projects, including Climateprediction.net, "
+"Einstein at home, and SETI at home, use software called BOINC.  If you participate "
+"in projects like this, we request that you answer the following questions.  "
+"This will help BOINC-based projects increase participation and achieve "
+"greater scientific results. <p> Please answer as many questions as you want, "
+"then go to the bottom and click OK. If you previously completed the survey "
+"but your answers have changed, please complete it again - your new answers "
+"will replace the old ones. <p> The current results of the survey are <a "
+"href=poll_results.php>here</a>. "
+msgstr ""
+
+#: poll.php:25
+msgid "Do you run BOINC?"
+msgstr ""
+
+#: poll.php:30
+msgid "Your participation"
+msgstr "Din deltagelse"
+
+#: poll.php:32
+msgid "Your computers"
+msgstr "Dine datamaskiner"
+
+#: poll.php:34
+msgid "You"
+msgstr "Du"
+
+#: poll.php:39
+msgid "Nationality"
+msgstr "Nasjonalitet"
+
+#: poll.php:44
+msgid "Comments"
+msgstr ""
+
+#: poll.php:46
+msgid ""
+"Please suggest ways that BOINC, and the projects that use it, could be "
+"improved:"
+msgstr ""
+
+#: poll.php:50
+msgid "When done click:"
+msgstr ""
+
+#: poll_action.php:9
+msgid "Error - results not recorded"
+msgstr ""
+
+#: poll_action.php:10
+msgid ""
+"An internal error has prevented us from recording your survey response.  "
+"Please try again later."
+msgstr ""
+
+#: poll_action.php:32
+msgid "Survey response recorded"
+msgstr ""
+
+#: poll_action.php:33
+msgid "Thank you for completing the BOINC user survey."
+msgstr ""
+
+#: poll_results.php:195
+msgid "Survey results"
+msgstr ""
+
+#: poll_results.php:196
+msgid ""
+"These are the current results of the <a href=poll.php>BOINC user survey</"
+"a>.  This page is updated every hour."
+msgstr ""
diff --git a/locale/nb/pootle-boincclient610-nb.prefs b/locale/nb/pootle-boincclient610-nb.prefs
new file mode 100644
index 0000000..45ec944
--- /dev/null
+++ b/locale/nb/pootle-boincclient610-nb.prefs
@@ -0,0 +1,8 @@
+# Pootle preferences for project boincclient610, language nb
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  kskjold = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/nl/BOINC-Manager.mo b/locale/nl/BOINC-Manager.mo
index 80c6bd8..4b06a72 100644
Binary files a/locale/nl/BOINC-Manager.mo and b/locale/nl/BOINC-Manager.mo differ
diff --git a/locale/nl/BOINC-Manager.po b/locale/nl/BOINC-Manager.po
index 529b27a..1ca9f6f 100644
--- a/locale/nl/BOINC-Manager.po
+++ b/locale/nl/BOINC-Manager.po
@@ -1,24 +1,26 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 6.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
-"PO-Revision-Date: 2009-05-05 10:55-0700\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2010-03-26 12:57-0700\n"
 "Last-Translator: Rene Oskam <oskamjr at wanadoo.nl>\n"
 "Language-Team: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
 "Language: nl\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 1.2.1\n"
+"X-Poedit-SearchPath-0: clientgui\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "Gebruikers informatie"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr "Je account gegevens "
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
@@ -26,7 +28,7 @@ msgstr ""
 "Vul a.u.b. je account gegevens in\n"
 "(een account aanmaken kan op de project website)"
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
@@ -34,418 +36,486 @@ msgstr ""
 "Dit project is momenteel gesloten voor nieuwe accounts.\n"
 "Toevoegen is alleen mogelijk met een bestaand account."
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "Heb je al een account bij dit project?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "&Nee, nieuwe gebruiker"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "&Ja, bestaande gebruiker"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+"Het was helaas niet mogelijk om je account gegevens\n"
+"automatisch in te stellen.\n"
+"\n"
+"Klik a.u.b. op de 'zoek inlog informatie' link\n"
+"hieronder om te bepalen wat er moet worden ingevuld\n"
+"in het email- en wachtwoord vak. "
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr "Zoek inloggegevens"
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "&Wachtwoord:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
-msgstr "Kie&s een wachtwoord:"
+msgstr "Kies een &wachtwoord:"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
-msgstr "Bevestig het wachtw&oord:"
+msgstr "&Bevestig het wachtwoord:"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr "Heb je al een account bij %s?"
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
-msgstr "Gebr&uikersnaam:"
+msgstr "&Gebruikersnaam:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
-msgstr "&Email adres:"
+msgstr "&E-mail adres:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr "minimale lengte %d"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr "Wachtwoord vergeten?"
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+"Indien je je nog niet hebt geregistreerd bij deze account manager,\n"
+"doe dit dan voor je verder gaat.  Klik op de link hieronder\n"
+"om dit nu te doen of een vergeten wachtwoord op te halen."
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr "Accountmanager website"
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "Project toevoegen"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
-msgstr "Account manager bijwerken"
+msgstr "Accountmanager bijwerken"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
-msgstr "Account manager toevoegen"
+msgstr "Accountmanager toevoegen"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr ""
-"De minimum lengte van een wachtwoord voor dit project is %d. Kies a.u.b. een "
+"De minimum lengte van het wachtwoord voor dit project is %d. Kies a.u.b. een "
 "ander wachtwoord."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
-"De minimum lengte van een wachtwoord voor deze account manager is %d. Kies "
+"De minimum lengte van het wachtwoord voor deze account manager is %d. Kies "
 "a.u.b. een ander wachtwoord."
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr ""
-"Het wachtwoord en het bevestigings wachtwoord komen niet overeen. Vul ze "
+"Het wachtwoord en het bevestigde wachtwoord komen niet overeen. Vul ze "
 "a.u.b. opnieuw in."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "Account Manager URL"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr "Kies een accountmanager"
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Vul het URL in van de account manager website."
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"Klik op de naam om een accountmanager te kiezen of \n"
+" vul hieronder het URL in."
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
-msgstr "Account Manager &URL:"
+msgstr "Accountmanager &URL:"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr "Aan het communiceren met %s."
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr "Aan het communiceren met de server."
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "Even geduld..."
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
-msgstr "Er is een server fout opgetreden.\n"
+msgstr "Er is een fout op de server opgetreden.\n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Verbonden"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Verbinding verbroken"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "Sluit Venster\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr "Sluit het %s venster"
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "Sluit het BOINC Manager venster."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr "&Sluit Venster"
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
-msgstr "%s Afsluiten"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr "%s afsluiten"
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "Afsluiten"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
-msgstr "Geavanceerd\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr "&Projecten\tCtrl+Shift+P"
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
-msgstr ""
-"De sorteerbare weergave geeft de mogelijkheid om de kolommen te sorteren "
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr "Projecten weergeven"
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
-msgstr "Eenvoudig"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr "&Werk\tCtrl+Shift+T"
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "Schakel over naar de eenvoudige BOINC weergave."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr "Werk weergeven"
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "Project toevoegen"
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr "&Overdracht\tCtrl+Shift+X"
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "Een project toevoegen"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr "Overdracht weergeven"
+
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr "&Berichten\tCtrl+Shift+M"
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr "Berichten weergeven"
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr "&Statistieken\tCtrl+Shift+S"
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr "Statistieken weergeven"
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr "Schijf&gebruik\tCtrl+Shift+D"
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "Account manager toevoegen"
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr "Schijfgebruik weergeven"
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Een account manager toevoegen"
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "Een&voudig...\tCtrl+Shift+V"
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr "Schakel over naar de eenvoudige BOINC weergave."
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr "&Project of accountmanager toevoegen..."
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr "Een project of accountmanager toevoegen om werk binnen te kunnen halen"
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr "%s Bijwerken"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr "Haal de huidige instellingen op van %s"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "Project toevoegen..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Voeg een project toe om werk binnen te halen en te verwerken"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "&Stop gebruik van %s..."
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Stopt het beheer, van een project, door de accountmanager."
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "We&rk altijd actief"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr "Werk actief ongeacht de persoonlijke voorkeuren"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "Werk actief o&p basis van voorkeuren"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "Werk actief op basis van de persoonlijke voorkeuren"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "Werk onderbreken"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr "Stop al het werk ongeacht de persoonlijke voorkeuren"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr "GPU altijd gebruiken"
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr "GPU actief ongeacht de persoonlijke voorkeuren"
+
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr "GPU actief o&p basis van voorkeuren"
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr "GPU actief op basis van de persoonlijke voorkeuren"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr "GPU nooit gebruiken"
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr "GPU inactief ongeacht de persoonlijke voorkeuren"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "&Netwerkverbinding altijd beschikbaar"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr "Netwerkverbinding actief ongeacht de persoonlijke voorkeuren"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
 msgstr "Netwerkverbinding &op basis van voorkeuren"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr "Netwerkverbinding actief op basis van de persoonlijke voorkeuren"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
 msgstr "Netwerkverbinding opgeschort"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr "Stop de netwerk activiteiten van BOINC  (de manager zelf blijft actief)"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "&Opties"
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "Configureer weergave opties en proxy instellingen"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "Lokale voorkeuren..."
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr "Configureer de lokale voorkeuren"
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
 msgid "Connect to another computer running %s"
 msgstr "Maak een verbinding met een andere %s computer"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "Selecteer computer..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr "Huidige client afsluiten..."
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr "Sluit de huidige client af"
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "&Benchmark starten"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "Voert de BOINC processor benchmark uit"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr "Opnieuw verbinden"
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr "Werk de projecten bij, rapporteer gereed werk, etc..."
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr "Configuratie inlezen"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr "Configuratie inlezen vanuit cc-config.xml"
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "Lokale voorkeur inlezen"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr "Lokale voorkeur inlezen vanuit global_prefs_override.xml"
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr "&Stop gebruik van%s"
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "Stopt het beheer, van een project, door de account manager."
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "&Project toevoegen"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "Voeg een project toe om werk binnen te halen en te verwerken"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
 msgstr "%s &help"
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
 msgid "Show information about %s"
 msgstr "Bekijk informatie over het gebruik van de %s"
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr "&%s help"
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr "Bekijk informatie over het gebruik van de %s"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr "%s &website"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
 msgid "Show information about BOINC and %s"
 msgstr "Bekijk informatie over BOINC en de %s"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr "Over de %s..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "Gebruiks en copyright informatie."
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "&Bestand"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "&Weergave"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "&Projectbeheer"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "P&restaties"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "&Geavanceerd"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "&Help"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr "%s - De huidige client afsluiten..."
-
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-"%s gaat de huidige client afsluiten en je vragen\n"
-"naar een 'host' om een andere verbinding te maken.\n"
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr "Project of account manager toevoegen..."
 
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr "%s - Verwijder %s"
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -459,58 +529,66 @@ msgstr ""
 "\n"
 "Wil je %s verwijderen?"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "Project wordt toegevoegd..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "Project(en) opnieuw aan het verbinden..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr "%s - Taalselectie"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr ""
 "De standaard taal van de %s is gewijzigd, om dit te activeren dien je de %s "
 "te herstarten."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - De huidige client afsluiten..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s gaat de huidige client afsluiten en je vragen\n"
+"naar een 'host' om een andere verbinding te maken.\n"
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Project(en) opnieuw aan het verbinden..."
+
+#: clientgui/AdvancedFrame.cpp:1725
 #, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr "%s heeft met succes %s toegevoegd"
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "Bezig te verbinden met %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
 msgid "Connected to %s (%s)"
 msgstr "Verbonden met %s (%s)"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "Gebruikersnaam reeds in gebruik"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -522,11 +600,11 @@ msgstr ""
 "\n"
 "Bezoek a.u.b. de website van het project en volg de instructies."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "Email adres reeds in gebruik"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -538,16 +616,30 @@ msgstr ""
 "\n"
 "Bezoek a.u.b. de website van het project en volg de instructies."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr "Aan het communiceren met de client.  Even geduld ..."
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr "%s &Sluiten"
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr "%s &Afsluiten"
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "Annuleer"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr "%s - Verbindings Fout"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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."
@@ -555,7 +647,7 @@ msgstr ""
 "Je hebt momenteel niet de benodigde rechten om de client te kunnen\n"
 "onderhouden. Neem contact op met de systeembeheerder."
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
@@ -563,21 +655,21 @@ msgstr ""
 "Er is een fout ontstaan tijdens het verbinden met de client.\n"
 "Controleer of het programma en de client in de zelfde map zitten."
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr "Autorisatie mislukt tijdens het verbinden met de client."
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "Het ingevulde wachtwoord in niet correct, probeer het a.u.b. opnieuw."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - Verbinding Mislukt"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
@@ -585,13 +677,13 @@ msgstr ""
 "%s kan geen verbinding maken met een\n"
 "%s client. Wil je het opnieuw proberen?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr "%s - Opstarten Deamon Mislukt"
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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."
@@ -599,8 +691,8 @@ msgstr ""
 "%s kan de %s client niet opstarten.Ga a.u.b. naar het Configuratiescherm "
 "->Systeembeheer->Services en start hier de BOINC service."
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
@@ -608,13 +700,13 @@ msgstr ""
 "%s kan de %s client niet opstarten.Herstart a.u.b. de deamon om opnieuw te "
 "proberen."
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr "%s - Verbindings Status"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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"
@@ -625,26 +717,21 @@ msgstr ""
 "verbinding\n"
 "met een %s client te maken. Vul hier 'localhost' in als host naam."
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Websites"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
 #, c-format
 msgid "%s - Network Status"
 msgstr "%s - Netwerk Status"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
 #, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr "%s heeft een internet verbinding nodig. Klik om de %s te openen."
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
 #, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
@@ -655,8 +742,7 @@ msgstr ""
 "nodig. Maak a.u.b. een internet verbinding en kies 'Opnieuw verbinden' in "
 "het 'Geavanceerd' menu."
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
 #, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
@@ -665,14 +751,12 @@ msgstr ""
 "%s heeft een verbinding met het internet\n"
 "nodig, mag dit nu?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
 #, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s is bezig met verbinden."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
 #, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
@@ -684,20 +768,17 @@ msgstr ""
 "ingesteld. Gebruik a.u.b de 'Geavanceerd/Opties/Verbindingen' menu optie om\n"
 "een verbinding in te stellen of maak handmatig een verbinding. "
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
 #, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s heeft een internet verbinding gemaakt."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
 #, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "%s kon geen internet verbinding maken."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
 #, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
@@ -706,19 +787,47 @@ msgstr ""
 "%s heeft de internet verbinding gedetecteerd en probeert\n"
 "alle projecten bij te werken."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
 #, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s heeft de internet verbinding verbroken."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
 #, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s kon de internet verbinding niet verbreken."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+"Momenteel heb je niet de rechten om de client te onderhouden.\n"
+"\n"
+"Om als deze gebruiker BOINC uit te voeren:\n"
+"  - herinstalleer BOINC met de optie om alle gebruikers\n"
+"     toestemming te geven\n"
+" of\n"
+"  - neem contact op met de beheerder om je aan de 'boinc_master'\n"
+"     gebruikersgroep toe te voegen."
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"BOINC gebruiker en/of rechten zijn niet goed ingesteld; herinstalleer a.u.b. "
+"BOINC.\n"
+"(Foutcode: %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
@@ -726,102 +835,113 @@ msgstr ""
 "Er is een herstart nodig om BOINC goed te kunnen uitvoeren.Herstart a.u.b. "
 "je computer om het opnieuw te proberen."
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "BOINC Manager"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr "BOINC Manager is automatisch opgestart door het besturingssysteem"
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr "Start BOINC zodat deze alleen zichtbaar is in het systeemvak"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr "Map waar de BOINC client zich bevindt"
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr "BOINC data map"
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr "Start BOINC op met deze opties"
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr "schakel de BOINC toegangs- en gebruikersrechten uit"
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 "schakel de skin-debugger modus in om fout berichten mogelijk te maken van de "
 "skin-manager"
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Automatische Detectie)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Onbekend)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Gedefineerd door gebruiker)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr "Werk is momenteel opgeschort."
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr "Netwerk gebruik opgeschort."
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr "%s: %.2f%% voltooid."
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr "%d lopende taken."
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr "Client wordt verbonden."
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr "Niet verbonden met een client."
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr "Open de %s Pagina..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr "Open de %s..."
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "Sluimer"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr "Sluimer GPU"
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "Project toevoegen niet gelukt"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr "Account manager bijwerken niet gelukt"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr "Account manager verwijderen niet gelukt"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "Account manager toevoegen niet gelukt"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -833,27 +953,26 @@ msgstr ""
 "\n"
 "Klik op Voltooien om af te sluiten."
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "Klik op Voltooien om af te sluiten."
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "Berichten van server:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "Project toegevoegd"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "Je hebt zojuist met succes een project toegevoegd."
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -861,125 +980,110 @@ msgstr ""
 "Na het klikken op Voltooien, gaat je webbrowser naar de project\n"
 "pagina, om ook de instellingen hier eventueel te doen."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
 #, c-format
 msgid "Update from %s completed."
 msgstr "Bijwerken van %s voltooid."
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "Bijwerken voltooid."
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-#, c-format
-msgid "Removal from %s completed."
-msgstr "Verwijderen van %s voltooid."
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "Verwijderen voltooid."
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
 #, c-format
 msgid "Attached to %s"
 msgstr "%s is toegevoegd"
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "Account manager is toegevoegd"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
 #, c-format
 msgid "Welcome to %s!"
 msgstr "Welkom bij %s"
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
 #, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "Je hebt nu met succes %s toegevoegd."
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "Je hebt nu met succes deze account manager toegevoegd."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
 #, c-format
 msgid "About %s"
 msgstr "Over %s"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "Versie:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr "wxWidgets Versie:"
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Copyright:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
+"All Rights Reserved."
+msgstr ""
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
-msgstr "(C) 2003-2008 University of California at Berkeley.All Rights Reserved."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr "Berkeley Open Infrastructure for Network Computing"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "&OK"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr "ongeldige waarde gevonden"
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr "ongeldige tijd, opbouw moet zijn UU:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr "ongeldige tijds interval, opbouw moet zijn UU:MM - UU:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr "ongeldige waarde gevonden"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr "Geldigheids Fout"
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr "Weet je zeker dat je de lokale voorkeuren wilt wissen?"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr "Bevestiging"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
 #, c-format
 msgid "%s - Preferences"
 msgstr "%s - Voorkeuren"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
@@ -989,187 +1093,196 @@ msgstr ""
 "stellen voor deze computer. Klik op 'OK' om ze op te\n"
 "slaan, op 'Wissen' om terug te gaan naar online instellingen."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr "Wissen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr "Wis alle lokale voorkeuren en sluit het venster"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr "Werk mag uitgevoerd worden"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr "terwijl de computer op accu werkt"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr ""
 "vink dit aan als werk uitgevoerd mag worden als de computer op een accu "
 "werkt"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr "terwijl de computer in gebruik is"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr "vink dit aan als werk uitgevoerd mag worden als de computer actief is"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr " Gebruik de GPU terwijl de computer in gebruik is"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr "vink dit aan als de GPU werk mag uitvoeren als de computer actief is"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr "Alleen als de computer inactief is na"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 "alleen werk toestaan als de computer niet actief is geweest in de aangegeven "
 "aantal minuten"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr "minuten"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr "Alleen als het processorgebruik lager is dan"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr "pauzeer het werk als het processorgebruik meer is dan aangegeven"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr "procent (0 betekend geen beperking)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr "Elke dag tussen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr "start het werk op dit tijdstip"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr "en"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr "stop het werk op dit tijdstip"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr "(geen beperkingen indien gelijk)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr "Alleen op deze dag(en):"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr "vink aan om de tijdlimiet voor deze dag in te stellen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr "Maandag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr "Dinsdag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr "Woensdag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr "Donderdag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr "Vrijdag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr "Zaterdag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr "Zondag"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr "Extra opties"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
 msgstr "Schakel tussen programma's elke"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr "Gebruik maximaal"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
 msgid "% of the processors"
 msgstr "% van de processoren"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr "gebruik maximaal"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
 msgid "% CPU time"
 msgstr "% CPU tijd"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr "processorgebruik"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr "Algemene opties"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr "Maximale download waarde"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr "KBytes/sec."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr "Maximale upload waarde"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr "Verbind elke"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
@@ -1177,45 +1290,45 @@ msgstr ""
 "deze computer is om de 'X' dagen verbonden met het internet\n"
 "(vul 0 in indien altijd verbonden)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr "dagen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr "Extra werk buffer"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr "dagen (max.10)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr " Sla bestands verificatie over (niet aanbevolen)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr "vink dit aan als je provider bestands indelingen aanpast"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr "Verbindings opties"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr "Bevestiging bij het openen van de internet verbinding"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr ""
 "indien aangevinkt verschijnt er een bevestigings venster voor de verbinding "
 "gemaakt wordt"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr "Verbinding verbreken indien gereed"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
@@ -1223,130 +1336,124 @@ msgstr ""
 "indien aangevinkt wordt de verbinding verbroken als BOINC\n"
 "gereed is met bijwerken (van toepassing bij inbel verbinding)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr "Netwerk beperkingen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr "begintijd netwerk gebruik"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr "eindtijd netwerk gebruik"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr "netwerkgebruik"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr "Schijfgebruik"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr "maximaal schijfgebruik door BOINC (in Gigabytes)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr "Gigabytes schijfruimte"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr "Laat minstens"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr "BOINC moet minimaal deze hoeveelheid ruimte vrij laten (in Gigabytes)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr "Gigabytes aan schijfruimte vrij"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr "BOINC mag maximaal dit percentage van de schijf gebruiken"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr "% van totaal schijfgebuik"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
-msgstr "schrijf naar schijf minstens elke"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr "Controlepunt van werk op schijf opslaan elke"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr "seconden"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr "% van virtueel geheugen"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr "Geheugengebruik"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr "% als de computer in gebruik is"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr "% als de computer niet in gebruik is"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr "Programma's in het geheugen houden indien gepauzeerd"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr "indien aangevinkt worden programma's in het geheugen gehouden"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr "schijf- en geheugengebruik"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr "OK"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr "sla alle waarden op en sluit het venster"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr "Annuleer"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr "sluit het venster zonder op te slaan"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "Help"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr "laat de voorkeuren website zien"
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
 #, c-format
 msgid "%s - Exit Confirmation"
 msgstr "%s - Afsluit Bevestiging"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
 #, c-format
 msgid ""
 "You have requested to exit the %s,\n"
@@ -1363,8 +1470,7 @@ msgstr ""
 "Als je ook de lopende apllicaties wilt afsluiten als de Manager\n"
 "wordt gestopt, vink deze keuze dan aan bij de ondestaande opties."
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
 #, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
@@ -1381,414 +1487,376 @@ msgstr ""
 "te sluiten. Op deze manier blijft %s actief en kan het werk\n"
 "worden voort gezet op basis van de opgegeven voorkeuren."
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr "Stop de lopende applicatie(s) bij het afsluiten van de manager."
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr "Onthoud deze keuze en laat dit venster niet meer zien."
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "Annuleer"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr "Laat dit venster niet meer zien."
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr "Sluiten"
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr "Eigenschappen van project"
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "Algemeen"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr "URL"
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
 msgstr "Gebruikersnaam"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr "Team naam"
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Gedeelde bronnen"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr "Taakverdeling uitgesteld voor"
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr "Bestand downloaden uitgesteld voor"
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr "Bestand uploaden uitgesteld voor"
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr "Computer ID"
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr "(niet CPU intensief)"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr "Ja"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr "Nee"
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr "Opgeschort via GUI"
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr "Niet om nieuw werk vragen"
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr "Bijwerk verzoek wordt uitgevoerd"
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
 msgstr "Toegevoegd d.m.v. account manager"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr "Wordt verwijderd als werk gereed is"
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr "Beeindigd"
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr "Punten"
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr "Gebruiker"
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr "Host"
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr "Taakverdeling"
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr "Prioriteit voor CPU taakverdeling"
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr "Prioriteit voor CPU werkverzoek"
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr "CPU werkverzoek uitgesteld voor"
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr "Interval voor CPU werkverzoek"
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr "Prioriteit voor NVIDIA GPU taakverdeling"
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
-msgstr "Prioriteit voor GPU werkverzoek"
+msgstr "Prioriteit voor NVIDIA GPU werkverzoek"
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr "NVIDIA GPU werkverzoek uitgesteld voor"
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr "Interval voor NVIDIA GPU werkverzoek"
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr "Prioriteit voor ATI GPU werkverzoek"
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr "Prioriteit voor ATI GPU werkverzoek"
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr "ATI GPU werkverzoek uitgesteld voor"
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr "Interval voor ATI GPU werkverzoek"
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr "Factor voor tijdscorrectie"
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr "Eigenschappen van taak "
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Programma"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr "Bestandsnaam"
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr "Status"
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr "Ontvangen"
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Rapporteren voor"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr "Bronnen"
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr "Processortijd tijdens laatste checkpoint"
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "Processor tijd"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 msgid "Elapsed time"
 msgstr "Verstreken tijd"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr "Resterende tijd"
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr "Voortgang"
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr "Grootte virtueel geheugen"
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr "Grootte van taak"
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
-msgstr "Slot"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr "Map"
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr "Proces ID"
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Nieuw"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "Downloaden mislukt"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "Bezig met downloaden"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "Project opgeschort door gebruiker"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr "Werk opgeschort door gebruiker"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Opgeschort"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr "- op accu"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr "- gebruiker actief"
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr "- werk opgeschort"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr "- tijdstip"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr "- CPU benchmarks"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr "- schijfruimte nodig"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr "Wacht op het geheugen"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr "Wacht op gedeeld geheugen"
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr "Bezig met uitvoeren, hoge prioriteit"
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "Bezig met uitvoeren"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr "Gepauzeerd"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr "Staat in de wacht"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Berekenings fout"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "Uploaden mislukt"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "Bezig met uploaden"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Afgebroken door gebruiker"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "Afgebroken door project"
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "Afgebroken"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Bevestigd"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "Staat klaar om te rapporteren"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
 #, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Fout: ongeldige status '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
 #, c-format
 msgid "%s - Options"
 msgstr "%s - Opties"
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr "Taal:"
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr "Welke taal moet de manager gebruiken?"
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
@@ -1796,127 +1864,118 @@ msgstr ""
 "Netwerk herinnerings interval:\n"
 "(minuten)"
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 "Hoe vaak moet de manager een bericht laten zien als een netwerkverbinding "
 "nodig is?"
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr "Manager starten bij inloggen?"
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr "De BOINC manager opstarten bij het inloggen."
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr "Afsluitbevestiging weergeven?"
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr "Laat de afsluitbevestiging zien bij het afsluiten van de manager."
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "Inbel en VPN (Virtual Private Network) instellingen"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "&Stel in als Standaard"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "Verwijder Standaard Instelling"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Standaard Verbinding:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Verbindingen"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Verbind via HTTP proxy server"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "HTTP Proxy Server Configuratie"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "IP adres:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Poort:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr "Geen proxy gebruiken voor:"
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Laat dit gedeelte leeg indien niet vereist"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Gebruikersnaam:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Wachtwoord:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "HTTP Proxy"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Verbind via SOCKS proxy server"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "SOCKS Proxy Server Configuratie"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "SOCKS Proxy"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
 #, c-format
 msgid "%s - Select Computer"
 msgstr "%s - Selecteer computer"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Host naam:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
 #, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s - Web browser niet gevonden"
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
 #, c-format
 msgid ""
 "%s tried to display the web page\n"
@@ -1933,232 +1992,227 @@ msgstr ""
 "browser op door het pad hier naar toe aan te\n"
 "geven en herstart hierna %s."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "Forum"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "Correspondeer met andere gebruikers op het SETI at home forum"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "Stel vragen en rapporteer problemen"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "Mijn account"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "Bekijk informatie over en het punten totaal van je eigen account"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "Mijn voorkeuren"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr "Bekijk en verander je SETI at home profiel en account voorkeuren"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "Mijn resultaten"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr "Bekijk de behaalde resultaten van de afgelopen periode"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "Mijn computer(s)"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr "Bekijk de lijst van je computer(s) die SETI at home uitvoeren"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "Mijn Team"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "Bekijk informatie over je eigen team"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "Veel gestelde vragen"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "Bekijk de Einstein at Home veel gestelde vragen lijst"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "Screensaver info"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "Bekijk de gedetailleerde beschijving over de Einstein at home screensaver"
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr "Correspondeer met andere gebruikers op het Einstein at home forum"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "Einstein status"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Huidige Einstein at home server status"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "Rapporteer problemen"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr "Bekijk het Einstein at Home forum over problemen en fout rapportages"
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr "Bekijk en verander je Einstein at home profiel en account voorkeuren"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "Account samenvatting"
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr "Bekijk de lijst van je computer(s) die Einstein at home uitvoeren"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "LIGO project"
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr ""
 "Bekijk de webpagina van het 'Laser Interferometer Gravitational-wave "
 "Observatory' (LIGO) project"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "GEO-600 project"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "Bekijk de webpagina van het GEO-600 project"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Mijn Team"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "Bekijk informatie over je eigen team"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "Bekijk de climateprediction.net help pagina"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "Nieuws"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "Bekijk het climateprediction.net nieuws"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr ""
 "Bekijk je account informatie en de behaalde resultaten van de afgelopen "
 "periode"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "Bekijk informatie over je eigen team"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr "Bekijk onze help pagina's"
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "Statistieken"
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "Statistieken van 'World Community Grid'"
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr "Mijn 'Grid'"
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "Mijn statistieken en instellingen"
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr "Mijn profielen"
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr "Bekijk en werk je instellingen bij"
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr "Onderzoek"
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "Bekijk de projecten die door 'World Community Grid' ondersteund worden"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr "Client service opstarten; even geduld..."
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "Systeem gegevens aan het opvragen; even geduld a.u.b..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "Host gegevens aan het opvragen; even geduld a.u.b..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "Geen internet verbinding"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Maak a.u.b. een internet verbinding en probeer opnieuw."
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Project niet gevonden"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2168,11 +2222,11 @@ msgstr ""
 "\n"
 "Controleer a.u.b. het URL en probeer opnieuw."
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "Account manager niet gevonden"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2184,49 +2238,62 @@ msgstr ""
 "\n"
 "Controleer a.u.b. het URL en probeer opnieuw."
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr "Inloggen Mislukt"
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr "Controleer de gebruikersnaam en het wachtwoord en probeer opnieuw."
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr "Controleer het email adres en het wachtwoord en probeer opnieuw."
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr "Kies een project"
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr "Klik op de naam om een project te kiezen of vul onder het URL in."
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "Project &URL:"
 
-#: clientgui/ProjectInfoPage.cpp:320
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+"Dit project heeft mogelijk geen werk voor jouw type computer. Weet je zeker "
+"dat je verder wilt gaan?"
+
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr "Je hebt dit project reeds toegevoegd. Kies a.u.b. een ander project."
 
-#: clientgui/ProjectInfoPage.cpp:321
-msgid "Already Attached to Project"
-msgstr "Project reeds toegevoegd"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr "Klik"
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr "Multicore CPU Ondersteund"
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
-msgstr "Dit project heeft mogelijk geen werk voor jouw type computer."
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr "NVIDIA GPU Ondersteund"
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
-msgstr "Klik hier om naar de %s's website te gaan"
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr "ATI GPU Ondersteund"
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr "Project Website"
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
@@ -2234,7 +2301,7 @@ msgstr ""
 "Aan het communiceren met\n"
 "het project. Even geduld..."
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
@@ -2242,11 +2309,11 @@ msgstr ""
 "Benodigde bestanden zijn niet gevonden op de server.\n"
 "(lookup_account.php/create_account.php)\n"
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "Netwerk communicatie fout"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2257,7 +2324,7 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
@@ -2268,7 +2335,7 @@ msgstr ""
 "1) Verbindings probleem. Controleer de netwerk- of modemverbinding\n"
 "en klik op Vorige om opnieuw te proberen.\n"
 "\n"
-"2) Een firewall blokkeerd de World Community Grid - BOINC software.\n"
+"2) Een firewall blokkeert de World Community Grid - BOINC software.\n"
 "Configureer je firewall om BOINC en de BOINC Manager toegang te\n"
 "verlenen tot poort 80 en poort 443, klik daarna op\n"
 "Vorige om opnieuw te proberen.\n"
@@ -2276,7 +2343,7 @@ msgstr ""
 "3) Je maakt gebruik van een proxy server.\n"
 "Klik op Volgende op om de proxy instellingen te maken."
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2306,498 +2373,472 @@ msgstr ""
 "3) Je maakt gebruik van een proxy server.\n"
 "Klik op Volgende op om de proxy instellingen te maken."
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Proxy configuratie"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "HTTP proxy"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "Server:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "Automatisch detecteren"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "SOCKS proxy"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr "Geavanceerd...\tCTRL+SHIFT+A"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr "Overschakelen naar de geavanceerde weergave."
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr "&%s"
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr "Status aan het opvragen."
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr "Geen projecten aanwezig. Voeg  a.u.b. een project toe."
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr "Werk wordt gedownload."
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr "Werk opgeschort:  Computer op accu."
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr "Werk opgeschort:  Gebruiker actief."
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr "Werk opgeschort:  Gepauzeerd door gebruiker."
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr "Werk opgeschort:  Tijds-instellingen."
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr "Werk opgeschort:  Benchmark loopt."
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr "Werk opgeschort."
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr "Wacht op project server verbinding."
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr "Status aan het opvragen."
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr "Geen werk aanwezig"
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr "Client verbinding niet aanwezig"
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Project"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "Tijd"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Bericht"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Alle berichten kopiëren"
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 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 ""
 "De geselecteerde berichten naar het klembord kopiëren. Je kan meerdere "
 "berichten selecteren door met behulp van de Shift of Command toets op de "
 "bestanden te klikken."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
 "De geselecteerde berichten naar het klembord kopiëren. Je kan meerdere "
 "berichten selecteren door met behulp van de Shift of Ctrl toets op de "
 "bestanden te klikken."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr "BOINC hulp opvragen"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr "%s - Berichten"
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr "100 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr "200 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr "500 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr "1 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr "2 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr "5 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr "10 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr "20 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr "50 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr "100 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr "10%"
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr "20%"
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr "30%"
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr "40%"
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr "50%"
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr "60%"
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr "70%"
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr "80%"
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr "90%"
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr "100%"
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr "1"
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr "3"
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr "5"
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr "10"
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr "15"
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr "30"
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr "60"
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr "Skin"
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr "Skin:"
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr "Voorkeuren"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr "Ik wil alleen de voorkeuren wijzigen van deze computer."
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr "Aangepaste voorkeuren"
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr "Werk actief tussen:"
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr "Internet verbinding tussen:"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr "Gebruik maximaal:"
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr "schijfruimte"
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr "van processor"
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr "Actief indien op accu?"
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr "Indien inactief starten na:"
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr "Altijd"
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr "%d MB"
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr "%4.2f GB"
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr "%d%%"
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr "0 (Altijd actief)"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr "%d"
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr "Opgeschort: Ander werk actief"
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr "Opgeschort: Door gebruiker. Klik op 'Hervatten' om te starten"
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr "Werk opgeschort:  Gebruiker actief."
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr "Opgeschort: Computer op accu"
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr "Werk opgeschort:  Tijds-instellingen."
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr "Werk opgeschort:  Benchmark loopt."
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr "Opgeschort"
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr "Gepauzeerd: start applicatie uitgesteld"
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr "Klik om grafische weergave te starten"
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr "Een project toevoegen"
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr "Projecten bijwerken met behulp van de account manager"
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr "Berichten venster openen"
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr "Werk onderbreken"
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr "Werk hervatten"
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr "Voorkeuren venster openen"
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr "Schakel over naar de geavanceerde weergave"
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr "Mijn projecten:"
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
 #, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr "%s. Punten behaald door %s: %0.2f"
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr "Verwijder Project"
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
 #, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "Weet je zeker dat je het project '%s' wilt verwijderen?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "Project Verwijderen"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
 #, c-format
 msgid "%.1lf"
 msgstr "%.1lf"
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
 #, c-format
 msgid "%d hr %d min %d sec"
 msgstr "%d Uur %d Min %d Sec"
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr ""
 "Weet je zeker dat je de grafische weergave wilt laten zien op een andere "
 "computer?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Grafische weergave"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
 msgstr "Programma: "
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr "Resterende tijd: "
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
 msgstr "Verstreken tijd: "
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr "Gebruiksovereenkomst"
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr "Lees a.u.b. de volgende gebruiksovereenkomst:"
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr "Ik ga akkoord met de voorwaarden."
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr "Ik ga NIET akkoord met de voorwaarden."
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Project tijdelijk niet bereikbaar"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2807,11 +2848,11 @@ msgstr ""
 "\n"
 "Probeer het later a.u.b. opnieuw."
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "Account manager tijdelijk niet bereikbaar"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2821,32 +2862,32 @@ msgstr ""
 "\n"
 "Probeer het later a.u.b. opnieuw."
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "Vul a.u.b. een Account Key in om verder te gaan."
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr "Ongeldige Accound Key; vul a.u.b een geldige in."
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Geldigheids conflict"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr "Vul a.u.b. een email adres in"
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr "Ongeldig email adres; vul a.u.b een geldige in"
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "Geen URL ingevuld"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2856,18 +2897,18 @@ msgstr ""
 "Bijvoorbeeld:\n"
 "http://www.voorbeeld.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "Ongeldig URL ingevuld"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2877,608 +2918,501 @@ msgstr ""
 "Bijvoorbeeld:\n"
 "http://boincproject.voorbeeld.com"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
 #, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "'%s' bezit geen geldige host naam."
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
 #, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "'%s' bezit geen geldige bestands lokatie."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "Opdrachten"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Alle berichten kopiëren"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Selectie kopiëren"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr "Alleen dit project laten zien"
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr "Laat alleen berichten zien van het gelecteerde project."
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Berichten"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "Bezig met kopiëren van de berichten naar het klembord..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 msgid "Copying selected messages to the clipboard..."
 msgstr "Geselecteerde berichten aan het kopiëren..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr "Berichten aan het filteren..."
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 msgid "Show all messages"
 msgstr "Toon alle berichten"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr "Laat berichten zien van alle projecten."
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr "ID"
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr "Prioriteit"
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr "Berichten"
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr "Geselecteerde berichten aan het kopiëren..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr "Informatie"
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr "Waarschuwing"
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr "Fout"
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr "Nieuws feeds"
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr "BOINC"
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr "Bekijk het laatste BOINC nieuws"
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
 msgstr "BOINC website"
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr "Bekijk het laatste BOINC nieuws op de BOINC website"
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Project bijwerken"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr ""
 "Rapporteer het voltooide werk, werk de punten en voorkeuren bij en verkrijg "
 "mogelijk nieuw werk."
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Onderbreken"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr "Het werk aan dit project (tijdelijk) onderbreken."
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr "Geen nieuw werk"
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr "Nieuw werk (tijdelijk) opschorten voor dit project."
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Project resetten"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 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 ""
 "Verwijder alle bestanden die met dit project te maken hebben en vraag nieuw "
 "werk. Het is aan te raden het project eerst bij te werken om het voltooide "
 "werk te rapporteren."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Project verwijderen"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr ""
 "Verwijder deze computer uit het project. Lopend werk zal verloren gaan. Het "
 "is aan te raden het voltooide werk eerst te rapporteren."
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr "Eigenschappen"
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr "Toon project details."
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Account"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "Punten totaal"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr "Punten gemiddelde"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Status"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Projecten"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "Bezig met bijwerken..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "Bezig met hervatten..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "Bezig met opschorten..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr "Bezig met het toestaan van aanvullende downloads..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "'Geen nieuw werk' verzoek aan het doorgeven..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "Bezig project te resetten..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
 #, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Weet je zeker dat je het project '%s' wilt resetten?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Project Resetten"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "Bezig met verwijderen van het project..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "Browser wordt geopend..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Hervatten"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "Hervat het werk aan dit project."
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "Nieuw werk toestaan"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr "Sta nieuw werk toe voor dit project."
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "Nieuw werk (tijdelijk) opschorten voor dit project."
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Opgeschort door gebruiker"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "Geen nieuw werk gevraagd"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr "Project gestopt - OK om te verwijderen"
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr "Wordt verwijderd als werk gereed is"
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Bijwerk verzoek aan het afwachten"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr "Bijwerk verzoek wordt uitgevoerd"
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "Communicatie uitgesteld "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr "Projecten"
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr "Totaal schijfgebruik"
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr "Schijfgebruik door BOINC projecten"
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Schijfgebruik"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr "geen BOINC projecten toegevoegd - 0 Bytes"
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr "gebruikt door BOINC: "
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr "vrij, beschikbaar voor BOINC: "
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr "vrij, niet beschikbaar voor BOINC: "
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr "vrij: "
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr "gebruikt door anderen: "
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Gebruikers Totaal"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Gebruikers Gemiddelde"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Computer Totaal"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Computer Gemiddelde"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
 #, c-format
 msgid "Last update: %.0f days ago"
 msgstr "Laatste update: %.0f dagen geleden."
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Gebruikers totaal"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr "Gebruikers totaal bekijken"
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "Gebruikers gemiddelde"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr "Gebruikers gemiddelde bekijken"
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Computer totaal"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr "Computer totaal bekijken"
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "Computer gemiddelde"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr "Computer gemiddelde bekijken"
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< Vorige &project"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr "Bekijk de statistieken van het vorige project"
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "Volge&nde project >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr "Bekijk de statistieken van het volgende project"
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "Weergave modus"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "Alle projecten"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr "Bekijk alle projecten, per project een aparte grafiek"
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "Enkel project"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr "Bekijk de grafiek van het geselecteerde project"
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr "Projecten gecombineerd"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr "Bekijk alle projecten samen gebracht in de grafiek"
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Statistieken"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "Grafieken aan het bijwerken..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Probeer opnieuw"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "Klik op 'Probeer opnieuw' voor overdracht van het bestand"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Overdracht afbreken"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr ""
 "Klik op 'Overdracht afbreken' om dit bestand uit de wachtrij te verwijderen. "
 "Er zullen in dit geval geen punten voor dit resultaat worden toegekend."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "Bestand"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Voortgang"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Grootte"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "Verstreken tijd"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Snelheid"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Overdracht"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "Bezig met overdracht..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "Bezig met afbreken overdracht..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
 #, c-format
 msgid ""
 "Are you sure you want to abort this file transfer '%s'?\n"
@@ -3489,34 +3423,42 @@ msgstr ""
 "Een overdracht annuleren heeft tot gevolg dat het werk niet\n"
 "meer geldig is en er zullen geen punten worden gegeven."
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Annuleer Bestands Overdracht"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "Opnieuw proberen over "
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr "Uploaden in behandeling"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "Downloaden in behandeling"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr " (project uitgesteld: "
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ")"
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr "Overdracht"
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 msgid "Aborting transfer(s)..."
 msgstr "Overdracht aan het afbreken..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
@@ -3526,76 +3468,81 @@ msgstr ""
 "WAARSCHUWING: Hierdoor wordt het werk ongeldig en\n"
 "worden er geen punten toegekend."
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 msgid "Abort File Transfer(s)"
 msgstr "Bestands Overdracht Afbreken"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr "Actieve taken weergeven"
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr "Alleen actieve taken weergeven"
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "Bekijk de grafische weergave van dit project."
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "Het werk aan dit project handmatig onderbreken."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Werk afbreken"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr ""
 "Annuleer het werk aan dit resultaat. Er zullen geen punten worden toegekend."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr "Toon taak details."
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Bestandsnaam"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr "Verstreken tijd"
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "Resterende tijd"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Werk"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "Werk word hervat..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "Bezig met opschorten..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "Grafische weergave wordt getoond..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Resultaat word geannuleerd..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
@@ -3603,36 +3550,61 @@ msgstr ""
 "Weet je zeker dat je het resultaat '%s' wilt annuleren?\n"
 "(Voortgang: %s, Status: %s)"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "Weet je zeker dat je deze %d taken wilt afbreken?"
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
-msgstr "Annuleer resultaat"
+msgstr "Taak afbreken"
+
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Resultaat word afgebroken..."
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr "Alle taken weergeven"
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr "Alle taken weergeven."
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
-msgstr "Hervat werk voor dit resultaat."
+msgstr "Hervat werk voor deze taak."
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
-msgstr "Onderbreek werk voor dit resultaat."
+msgstr "Onderbreek het werk voor deze taak."
+
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr "Ontbrekende GPU, "
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr " - een exclusieve taak loopt"
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr " (niet CPU intensief)"
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr "Afgebroken: niet gestart voor deadline"
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr "Werk"
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
 #, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
@@ -3641,12 +3613,11 @@ msgstr ""
 "Weet je zeker dat je het resultaat '%s' wilt annuleren?\n"
 "(Voortgang: %s, Status: %s)"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
-msgstr "Verander Onderzoeks Applicaties bij World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr "Wat wil je toevoegen?"
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
 #, c-format
 msgid ""
 "If possible, add projects at the\n"
@@ -3661,15 +3632,15 @@ msgstr ""
 "Toegevoegde projecten via deze wizard\n"
 "zijn niet te onderhouden m.b.v. %s."
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
 msgstr ""
-"Met behulp van deze wizard kan een project worden\n"
-"toegevoegd."
+"Met behulp van deze wizard is het mogelijk om een\n"
+"project of een account manager toe te voegen."
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3697,145 +3668,305 @@ msgstr ""
 "Om een keuze te maken uit de applicaties die beschikbaar zijn\n"
 "via World Community Grid klik je op de onderstaande knop:"
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
-msgstr "&Stop gebruik van%s"
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-"Deze computer zal worden verwijderd uit %s. Vanaf nu\n"
-"zal je zelf het onderhoud moeten uitvoeren.\n"
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "Account manager"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"Met behulp van deze wizard kan een account manager\n"
-"worden toegevoegd.\n"
-"\n"
-"Indien je alleen een project wilt toevoegen, klik dan\n"
-"op annuleren en kies dan voor 'Project toevoegen'."
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "Debug Punten"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "Project Instellings Fout"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr "Netwerk communicatie fout"
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "Project URL Instellings Fout"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "Account Aanmaak Gesloten"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "Client Aanmaak Gesloten"
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "Account Bestaat Reeds"
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "Project Reeds Toegevoegd"
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "Project Toevoeg Fout"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
-msgstr "Fout tijdens Verbinding met Referentie Pagina"
-
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "Netwerk Detectie Fout"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr "Verander Onderzoeks Applicaties bij World Community Grid"
 
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "Klik op Volgende om verder te gaan."
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "Weet je zeker dat je wilt annuleren?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "Vraag"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "Volgende >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< Vorige"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "Voltooien"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
 #, c-format
 msgid "New page inserted. Index = %i"
 msgstr "Nieuwe pagina ingevoegd. Index = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
 #, c-format
 msgid "New page appended. Index = %i"
 msgstr "Nieuwe pagina bijgevoegd. Index = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
 #, c-format
 msgid "Old Page Index = %i"
 msgstr "Oud Pagina Index = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
 #, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr "OnDropTarget: index by HitTest = %i"
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr "Diagram besturing"
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+"voor de toegankelijkheid optie; kies geavanceerd in het weergave menu of "
+"gebruik Command+Shift+A"
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr "Dit paneel bevat grafieken met gebruikers totalen per project"
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr "leeg"
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr "lijst van "
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr " is leeg"
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr "%d van %d; "
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr "huidig gesorteerde kolom "
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr " aflopende volgorde "
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr " oplopende volgorde "
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr "kolom "
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr "lijst is leeg"
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr "geselecteerd "
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr "rij %d "
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr "van %d; "
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr "kolom %d "
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr "lijst van projecten of account managers"
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr "rij %d van %d; "
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr "geef de werk start- en stoptijd aan in UU:MM - UU:MM"
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr "geef de netwerk start- en stoptijd aan in UU:MM - UU:MM"
 
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "Sluit Venster\tCtrl+W"
+
+#~ msgid "&News\tCtrl+Shift+N"
+#~ msgstr "&Nieuws\tCtrl+Shift+N"
+
+#~ msgid "Display news"
+#~ msgstr "Nieuws weergeven"
+
+#~ msgid "&Projects\tCTRL+SHIFT+P"
+#~ msgstr "&Projecten\tCTRL+SHIFT+P"
+
+#~ msgid "&Tasks\tCTRL+SHIFT+T"
+#~ msgstr "&Werk\tCTRL+SHIFT+T"
+
+#~ msgid "Trans&fers\tCTRL+SHIFT+X"
+#~ msgstr "&Overdracht\tCTRL+SHIFT+X"
+
+#~ msgid "&Messages\tCTRL+SHIFT+M"
+#~ msgstr "&Berichten\tCTRL+SHIFT+M"
+
+#~ msgid "&Statistics\tCTRL+SHIFT+S"
+#~ msgstr "&Statistieken\tCTRL+SHIFT+S"
+
+#~ msgid "&Disk usage\tCTRL+SHIFT+D"
+#~ msgstr "&Schijfgebruik\tCTRL+SHIFT+D"
+
+#~ msgid "&News\tCTRL+SHIFT+N"
+#~ msgstr "&Nieuws\tCTRL+SHIFT+N"
+
+#~ msgid ""
+#~ "You currently are not authorized to manage the client.\n"
+#~ "Please contact your administrator to add you to the 'boinc_master' user "
+#~ "group."
+#~ msgstr ""
+#~ "Je hebt momenteel niet de benodigde rechten om de\n"
+#~ " client te kunnen onderhouden. Neem contact op met de systeembeheerder."
+
+#~ msgid "User information"
+#~ msgstr "Gebruikers informatie"
+
+#~ msgid "Account Manager URL"
+#~ msgstr "Account Manager URL"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "Vul het URL in van de account manager website."
+
+#~ msgid "Close BOINC Manager Window."
+#~ msgstr "Sluit het BOINC Manager venster."
+
+#~ msgid "Exit the %s"
+#~ msgstr "%s Afsluiten"
+
+#~ msgid ""
+#~ "Advanced views allow you to sort various columns and displays graphical "
+#~ "progress bars."
+#~ msgstr ""
+#~ "De sorteerbare weergave geeft de mogelijkheid om de kolommen te sorteren "
+
+#~ msgid "Attach to a project"
+#~ msgstr "Een project toevoegen"
+
+#~ msgid "Attach to &account manager..."
+#~ msgstr "Account manager toevoegen"
+
+#~ msgid "Attach to an account manager"
+#~ msgstr "Een account manager toevoegen"
+
+#~ msgid "Attach to &project"
+#~ msgstr "&Project toevoegen"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "Project wordt toegevoegd..."
+
+#~ msgid "Removal from %s completed."
+#~ msgstr "Verwijderen van %s voltooid."
+
+#~ msgid "Removal succeeded!"
+#~ msgstr "Verwijderen voltooid."
+
+#~ msgid "Write to disk at most every"
+#~ msgstr "schrijf naar schijf minstens elke"
+
+#~ msgid "Slot"
+#~ msgstr "Slot"
+
+#~ msgid "Already Attached to Project"
+#~ msgstr "Project reeds toegevoegd"
+
+#~ msgid "This project may not have work for your type of computer."
+#~ msgstr "Dit project heeft mogelijk geen werk voor jouw type computer."
+
+#~ msgid "Click here to go to %s's website."
+#~ msgstr "Klik hier om naar de %s's website te gaan"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr ""
+#~ "Met behulp van deze wizard kan een project worden\n"
+#~ "toegevoegd."
+
+#~ msgid "&Stop using%s"
+#~ msgstr "&Stop gebruik van%s"
+
+#~ msgid ""
+#~ "We'll now remove this computer from %s.  From now on,\n"
+#~ "attach and detach projects directly from this computer.\n"
+#~ msgstr ""
+#~ "Deze computer zal worden verwijderd uit %s. Vanaf nu\n"
+#~ "zal je zelf het onderhoud moeten uitvoeren.\n"
+
+#~ msgid "Account manager"
+#~ msgstr "Account manager"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to an account manager.\n"
+#~ "\n"
+#~ "If you want to attach to a single project, click Cancel,\n"
+#~ "then select the 'Attach to project' menu item instead."
+#~ msgstr ""
+#~ "Met behulp van deze wizard kan een account manager\n"
+#~ "worden toegevoegd.\n"
+#~ "\n"
+#~ "Indien je alleen een project wilt toevoegen, klik dan\n"
+#~ "op annuleren en kies dan voor 'Project toevoegen'."
+
+#~ msgid "Debug Flags"
+#~ msgstr "Debug Punten"
+
+#~ msgid "Project Properties Failure"
+#~ msgstr "Project Instellings Fout"
+
+#~ msgid "Project Communication Failure"
+#~ msgstr "Netwerk communicatie fout"
+
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "Project URL Instellings Fout"
+
+#~ msgid "Account Creation Disabled"
+#~ msgstr "Account Aanmaak Gesloten"
+
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "Client Aanmaak Gesloten"
+
+#~ msgid "Account Already Exists"
+#~ msgstr "Account Bestaat Reeds"
+
+#~ msgid "Project Already Attached"
+#~ msgstr "Project Reeds Toegevoegd"
+
+#~ msgid "Project Attach Failure"
+#~ msgstr "Project Toevoeg Fout"
+
+#~ msgid "Failure Communicating with Reference Site"
+#~ msgstr "Fout tijdens Verbinding met Referentie Pagina"
+
+#~ msgid "Net Detection Failure"
+#~ msgstr "Netwerk Detectie Fout"
+
 #~ msgid ""
 #~ "You can copy and paste the URL from your browser's\n"
 #~ "address bar."
@@ -3899,19 +4030,25 @@ msgstr "geef de netwerk start- en stoptijd aan in UU:MM - UU:MM"
 #~ msgid "&Accessible View"
 #~ msgstr "Toegankelijk"
 
-#~ msgid "Accessible views are compatible with accessibility aids such as screen readers."
-#~ msgstr "De toegankelijkheids weergave is bruikbaar in combinatie met o.a. een \"verteller\"."
+#~ msgid ""
+#~ "Accessible views are compatible with accessibility aids such as screen "
+#~ "readers."
+#~ msgstr ""
+#~ "De toegankelijkheids weergave is bruikbaar in combinatie met o.a. een "
+#~ "\"verteller\"."
 
 #~ msgid "&Grid View"
 #~ msgstr "Sorteerbaar"
 
-#~ msgid "Grid views allow you to sort various columns and displays graphical progress bars."
-#~ msgstr "De sorteerbare weergave geeft de mogelijkheid om de kolommen te sorteren "
+#~ msgid ""
+#~ "Grid views allow you to sort various columns and displays graphical "
+#~ "progress bars."
+#~ msgstr ""
+#~ "De sorteerbare weergave geeft de mogelijkheid om de kolommen te sorteren "
 
 #~ msgid ":"
 #~ msgstr ":"
 
-#, c-format
 #~ msgid ""
 #~ "%s is going to shutdown the core client it is currently connected to.\n"
 #~ "NOTE: Choosing 'OK' will cause the select new computer dialog to appear \n"
@@ -3921,16 +4058,9 @@ msgstr "geef de netwerk start- en stoptijd aan in UU:MM - UU:MM"
 #~ "LET OP: Op 'OK' klikken opent een venster om een andere client te\n"
 #~ "kiezen, kies 'Annuleer' indien dit niet de bedoeling is."
 
-#, c-format
-#~ msgid ""
-#~ "BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
-#~ "(Error code %d)"
-#~ msgstr ""
-#~ "BOINC gebruiker en/of rechten zijn niet goed ingesteld. Herinstalleer a.u.b. BOINC.\n"
-#~ "(Foutcode: %d)"
-
 #~ msgid "BOINC leaves at least this amount of disk space free (in Gigagytes)"
-#~ msgstr "BOINC moet minimaal deze hoeveelheid ruimte vrij laten (in Gigabyte)"
+#~ msgstr ""
+#~ "BOINC moet minimaal deze hoeveelheid ruimte vrij laten (in Gigabyte)"
 
 #~ msgid "Click here to disable displaying this message in the future."
 #~ msgstr "Klik hier om deze boodschap in het vervolg niet meer te tonen."
@@ -3944,8 +4074,12 @@ msgstr "geef de netwerk start- en stoptijd aan in UU:MM - UU:MM"
 #~ msgid "Reminder Frequency:"
 #~ msgstr "Herinnerings interval:"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
-#~ msgstr "Hoe vaak, in minuten, moet de manager een herinnering weergeven over mogelijke verbindings handelingen."
+#~ msgid ""
+#~ "How often, in minutes, should the manager remind you of possible "
+#~ "connection events."
+#~ msgstr ""
+#~ "Hoe vaak, in minuten, moet de manager een herinnering weergeven over "
+#~ "mogelijke verbindings handelingen."
 
 #~ msgid ""
 #~ "BOINC failed to communicate on the Internet. The most likely\n"
@@ -3999,6 +4133,5 @@ msgstr "geef de netwerk start- en stoptijd aan in UU:MM - UU:MM"
 #~ msgid "Google Comm Failure"
 #~ msgstr "Google Comm. Fout"
 
-#, c-format
 #~ msgid "Yahoo Comm Failure"
 #~ msgstr "Yahoo Comm. Fout"
diff --git a/locale/nl/BOINC-Project-Generic.po b/locale/nl/BOINC-Project-Generic.po
index dbe51d6..71ed462 100644
--- a/locale/nl/BOINC-Project-Generic.po
+++ b/locale/nl/BOINC-Project-Generic.po
@@ -1482,7 +1482,9 @@ msgstr ""
 #~ msgid "Really delete?"
 #~ msgstr "Echt verwijderen?"
 
-#~ msgid "Are you sure you want to delete the message with subject &quot;%1&quot; (sent by %2 on %3)?"
+#~ msgid ""
+#~ "Are you sure you want to delete the message with subject &quot;%1&quot; "
+#~ "(sent by %2 on %3)?"
 #~ msgstr ""
 #~ "Weet je zeker dat je het bericht met het onderwerp &quot;%1&quot wilt "
 #~ "verwijderen; (verzonden door %2 op %3)?"
@@ -1494,17 +1496,17 @@ msgstr ""
 #~ msgstr "Geen bericht gevonden."
 
 # Apps page (apps.php)
-#########################################
+# ########################################
 #~ msgid "APPS_TITLE"
 #~ msgstr "Applicaties"
 
 # Rules and Policies page (info.php)
-#########################################
+# ########################################
 #~ msgid "RULES_TITLE"
 #~ msgstr "Lees onze regels en beleid"
 
 # Create account form (create_account_form.php)
-#########################################
+# ########################################
 #~ msgid "CREATE_AC_TITLE"
 #~ msgstr "Maak een an account"
 
@@ -1514,9 +1516,9 @@ msgstr ""
 #~ msgid "FORUM_TITLE_SHORT"
 #~ msgstr "Forums"
 
-#########################################
+# ########################################
 # General stuff (create_account_form.php and others)
-#########################################
+# ########################################
 #~ msgid "OPTIONAL"
 #~ msgstr "Optioneel"
 
@@ -1547,21 +1549,21 @@ msgstr ""
 #~ msgid "TEAM_TABLE_MEMBERS"
 #~ msgstr "Leden"
 
-#########################################
+# ########################################
 # Forum
-#########################################
+# ########################################
 #~ msgid "FORUM_POSTS"
 #~ msgstr "Berichten"
 
 # Forum thread
-#########################################
+# ########################################
 #~ msgid "FORUM_THREAD_HIDDEN"
 #~ msgstr "Deze discussie is verborgen voor administratieve doeleinden"
 
 # Forum search features
-#########################################
+# ########################################
 # Apps page (apps.php)
-#########################################
+# ########################################
 # Rules and Policies page (info.php)
 # Create account form (create_account_form.php)
 # General stuff (create_account_form.php and others)
diff --git a/locale/nl/BOINC-Web.po b/locale/nl/BOINC-Web.po
index 0ed6d25..eb4e758 100644
--- a/locale/nl/BOINC-Web.po
+++ b/locale/nl/BOINC-Web.po
@@ -8,7 +8,7 @@ msgstr ""
 "Language-Team: \n"
 "Language: nl\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 1.2.1\n"
@@ -709,10 +709,12 @@ msgstr ""
 #~ msgid "%s make your own client software %s or"
 #~ msgstr "%s je eigen client software maken %s of"
 
-#~ msgid "%s download executables from a third-party site %s (available for Solaris/Opteron, Linux/Opteron, Linux/PPC, HP-UX, and FreeBSD, and others)."
+#~ msgid ""
+#~ "%s download executables from a third-party site %s (available for Solaris/"
+#~ "Opteron, Linux/Opteron, Linux/PPC, HP-UX, and FreeBSD, and others)."
 #~ msgstr ""
-#~ "%s bestanden downloaden van een andere site %s (beschikbaar voor "
-#~ "Solaris/Opteron, Linux/Opteron, Linux/PPC, HP-UX, FreeBSD, en anderen)."
+#~ "%s bestanden downloaden van een andere site %s (beschikbaar voor Solaris/"
+#~ "Opteron, Linux/Opteron, Linux/PPC, HP-UX, FreeBSD, en anderen)."
 
 #~ msgid "HOME_MORE_INFO"
 #~ msgstr "BOINC draaien"
diff --git a/locale/nl/pootle-boincclient610-nl.prefs b/locale/nl/pootle-boincclient610-nl.prefs
new file mode 100644
index 0000000..7f18b99
--- /dev/null
+++ b/locale/nl/pootle-boincclient610-nl.prefs
@@ -0,0 +1,7 @@
+# Pootle preferences for project boinctrunk, language nl
+
+rights:
+  ReneOskam = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/nl/pootle-boinctrunk-nl.prefs b/locale/nl/pootle-boinctrunk-nl.prefs
deleted file mode 100644
index fe3285d..0000000
--- a/locale/nl/pootle-boinctrunk-nl.prefs
+++ /dev/null
@@ -1,7 +0,0 @@
-# Pootle preferences for project boinctrunk, language nl
-
-rights:
-  ReneOskam = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  default = u'view, suggest, archive, pocompile'
-  nobody = u'view'
-  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/nn/BOINC-Manager.mo b/locale/nn/BOINC-Manager.mo
new file mode 100644
index 0000000..c5de9f0
Binary files /dev/null and b/locale/nn/BOINC-Manager.mo differ
diff --git a/locale/nn/BOINC-Manager.po b/locale/nn/BOINC-Manager.po
new file mode 100644
index 0000000..dca5bd6
--- /dev/null
+++ b/locale/nn/BOINC-Manager.po
@@ -0,0 +1,3580 @@
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.2.1\n"
+"X-Poedit-SearchPath-0: clientgui\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
+"X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
+
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:382
+msgid ""
+"Please enter your account information\n"
+"(to create an account, visit the project's web site)"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:386
+msgid ""
+"This project is not currently accepting new accounts.\n"
+"You can attach only if you already have an account."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:390
+msgid "Are you already running this project?"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:394
+msgid "&No, new user"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:397
+msgid "&Yes, existing user"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
+msgid "&Password:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
+msgid "Choose a &password:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:435
+msgid "C&onfirm password:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
+msgid "Are you already running %s?"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:459
+msgid "&Username:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:473
+msgid "&Email address:"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
+msgid "minimum length %d"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:488
+msgid "Forgot your password?"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:530
+msgid "Attach to project"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:532
+msgid "Update account manager"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:534
+msgid "Attach to account manager"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
+msgid "The minimum password length for this project is %d. Please enter a different password."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
+msgid "The minimum password length for this account manager is %d. Please enter a different password."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:560
+msgid "The password and confirmation password do not match. Please type them again."
+msgstr ""
+
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr ""
+
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+
+#: clientgui/AccountManagerInfoPage.cpp:255
+msgid "Account Manager &URL:"
+msgstr ""
+
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
+msgid "Communicating with %s."
+msgstr ""
+
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
+msgid "Communicating with server."
+msgstr ""
+
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
+msgid "Please wait..."
+msgstr ""
+
+#: clientgui/AccountManagerProcessingPage.cpp:325
+msgid "An internal server error has occurred.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:93
+msgid "Connected"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:101
+msgid "Disconnected"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
+msgid "E&xit"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
+msgid "&Synchronize with %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
+msgid "Get current settings from %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:432
+msgid "&Run always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:433
+msgid "Allow work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:437
+msgid "Run based on &preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:438
+msgid "Allow work according to your preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:442
+msgid "&Suspend"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:443
+msgid "Stop work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:503
+msgid "&Network activity always available"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:504
+msgid "Allow network activity regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:509
+msgid "Allow network activity according to your preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:514
+msgid "Stop BOINC network activity"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:521
+msgid "&Options..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:522
+msgid "Configure GUI options and proxy settings"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:526
+msgid "&Preferences..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:527
+msgid "Configure local preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
+msgid "Connect to another computer running %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:538
+msgid "Select computer..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:543
+msgid "Shut down connected client..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:544
+msgid "Shut down the currently connected core client"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:548
+msgid "Run CPU &benchmarks"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:549
+msgid "Runs BOINC CPU benchmarks"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:553
+msgid "Do network &communication"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:554
+msgid "Do all pending network communication."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:558
+msgid "Read config file"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:559
+msgid "Read configuration info from cc_config.xml."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:563
+msgid "Read local prefs file"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:564
+msgid "Read preferences from global_prefs_override.xml."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
+msgid "%s &help"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
+msgid "Show information about %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
+msgid "&%s help"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
+msgid "Show information about the %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
+msgid "%s &website"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
+msgid "Show information about BOINC and %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
+msgid "&About %s..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:634
+msgid "Licensing and copyright information."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:641
+msgid "&File"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:645
+msgid "&View"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:649
+msgid "&Tools"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:653
+msgid "&Activity"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:657
+msgid "A&dvanced"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:661
+msgid "&Help"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
+msgid "%s - Detach from %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1126
+#, 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 ""
+
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
+msgid "%s - Language Selection"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
+msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
+msgid "%s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
+msgid "%s has successfully attached to %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
+msgid "%s - (%s)"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
+msgid "Connecting to %s"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
+msgid "Connected to %s (%s)"
+msgstr ""
+
+#: clientgui/AlreadyExistsPage.cpp:182
+msgid "Username already in use"
+msgstr ""
+
+#: clientgui/AlreadyExistsPage.cpp:185
+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 ""
+
+#: clientgui/AlreadyExistsPage.cpp:189
+msgid "Email address already in use"
+msgstr ""
+
+#: clientgui/AlreadyExistsPage.cpp:192
+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 ""
+
+#: clientgui/AsyncRPC.cpp:1207
+msgid "Communicating with BOINC client.  Please wait ..."
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
+msgid "%s - Connection Error"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:431
+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 ""
+
+#: clientgui/BOINCBaseFrame.cpp:440
+msgid ""
+"Authorization failed connecting to running client.\n"
+"Make sure you start this program in the same directory as the client."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:442
+msgid "Authorization failed connecting to running client."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:450
+msgid "The password you have provided is incorrect, please try again."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
+msgid "%s - Connection Failed"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
+msgid ""
+"%s is not able to connect to a %s client.\n"
+"Would you like to try to connect again?"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
+msgid "%s - Daemon Start Failed"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
+
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
+msgid ""
+"%s is not able to start a %s client.\n"
+"Please start the daemon and try again."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
+msgid "%s - Connection Status"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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 ""
+
+#: clientgui/BOINCBaseView.cpp:723
+msgid "Web sites"
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
+msgid "%s - Network Status"
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
+msgid "%s needs to connect to the Internet.  Please click to open %s."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
+msgid ""
+"%s is unable to communicate with a project and needs an Internet connection.\n"
+"Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
+msgid ""
+"%s needs to connect to the Internet.\n"
+"May it do so now?"
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
+msgid "%s is connecting to the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
+msgid ""
+"%s couldn't do Internet communication, and no default connection is selected.\n"
+"Please connect to the Internet, or select a default connection\n"
+"using Advanced/Options/Connections."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
+msgid "%s has successfully connected to the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
+msgid "%s failed to connect to the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
+msgid ""
+"%s has detected it is now connected to the Internet.\n"
+"Updating all projects and retrying all transfers."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
+msgid "%s has successfully disconnected from the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
+msgid "%s failed to disconnected from the Internet."
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:378
+msgid ""
+"A reboot is required in order for BOINC to run properly.\n"
+"Please reboot your computer and try again."
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:379
+msgid "BOINC Manager"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:526
+msgid "BOINC Manager was started by the operating system automatically"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:528
+msgid "Startup BOINC so only the system tray icon is visible"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
+msgid "Startup BOINC with these optional arguments"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:534
+msgid "disable BOINC security users and permissions"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:535
+msgid "set skin debugging mode to enable skin manager error messages"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:725
+msgid "(Automatic Detection)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:726
+msgid "(Unknown)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:727
+msgid "(User Defined)"
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:348
+msgid "Computation is suspended."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:356
+msgid "Network activity is suspended."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
+msgid "%s: %.2f%% completed."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
+msgid "%d tasks running."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:412
+msgid "Reconnecting to client."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:418
+msgid "Not connected to a client."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
+msgid "Open %s Web..."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
+msgid "Open %s..."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:623
+msgid "Snooze"
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
+msgid "Failed to attach to project"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:204
+msgid "Failed to update account manager"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:208
+msgid "Failed to remove account manager"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:212
+msgid "Failed to attach to account manager"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:221
+msgid ""
+"An error has occurred;\n"
+"check Messages for details.\n"
+"\n"
+"Click Finish to close."
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
+msgid "Click Finish to close."
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:234
+msgid "Messages from server:"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:208
+msgid "Attached to project"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:214
+msgid "You are now successfully attached to this project."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:219
+msgid ""
+"When you click Finish, your web browser will go to a page where\n"
+"you can set your account name and preferences."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:236
+#, c-format
+msgid "Update from %s completed."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:240
+msgid "Update completed."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:257
+#, c-format
+msgid "Attached to %s"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:261
+msgid "Attached to account manager"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:271
+#, c-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:285
+#, c-format
+msgid "You are now successfully attached to the %s system."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:289
+msgid "You are now successfully attached to this account manager."
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:98
+#, c-format
+msgid "About %s"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:155
+msgid "Version:"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:163
+msgid "wxWidgets Version:"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:171
+msgid "Copyright:"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:175
+msgid ""
+"(C) 2003-2010 University of California, Berkeley.\n"
+"All Rights Reserved."
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
+msgid "Berkeley Open Infrastructure for Network Computing"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
+msgid "&OK"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:485
+msgid "invalid float"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:486
+msgid "invalid time, format is HH:MM"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:487
+msgid "invalid time interval, format is HH:MM-HH:MM"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:601
+msgid "invalid input value detected"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:603
+msgid "Validation Error"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:747
+msgid "Do you really want to clear all local preferences ?"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:748
+msgid "Confirmation"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
+msgid "%s - Preferences"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:49
+msgid ""
+"This dialog controls preferences for this computer only.\n"
+"Click OK to set preferences.\n"
+"Click Clear to restore web-based settings."
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:52
+msgid "Clear"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:53
+msgid "clear all local preferences and close the dialog"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:76
+msgid "Computing allowed"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:80
+msgid " While computer is on batteries"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:83
+msgid "check this if you want this computer to do work while it runs on batteries"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:89
+msgid " While computer is in use"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:92
+msgid "check this if you want this computer to do work even when you're using it"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:98
+msgid " Use GPU while computer is in use"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:101
+msgid "check this if you want your GPU to do work even when you're using the computer"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:113
+msgid "Only after computer has been idle for"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:123
+msgid "do work only after you haven't used the computer for this number of minutes"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
+msgid "minutes"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
+msgid "Every day between hours of"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:181
+msgid "start work at this time"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
+msgid "and"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:189
+msgid "stop work at this time"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
+msgid "(no restriction if equal)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
+msgid "Day-of-week override:"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
+msgid "check box to specify hours for this day of week"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
+msgid "Monday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
+msgid "Tuesday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
+msgid "Wednesday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
+msgid "Thursday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
+msgid "Friday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
+msgid "Saturday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
+msgid "Sunday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:272
+msgid "Other options"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:289
+msgid "On multiprocessor systems, use at most"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
+msgid "% of the processors"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
+msgid "Use at most"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
+msgid "% CPU time"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:316
+msgid "processor usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:324
+msgid "General options"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:331
+msgid "Maximum download rate"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
+msgid "KBytes/sec."
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:340
+msgid "Maximum upload rate"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:349
+msgid "Connect about every"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:353
+msgid ""
+"this computer is connected to the Internet about every X days\n"
+"(0 if it's always connected)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:357
+msgid "days"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:360
+msgid "Additional work buffer"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:366
+msgid "days (max. 10)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:369
+msgid " Skip image file verification"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:371
+msgid "check this if your Internet provider modifies image files"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:380
+msgid "Connect options"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:382
+msgid "Confirm before connecting to internet"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:384
+msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:388
+msgid "Disconnect when done"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:390
+msgid ""
+"if checked, BOINC hangs up when network usage is done\n"
+"(only relevant for dialup-connection)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:397
+msgid "Network usage allowed"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:406
+msgid "network usage start hour"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:414
+msgid "network usage stop hour"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:499
+msgid "network usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
+msgid "Disk usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:519
+msgid "the maximum disk space used by BOINC (in Gigabytes)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:523
+msgid "Gigabytes disk space"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:526
+msgid "Leave at least"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:530
+msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:534
+msgid "Gigabytes disk space free"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:541
+msgid "BOINC uses at most this percentage of total disk space"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
+msgid "% of total disk space"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:555
+msgid "seconds"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
+msgid "% of page file (swap space)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:573
+msgid "Memory usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
+msgid "% when computer is in use"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
+msgid "% when computer is idle"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:603
+msgid " Leave applications in memory while suspended"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:605
+msgid "if checked, suspended work units are left in memory"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:614
+msgid "disk and memory usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:627
+msgid "OK"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:628
+msgid "save all values and close the dialog"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:633
+msgid "close the dialog without saving"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
+msgid "Help"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:638
+msgid "shows the preferences web page"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
+msgid "%s - Exit Confirmation"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
+msgid ""
+"You have requested to exit the %s,\n"
+"which allows you to view and manage\n"
+"the science applications running on your computer.\n"
+"\n"
+"If you also want to stop running the science applications when you\n"
+"exit the Manager, then choose from the following options:"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
+msgid ""
+"This will shut down %s and its tasks entirely until either the\n"
+"%s application 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 ""
+
+#: clientgui/DlgExitMessage.cpp:153
+msgid "Stop running science applications when exiting the Manager"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:164
+msgid "Remember this decision and do not show this dialog."
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
+msgid "&Cancel"
+msgstr ""
+
+#: clientgui/DlgGenericMessage.cpp:112
+msgid "Don't show this dialog again."
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:63
+msgid "&Close"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:195
+msgid "Properties of project "
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
+msgid "General"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:200
+msgid "Master URL"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:201
+msgid "User name"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:202
+msgid "Team name"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:203
+msgid "Resource share"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:205
+msgid "Scheduler RPC deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
+msgid "Non CPU intensive"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "yes"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "no"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:216
+msgid "Suspended via GUI"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:217
+msgid "Don't request more work"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:218
+msgid "Scheduler call in progress"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:219
+msgid "Attached via account manager"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:220
+msgid "Detach when done"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:221
+msgid "Ended"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:222
+msgid "Credit"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:223
+msgid "User"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:230
+msgid "Host"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:239
+msgid "Scheduling"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:240
+msgid "CPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:241
+msgid "CPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:244
+msgid "CPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:245
+msgid "CPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
+msgid "NVIDIA GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:251
+msgid "NVIDIA GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:252
+msgid "NVIDIA GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
+msgid "Duration correction factor"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:272
+msgid "Properties of task "
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:276
+msgid "Application"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:277
+msgid "Workunit name"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:278
+msgid "State"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
+msgid "Report deadline"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:286
+msgid "Resources"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:289
+msgid "CPU time at last checkpoint"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
+msgid "CPU time"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
+msgid "Elapsed time"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:294
+msgid "Estimated time remaining"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:295
+msgid "Fraction done"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:296
+msgid "Virtual memory size"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:297
+msgid "Working set size"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:400
+msgid "New"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:404
+msgid "Download failed"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:406
+msgid "Downloading"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:411
+msgid "Project suspended by user"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:413
+msgid "Task suspended by user"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:415
+msgid "Suspended"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:417
+msgid " - on batteries"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:420
+msgid " - user active"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:423
+msgid " - computation suspended"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:426
+msgid " - time of day"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:429
+msgid " - CPU benchmarks"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:432
+msgid " - need disk space"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:436
+msgid "Waiting for memory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:438
+msgid "Waiting for shared memory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:441
+msgid "Running, high priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:443
+msgid "Running"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:446
+msgid "Waiting to run"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
+msgid "Ready to start"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:455
+msgid "Computation error"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:459
+msgid "Upload failed"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:461
+msgid "Uploading"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:467
+msgid "Aborted by user"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:470
+msgid "Aborted by project"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:473
+msgid "Aborted"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:478
+msgid "Acknowledged"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:480
+msgid "Ready to report"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
+msgid "Error: invalid state '%d'"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:119
+#, c-format
+msgid "%s - Options"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:157
+msgid "Language:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:164
+msgid "What language should the manager use?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:168
+msgid ""
+"Network reminder interval:\n"
+"(minutes)"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:180
+msgid "How often should the Manager remind you when a network connection is needed?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:185
+msgid "Run Manager at login?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:191
+msgid "Run the BOINC Manager when you log on."
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:196
+msgid "Enable Manager exit dialog?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:202
+msgid "Display the exit dialog when shutting down the Manager."
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:213
+msgid "Dial-up and Virtual Private Network settings"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:227
+msgid "&Set Default"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:232
+msgid "&Clear Default"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:239
+msgid "Default Connection:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:246
+msgid "Connections"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:255
+msgid "Connect via HTTP proxy server"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:259
+msgid "HTTP Proxy Server Configuration"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
+msgid "Address:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
+msgid "Port:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
+msgid "Don't use proxy for:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
+msgid "Leave these blank if not needed"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
+msgid "User Name:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
+msgid "Password:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:311
+msgid "HTTP Proxy"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:319
+msgid "Connect via SOCKS proxy server"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:323
+msgid "SOCKS Proxy Server Configuration"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:375
+msgid "SOCKS Proxy"
+msgstr ""
+
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
+msgid "%s - Select Computer"
+msgstr ""
+
+#: clientgui/DlgSelectComputer.cpp:127
+msgid "Host name:"
+msgstr ""
+
+#: clientgui/hyperlink.cpp:181
+#, c-format
+msgid "%s - Can't find web browser"
+msgstr ""
+
+#: clientgui/hyperlink.cpp:192
+#, c-format
+msgid ""
+"%s tried to display the web page\n"
+"\t%s\n"
+"but couldn't find a web browser.\n"
+"To fix this, set the environment variable\n"
+"BROWSER to the path of your web browser,\n"
+"then restart the %s."
+msgstr ""
+
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
+msgid "Message boards"
+msgstr ""
+
+#: clientgui/Localization.cpp:33
+msgid "Correspond with other users on the SETI at home message boards"
+msgstr ""
+
+#: clientgui/Localization.cpp:37
+msgid "Ask questions and report problems"
+msgstr ""
+
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
+msgid "Your account"
+msgstr ""
+
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
+msgid "View your account information and credit totals"
+msgstr ""
+
+#: clientgui/Localization.cpp:43
+msgid "Your preferences"
+msgstr ""
+
+#: clientgui/Localization.cpp:45
+msgid "View and modify your SETI at home account profile and preferences"
+msgstr ""
+
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
+msgid "Your results"
+msgstr ""
+
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
+msgid "View your last week (or more) of computational results and work"
+msgstr ""
+
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
+msgid "Your computers"
+msgstr ""
+
+#: clientgui/Localization.cpp:53
+msgid "View a listing of all the computers on which you are running SETI at Home"
+msgstr ""
+
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
+msgid "Your team"
+msgstr ""
+
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
+msgid "View information about your team"
+msgstr ""
+
+#: clientgui/Localization.cpp:61
+msgid "Common questions"
+msgstr ""
+
+#: clientgui/Localization.cpp:63
+msgid "Read the Einstein at Home Frequently Asked Question list"
+msgstr ""
+
+#: clientgui/Localization.cpp:65
+msgid "Screensaver info"
+msgstr ""
+
+#: clientgui/Localization.cpp:67
+msgid "Read a detailed description of the Einstein at Home screensaver"
+msgstr ""
+
+#: clientgui/Localization.cpp:71
+msgid "Correspond with admins and other users on the Einstein at Home message boards"
+msgstr ""
+
+#: clientgui/Localization.cpp:73
+msgid "Einstein status"
+msgstr ""
+
+#: clientgui/Localization.cpp:75
+msgid "Current status of the Einstein at Home server"
+msgstr ""
+
+#: clientgui/Localization.cpp:77
+msgid "Report problems"
+msgstr ""
+
+#: clientgui/Localization.cpp:79
+msgid "A link to the Einstein at Home problems and bug reports message board"
+msgstr ""
+
+#: clientgui/Localization.cpp:83
+msgid "View and modify your Einstein at Home account profile and preferences"
+msgstr ""
+
+#: clientgui/Localization.cpp:85
+msgid "Account summary"
+msgstr ""
+
+#: clientgui/Localization.cpp:95
+msgid "View a listing of all the computers on which you are running Einstein at Home"
+msgstr ""
+
+#: clientgui/Localization.cpp:101
+msgid "LIGO project"
+msgstr ""
+
+#: clientgui/Localization.cpp:103
+msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
+msgstr ""
+
+#: clientgui/Localization.cpp:105
+msgid "GEO-600 project"
+msgstr ""
+
+#: clientgui/Localization.cpp:107
+msgid "The home page of the GEO-600 project"
+msgstr ""
+
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
+msgid "Team"
+msgstr ""
+
+#: clientgui/Localization.cpp:117
+msgid "Info about your Team"
+msgstr ""
+
+#: clientgui/Localization.cpp:123
+msgid "Get help for climateprediction.net"
+msgstr ""
+
+#: clientgui/Localization.cpp:125
+msgid "News"
+msgstr ""
+
+#: clientgui/Localization.cpp:127
+msgid "climateprediction.net News"
+msgstr ""
+
+#: clientgui/Localization.cpp:131
+msgid "View your account information, credits, and trickles"
+msgstr ""
+
+#: clientgui/Localization.cpp:135
+msgid "Info about your team"
+msgstr ""
+
+#: clientgui/Localization.cpp:141
+msgid "Search for help in our help system"
+msgstr ""
+
+#: clientgui/Localization.cpp:143
+msgid "Global Statistics"
+msgstr ""
+
+#: clientgui/Localization.cpp:145
+msgid "Summary statistics for World Community Grid"
+msgstr ""
+
+#: clientgui/Localization.cpp:147
+msgid "My Grid"
+msgstr ""
+
+#: clientgui/Localization.cpp:149
+msgid "Your statistics and settings"
+msgstr ""
+
+#: clientgui/Localization.cpp:151
+msgid "Device Profiles"
+msgstr ""
+
+#: clientgui/Localization.cpp:153
+msgid "Update your device settings"
+msgstr ""
+
+#: clientgui/Localization.cpp:155
+msgid "Research"
+msgstr ""
+
+#: clientgui/Localization.cpp:157
+msgid "Learn about the projects hosted at World Community Grid"
+msgstr ""
+
+#: clientgui/MainDocument.cpp:536
+msgid "Starting client services; please wait..."
+msgstr ""
+
+#: clientgui/MainDocument.cpp:1073
+msgid "Retrieving system state; please wait..."
+msgstr ""
+
+#: clientgui/MainDocument.cpp:1082
+msgid "Retrieving host information; please wait..."
+msgstr ""
+
+#: clientgui/NoInternetConnectionPage.cpp:179
+msgid "No Internet connection"
+msgstr ""
+
+#: clientgui/NoInternetConnectionPage.cpp:182
+msgid "Please connect to the Internet and try again."
+msgstr ""
+
+#: clientgui/NotDetectedPage.cpp:181
+msgid "Project not found"
+msgstr ""
+
+#: clientgui/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 ""
+
+#: clientgui/NotDetectedPage.cpp:188
+msgid "Account manager not found"
+msgstr ""
+
+#: clientgui/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 ""
+
+#: clientgui/NotFoundPage.cpp:181
+msgid "Login Failed."
+msgstr ""
+
+#: clientgui/NotFoundPage.cpp:185
+msgid "Check the username and password, and try again."
+msgstr ""
+
+#: clientgui/NotFoundPage.cpp:189
+msgid "Check the email address and password, and try again."
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:259
+msgid "Choose a project"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:262
+msgid "To choose a project, click its name or type its URL below."
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:265
+msgid "Project &URL:"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:417
+msgid "You are already attached to this project. Please choose a different project."
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
+msgid ""
+"Communicating with project\n"
+"Please wait..."
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:498
+msgid ""
+"Required wizard file(s) are missing from the target server.\n"
+"(lookup_account.php/create_account.php)\n"
+msgstr ""
+
+#: clientgui/ProxyInfoPage.cpp:195
+msgid "Network communication failure"
+msgstr ""
+
+#: clientgui/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"
+"hen click Back to try again.\n"
+"\n"
+"3) You are using a proxy server.\n"
+"Click Next to configure BOINC's proxy settings."
+msgstr ""
+
+#: clientgui/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 ""
+
+#: clientgui/ProxyPage.cpp:331
+msgid "Proxy configuration"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:334
+msgid "HTTP proxy"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
+msgid "Server:"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:350
+msgid "Autodetect"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:354
+msgid "SOCKS proxy"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
+msgid "&%s"
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:288
+msgid "Retrieving current status."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:291
+msgid "You don't have any projects.  Please Add a Project."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:294
+msgid "Downloading work from the server."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:299
+msgid "Processing Suspended:  Running On Batteries."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:301
+msgid "Processing Suspended:  User Active."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:303
+msgid "Processing Suspended:  User paused processing."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:305
+msgid "Processing Suspended:  Time of Day."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:307
+msgid "Processing Suspended:  Benchmarks Running."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:309
+msgid "Processing Suspended."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:313
+msgid "Waiting to contact project servers."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
+msgid "Retrieving current status"
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:320
+msgid "No work available to process"
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:322
+msgid "Unable to connect to the core client"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:107
+msgid "Project"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:108
+msgid "Time"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:109
+msgid "Message"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
+msgid "Copy all the messages to the clipboard."
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
+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 ""
+
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
+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 ""
+
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
+msgid "Get help with BOINC"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
+msgid "%s - Messages"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:95
+msgid "100 MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:96
+msgid "200 MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:97
+msgid "500 MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:98
+msgid "1 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:99
+msgid "2 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:100
+msgid "5 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:101
+msgid "10 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:102
+msgid "20 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:103
+msgid "50 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:104
+msgid "100 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:135
+msgid "10%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:136
+msgid "20%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:137
+msgid "30%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:138
+msgid "40%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:139
+msgid "50%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:140
+msgid "60%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:141
+msgid "70%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:142
+msgid "80%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:143
+msgid "90%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:144
+msgid "100%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:169
+msgid "1"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:170
+msgid "3"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:171
+msgid "5"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:172
+msgid "10"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:173
+msgid "15"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:174
+msgid "30"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:175
+msgid "60"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:284
+msgid "Skin"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:291
+msgid "Skin:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:307
+msgid "Preferences"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:324
+msgid "I want to customize my preferences for this computer only."
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:333
+msgid "Customized Preferences"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:349
+msgid "Do work only between:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:371
+msgid "Connect to internet only between:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
+msgid "Use no more than:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:406
+msgid "of disk space"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:423
+msgid "of the processor"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:427
+msgid "Do work while on battery?"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:440
+msgid "Do work after idle for:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
+msgid "Anytime"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
+msgid "%d MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
+msgid "%4.2f GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
+msgid "%d%%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:864
+msgid "0 (Run Always)"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
+msgid "%d"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:90
+msgid "Paused: Other work running"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:92
+msgid "Paused: User initiatied.  Click 'Resume' to continue"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:94
+msgid "Paused: User active"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:96
+msgid "Paused: Computer on battery"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:98
+msgid "Paused: Time of Day"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:100
+msgid "Paused: Benchmarks running"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:102
+msgid "Paused"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:104
+msgid "Paused: Application start delayed"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:132
+msgid "Click to show project graphics"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:106
+msgid "Attach to an additional project"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:123
+msgid "Synchronize projects with account manager system"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
+msgid "Open a window to view messages"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:223
+msgid "Stop all activity"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:235
+msgid "Resume activity"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:252
+msgid "Open a window to set your preferences"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:269
+msgid "Switch to the BOINC advanced view"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:296
+msgid "My Projects:"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
+msgid "%s. Work done by %s: %0.2f"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:154
+msgid "Remove Project"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
+msgid "Are you sure you want to detach from project '%s'?"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
+msgid "Detach from Project"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
+msgid "%.1lf"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
+msgid "%d hr %d min %d sec"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:421
+msgid "Are you sure you want to display graphics on a remote machine?"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:422
+msgid "Show graphics"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:444
+msgid "Application: "
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
+msgid "Time Remaining: "
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:450
+msgid "Elapsed Time: "
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:218
+msgid "Terms of Use"
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:222
+msgid "Please read the following terms of use:"
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:231
+msgid "I agree to the terms of use."
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:237
+msgid "I do not agree with the terms of use."
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:183
+msgid "Project temporarily unavailable"
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:186
+msgid ""
+"The project is temporarily unavailable.\n"
+"\n"
+"Please try again later."
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:190
+msgid "Account manager temporarily unavailable"
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:193
+msgid ""
+"The account manager is temporarily unavailable.\n"
+"\n"
+"Please try again later."
+msgstr ""
+
+#: clientgui/ValidateAccountKey.cpp:68
+msgid "Please specify an account key to continue."
+msgstr ""
+
+#: clientgui/ValidateAccountKey.cpp:71
+msgid "Invalid Account Key; please enter a valid Account Key"
+msgstr ""
+
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
+msgid "Validation conflict"
+msgstr ""
+
+#: clientgui/ValidateEmailAddress.cpp:72
+msgid "Please specify an email address"
+msgstr ""
+
+#: clientgui/ValidateEmailAddress.cpp:75
+msgid "Invalid email address; please enter a valid email address"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:69
+msgid "Missing URL"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:70
+msgid ""
+"Please specify a URL.\n"
+"For example:\n"
+"http://www.example.com/"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
+msgid "Invalid URL"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
+msgid ""
+"Please specify a valid URL.\n"
+"For example:\n"
+"http://boincproject.example.com"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
+msgid "'%s' does not contain a valid host name."
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:111
+#, c-format
+msgid "'%s' does not contain a valid path."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
+msgid "Commands"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
+msgid "Copy all messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
+msgid "Copy selected messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
+msgid "Show only this project"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
+msgid "Show only the messages for the selected project."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
+msgid "Messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
+msgid "Copying all messages to the clipboard..."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:223
+msgid "Copying selected messages to the clipboard..."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:286
+msgid "Filtering messages..."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:494
+msgid "Show all messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:495
+msgid "Show messages for all projects."
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:128
+msgid "ID"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:128
+msgid "Priority"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:151
+msgid "MessagesGrid"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:209
+msgid "Copying selected messages to Clipboard..."
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:396
+msgid "Info"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:399
+msgid "Warning"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:403
+msgid "Error"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:76
+msgid "News Feeds"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:80
+msgid "BOINC"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:81
+msgid "Display the latest news about BOINC"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:87
+msgid "BOINC Website"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:88
+msgid "Display the latest news about BOINC from the BOINC website"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:173
+msgid "Update"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:174
+msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
+msgid "Suspend"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
+msgid "Suspend tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
+msgid "No new tasks"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:188
+msgid "Don't get new tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:194
+msgid "Reset project"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:195
+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 ""
+
+#: clientgui/ViewProjects.cpp:201
+msgid "Detach"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:202
+msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:208
+msgid "Properties"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:209
+msgid "Show project details."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:219
+msgid "Account"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:221
+msgid "Work done"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:222
+msgid "Avg. work done"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:224
+msgid "Status"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:249
+msgid "Projects"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:296
+msgid "Updating project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:338
+msgid "Resuming project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:342
+msgid "Suspending project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:379
+msgid "Telling project to allow additional task downloads..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:383
+msgid "Telling project to not fetch any additional tasks..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:419
+msgid "Resetting project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:432
+#, c-format
+msgid "Are you sure you want to reset project '%s'?"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:438
+msgid "Reset Project"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:477
+msgid "Detaching from project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:537
+msgid "Launching browser..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:703
+msgid "Resume"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:703
+msgid "Resume tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:722
+msgid "Allow new tasks"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:722
+msgid "Allow fetching new tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:726
+msgid "Don't fetch new tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1052
+msgid "Suspended by user"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1055
+msgid "Won't get new tasks"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1058
+msgid "Project ended - OK to detach"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1061
+msgid "Will detach when tasks done"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1064
+msgid "Scheduler request pending"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1068
+msgid "Scheduler request in progress"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1074
+msgid "Communication deferred "
+msgstr ""
+
+#: clientgui/ViewProjectsGrid.cpp:193
+msgid "ProjectsGrid"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:61
+msgid "Total disk usage"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:82
+msgid "Disk usage by BOINC projects"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:117
+msgid "Disk"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:223
+msgid "not attached to any BOINC project: 0 bytes"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:260
+msgid "used by BOINC: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:270
+msgid "free, available to BOINC: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:280
+msgid "free, not available to BOINC: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:290
+msgid "free: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:300
+msgid "used by other programs: "
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1142
+msgid "User Total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1143
+msgid "User Average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1144
+msgid "Host Total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1145
+msgid "Host Average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
+msgid "Last update: %.0f days ago"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1745
+msgid "Show user total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1746
+msgid "Show total credit for user"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1752
+msgid "Show user average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1753
+msgid "Show average credit for user"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1759
+msgid "Show host total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1760
+msgid "Show total credit for host"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1766
+msgid "Show host average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1767
+msgid "Show average credit for host"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1776
+msgid "< &Previous project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1777
+msgid "Show chart for previous project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1782
+msgid "&Next project >"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1783
+msgid "Show chart for next project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1788
+msgid "Mode view"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1791
+msgid "All projects"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1792
+msgid "Show all projects, one chart per project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1798
+msgid "One project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1799
+msgid "Show one chart with selected project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1805
+msgid "All projects(sum)"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1806
+msgid "Show one chart with all projects"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1833
+msgid "Statistics"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
+msgid "Updating charts..."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
+msgid "Retry Now"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
+msgid "Click 'Retry now' to transfer the file now"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
+msgid "Abort Transfer"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
+msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
+msgid "File"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
+msgid "Progress"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
+msgid "Size"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
+msgid "Elapsed Time"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
+msgid "Speed"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
+msgid "Transfers"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
+msgid "Retrying transfer now..."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:309
+msgid "Aborting transfer..."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:322
+#, 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 ""
+
+#: clientgui/ViewTransfers.cpp:328
+msgid "Abort File Transfer"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
+msgid "Retry in "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
+msgid "Upload pending"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
+msgid "Download pending"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
+msgid "TransfersGrid"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:228
+msgid "Aborting transfer(s)..."
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:230
+msgid ""
+"Are you sure you want to abort this file(s) transfer ?\n"
+"NOTE: Aborting a transfer will invalidate a task and you\n"
+"will not receive credit for it."
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:231
+msgid "Abort File Transfer(s)"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
+msgid "Show application graphics in a window."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
+msgid "Suspend work for this result."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
+msgid "Abort"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
+msgid "Abandon work on the result. You will get no credit for it."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:213
+msgid "Show task details."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
+msgid "Name"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:225
+msgid "Elapsed"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
+msgid "To completion"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
+msgid "Tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
+msgid "Resuming task..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
+msgid "Suspending task..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
+msgid "Showing graphics for task..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:426
+#, c-format
+msgid ""
+"Are you sure you want to abort this task '%s'?\n"
+"(Progress: %s, Status: %s)"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
+msgid "Abort task"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
+msgid "Resume work for this task."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
+msgid "Suspend work for this task."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
+msgid " - an exclusive app is running"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
+msgid " (non-CPU-intensive)"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
+msgid "TasksGrid"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
+msgid ""
+"Are you sure you want to abort this task '%s'?\n"
+"(Progress: %s %%, Status: %s)"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:264
+#, 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 ""
+
+#: clientgui/WelcomePage.cpp:277
+msgid ""
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:281
+msgid ""
+"You have selected to attach to a new BOINC project.  Attaching to a new\n"
+"project means that you will be connecting your computer to a new website\n"
+"and organization.  If this is what you wanted to do, then please click on\n"
+"the 'Next' button below.\n"
+"\n"
+"Some projects like World Community Grid run multiple research applications.\n"
+"If you want to change which research applications are sent to your computer\n"
+"to run, then you should visit the project's website and modify your\n"
+"preferences there.\n"
+"\n"
+"To change which research applications are sent to you from\n"
+"World Community Grid then please click on the following button:"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:301
+msgid "To continue, click Next."
+msgstr ""
+
+#: clientgui/WizardAttachProject.cpp:610
+msgid "Do you really want to cancel?"
+msgstr ""
+
+#: clientgui/WizardAttachProject.cpp:611
+msgid "Question"
+msgstr ""
+
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
+msgid "&Next >"
+msgstr ""
+
+#: clientgui/wizardex.cpp:383
+msgid "< &Back"
+msgstr ""
+
+#: clientgui/wizardex.cpp:553
+msgid "&Finish"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
+msgid "New page inserted. Index = %i"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
+msgid "New page appended. Index = %i"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
+msgid "Old Page Index = %i"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
+msgid "OnDropTarget: index by HitTest = %i"
+msgstr ""
+
+#: clientgui/common/wxPieCtrl.cpp:66
+msgid "Pie Ctrl"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
+msgid "specify work start and stop hours in format HH:MM-HH:MM"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:30
+msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
+msgstr ""
diff --git a/locale/ar/BOINC-Project-Generic.po b/locale/nn/BOINC-Project-Generic.po
similarity index 100%
copy from locale/ar/BOINC-Project-Generic.po
copy to locale/nn/BOINC-Project-Generic.po
diff --git a/locale/nn/BOINC-Web.po b/locale/nn/BOINC-Web.po
new file mode 100644
index 0000000..7e46bf9
--- /dev/null
+++ b/locale/nn/BOINC-Web.po
@@ -0,0 +1,634 @@
+# BOINC web translation
+# Copyright (C) 2008-2009 University of California
+# This file is distributed under the same license as BOINC.
+# FileID  : $Id$
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.2.1\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+#: poll.inc:18
+msgid "[check all that apply]"
+msgstr ""
+
+#: poll.inc:47
+msgid "Other:"
+msgstr ""
+
+#: poll_data.inc:19
+msgid "Yes - I have been running BOINC on my computer for..."
+msgstr ""
+
+#: poll_data.inc:22
+msgid "less than a week"
+msgstr ""
+
+#: poll_data.inc:23
+msgid "less than a month"
+msgstr ""
+
+#: poll_data.inc:24
+msgid "less than a year"
+msgstr ""
+
+#: poll_data.inc:25
+msgid "more than a year"
+msgstr ""
+
+#: poll_data.inc:31
+msgid "No - I used to run BOINC, but..."
+msgstr ""
+
+#: poll_data.inc:34
+msgid "I lost interest"
+msgstr ""
+
+#: poll_data.inc:35
+msgid "it was too complicated"
+msgstr ""
+
+#: poll_data.inc:36
+msgid "I stopped it and forgot to start again"
+msgstr ""
+
+#: poll_data.inc:37
+msgid "it caused problems on my computer"
+msgstr ""
+
+#: poll_data.inc:38
+msgid "it used too much electricity"
+msgstr ""
+
+#: poll_data.inc:39
+msgid "I switched to a non-BOINC computing project"
+msgstr ""
+
+#: poll_data.inc:45
+msgid "No - I tried running BOINC, but..."
+msgstr ""
+
+#: poll_data.inc:48
+msgid "the software didn't install correctly"
+msgstr ""
+
+#: poll_data.inc:49
+msgid "I couldn't figure out how to use the software"
+msgstr ""
+
+#: poll_data.inc:50
+msgid "I had network communication problems"
+msgstr ""
+
+#: poll_data.inc:51
+msgid "I couldn't attach to a project"
+msgstr ""
+
+#: poll_data.inc:52
+msgid "I attached to a project, but never got any work"
+msgstr ""
+
+#: poll_data.inc:58
+msgid "No - I never tried running BOINC, because..."
+msgstr ""
+
+#: poll_data.inc:61
+msgid "I was concerned about security"
+msgstr ""
+
+#: poll_data.inc:62
+msgid "I wasn't interested in any of the projects"
+msgstr ""
+
+#: poll_data.inc:63
+msgid "I don't have permission to run it on my computer"
+msgstr ""
+
+#: poll_data.inc:64
+msgid "No version was available for my computer"
+msgstr ""
+
+#: poll_data.inc:75
+msgid "What kind of computers do you have running BOINC?"
+msgstr ""
+
+#: poll_data.inc:85
+msgid "Where are they?"
+msgstr ""
+
+#: poll_data.inc:87
+msgid "Home"
+msgstr ""
+
+#: poll_data.inc:88
+msgid "Work"
+msgstr ""
+
+#: poll_data.inc:89
+msgid "School"
+msgstr ""
+
+#: poll_data.inc:96
+msgid "How many computers?"
+msgstr ""
+
+#: poll_data.inc:107
+msgid "On average, how many hours per day are they powered on?"
+msgstr ""
+
+#: poll_data.inc:119
+msgid "Age"
+msgstr ""
+
+#: poll_data.inc:129
+msgid "Sex"
+msgstr ""
+
+#: poll_data.inc:131
+msgid "Male"
+msgstr ""
+
+#: poll_data.inc:132
+msgid "Female"
+msgstr ""
+
+#: poll_data.inc:137
+msgid "Your level of computer expertise"
+msgstr ""
+
+#: poll_data.inc:139
+msgid "Beginner"
+msgstr ""
+
+#: poll_data.inc:140
+msgid "Intermediate"
+msgstr ""
+
+#: poll_data.inc:141
+msgid "Advanced"
+msgstr ""
+
+#: poll_data.inc:149
+msgid "Where did you learn about BOINC projects?"
+msgstr ""
+
+#: poll_data.inc:151
+msgid "TV/radio/newspaper"
+msgstr ""
+
+#: poll_data.inc:152
+msgid "From friends, relatives, or coworkers"
+msgstr ""
+
+#: poll_data.inc:153
+msgid "Team message boards or web sites"
+msgstr ""
+
+#: poll_data.inc:154 poll_data.inc:210
+msgid "The BOINC web site"
+msgstr ""
+
+#: poll_data.inc:155
+msgid "Other web sites"
+msgstr ""
+
+#: poll_data.inc:161
+msgid ""
+"Which are the most important factors when you decide whether to participate "
+"in a BOINC project?"
+msgstr ""
+
+#: poll_data.inc:163
+msgid "Nice-looking screensaver graphics"
+msgstr ""
+
+#: poll_data.inc:164
+msgid "Fair and quick granting of credit for work done"
+msgstr ""
+
+#: poll_data.inc:165
+msgid "Getting more credit from this project than from others"
+msgstr ""
+
+#: poll_data.inc:166
+msgid "Helpful and friendly message boards"
+msgstr ""
+
+#: poll_data.inc:167
+msgid "Participation by project staff on the message boards"
+msgstr ""
+
+#: poll_data.inc:168
+msgid "Informative project web site"
+msgstr ""
+
+#: poll_data.inc:169
+msgid "The science is important and beneficial"
+msgstr ""
+
+#: poll_data.inc:170
+msgid "Non-profit, and results are public"
+msgstr ""
+
+#: poll_data.inc:171
+msgid "Personal recognition if my computer finds something"
+msgstr ""
+
+#: poll_data.inc:172
+msgid "Publication by the project in scientific journals"
+msgstr ""
+
+#: poll_data.inc:173
+msgid "Periodic email newsletters from the project"
+msgstr ""
+
+#: poll_data.inc:180
+msgid "How many BOINC projects do you participate in?"
+msgstr ""
+
+#: poll_data.inc:190
+msgid "Do you run BOINC as a screensaver?"
+msgstr ""
+
+#: poll_data.inc:192
+msgid "Yes"
+msgstr ""
+
+#: poll_data.inc:193
+msgid "No"
+msgstr ""
+
+#: poll_data.inc:198
+msgid "Your usage of project messages boards:"
+msgstr ""
+
+#: poll_data.inc:200
+msgid "to read information"
+msgstr ""
+
+#: poll_data.inc:201
+msgid "to read and post information"
+msgstr ""
+
+#: poll_data.inc:202
+msgid "None"
+msgstr ""
+
+#: poll_data.inc:206
+msgid ""
+"Where do you get information to help resolve problems with BOINC and/or "
+"BOINC projects?"
+msgstr ""
+
+#: poll_data.inc:208
+msgid "The project message boards"
+msgstr ""
+
+#: poll_data.inc:209
+msgid "The BOINC message boards"
+msgstr ""
+
+#: poll_data.inc:211
+msgid "BOINC mailing lists"
+msgstr ""
+
+#: poll_data.inc:212
+msgid "The Unofficial BOINC Wiki"
+msgstr ""
+
+#: poll_data.inc:213
+msgid "Team web sites"
+msgstr ""
+
+#: poll_data.inc:214
+msgid "Google or other search engines"
+msgstr ""
+
+#: download.php:40
+msgid "Download BOINC"
+msgstr ""
+
+#: download.php:42
+#, php-format
+msgid "%s for %s (%s MB)"
+msgstr ""
+
+#: download.php:89
+msgid ""
+"BOINC is a program that lets you donate your idle computer time to science "
+"projects like SETI at home, Climateprediction.net, Rosetta at home, World "
+"Community Grid, and many others. <p> After installing BOINC on your "
+"computer, you can connect it to as many of these projects as you like."
+msgstr ""
+
+#: download.php:114
+#, php-format
+msgid ""
+"Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
+"(GPU), you may be able to %suse it to compute faster%s"
+msgstr ""
+
+#: download.php:120
+msgid "System requirements"
+msgstr ""
+
+#: download.php:121
+msgid "Release notes"
+msgstr ""
+
+#: download.php:122 index.php:89
+msgid "Help"
+msgstr ""
+
+#: download.php:123
+msgid "All versions"
+msgstr ""
+
+#: download.php:141
+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 ""
+
+#: index.php:23
+msgid "Computing power"
+msgstr ""
+
+#: index.php:25
+msgid "Top 100 volunteers"
+msgstr ""
+
+#: index.php:26
+msgid "Statistics"
+msgstr ""
+
+#: index.php:53
+msgid "Active:"
+msgstr ""
+
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
+
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
+msgstr ""
+
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
+
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
+#, php-format
+msgid ""
+" Use the idle time on your computer (Windows, Mac, or Linux) to cure "
+"diseases, study global warming, discover pulsars, and do many other types of "
+"scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %"
+"sDownload%s and run BOINC software  %sEnter%s an email address and password. "
+msgstr ""
+
+#: index.php:107
+#, php-format
+msgid ""
+"Or, if you run several projects, try an %saccount manager%s such as %"
+"sGridRepublic%s or %sBAM!%s. "
+msgstr ""
+
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
+
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
+#, php-format
+msgid ""
+"Open-source software for %svolunteer computing%s and %sgrid computing%s."
+msgstr ""
+
+#: poll.php:9
+msgid "BOINC user survey"
+msgstr ""
+
+#: poll.php:19
+msgid ""
+"Several volunteer computing projects, including Climateprediction.net, "
+"Einstein at home, and SETI at home, use software called BOINC.  If you participate "
+"in projects like this, we request that you answer the following questions.  "
+"This will help BOINC-based projects increase participation and achieve "
+"greater scientific results. <p> Please answer as many questions as you want, "
+"then go to the bottom and click OK. If you previously completed the survey "
+"but your answers have changed, please complete it again - your new answers "
+"will replace the old ones. <p> The current results of the survey are <a "
+"href=poll_results.php>here</a>. "
+msgstr ""
+
+#: poll.php:25
+msgid "Do you run BOINC?"
+msgstr ""
+
+#: poll.php:30
+msgid "Your participation"
+msgstr ""
+
+#: poll.php:32
+msgid "Your computers"
+msgstr ""
+
+#: poll.php:34
+msgid "You"
+msgstr ""
+
+#: poll.php:39
+msgid "Nationality"
+msgstr ""
+
+#: poll.php:44
+msgid "Comments"
+msgstr ""
+
+#: poll.php:46
+msgid ""
+"Please suggest ways that BOINC, and the projects that use it, could be "
+"improved:"
+msgstr ""
+
+#: poll.php:50
+msgid "When done click:"
+msgstr ""
+
+#: poll_action.php:9
+msgid "Error - results not recorded"
+msgstr ""
+
+#: poll_action.php:10
+msgid ""
+"An internal error has prevented us from recording your survey response.  "
+"Please try again later."
+msgstr ""
+
+#: poll_action.php:32
+msgid "Survey response recorded"
+msgstr ""
+
+#: poll_action.php:33
+msgid "Thank you for completing the BOINC user survey."
+msgstr ""
+
+#: poll_results.php:195
+msgid "Survey results"
+msgstr ""
+
+#: poll_results.php:196
+msgid ""
+"These are the current results of the <a href=poll.php>BOINC user survey</"
+"a>.  This page is updated every hour."
+msgstr ""
diff --git a/locale/nn/pootle-boincclient610-nn.prefs b/locale/nn/pootle-boincclient610-nn.prefs
new file mode 100644
index 0000000..123ca76
--- /dev/null
+++ b/locale/nn/pootle-boincclient610-nn.prefs
@@ -0,0 +1,7 @@
+# Pootle preferences for project boincclient610, language nn
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/pl/BOINC-Manager.mo b/locale/pl/BOINC-Manager.mo
index 76be05c..315fa42 100644
Binary files a/locale/pl/BOINC-Manager.mo and b/locale/pl/BOINC-Manager.mo differ
diff --git a/locale/pl/BOINC-Manager.po b/locale/pl/BOINC-Manager.po
index 3a01e33..59fca9b 100644
--- a/locale/pl/BOINC-Manager.po
+++ b/locale/pl/BOINC-Manager.po
@@ -1,10 +1,10 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 6.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
-"PO-Revision-Date: 2009-04-14 01:38-0700\n"
-"Last-Translator: Bartosz Kaszubowski <gosimek at gmail.com>\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2010-02-03 10:35-0700\n"
+"Last-Translator: Marek Czerwonka <marekz at mensa.org.pl>\n"
 "Language-Team: Ruch Oporu Sekcja Badawcza <marekz at irc.pl>\n"
 "Language: pl\n"
 "MIME-Version: 1.0\n"
@@ -16,15 +16,15 @@ msgstr ""
 "X-Poedit-Language: English\n"
 "X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: iso-8859-1\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: UNITED STATES\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "Informacje o uczestniku"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr "Identyfikacja twojego konta "
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
@@ -32,7 +32,7 @@ msgstr ""
 "Wprowadź informacje dotyczące twojego konta.\n"
 "(aby utworzyć konto odwiedź stronę internetową projektu)"
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
@@ -41,425 +41,498 @@ msgstr ""
 "Możesz się do niego przyłączyć tylko w przypadku, gdy\n"
 "posiadasz już w nim konto."
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "Czy uczestniczysz już w tym projekcie?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "&Nie, nowy uczestnik"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "&Tak, istniejÄ…cy uczestnik"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+"Nie jest możliwe automatyczne zaprezentowanie informacji\n"
+"o twoim koncie.\n"
+"\n"
+"Kliknij 'Znajdź informacje logowania'\n"
+"poniżej aby ustalić co należy wpisać\n"
+"w pola adresu e-mail oraz hasła."
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr "Znajdź informacje dotyczące logowania"
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "&Hasło:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
-msgstr "Podaj &hasło:"
+msgstr "Wybierz &hasło:"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "P&otwierdź hasło:"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr "Czy uczestniczysz już w %s?"
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr "&Login:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "Adres &e-mail:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr "minimalna długość hasła: %d"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr "Zapomniałeś hasła?"
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+"Jeśli nie zarejestrowałeś się jeszcze przy użyciu menadżera kont\n"
+" zrób to przed przejściem dalej. Kliknij poniższy link\n"
+" aby się zarejestrować albo odzyskać zapomniane hasło."
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr "Witryna menadżera kont"
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "Przyłącz się do projektu"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "Uaktualnij menadżera kont"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "Połącz się z menadżerem kont"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr ""
 "Minimalna długość hasła wynosi dla tego projektu %d. Wprowadź inne hasło."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
 "Minimalna długość hasła wynosi dla tego menadżera kont %d. Wprowadź inne "
 "hasło."
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr "Wprowadzone hasła nie są identyczne. Wprowadź je poprawnie ponownie."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "Adres URL menadżera kont"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr "Wybierz menadżera kont"
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Wprowadź adres URL menadżera kont."
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"Aby wybrać menadżera kont kliknij jego nazwę albo wpisz jego adres URL "
+"poniżej."
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "Adres &URL menadżera kont:"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr "Trwa Å‚Ä…czenie z %s."
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr "Trwa wymiana informacji z serwerem."
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "Czekaj..."
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr "Nastąpił wewnętrzny błąd serwera.\n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Połączony"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Rozłączony"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "&Zamknij okno\tCtrl+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr "Zamknij okno %s'a"
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "Zamykanie okna Menadżera BOINC."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr "&Zamknij okno"
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
-msgstr "Zamykanie %s'a"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr "Zamknij %s'a"
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "&Zamknij"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
-msgstr ""
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr "&Projekty\tCtrl+Shift+P"
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
-msgstr ""
-"Widok zaawansowany pozwala na sortowanie w kolumnach po różnych parametrach "
-"oraz pokazuje graficznie postęp obliczeń."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr "Pokaż kartę projekty"
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
-msgstr ""
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr "&Zadania\tCtrl+Shift+T"
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "Przełączanie do widoku uproszczonego."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr "Pokaż kartę zadania"
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "Przyłącz się do &projektu..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr "Przesyła&nie\tCtrl+Shift+X"
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "Przyłączanie się do projektu."
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr "Pokaż kartę przesyłanie"
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "Połącz z menadżerem kont..."
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr "Wiado&mości\tCtrl+Shift+M"
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Łączenie się z menadżerem kont."
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr "Pokaż kartę wiadomości"
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr "&Statystyki\tCtrl+Shift+S"
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr "Pokaż kartę statystyki"
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr "&Dysk twardy\tCtrl+Shift+D"
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr "Pokaż kartę dysk twardy"
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "Widok uproszczony...\tCtrl+Shift+V"
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr "Przełączanie do widoku uproszczonego"
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr "Przyłącz się do &projektu albo menadżera kont..."
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr "Przyłącz się"
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr "&Zsynchronizuj z %s"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr "Pobierz aktualne ustawienia z %s"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "Przyłącz się do &projektu..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr ""
+"Przyłączanie do projektu i rozpoczęcie przetwarzania danych w tym projekcie"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "&Zatrzymaj używanie %s"
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Odłącz klienta od menadżera kont."
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
-msgstr "Zawsze &uruchomione"
+msgstr "Zawsze u&ruchomione"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr ""
 "Przetwarzanie danych bez względu na ograniczenia wynikające z preferencji."
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
-msgstr "Uruchamianie zgodnie z pre&ferencjami"
+msgstr "Uruchamianie zgodnie z &preferencjami"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr ""
 "Przetwarzanie danych zgodnie z ograniczeniami wynikajÄ…cymi z preferencji."
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "&Wstrzymaj"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr "Wstrzymanie przetwarzania danych."
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr "Zawsze używaj procesora karty graficznej"
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr ""
+"Przetwarzanie danych przy użyciu GPU bez względu na ograniczenia wynikające "
+"z preferencji."
+
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr "Używaj procesora karty graficznej zgodnie z &preferencjami"
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr ""
+"Przetwarzanie danych przy użyciu GPU zgodnie z ograniczeniami wynikającymi z "
+"preferencji."
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr "Nigdy nie używaj procesora karty graficznej"
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr ""
+"Wstrzymanie przetwarzania danych przez GPU bez względu na ustawienia "
+"preferencji."
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "&Sieć zawsze dostępna"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr ""
-"Sieć zawsze dostępna bez względu na ograniczenia wynikające z Preferencji."
+"Sieć zawsze dostępna bez względu na ograniczenia wynikające z preferencji."
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
-msgstr "Dostęp do sieci zgodnie z &preferencjami"
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
+msgstr "Dostęp do sieci zgodnie z pre&ferencjami"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr "Sieć dostępna zgodnie z ograniczeniami wynikającymi z preferencji."
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
-msgstr "&Zablokuj dostęp do sieci"
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
+msgstr "Zablok&uj dostęp do sieci"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr "Sieć niedostępna dla BOINC."
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "&Ustawienia..."
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "Konfiguracja języka oraz połączenia z internetem."
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "&Preferencje lokalne..."
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr "Konfiguracja preferencji lokalnych"
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
 msgid "Connect to another computer running %s"
 msgstr "Połącz z innym komputerem używającym %s"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "Wybierz komputer..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr "Zamknij podłączonego klienta..."
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr "Zamyka obecnie podłączonego klienta BOINC."
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "Uruchom miernik &wydajności"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "Uruchomienie miernika wydajności systemu."
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr "&Ponów próby połączeń"
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr ""
 "Odsyłanie zakończonych zadań, pobieranie aktualnych stanów punktów i "
 "ewentualnie pobieranie kolejnych zadań do przetwarzania."
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr "Wczytaj plik konfiguracyjny"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr ""
 "Wczytywanie informacji zawartych w pliku konfiguracyjnym: cc_config.xml."
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "Wczytaj plik preferencji lokalnych"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr ""
 "Wczytywanie informacji zawartych w pliku preferencji lokalnych: "
 "global_prefs_override.xml."
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr "&Zatrzymaj używanie %s"
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "Odłącz klienta od menadżera kont."
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "Przyłącz się do &projektu"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr ""
-"Przyłączanie do projektu i rozpoczęcie przetwarzania danych w tym projekcie"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
 msgstr "%s - Pomoc on-line"
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
 msgid "Show information about %s"
 msgstr "Informacje on-line na temat %s'a."
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr "Strona %s'a"
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr "Strona dotyczÄ…ca %s'a."
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr "&Strona główna Projektu %s"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
 msgid "Show information about BOINC and %s"
 msgstr "Strona główna Projektu BOINC oraz %s'a."
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr "&O %sze..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "Informacje dotyczÄ…ce licencji oraz praw autorskich."
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "&Plik"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "&Widok"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "&Opcje"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "&Aktywność"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "&Zaawansowane"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "&Pomoc"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr "%s - Zamknij obecnie używanego klienta..."
-
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-"%s zamknie obecnie podłączonego klienta,\n"
-"i poprosi o wprowadzenie nazwy komputera, do którego ma się teraz podłączyć.\n"
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr "Przyłączanie do projektu lub menadżera kont..."
 
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr "%s - Odłącz od %s"
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -473,57 +546,66 @@ msgstr ""
 "\n"
 "Czy chcesz przestać używać %s?"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "Przyłączam do projektu..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "Probuję nawiązać połączenie z serwerami projektów..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr "%s - Wybór języka"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr ""
 "Domyślny język dla %s'a został zmieniony. Aby zmiany odniosły skutek "
 "zrestartuj %s'a."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - Zamknij obecnie używanego klienta..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s zamknie obecnie podłączonego klienta,\n"
+"i poprosi o wprowadzenie nazwy komputera, do którego ma się teraz podłączyć.\n"
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Probuję nawiązać połączenie z serwerami projektów..."
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr "%s został dołączony do %s"
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "Łączę z %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
 msgid "Connected to %s (%s)"
 msgstr "Połączony z %s (%s)"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "Ta nazwa użytkownika jest już zajęta"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -535,11 +617,11 @@ msgstr ""
 "\n"
 "Odwiedź stronę projektu i postepuj zgodnie z podanymi tam instrukcjami."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "Ten adres e-mail jest już używany dla innego konta"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -551,16 +633,30 @@ msgstr ""
 "\n"
 "Odwiedź stronę projektu i postepuj zgodnie z podanymi tam instrukcjami."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr "Nawiązywanie połączenia z klientem BOINC... Proszę czekać..."
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr "Opuść %s"
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr "Wyjdź z %s"
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "Anuluj"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr "%s - Błąd połączenia"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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."
@@ -569,7 +665,7 @@ msgstr ""
 "Skontaktuj się z administratorem, aby dołączył cię do grupy użytkowników "
 "'boinc_users' na tym komputerze."
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
@@ -578,22 +674,22 @@ msgstr ""
 "Upewnij się czy uruchamiasz ten program w tym samym katalogu, w którym "
 "znajduje siÄ™ klient."
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr ""
 "Autoryzacja w trakcie podłączanie do uruchomionego klienta nie powiodła się."
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "Wprowadziłeś niepoprawne hasło, spróbuj ponownie."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - Połączenie nie powiodło się"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
@@ -601,13 +697,13 @@ msgstr ""
 "%s nie może połączyć się z klientem %s.\n"
 "Czy chcesz spróbować połączyć się ponownie?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr "%s - usługa nie została uruchomiona"
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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."
@@ -616,8 +712,8 @@ msgstr ""
 "Otwórz aplet Panel Sterowania --> Narzędzia Administracyjne --> Usługi\n"
 "i uruchom usługę BOINC."
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
@@ -625,13 +721,13 @@ msgstr ""
 "%s nie jest w stanie uruchomić klienta %s.\n"
 "Uruchom demona i spróbuj ponownie."
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr "%s - Status połączenia"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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"
@@ -643,24 +739,22 @@ msgstr ""
 "Aby podłączyć się do komputera lokalnego użyj nazwy 'localhost' jako nazwy "
 "komputera."
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Strony projektu"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr "%s - Stan połączenia internetowego"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr "%s chce nawiązać połączenie z internetem. Kliknij aby otworzyć %s."
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
 "Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
@@ -670,8 +764,8 @@ msgstr ""
 "Połącz się z internetem a następnie wybierz 'Ponów próby połączeń' z menu "
 "Zaawansowane."
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
@@ -679,13 +773,13 @@ msgstr ""
 "%s chce nawiązać połączenie z siecią.\n"
 "Czy może to zrobić teraz?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s Å‚Ä…czy siÄ™ z internetem."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
 "Please connect to the Internet, or select a default connection\n"
@@ -696,18 +790,18 @@ msgstr ""
 "albo zdefiniuj połączenie domyślne używając opcji z menu\n"
 "Zaawansowane/Ustawienia/Połączenia."
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s połączył się z internetem."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "%s'owi nie udało połączyć się z internetem."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
@@ -716,17 +810,47 @@ msgstr ""
 "Nastąpi próba aktualizacji wszystkich projektów\n"
 "oraz wznowienie wszystkich przerwanych transferów plików."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s rozłączył się z internetem."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s nie udało się rozłączyć z internetem."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+"Nie posiadasz autoryzacji do zarzÄ…dzania klientem.\n"
+"\n"
+"Aby uruchomić BOINC z konta tego użytkownika:\n"
+"- wykonaj reinstalacjÄ™ BOINC odpowiadajÄ…c \"Tak\" na pytanie\n"
+"o użytkowników nie mających uprawnień do zarządzania\n"
+"albo\n"
+"- skontaktuj siÄ™ z administratorem tego komputera\n"
+"aby dodał cię do grupy użytkowników 'boinc_master'."
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"Ustawienia zabezpieczeń lub uprawnień dla BOINC są nieprawidłowe; zainstaluj "
+"ponownie BOINC.\n"
+"(Kod błędu %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
@@ -734,101 +858,112 @@ msgstr ""
 "Aby BOINC działał poprawnie wymagane jest ponowne uruchomienie komputera.\n"
 "Wykonaj restart i spróbuj ponownie."
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "Menadżer BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr ""
 "Menadżer BOINC został uruchomiony automatycznie przez system operacyjny "
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr "Uruchom BOINC tak aby tylko ikona w tray'u była widoczna"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr "Katalog zawierajÄ…cy plik wykonywalny klienta BOINC"
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr "Katalog danych BOINC"
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr "Uruchom BOINC z dodatkowymi przełącznikami"
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr "Zdezaktywuj ustawienia zabezpieczeń BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
-msgstr ""
+msgstr "uruchom tryb debugowania menadżera skórek"
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "Wkrywanie automatyczne)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Nieznany)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Użytkownika)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr "Przetwarzanie danych jest wstrzymane."
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr "Aktywność sieciowa jest wstrzymana."
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr "%s: w %.2f%% ukończone."
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr "%d zadania uruchomione."
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr "Ponownie Å‚Ä…czÄ™ siÄ™ z klientem."
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr "Nie połączony z klientem BOINC."
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr "Otwiera %s URL..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr "Otwórz %s'a..."
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "Wstrzymaj aktywność na 1 godzinę"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr "Wstrzymaj używanie GPU"
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "Nie udało się przyłączyć do projektu"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr "Nie udało się zaktualizować menadżera kont"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr "Nie udało się usunąć menadżera kont"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "Połączenie z menadżerem kont nie powiodło się"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -840,27 +975,26 @@ msgstr ""
 "\n"
 "Nacisnij Zamknij aby zakończyć."
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "Nacisnij 'Zakończ' aby zamknąć to okno."
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "Wiadomości przesłane przez serwer:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "Przyłączony do projektu"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "Przyłączyłeś się do tego projektu."
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -869,127 +1003,117 @@ msgstr ""
 "na której będziesz mógł wybrać nazwę swojego konta oraz ustawienia "
 "preferencji."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr "Aktualizacja z %s zakończona."
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "Aktualizacja zakończona."
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr "Odłączanie się od %s zakończone."
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "Odłączenie zakończone sukcesem."
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr "Podłączony do %s"
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "Podłączony do menadżera kont"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
 msgstr "Witamy w %s!"
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
+#, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "Jesteś podłączony do %s."
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "Jesteś podłączony do menadżera kont."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr "O %sze"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "Wersja:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr "Wersja wxWidgets:"
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Prawa autorskie:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
-"(C) 2003-2009 Uniwersytet Kalifornijski w Berkeley.\n"
+"(C) 2003-2010 Uniwersytet Kalifornijski w Berkeley.\n"
 "Wszystkie prawa zastrzeżone.\n"
 "\n"
 "Polska wersja językowa:\n"
 "Marek Czerwonka (marekz at irc.pl)\n"
 "\n"
-"Wersja: 6.6.xx"
+"Wersja: 6.10.xx"
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr ""
 "Berkeley Open Infrastructure for Network Computing\n"
 "  Otwarta Platforma Obliczeń Rozproszonych BOINC"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "&OK"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr "nieprawidłowa wartość przepływu"
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr "nieprawidłowy czas, prawidłowy format to HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr "nieprawidłowy zakres czasu, prawidłowy format to HH:MM-HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr "wykryto wprowadzenie nieprawidłowej wartości"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr "BÅ‚Ä…d walidacji"
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr "Czy na pewno chcesz usunąć wszystkie preferencje lokalne?"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr "Potwierdzenie"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
 msgstr "%s - Preferencje lokalne"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
@@ -1000,188 +1124,201 @@ msgstr ""
 "lokalnym. Jeśli chciałbyś powrócić do stosowania ogólnych preferencji konta\n"
 "uczestnika dla tego komputera, użyj przycisku Wyczyść."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr "Wyczyść"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr "Skasuj wszystkie ustawienia Preferencji lokalnych"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr "Przetwarzanie dozwolone:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr " kiedy komputer jest zasilany z baterii"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr ""
 "Zaznacz jeśli chcesz aby komputer przetwarzał zadania podczas zasilania z "
 "baterii"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr " kiedy komputer jest w użyciu"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr ""
 "Zaznacz jeśli chcesz aby komputer przetwarzał zadania podczas gdy jest "
 "używany do innych celów"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
-msgstr ""
+msgstr "używaj także procesora karty graficznej kiedy komputer jest w użyciu"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
+"Zaznacz jeśli chcesz aby komputer używał do przetwarzania zadań procesora "
+"karty graficznej podczas gdy jest używany do innych celów"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr "tylko kiedy komputer pozostaje nieużywany przez nie mniej niż"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr ""
-"Przetwarzaj dane tylko gdy komputer nie jest używany od co najmniej X minut"
+"Przetwarzaj dane tylko gdy komputer nie jest używany od co najmniej zadanej "
+"ilości minut"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
-msgstr "minut(y)"
+msgstr "minut"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr "każdego dnia pomiędzy godzinami"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr "poczÄ…tek przetwarzania"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr "a"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr "koniec przetwarzania"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr "(równe wartości oznaczają brak ograniczeń)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr "Dodatkowe warunki dla dni tygodnia:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr "Zaznacz aby podać godziny dla tego dnia tygodnia"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr "Poniedziałek"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr "Wtorek"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr "Åšroda"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr "Czwartek"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr "PiÄ…tek"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr "Sobota"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr "Niedziela"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr "Inne opcje:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+#, fuzzy
+msgid "Switch between applications every"
 msgstr "przełączaj się pomiędzy aplikacjami projektów co"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr "w systemach wieloprocesorowych, używaj nie więcej niż"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
 msgid "% of the processors"
 msgstr "% ogólnej liczby procesorów"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr "używaj nie więcej niż"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
 msgid "% CPU time"
 msgstr "% mocy obliczeniowej procesora"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr "Użycie procesora"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr "Opcje ogólne:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr "maks. szybkość pobierania"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr "KB/s"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr "maks. szybkość wysyłania"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr "Å‚Ä…cz siÄ™ z sieciÄ… co"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
@@ -1189,47 +1326,47 @@ msgstr ""
 "Ten komputer łączy się z siecią co około X dni\n"
 "(0 jeżeli jest ciągle połączony)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr "dni"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr "dodatkowy zapas danych na"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr "dni (maks. 10)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr " nie weryfikuj pliku jpg"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr ""
 "Zaznacz jeżeli twój dostawca internetu może modyfikować pliki graficzne w "
 "trakcie transferu"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr "Opcje połączenia sieciowego:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr " potwierdź przed połączeniem z siecią"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr ""
 "W przypadku zaznaczenia, przed każdorazowym połączeniem z siecią, będzie "
 "wyświetlane zapytanie"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr " rozłącz z siecią po zakończeniu"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
@@ -1238,130 +1375,126 @@ msgstr ""
 "używania\n"
 "(opcja użyteczna tylko dla połączeń przy użyciu modemów)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr "Dostęp do sieci:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr "początek dostępności sieci"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr "koniec dostępności sieci"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr "Użycie sieci"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr "Użycie dysku:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr "Maksymalny obszar dysku twardego dostępny dla BOINC (w GB)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr "GB obszaru dysku"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr "pozostaw nie mniej niż"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr "BOINC pozostawia co najmniej taki wolny obszar dysku twardego (w GB)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr "GB wolnego obszaru dysku"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr "Maksymalny procent obszaru dysku, dostępny dla BOINC"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr "% obszaru całego dysku"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
-msgstr "zapisuj na dysku co "
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr "zapisywanie na dysku co "
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr "sekund"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr "% obszaru pliku wymiany"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr "Użycie pamięci:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr "% kiedy komputer jest w użyciu"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr "% kiedy komputer nie jest w użyciu"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr ""
 " przełączając między projektami pozostawiaj aplikacje w pamięci operacyjnej"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr "W przypadku zaznaczenia, dane których przetwarzanie zostało zawieszone"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr "Użycie dysku oraz pamięci"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr "OK"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr "Zapisz wszystkie wartości i zamknij okno"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr "Anuluj"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr "Zamknij okno bez zapisywania wartości"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "Pomoc"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr "Pokaż stronę www z opisem Preferencji BOINC"
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
 msgstr "%s - Potwierdzenie zamknięcia aplikacji"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1370,15 +1503,14 @@ msgid ""
 "If you also want to stop running the science applications when you\n"
 "exit the Manager, then choose from the following options:"
 msgstr ""
-"Wybrałeś zamknięcie %s'a,\n"
-"który umożliwia ci zarządzanie aplikacjami projektów\n"
-"uruchomionymi na twoim komputerze.\n"
+"Wybrałeś zamknięcie %s'a, który ułatwia zarządzanie\n"
+"aplikacjami projektów uruchomionymi na tym komputerze.\n"
 "\n"
-"Jeżeli chcesz także po zamknięciu Menadżera BOINC\n"
-"zakończyć pracę aplikacji projektów, wybierz z poniższych opcji"
+"Jeżeli chcesz po zamknięciu Menadżera BOINC zakończyć także\n"
+"pracę aplikacji projektów, wybierz spośród poniższych opcji:"
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1395,539 +1527,504 @@ msgstr ""
 "niż całkowicie zamykać aplikację; pozwoli to Menadżerowi %s uruchamiać\n"
 "zadania zgodnie z zasadami wybranymi w Preferencjach."
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
-msgstr "Zamknij aplikacje projektów gdy zamykasz Menadżera BOINC"
+msgstr "Zamknij aplikacje projektów gdy zamykasz Menadżera BOINC."
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr "Pamiętaj tę decyzję i nie pokazuj tego okna w przyszłości."
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "&Anuluj"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr "Nie pokazuj tego okna dialogowego w przyszłości."
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr "&Zamknij"
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr "Właściwości projektu "
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "Ogólne"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr "Główny adres URL"
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
 msgstr "Login:"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr "Nazwa zespołu"
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Przydział zasobów"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
-msgstr ""
+msgstr "Wywołanie serwera projektu opóźnione o "
+
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr "Transfer pliku wstrzymany na"
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr "Odsyłanie wyniku wstrzymane na"
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr "Identyfikator komputera"
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr "Nie wykorzystujÄ…cy aktywnie procesora"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr "tak"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr "nie"
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr "Wstrzymany za pośrednictwem interfejsu graficznego"
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr "Nie żądaj nowych zadań"
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr "Trwa nawiązywanie połączenia z serwerem projektu"
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
 msgstr "Podłączony przy użyciu menadżera kont"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr "Odłącz po zakończeniu"
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr "Zakończony"
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr "Punktacja"
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr "Użytkownik"
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr "Komputer"
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr "Planowanie"
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
-msgstr ""
+msgstr "Planowanie priorytetu przetwarzania dla procesora"
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
-msgstr ""
+msgstr "Priorytet przyporządkowania zadań dla procesora"
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
-msgstr ""
+msgstr "Przyporządkowanie zadań dla procesora opóźnione o "
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
-msgstr ""
+msgstr "Odstęp pomiędzy opóźnieniami przyporządkowania zadań dla procesora"
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr "Priorytety dla GPU nVidia"
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr ""
+"Priorytety przyporządkowania zadań dla procesora karty graficznej nVidia"
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr ""
+"Przyporządkowanie zadań dla procesora karty graficznej nVidia opóźnione o "
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr ""
+"Odstęp pomiędzy opóźnieniami przyporządkowania zadań dla procesora karty "
+"graficznej nVidia"
+
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr "Planowanie priorytetu przetwarzania dla GPU ATI"
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr "Priorytety przyporządkowania zadań dla procesora karty graficznej ATI"
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr "Przyporządkowanie zadań dla procesora karty graficznej ATI opóźnione o "
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+"Odstęp pomiędzy opóźnieniami przyporządkowania zadań dla procesora karty "
+"graficznej ATI"
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr "Korekcja czasu przetwarzania"
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr "Właściwości zadania "
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Aplikacja"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr "Nazwa pliku z danymi"
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr "Stan"
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr "Odebrane"
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Termin zaraportowania"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr "Zasoby"
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr "Czas przetwarzania dla ostatniego punktu przywracania"
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "Czas pracy"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 msgid "Elapsed time"
 msgstr "Czas pracy"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr "Szacowany pozostały czas"
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr "Część wykonana"
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr "Rozmiar pamięci wirtualnej"
 
-#: clientgui/DlgItemProperties.cpp:183
-#, fuzzy
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
-msgstr "Rozmiar zajętej pamięci"
-
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
 msgstr ""
+"Ilość stron wirtualnej pamięci stronicowanej rezydującej aktualnie w pamięci "
+"fizycznej"
+
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr "Katalog"
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr "Identyfikator procesu"
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Pobierany"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "Pobieranie nie powiodło się"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "Pobieranie"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "Projekt wstrzymany przez użytkownika"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr "Wstrzymany"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Wstrzymany"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr " - zasilanie z baterii"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr " - użytkownik jest aktywny"
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr " - aktywność wstrzymana"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr " - określona pora dnia"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr " - pomiar wydajności"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr " - brak dostatecznej ilości wolnej przestrzeni na dysku"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr "Brak dostępnej pamięci RAM"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr "Oczekiwanie na zwolnienie współdzielonej pamięci RAM"
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr "Przetwarzany, wysoki priorytet"
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "Przetwarzany"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr "Zawieszony"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr "OczekujÄ…cy"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "BÅ‚Ä…d"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "Odsyłanie nie powiodło się"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "Odsyłanie"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Przerwany przez użytkownika"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "Przerwany przez serwer projektu"
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "Przerwany"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Zaraportowany"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "Odesłany"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr "BÅ‚Ä…d: niepoprawny status '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
 msgstr "%s - Opcje"
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr "Język:"
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr "Jakiego języka powinien używać Menadżer BOINC?"
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
 msgstr ""
 "Częstotliwość wyświetlania informacji:\n"
-"(minuty)"
+"(w minutach)"
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 "Jak często Menadżer BOINC powinnien przypominać o konieczności nawiązania "
 "połączenia z siecią?"
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
-msgstr "Uruchamiać Menadżera BOINC przy logowaniu?"
+msgstr "Uruchamianie przy logowaniu"
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr "Menadżer BOINC jest uruchamiany przy logowaniu."
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
-msgstr "Wyświetlać okno dialogowe przy zamykaniu Menadżera BOINC?"
+msgstr "Okno dialogowe przy zamykaniu"
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr "Pokazuje okno dialogowe podczas zamykania Menadżera BOINC."
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "Ustawienia połączenia modemowego oraz VPN"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "Ustaw połączenie &domyślne"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "&Usuń połączenie domyślne"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Domyślne połączenie:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Połączenia"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Połącz za pośrednictwem serwera HTTP Proxy"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "Konfiguracja serwera HTTP Proxy"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Adres:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Port:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr "Nie używaj serwera proxy dla:"
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Podaj tylko w razie potrzeby"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Login:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Hasło:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "Serwer HTTP Proxy"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Połącz za pośrednictwem serwera SOCKS Proxy"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "Konfiguracja serwera SOCKS Proxy"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "Serwer SOCKS Proxy"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
 msgid "%s - Select Computer"
 msgstr "%s - Wybierz komputer"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Nazwa komputera:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s =- Nie mogę odnaleźć przeglądarki internetowej"
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
+#, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1943,230 +2040,225 @@ msgstr ""
 "BROWSER jako ścieżkę dostępu do przeglądarki internetowej,\n"
 "a nastepnie zrestartuj %s."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "Forum"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "Wymień informacje z innymi użytkownikami forum SETI at home"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "Zadaj pytanie lub zgłoś problem"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "Twoje konto"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "Sprawdź informacje dotyczące twojego konta"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "Preferencje"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr "Sprawdź lub zmodyfikuj swój profil i preferencje dla projektu SETI at home"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "Wyniki"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr "Sprawdź ostatnie wyniki swoich obliczeń"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "Komputery"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr "Obejrzyj listę twoich komputerów, na których uruchamiasz SETI at home"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "Zespół"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "Obejrzyj informacje dotyczące twojego zespołu"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "FAQ"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "Przeczytaj FAQ projektu Einstein at Home"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "Informacje o wygaszaczu"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "Przeczytaj dokładną instrukcję dotyczącą wygaszacza Einstein at Home"
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr "Porozmawiaj z innymi uczestnikami projektu Einstein at Home"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "Status Einstein at Home"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Obecny status serwerów Einstein at Home"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "Zgłoś problem"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr ""
 "Link służący do zgłaszania problemów związanych z projektem Einstein at Home"
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr ""
 "Sprawdź lub zmodyfikuj swój profil i preferencje dla projektu Einstein at Home"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "Dane dla konta"
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr "Obejrzyj listę twoich komputerów, na których uruchamiasz Einstein at Home"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "Projekt LIGO"
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr "Strona domowa projektu LIGO"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "Projekt GEO-600"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "Strona domowa projektu GEO-600"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Zespół"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "Informacje o twoim zespole"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "Pomoc dla projektu climeteprediction.net"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "Wiadomości"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "Wiadomości dotyczące climeteprediction.net"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr "Sprawdź informacje dotyczące twojego konta"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "Informacje o twoim zespole"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr "Szukaj informacji w naszym systemie pomocy"
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "Statystyki globalne"
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "Sumaryczne statystyki dla World Community Grid"
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr "Moje WCG"
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "Twoje statystyki i ustawienia"
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr "Profile sprzętowe"
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr "Zaktualizuj swoje ustawienia urządzeń"
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr "Projekty / Badania"
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "Zdobądź wiadomości o projektach funkcjonujących na World Community Grid"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr "Uruchamianie usług; proszę czekać..."
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "Sprawdzam stan systemu; proszę czekać..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "Sprawdzam informacje o komputerze; proszę czekać..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "Brak dostępnego połączenia sieciowego"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Połącz się z internetem i spróbuj ponownie."
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Projekt nie został odnaleziony"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2176,11 +2268,11 @@ msgstr ""
 "\n"
 "Sprawdź adres i spróbuj ponownie."
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "Menadżer kont nie został znaleziony"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2191,51 +2283,63 @@ msgstr ""
 "\n"
 "Sprawdź adres URL i spróbuj podać go ponownie."
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr "Logowanie nie powiodło się."
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr "Sprawdź login oraz hasło i spróbuj ponownie."
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr "Sprawdź adres e-mail oraz hasło i spróbuj ponownie."
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr "Wybierz projekt"
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
 "Aby wybrać projekt kliknij jego nazwę albo wpisz jego adres URL poniżej."
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "Adres projektu:"
 
-#: clientgui/ProjectInfoPage.cpp:320
-msgid "You are already attached to this project. Please choose a different project."
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
 msgstr ""
+"Projekt może nie dysponować zadaniami odpowiednimi dla twojego komputera. "
+"Czy na pewno chcesz kontynuować?"
 
-#: clientgui/ProjectInfoPage.cpp:321
-#, fuzzy
-msgid "Already Attached to Project"
-msgstr "Przyłączony do projektu"
+#: clientgui/ProjectInfoPage.cpp:417
+msgid "You are already attached to this project. Please choose a different project."
+msgstr "Jesteś już przyłączony do tego projektu. Wybierz inny projekt."
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
-msgstr ""
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr "Kliknij"
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
-msgstr "Kliknij tutaj aby wejść na na stronę %s."
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr "Obsługa wielordzeniowych CPU"
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr "Obsługa GPU nVidia"
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr "Obsługa GPU ATI"
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr "Strony Projektu"
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
@@ -2243,7 +2347,7 @@ msgstr ""
 "Łączenie się z serwerem projektu\n"
 "Proszę czekać..."
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
@@ -2251,11 +2355,12 @@ msgstr ""
 "Brak wymaganych plików kreatora na docelowym serwerze.\n"
 "(lookup_account.php/create_account.php)\n"
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "BÅ‚Ä…d komunikacji sieciowej"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
+#, fuzzy
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2266,7 +2371,7 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
@@ -2285,7 +2390,7 @@ msgstr ""
 "3) Używasz serwera Proxy.\n"
 "Kliknij Dalej, aby skonfigurować ustawienia proxy."
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2315,493 +2420,471 @@ msgstr ""
 "3) Używasz serwera Proxy.\n"
 "Kliknij Dalej, aby skonfigurować ustawienia proxy."
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Konfiguracja proxy"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "Serwer HTTP Proxy"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "Serwer:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "Autodetekcja"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "Serwer SOCKS Proxy"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr "Widok zaawansowany...\tCtrl+Shift+A"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr "Pokaż zaawansowany interfejs graficzny."
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr "&%s"
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr "Sprawdzam bieżący status."
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr ""
 "Nie uczestniczysz w żadnym projekcie. Przyłącz się do któregoś z projektów."
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr "Pobieranie danych z serwera."
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr "Przetwarzanie wstrzymane: zasilanie z baterii."
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr "Przetwarzanie wstrzymane: komputer w użyciu."
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr "Przetwarzanie wstrzymane: użytkownik wstrzymał zadanie."
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr "Przetwarzanie wstrzymane: warunek dla pory dnia."
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr "Przetwarzanie wstrzymane: pomiar wydajności komputera."
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr "Przetwarzanie wstrzymane."
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr "Oczekiwanie na połączenie z serwerem projektu."
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr "Sprawdzam bieżący status"
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr "Brak dostępnych do przetwarzania danych"
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr "Nie można się połączyć z klientem BOINC"
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Projekt"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "Czas"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Wiadomość"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Kopiuje wszystkie wiadomości do schowka."
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 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 ""
 "Kopiuje wybrane wiadomości do schowka. Możesz wybrać kilka wiadomości, "
 "używając klawiszy Shift oraz Ctrl."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
 "Kopiuje wybrane wiadomości do schowka. Możesz wybrać kilka wiadomości, "
 "używając klawiszy Shift oraz Ctrl."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr "Strona pomocy BOINC"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr "%s - Wiadomości"
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr "100 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr "200 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr "500 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr "1 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr "2 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr "5 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr "10 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr "20 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr "50 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr "100 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr "10%"
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr "20%"
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr "30%"
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr "40%"
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr "50%"
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr "60%"
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr "70%"
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr "80%"
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr "90%"
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr "100%"
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr "1"
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr "3"
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr "5"
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr "10"
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr "15"
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr "30"
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr "60"
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr "Skórka"
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr "Skórka:"
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr "Preferencje"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr "Chcę ustalić lub zmienić preferencje tylko dla tego komputera."
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr "Wybrane ustawienia preferencji"
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr "Przetwarzaj dane tylko pomiędzy:"
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr "Łącz się z internetem tylko pomiędzy:"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr "Używaj nie więcej niż:"
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
-msgstr "przestrzeni dysku"
+msgstr "przestrzeni dysku."
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
-msgstr "mocy obliczeniowej procesora"
+msgstr "mocy obliczeniowej procesora."
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
-msgstr "Przetwarzanie danych podczas zasilania z baterii?"
+msgstr "Przetwarzaj dane przy zasilaniu z baterii."
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
-msgstr "Przetwarzanie danych tylko po bezczynności przez:"
-
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+msgstr "Przetwarzanie tylko po bezczynności przez:"
+
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr "Zawsze"
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr "%d MB"
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr "%4.2f GB"
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr "%d%%"
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
-msgstr "0 (natychmiast)"
+msgstr "0 (ciÄ…gle)"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr "%d"
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr "Wstrzymany: przetwarzanie innego zadania"
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr ""
 "Wstrzymany: wymuszone przez użytkownika. Kliknij 'Wznów\" aby kontynuować "
 "przetwarzanie tego zadania."
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr "Wstrzymany: użytkownik jest aktywny"
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr "Wstrzymany: zasilanie z baterii"
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr "Wstrzymany: określona pora dnia"
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr "Wstrzymany: pomiar wydajności"
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr "Wstrzymany"
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr "Wstrzymany: opóźnione uruchomienie aplikacji"
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr "Kliknij aby pokazać grafikę projektu"
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr "Przyłącz się do kolejnego projektu"
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr "Zsynchronizuj projekty z bazą danych menadżera kont"
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr "Otwórz okno Wiadomości"
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr "Wstrzymaj aktywność"
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr "Wznów aktywność"
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr "Otwórz okno Preferencji"
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr "Przełącz do widoku zaawansowanego Menadżera BOINC"
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr "Moje Projekty:"
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr "%s. Wynik całkowity uczestnika %s: %0.2f"
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr "Usuń Projekt"
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "Czy jesteś pewny, że chcesz opuścić projekt '%s'?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "Opuść projekt"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr "%.1lf"
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr "%d godz %d min %d sek"
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr "Czy jesteś pewien, że chcesz pokazać grafike na zdalnym komputerze?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Pokaż grafikę"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
 msgstr "Aplikacja: "
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
-msgstr "Do końca:"
+msgstr "Pozostały czas: "
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
-msgstr "Czas trwania"
+msgstr "Czas trwania: "
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr "Zasady użytkowania"
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr "Zapoznaj się z następującymi zasadami użytkowania:"
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr "Zgadzam się z zasadami użytkowania."
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr "Nie zgadzam się z zasadami użytkowania."
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Projekt tymczasowo niedostępny"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2811,11 +2894,11 @@ msgstr ""
 "\n"
 "Spróbuj ponownie później."
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "Menadżer kont jest czasowo niedostępny"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2825,32 +2908,32 @@ msgstr ""
 "\n"
 "Spróbuj ponownie później."
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "Podaj klucz aby kontynuować."
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr "Niprawidłowy klucz; podaj prawidłowy klucz"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "BÅ‚Ä…d uwierzytelniania"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr "Podaj adres e-mail"
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr "Nieprawidłowy adres e-mail; wprowadź prawidłowy adres"
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "Brak adresu URL"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2860,18 +2943,18 @@ msgstr ""
 "Na przykład:\n"
 "http://www.example.com"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "Nieprawidłowy adres URL"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2881,608 +2964,507 @@ msgstr ""
 "Na przykład:\n"
 "http://boincproject.example.com"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "'%s' nie zawiera poprawnej nazwy hosta."
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "'%s' nie zawiera poprawnej ścieżki."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "Polecenia"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Kopiuj wszystkie wiadomości"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Kopiuj wybrane wiadomości"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
-msgstr "Pokaż tylko ten projekt"
+msgstr "Tylko wybrany projekt"
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr "Pokazuje wiadomości związane tylko z wybranym projektem."
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Wiadomości"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "Kopiowanie wszystkich wiadomości do schowka..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 msgid "Copying selected messages to the clipboard..."
 msgstr "Kopiowanie wybranych wiadomości do schowka..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr "Filtrowanie wiadomości..."
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 msgid "Show all messages"
 msgstr "Pokaż wszystkie wiadomości"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr "Pokazuje wiadomości dotyczące wszystkich projektów."
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr "Identyfikator"
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr "Priorytet"
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr "Wiadomości - lista"
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr "Kopiuję wybrane wiadomości do schowka..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr "Informacja"
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr "Ostrzeżenie"
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr "BÅ‚Ä…d"
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
-msgstr ""
+msgstr "Wiadomości"
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
-msgstr ""
+msgstr "BOINC"
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
-msgstr ""
+msgstr "Pokaż najnowsze wiadomości dotyczące BOINC"
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
-msgstr ""
+msgstr "Strona główna Projektu BOINC"
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr ""
+"Pokaż najnowsze wiadomości dotyczące BOINC ze strony głównej Projektu BOINC"
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Zaktualizuj projekt"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr ""
 "Przesyła informacje o zakończonych obliczeniach oraz aktualizuje preferencje "
 "i wyniki dla danego projektu."
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Wstrzymaj"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr "Wstrzymuje przetwarzanie zadań dla danego projektu."
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr "Nie pobieraj danych"
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr "Nie pobieraj nowych zadań do przetwarzania w tym projekcie."
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Zrestartuj projekt"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 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 ""
 "Usuwa wszystkie pliki zwiÄ…zane z danym projektem i pobiera nowÄ… porcjÄ™ "
 "danych do przetwarzania. Użyj wcześniej funkcji: 'Zaktualizuj' dla danego "
 "projektu."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Opuść projekt"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr ""
 "Odłącza ten komputer od wybranego projektu. Dane będące aktualnie w toku "
 "przetwarzania zostaną utracone. Użyj wczesniej funkcji: 'Zaktualizuj' dla "
 "danego projektu."
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr "Właściwości"
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr "Pokazuje szczegóły projektu."
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Konto"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "Wynik całkowity"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr "Wynik bieżący"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Status"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Projekty"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "Aktualizowanie projektu..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "Wznawianie projektu..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "Wstrzymywanie projektu..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr "Przekazywanie projektowi aby wznowił przydzielanie dodatkowych zadań..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "Przekazywanie projektowi aby wstrzymał przydzielanie nowych zadań..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "Restartowanie projektu..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Czy jesteś pewny, że chcesz zrestartować projekt '%s'?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Zrestartuj projekt"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "Opuszczanie projektu..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "Otwieranie okna przeglÄ…darki..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Wznów"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "Wznów zadania przetwarzane w tym projekcie."
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "Pobieraj nowe dane"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr "Wznawia pobieranie nowych danych dla danego projektu."
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "Wstrzymuje pobieranie nowych danych dla danego projektu."
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Projekt wstrzymany przez użytkownika"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "Nie pobieraj nowych danych"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr "Projekt zakończony - naciśnij OK aby go opuścić"
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr "Odłącza użytkownika od projektu, po jego zakończeniu."
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Oczekiwanie na połączenie z serwerem projektu"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr "Trwa nawiązywanie połączenia z serwerem projektu"
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "Ponowna próba połączenia za: "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr "Projekty - lista"
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr "Całkowite użycie dysku twardego:"
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr "Użycie dysku przez projekty BOINC:"
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Dysk twardy"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr "Nie przypisane do żadnego z projektów BOINC - 0 bajtów"
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr "przestrzeń używana przez BOINC - "
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr "wolna przestrzeń, dostępna dla BOINC - "
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr "wolna przestrzeń, niedostępna dla BOINC - "
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr "wolna przestrzeń - "
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr "przestrzeń używana przez inne aplikacje - "
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Całkowite statystyki uczestnika"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Bieżące statystyki uczestnika"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Całkowite statystyki komputera"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Bieżące statystyki komputera"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
 msgstr "Ostatnia aktualizacja: %.0f dni temu"
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Całkowite wyniki uczestnika"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr "Pokazuje całkowite statystyki uczestnika."
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "Bieżące wyniki uczestnika"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr "Pokazuje bieżące statystyki uczestnika."
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Całkowite wyniki komputera"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr "Pokazuje całkowite statystyki komputera."
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "Bieżące wyniki komputera"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr "Pokazuje bieżące statystyki komputera."
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< &Poprzedni projekt"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr "Pokazuje wykres dla poprzedniego projektu."
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "&Następny projekt >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr "Pokazuje wykres dla następnego projektu."
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "Rodzaj widoku"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "Wszystkie projekty (osobno)"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr "Pokazuje wykresy dla wszystkich projektów."
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "Pojedynczy projekt"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr "Pokazuje wykres dla wybranego projektu."
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr "Wszystkie projekty (Å‚Ä…cznie)"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr "Pokazuje wspólny wykres dla wszystkich projektów."
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Statystyki"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "Aktualizacja wykresów..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Próbuj ponownie"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr ""
 "Naciśnięcie przycisku 'Próbuj ponownie' spowoduje podjęcie próby ponownego "
 "odesłania lub pobrania pliku."
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Przerwij przesyłanie pliku"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr ""
 "Naciśnięcie przycisku 'Przerwij przesyłanie pliku' spowoduje przerwanie "
 "transferu odsyłanego lub pobieranego pliku. Jeśli jest to odsyłany plik z "
 "wynikami obliczeń, nie otrzymasz punktów za to zadanie."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "Plik"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Postęp"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Rozmiar"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "Czas trwania"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Szybkość"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Przesyłanie"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "Ponawianie próby przesłania..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "Przerywam przesyłanie..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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"
@@ -3493,34 +3475,42 @@ msgstr ""
 "pobranej części.\n"
 "Jeśli jest to plik z wynikami obliczeń, nie otrzymasz punktów za to zadanie."
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Przerwij przesyłanie pliku"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "Ponowna próba za: "
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr "Kolejka odsyłania"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "Kolejka pobierania"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr "(dziwne jakieś ścierwo "
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ")"
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr "Przesyłanie - lista"
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 msgid "Aborting transfer(s)..."
 msgstr "Przerywanie przesyłania plików..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
@@ -3530,76 +3520,81 @@ msgstr ""
 "UWAGA: Przerwanie przesyłania pliku spowoduje, że to zadanie zostanie\n"
 "unieważnione i nie otrzymasz za nie punktów."
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 msgid "Abort File Transfer(s)"
 msgstr "Przerywanie przesyłania plików"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr "Pokaż aktywne zadania"
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr "Wyświetla wyłącznie aktywne zadania."
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "Pokaż grafikę aplikacji w oknie."
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "Wstrzymuje przetwarzanie tego zadania."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Przerwij"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr ""
 "Przerwij przetwarzanie tego zadania. Nie otrzymasz za to zadanie punktów."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr "Pokazuje szczegóły zadania."
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Nazwa"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
-msgstr ""
+msgstr "Upłynęło"
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
-msgstr "Pozostało"
+msgstr "Do ukończenia"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Zadania"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "Wznawianie zadania..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "Wstrzymywanie zadania..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "Wyświetlanie grafiki dla zadania..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Przerywanie zadania..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
@@ -3608,36 +3603,62 @@ msgstr ""
 "(Postęp: %s, Status: %s)\n"
 "Po przerwaniu zadania nie otrzymasz za nie punktów!"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "Czy jesteś pewien, że chcesz przerwać te zadania %d?"
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "Przerwij zadanie"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Przerywanie zadania..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr "Pokaż wszystkie zadania"
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr "Wyświetla wszystkie zadania."
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr "Wznów to zadanie."
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr "Wstrzymaj to zadanie."
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr "Brak dostępnego GPU, "
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr "- uruchomiona aplikacja z priorytetem wyłączności"
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr " (nie wykorzystujÄ…cy intensywnie CPU)"
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr "Usunięty: zbyt mało czasu na przetwarzanie zadania"
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr "Zadania - lista"
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
@@ -3646,12 +3667,12 @@ msgstr ""
 "(Postęp: %s %%, Status: %s)\n"
 "Po przerwaniu zadania nie otrzymasz za nie żadnych punktów!"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
-msgstr "Zmień pobierane aplikacje World Commmunity Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr "Przyłącz się"
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3665,13 +3686,15 @@ msgstr ""
 "Projekty dodane przy użyciu tego kreatora\n"
 "nie będą widoczne oraz zarządzane przez %s."
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
-msgstr "Zostaniesz przeprowadzony przez proces przyłączania się do projektu."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
+"Zostaniesz przeprowadzony przez proces przyłączania się\n"
+"do projektu albo łączenia się z menadżerem kont."
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3700,148 +3723,291 @@ msgstr ""
 "komputerze\n"
 "naciśnij poniższy przycisk:"
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
-msgstr "&Zakończ używanie %s"
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-"Ten komputer zostanie usunięty z %s. Od tej chwili,\n"
-"przyłączaj i odłączaj się od projektów bezpośrednio z tego komputera.\n"
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "Menadżer kont"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"ostaniesz przeprowadzony przez proces podłączania się\n"
-"do menadżera kont.\n"
-"\n"
-"Jeżeli chcesz przyłączyć się do pojedynczego projektu, kliknij Anuluj,\n"
-"a nastepnie wybierz 'Przyłącz się do projektu...' z menu Opcje."
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "Ustawienia debuggowania"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "Nie udało się wejść do właściwości projektu"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr "Nie udało się skontaktować z serwerem projektu"
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "Strona właściwości projektu nie działa lub jest niedostępna"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "Zakładanie nowych kont w projekcie wstrzymane"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "Zakładanie kont nowych użytkowników wstrzymane"
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "Takie konto już istnieje"
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "Jesteś już przyłączony do tego projektu"
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "Przyłączenie do projektu nie powiodło się"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
-msgstr "Nie udało się nawiązać połączenia z referencyjną stroną www"
-
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "Brak dostępu do sieci"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr "Zmień pobierane aplikacje World Commmunity Grid"
 
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "Naciśnij 'Dalej' aby kontynuować."
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "Czy na pewno chcesz anulować?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "Pytanie"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "&Dalej >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< &Wstecz"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "&Zakończ"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
 msgid "New page inserted. Index = %i"
 msgstr "Nowa strona wprowadzona. Indeks = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
 msgid "New page appended. Index = %i"
 msgstr "Nowa strona dodana. Indeks = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
 msgid "Old Page Index = %i"
 msgstr "Indeks starej strony = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
 #, c-format
 #, fuzzy
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr "Co to za dziwo??: Gdzie to siÄ™ pokazuje?? = %i"
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr "Legenda"
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:184
+#, fuzzy
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+"Aby skorzystać z ułatwień dostępu wybierz Zaawansowane z menu Widok albo "
+"użyj komendy Shift A"
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+"Ten panel zawiera wykresy pokazujące całkowite wyniki uczestnika w "
+"projektach"
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr "pusty"
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr "lista "
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr "jest pusta"
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr "%d of %d; "
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr "włączone sortowanie po "
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr "porzÄ…dek malejÄ…cy "
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr "porzÄ…dek rosnÄ…cy "
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr "kolumna "
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr "lista jest pusta"
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr "wybrany/a "
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr "wiersz %d "
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr " %d; "
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr "kolumna %d; "
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr "lista projektów albo menadżerów kont"
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr "wiersz %d z %d; "
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 "Podaj godziny rozpoczęcia i zakończenia pracy w formacie HH:MM-HH:MM\n"
 "Godzina rozpoczęcia musi być wcześniejsza niż godzina zakończenia"
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 "Podaj godziny rozpoczęcia i zakończenia dostępności sieci w formacie HH:MM-"
 "HH:MM\n"
 "Godzina rozpoczęcia musi być wcześniejsza niż godzina zakończenia"
 
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "Zamknij okno\tCtrl+W"
+
+#~ msgid "&News\tCtrl+Shift+N"
+#~ msgstr "&Info\tCtrl+Shift+N"
+
+#~ msgid "Display news"
+#~ msgstr "Pokaż info"
+
+#, fuzzy
+#~ msgid ""
+#~ "You currently are not authorized to manage the client.\n"
+#~ "Please contact your administrator to add you to the 'boinc_master' user group."
+#~ msgstr ""
+#~ "Obecnie nie masz uprawnień do zarządzania klientem BOINC.\n"
+#~ "Skontaktuj się z administratorem, aby dołączył cię do grupy użytkowników "
+#~ "'boinc_users' na tym komputerze."
+
+#~ msgid "User information"
+#~ msgstr "Informacje o uczestniku"
+
+#~ msgid "Account Manager URL"
+#~ msgstr "Adres URL menadżera kont"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "Wprowadź adres URL menadżera kont."
+
+#~ msgid "Close BOINC Manager Window."
+#~ msgstr "Zamykanie okna Menadżera BOINC."
+
+#, c-format
+#~ msgid "Exit the %s"
+#~ msgstr "Zamykanie %s'a"
+
+#~ msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
+#~ msgstr ""
+#~ "Widok zaawansowany pozwala na sortowanie w kolumnach po różnych parametrach "
+#~ "oraz pokazuje graficznie postęp obliczeń."
+
+#~ msgid "Attach to a project"
+#~ msgstr "Przyłączanie się do projektu."
+
+#~ msgid "Attach to &account manager..."
+#~ msgstr "Połącz z menadżerem kont..."
+
+#~ msgid "Attach to an account manager"
+#~ msgstr "Łączenie się z menadżerem kont."
+
+#~ msgid "Attach to &project"
+#~ msgstr "Przyłącz się do &projektu"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "Przyłączam do projektu..."
+
+#, c-format
+#~ msgid "Removal from %s completed."
+#~ msgstr "Odłączanie się od %s zakończone."
+
+#~ msgid "Removal succeeded!"
+#~ msgstr "Odłączenie zakończone sukcesem."
+
+#~ msgid "Write to disk at most every"
+#~ msgstr "zapisuj na dysku co "
+
+#, fuzzy
+#~ msgid "Already Attached to Project"
+#~ msgstr "Przyłączony do projektu"
+
+#, c-format
+#~ msgid "Click here to go to %s's website."
+#~ msgstr "Kliknij tutaj aby wejść na na stronę %s."
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr "Zostaniesz przeprowadzony przez proces przyłączania się do projektu."
+
+#, c-format
+#~ msgid "&Stop using%s"
+#~ msgstr "&Zakończ używanie %s"
+
+#, c-format
+#~ msgid ""
+#~ "We'll now remove this computer from %s.  From now on,\n"
+#~ "attach and detach projects directly from this computer.\n"
+#~ msgstr ""
+#~ "Ten komputer zostanie usunięty z %s. Od tej chwili,\n"
+#~ "przyłączaj i odłączaj się od projektów bezpośrednio z tego komputera.\n"
+
+#~ msgid "Account manager"
+#~ msgstr "Menadżer kont"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to an account manager.\n"
+#~ "\n"
+#~ "If you want to attach to a single project, click Cancel,\n"
+#~ "then select the 'Attach to project' menu item instead."
+#~ msgstr ""
+#~ "ostaniesz przeprowadzony przez proces podłączania się\n"
+#~ "do menadżera kont.\n"
+#~ "\n"
+#~ "Jeżeli chcesz przyłączyć się do pojedynczego projektu, kliknij Anuluj,\n"
+#~ "a nastepnie wybierz 'Przyłącz się do projektu...' z menu Opcje."
+
+#~ msgid "Debug Flags"
+#~ msgstr "Ustawienia debuggowania"
+
+#~ msgid "Project Properties Failure"
+#~ msgstr "Nie udało się wejść do właściwości projektu"
+
+#~ msgid "Project Communication Failure"
+#~ msgstr "Nie udało się skontaktować z serwerem projektu"
+
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "Strona właściwości projektu nie działa lub jest niedostępna"
+
+#~ msgid "Account Creation Disabled"
+#~ msgstr "Zakładanie nowych kont w projekcie wstrzymane"
+
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "Zakładanie kont nowych użytkowników wstrzymane"
+
+#~ msgid "Account Already Exists"
+#~ msgstr "Takie konto już istnieje"
+
+#~ msgid "Project Already Attached"
+#~ msgstr "Jesteś już przyłączony do tego projektu"
+
+#~ msgid "Project Attach Failure"
+#~ msgstr "Przyłączenie do projektu nie powiodło się"
+
+#~ msgid "Failure Communicating with Reference Site"
+#~ msgstr "Nie udało się nawiązać połączenia z referencyjną stroną www"
+
+#~ msgid "Net Detection Failure"
+#~ msgstr "Brak dostępu do sieci"
+
 #~ msgid ""
 #~ "You can copy and paste the URL from your browser's\n"
 #~ "address bar."
@@ -3924,14 +4090,6 @@ msgstr ""
 #~ "UWAGA: Wybranie 'OK' spowoduje pojawienie siÄ™ okna wyboru nowego\n"
 #~ "komputera, a zatem będziesz mógł się podłączyć do innego klienta BOINC."
 
-#, c-format
-#~ msgid ""
-#~ "BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
-#~ "(Error code %d)"
-#~ msgstr ""
-#~ "Ustawienia zabezpieczeń i/lub własności dla BOINC są niepoprawne; zreinstaluj BOINC.\n"
-#~ "(Kod błędu %d)"
-
 #~ msgid "Click here to disable displaying this message in the future."
 #~ msgstr "Zaznacz aby wyłączyć pokazywanie się tej informacji w przyszłości."
 
@@ -3959,3 +4117,145 @@ msgstr ""
 #, c-format
 #~ msgid "Yahoo Comm Failure"
 #~ msgstr "Próba kontaktu z witryną Yahoo pozostaje bez odpowiedzi"
+
+#~ msgid "User information"
+#~ msgstr "Informacje o uczestniku"
+
+#~ msgid "Account Manager URL"
+#~ msgstr "Adres URL menadżera kont"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "Wprowadź adres URL menadżera kont."
+
+#~ msgid "Close BOINC Manager Window."
+#~ msgstr "Zamykanie okna Menadżera BOINC."
+
+#, c-format
+#~ msgid "Exit the %s"
+#~ msgstr "Zamykanie %s'a"
+
+#~ msgid "&Advanced View"
+#~ msgstr "Widok &zaawansowany"
+
+#~ msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
+#~ msgstr "Widok zaawansowany pozwala na sortowanie w kolumnach po różnych parametrach oraz pokazuje graficznie postęp obliczeń."
+
+#~ msgid "&Simple View..."
+#~ msgstr "&Widok uproszczony"
+
+#~ msgid "Display the simple BOINC graphical interface."
+#~ msgstr "Przełączanie do widoku uproszczonego."
+
+#~ msgid "Attach to a project"
+#~ msgstr "Przyłączanie się do projektu."
+
+#~ msgid "Attach to &account manager..."
+#~ msgstr "Połącz z menadżerem kont..."
+
+#~ msgid "Attach to an account manager"
+#~ msgstr "Łączenie się z menadżerem kont."
+
+#~ msgid "Network activity based on &preferences"
+#~ msgstr "Dostęp do sieci zgodnie z &preferencjami"
+
+#~ msgid "&Network activity suspended"
+#~ msgstr "&Zablokuj dostęp do sieci"
+
+#~ msgid "Attach to &project"
+#~ msgstr "Przyłącz się do &projektu"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "Przyłączam do projektu..."
+
+#, c-format
+#~ msgid "Removal from %s completed."
+#~ msgstr "Odłączanie się od %s zakończone."
+
+#~ msgid "Removal succeeded!"
+#~ msgstr "Odłączenie zakończone sukcesem."
+
+#~ msgid "Write to disk at most every"
+#~ msgstr "zapisuj na dysku co "
+
+# A to co za dziwo? Gdzie się pokazuje? Przecież jako "szczelina" tego nie przetłumaczymy do diabła, ani jako "trop".
+#, fuzzy
+#~ msgid "Slot"
+#~ msgstr "Uchwyt"
+
+#~ msgid "Already Attached to Project"
+#~ msgstr "Przyłączony do tego projektu"
+
+#~ msgid "This project may not have work for your type of computer."
+#~ msgstr ""
+#~ "Ten projekt może nie mieć próbek do przetwarzania dla tego typu "
+#~ "komputera/systemu operacyjnego."
+
+#, c-format
+#~ msgid "Click here to go to %s's website."
+#~ msgstr "Kliknij tutaj aby wejść na na stronę %s."
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr "Zostaniesz przeprowadzony przez proces przyłączania się do projektu."
+
+#, c-format
+#~ msgid "&Stop using%s"
+#~ msgstr "&Zakończ używanie %s"
+
+#, c-format
+#~ msgid ""
+#~ "We'll now remove this computer from %s.  From now on,\n"
+#~ "attach and detach projects directly from this computer.\n"
+#~ msgstr ""
+#~ "Ten komputer zostanie usunięty z %s. Od tej chwili,\n"
+#~ "przyłączaj i odłączaj się od projektów bezpośrednio z tego komputera.\n"
+
+#~ msgid "Account manager"
+#~ msgstr "Menadżer kont"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to an account manager.\n"
+#~ "\n"
+#~ "If you want to attach to a single project, click Cancel,\n"
+#~ "then select the 'Attach to project' menu item instead."
+#~ msgstr ""
+#~ "ostaniesz przeprowadzony przez proces podłączania się\n"
+#~ "do menadżera kont.\n"
+#~ "\n"
+#~ "Jeżeli chcesz przyłączyć się do pojedynczego projektu, kliknij Anuluj,\n"
+#~ "a nastepnie wybierz 'Przyłącz się do projektu...' z menu Opcje."
+
+#~ msgid "Debug Flags"
+#~ msgstr "Ustawienia debuggowania"
+
+#~ msgid "Project Properties Failure"
+#~ msgstr "Nie udało się wejść do właściwości projektu"
+
+#~ msgid "Project Communication Failure"
+#~ msgstr "Nie udało się skontaktować z serwerem projektu"
+
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "Strona właściwości projektu nie działa lub jest niedostępna"
+
+#~ msgid "Account Creation Disabled"
+#~ msgstr "Zakładanie nowych kont w projekcie wstrzymane"
+
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "Zakładanie kont nowych użytkowników wstrzymane"
+
+#~ msgid "Account Already Exists"
+#~ msgstr "Takie konto już istnieje"
+
+#~ msgid "Project Already Attached"
+#~ msgstr "Jesteś już przyłączony do tego projektu"
+
+#~ msgid "Project Attach Failure"
+#~ msgstr "Przyłączenie do projektu nie powiodło się"
+
+#~ msgid "Failure Communicating with Reference Site"
+#~ msgstr "Nie udało się nawiązać połączenia z referencyjną stroną www"
+
+#~ msgid "Net Detection Failure"
+#~ msgstr "Brak dostępu do sieci"
diff --git a/locale/pl/BOINC-Project-Generic.po b/locale/pl/BOINC-Project-Generic.po
index 5e4c77c..c896835 100644
--- a/locale/pl/BOINC-Project-Generic.po
+++ b/locale/pl/BOINC-Project-Generic.po
@@ -29,7 +29,7 @@ msgstr "Przeszukaj fora"
 msgid "Advanced search"
 msgstr "Zaawansowane wyszukiwanie"
 
-#########################################
+# ########################################
 # Private messages
 msgid "Private messages"
 msgstr "Prywatne wiadomości"
@@ -63,7 +63,7 @@ msgstr ""
 msgid "Thread"
 msgstr "Tematy"
 
-#########################################
+# ########################################
 # Forum
 msgid "Posts"
 msgstr "Posty"
@@ -499,12 +499,12 @@ msgstr "OczekujÄ…ce zaproszenia"
 msgid "Add as friend"
 msgstr "Dodaj jako przyjaciela"
 
-####################################
+# ###################################
 # Language: Polish [rev. 1.40 (12.09.2007/18:15)]
 # FileID  : $Id: pl.po 14266 2007-11-20 06:29:21Z JensSeidler $
 # Author  : Bartosz Kaszubowski
 # Email   : gosimek at gmail.com
-##########################################
+# #########################################
 # For more information please see:
 # http://boinc.berkeley.edu/web_translation.php
 # The charset used for the text in this file (please try to use UTF-8 if possible)
@@ -523,12 +523,12 @@ msgstr "Jeśli chcesz, wybierz kraj, który reprezentujesz."
 msgid "Postal or ZIP Code"
 msgstr "Kod pocztowy"
 
-#########################################
+# ########################################
 # General stuff (create_account_form.php and others)
 msgid "Optional"
 msgstr "Nie jest wymagany; możesz go podać jeśli chcesz"
 
-#########################################
+# ########################################
 # Apps page (apps.php)
 msgid "Applications"
 msgstr "Aplikacje"
@@ -560,7 +560,7 @@ msgstr "Aby stworzyć konto w tym projekcie musisz posiadać kod rejestracyjny."
 msgid "The invitation code you gave is not valid."
 msgstr "Wpisany kod rejestracyjny jest nieprawidłowy."
 
-#########################################
+# ########################################
 # Create account form (create_account_form.php)
 msgid "Create an account"
 msgstr "Stwórz konto"
@@ -732,7 +732,7 @@ msgstr "Nazwa"
 msgid "Add my signature to this post"
 msgstr "Dodaj mojÄ… sygnaturÄ™ do tego postu"
 
-#########################################
+# ########################################
 # Forum sample index page
 msgid "%1 Message boards"
 msgstr "Forum dyskusyjne %1"
@@ -751,7 +751,7 @@ msgstr "Stwórz nowy temat"
 msgid "Post to thread"
 msgstr "Odpowiedz na temat"
 
-#########################################
+# ########################################
 # Forum search features
 msgid "Forum search"
 msgstr "Szukaj na forum"
@@ -765,7 +765,7 @@ msgstr ""
 msgid "This forum is not visible to you."
 msgstr ""
 
-#########################################
+# ########################################
 # Forum thread
 msgid "This thread has been hidden for administrative purposes"
 msgstr "Ten temat został ukryty przez administrację forum"
@@ -964,13 +964,13 @@ msgstr "Witaj w %1"
 msgid "View and edit your account preferences using the links below."
 msgstr "Zobacz lub zmień ustawiania swojego konta używając poniższych linków."
 
-########################################
+# #######################################
 # "Your account" page (home.php)
-#########################################
+# ########################################
 msgid "Your account"
 msgstr "Twoje konto"
 
-#########################################
+# ########################################
 # Rules and Policies page (info.php)
 msgid "Read our rules and policies"
 msgstr "Zasady i reguły"
@@ -1309,7 +1309,7 @@ msgstr ""
 msgid "Statistics for %1"
 msgstr ""
 
-#########################################
+# ########################################
 # Various top table pages (top users, computers, teams)
 msgid "Top participants"
 msgstr "Najlepsi uczestnicy"
@@ -1388,8 +1388,9 @@ msgstr ""
 msgid "Could not create team - please try later."
 msgstr ""
 
+#, fuzzy
 msgid "Create a team"
-msgstr ""
+msgstr "Stwórz nowy temat"
 
 msgid ""
 "You belong to %1. You must %2quit this team%3 before creating a new one."
@@ -1483,10 +1484,12 @@ msgstr ""
 #~ msgid "Really delete?"
 #~ msgstr "Na pewno usunąć?"
 
-#~ msgid "Are you sure you want to delete the message with subject &quot;%1&quot; (sent by %2 on %3)?"
+#~ msgid ""
+#~ "Are you sure you want to delete the message with subject &quot;%1&quot; "
+#~ "(sent by %2 on %3)?"
 #~ msgstr ""
-#~ "Jesteś pewny, że chcesz usunąć wiadomość o tytule &quot;%1&quot; (wysłaną %3 "
-#~ "przez użytkownika %2)?"
+#~ "Jesteś pewny, że chcesz usunąć wiadomość o tytule &quot;%1&quot; (wysłaną "
+#~ "%3 przez użytkownika %2)?"
 
 #~ msgid "Yes, delete"
 #~ msgstr "Tak, usuń"
@@ -1494,8 +1497,12 @@ msgstr ""
 #~ msgid "No such message."
 #~ msgstr "Nie ma takiej wiadomości."
 
-#~ msgid "Account creation is disabled for %1 at the moment. Please try again later."
-#~ msgstr "W tej chwili możliwość stworzenia konta w projekcie %1 jest zawieszona. Śledź nowinki tego projektu i jeśli chcesz, spróbuj stworzyć nowe konto za jakiś czas."
+#~ msgid ""
+#~ "Account creation is disabled for %1 at the moment. Please try again later."
+#~ msgstr ""
+#~ "W tej chwili możliwość stworzenia konta w projekcie %1 jest zawieszona. "
+#~ "Śledź nowinki tego projektu i jeśli chcesz, spróbuj stworzyć nowe konto "
+#~ "za jakiÅ› czas."
 
 #~ msgid "USER_TABLE_NAME"
 #~ msgstr "Nazwa"
@@ -1527,9 +1534,9 @@ msgstr ""
 #~ msgid "You have no unread private messages."
 #~ msgstr "Nie masz nowych prywatnych wiadomości."
 
-#########################################
+# ########################################
 # Links from the main page
-#########################################
+# ########################################
 #~ msgid "LINKS_QA"
 #~ msgstr "Pytania i odpowiedzi"
 
diff --git a/locale/pl/BOINC-Web.po b/locale/pl/BOINC-Web.po
index d00cb5a..ea0a6f9 100644
--- a/locale/pl/BOINC-Web.po
+++ b/locale/pl/BOINC-Web.po
@@ -2,9 +2,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
-"PO-Revision-Date: 2009-01-05 09:59-0700\n"
-"Last-Translator: Bartosz Kaszubowski <gosimek at gmail.com>\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
+"PO-Revision-Date: 2009-11-21 16:18-0700\n"
+"Last-Translator: Marek Czerwonka <marekz at mensa.org.pl>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "Language: pl\n"
 "MIME-Version: 1.0\n"
@@ -21,384 +21,318 @@ msgstr ""
 "X-Poedit-Country: UNITED STATES\n"
 "X-Poedit-KeywordsList: tra\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
-msgstr ""
-
-"
+msgstr "[zaznacz wszystko co dotyczy]"
 
+#: poll.inc:47
 msgid "Other:"
-msgstr ""
-
-"
+msgstr "Inny:"
 
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
-msgstr ""
-
-"
+msgstr "Tak - używałem BOINC na moim komputerze..."
 
+#: poll_data.inc:22
 msgid "less than a week"
-msgstr ""
-
-"
+msgstr "krócej niż tydzień"
 
+#: poll_data.inc:23
 msgid "less than a month"
-msgstr ""
-
-"
+msgstr "krócej niż miesiąc"
 
+#: poll_data.inc:24
 msgid "less than a year"
-msgstr ""
-
-"
+msgstr "krócej niż rok"
 
+#: poll_data.inc:25
 msgid "more than a year"
-msgstr ""
-
-"
+msgstr "dłużej niż rok"
 
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
-msgstr ""
-
-"
+msgstr "Nie - kiedyś używałem BOINC, ale..."
 
+#: poll_data.inc:34
 msgid "I lost interest"
-msgstr ""
-
-"
+msgstr "straciłem zainteresowanie"
 
+#: poll_data.inc:35
 msgid "it was too complicated"
-msgstr ""
-
-"
+msgstr "to było zbyt skomplikowane"
 
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
-msgstr ""
-
-"
+msgstr "wyłączyłem go i zapomniałem uruchomić ponownie"
 
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
-msgstr ""
-
-"
+msgstr "spowodował problemy z moim komputerem"
 
+#: poll_data.inc:38
 msgid "it used too much electricity"
-msgstr ""
-
-"
+msgstr "zużywał zbyt wiele energii elektrycznej"
 
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr ""
+"przeszedłem na inny projekt przetwarzania rozproszonego poza platformą BOINC"
 
-"
-
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
-msgstr ""
-
-"
+msgstr "Nie - próbowałem używać BOINC, ale..."
 
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
-msgstr ""
-
-"
+msgstr "oprogramowanie nie zainstalowało się poprawnie"
 
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
-msgstr ""
-
-"
+msgstr "nie mogłem zrozumieć jak korzystać z oprogramowania"
 
+#: poll_data.inc:50
 msgid "I had network communication problems"
-msgstr ""
-
-"
+msgstr "miałem problemy z połączeniem się z siecią"
 
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
-msgstr ""
-
-"
+msgstr "nie mogłem przyłączyć się do projektu"
 
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr ""
+"przyłączyłem się do projektu, ale nie otrzymałem żadnego zadania do "
+"przetwarzania"
 
-"
-
+#: poll_data.inc:58
+#, fuzzy
 msgid "No - I never tried running BOINC, because..."
-msgstr ""
-
-"
+msgstr "Nie - próbowałem używać BOINC, ale..."
 
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr ""
 
-"
-
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr ""
 
-"
-
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr ""
 
-"
-
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr ""
 
-"
-
+#: poll_data.inc:87
 msgid "Home"
 msgstr ""
 
-"
-
+#: poll_data.inc:88
 msgid "Work"
 msgstr ""
 
-"
-
+#: poll_data.inc:89
 msgid "School"
 msgstr ""
 
-"
-
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr ""
 
-"
-
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr ""
 
-"
-
+#: poll_data.inc:119
 msgid "Age"
 msgstr ""
 
-"
-
+#: poll_data.inc:129
 msgid "Sex"
 msgstr ""
 
-"
-
+#: poll_data.inc:131
 msgid "Male"
 msgstr ""
 
-"
-
+#: poll_data.inc:132
 msgid "Female"
 msgstr ""
 
-"
-
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr ""
 
-"
-
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr ""
 
-"
-
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr ""
 
-"
-
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr ""
 
-"
-
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr ""
 
-"
-
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr ""
 
-"
-
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
 msgstr ""
 
-"
-
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr ""
 
-"
-
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr ""
 
-"
-
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr ""
 
-"
-
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr ""
 
-"
-
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr ""
 
-"
-
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr ""
 
-"
-
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr ""
 
-"
-
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr ""
 
-"
-
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr ""
 
-"
-
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr ""
 
-"
-
+#: poll_data.inc:192
 msgid "Yes"
 msgstr ""
 
-"
-
+#: poll_data.inc:193
 msgid "No"
 msgstr ""
 
-"
-
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr ""
 
-"
-
+#: poll_data.inc:200
 msgid "to read information"
 msgstr ""
 
-"
-
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr ""
 
-"
-
+#: poll_data.inc:202
 msgid "None"
 msgstr ""
 
-"
-
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr ""
 
-"
-
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr ""
 
-"
-
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr ""
 
-"
-
-########################################
+# ######################################
 # download.php
+#: download.php:40
 msgid "Download BOINC"
 msgstr "Pobierz BOINC Menadżera"
 
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr "%s dla %s (%s MB)"
 
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -411,29 +345,34 @@ msgstr ""
 "innych. <p>Po zainstalowaniu Menadżera BOINC na twoim komputerze możesz "
 "przyłączyć się do dowolnie wybranych przez Ciebie projektów."
 
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
 "(GPU), you may be able to %suse it to compute faster%s"
 msgstr ""
 
-"
-
+#: download.php:120
 msgid "System requirements"
 msgstr "Wymagania sprzętowe"
 
+#: download.php:121
 msgid "Release notes"
 msgstr "Zmiany w aktualnej wersji"
 
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr "Pomoc"
 
+#: download.php:123
 msgid "All versions"
 msgstr "Wszystkie wersje"
 
+#: download.php:141
 msgid "BOINC: compute for science"
 msgstr "BOINC: liczy dla nauki"
 
+#: help.php:12
 #, php-format
 msgid ""
 "BOINC Online Help lets you talk one-on-one with experienced BOINC users, who "
@@ -442,8 +381,7 @@ msgid ""
 "problems you might have."
 msgstr ""
 
-"
-
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -452,8 +390,7 @@ msgid ""
 "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 "
@@ -461,20 +398,17 @@ msgid ""
 "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 "
@@ -482,30 +416,70 @@ msgid ""
 "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 ""
 
-"
+#: index.php:23
+msgid "Computing power"
+msgstr ""
 
-msgid "Volunteer"
+#: index.php:25
+msgid "Top 100 volunteers"
 msgstr ""
 
-"
+#: index.php:26
+msgid "Statistics"
+msgstr ""
 
-msgid "Download"
+#: index.php:53
+msgid "Active:"
 msgstr ""
 
-"
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
 
-msgid "Documentation"
+#: index.php:53
+msgid "computers.\n"
 msgstr ""
 
-"
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
+msgstr ""
 
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
+
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -514,28 +488,92 @@ msgid ""
 "sDownload%s and run BOINC software  %sEnter%s an email address and password. "
 msgstr ""
 
-"
-
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
 "sGridRepublic%s or %sBAM!%s. "
 msgstr ""
 
-"
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
+
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
 
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
 
-"
-
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr ""
 
-"
-
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -548,84 +586,68 @@ msgid ""
 "href=poll_results.php>here</a>. "
 msgstr ""
 
-"
-
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr ""
 
-"
-
+#: poll.php:30
 msgid "Your participation"
 msgstr ""
 
-"
-
+#: poll.php:32
 msgid "Your computers"
 msgstr ""
 
-"
-
+#: poll.php:34
 msgid "You"
 msgstr ""
 
-"
-
+#: poll.php:39
 msgid "Nationality"
 msgstr ""
 
-"
-
+#: poll.php:44
 msgid "Comments"
 msgstr ""
 
-"
-
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
 msgstr ""
 
-"
-
+#: poll.php:50
 msgid "When done click:"
 msgstr ""
 
-"
-
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
 msgstr ""
 
-"
-
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr ""
 
-"
-
+#: poll_results.php:195
 msgid "Survey results"
 msgstr ""
 
-"
-
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
 msgstr ""
 
-"
-
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 #~ msgid "CHARSET"
 #~ msgstr "UTF-8"
@@ -640,9 +662,9 @@ msgstr ""
 #~ msgid "LANG_NAME_INTERNATIONAL"
 #~ msgstr "English"
 
-########################################
+# #######################################
 # poll-related stuff
-########################################
+# #######################################
 # poll-related stuff<br />
 # <br />
 # ######################################
@@ -651,7 +673,16 @@ msgstr ""
 #~ msgstr "BOINC user survey"
 
 #~ msgid "POLL_INTRO"
-#~ msgstr "Several volunteer computing projects, including Climateprediction.net, Einstein at home, and SETI at home, use software called BOINC. If you participate in projects like this, we request that you answer the following questions. This will help BOINC-based projects increase participation and achieve greater scientific results. <p> Please answer as many questions as you want, then go to the bottom and click OK. If you previously completed the survey but your answers have changed, please complete it again - your new answers will replace the old ones. <p> The current results of the survey are <a href=poll_results.php>here</a>. "
+#~ msgstr ""
+#~ "Several volunteer computing projects, including Climateprediction.net, "
+#~ "Einstein at home, and SETI at home, use software called BOINC. If you "
+#~ "participate in projects like this, we request that you answer the "
+#~ "following questions. This will help BOINC-based projects increase "
+#~ "participation and achieve greater scientific results. <p> Please answer "
+#~ "as many questions as you want, then go to the bottom and click OK. If you "
+#~ "previously completed the survey but your answers have changed, please "
+#~ "complete it again - your new answers will replace the old ones. <p> The "
+#~ "current results of the survey are <a href=poll_results.php>here</a>. "
 
 #~ msgid "POLL_RUN"
 #~ msgstr "Do you run BOINC?"
@@ -672,7 +703,9 @@ msgstr ""
 #~ msgstr "Comments"
 
 #~ msgid "POLL_COMMENTS_QUESTION"
-#~ msgstr "Please suggest ways that BOINC, and the projects that use it, could be improved:"
+#~ msgstr ""
+#~ "Please suggest ways that BOINC, and the projects that use it, could be "
+#~ "improved:"
 
 #~ msgid "POLL_OTHER"
 #~ msgstr "Other:"
@@ -816,7 +849,9 @@ msgstr ""
 #~ msgstr "Other web sites"
 
 #~ msgid "POLL_FACTOR"
-#~ msgstr "Which are the most important factors when you decide whether to participate in a BOINC project?"
+#~ msgstr ""
+#~ "Which are the most important factors when you decide whether to "
+#~ "participate in a BOINC project?"
 
 #~ msgid "POLL_GRAPHICS"
 #~ msgstr "Nice-looking screensaver graphics"
@@ -876,7 +911,9 @@ msgstr ""
 #~ msgstr "None"
 
 #~ msgid "POLL_HELP"
-#~ msgstr "Where do you get information to help resolve problems with BOINC and/or BOINC projects?"
+#~ msgstr ""
+#~ "Where do you get information to help resolve problems with BOINC and/or "
+#~ "BOINC projects?"
 
 #~ msgid "POLL_HELP_PMB"
 #~ msgstr "The project message boards"
@@ -903,7 +940,9 @@ msgstr ""
 #~ msgstr "Error - results not recorded"
 
 #~ msgid "POLL_ERROR_TEXT"
-#~ msgstr "An internal error has prevented us from recording your survey response.  Please try again later."
+#~ msgstr ""
+#~ "An internal error has prevented us from recording your survey response.  "
+#~ "Please try again later."
 
 #~ msgid "POLL_RECORDED"
 #~ msgstr "Survey response recorded"
@@ -915,32 +954,41 @@ msgstr ""
 #~ msgstr "Survey results"
 
 #~ msgid "POLL_RESULTS_TEXT"
-#~ msgstr "These are the current results of the <a href=poll.php>BOINC user survey</a>.  This page is updated every hour."
+#~ msgstr ""
+#~ "These are the current results of the <a href=poll.php>BOINC user survey</"
+#~ "a>.  This page is updated every hour."
 
 #~ msgid "Other systems"
 #~ msgstr "Inne systemy"
 
 #~ msgid "If your computer is not of one of the above types, you can"
 #~ msgstr ""
-#~ "Jeżeli twój komputer korzysta z innego systemu operacyjnego lub jest innego "
-#~ "typy możesz"
+#~ "Jeżeli twój komputer korzysta z innego systemu operacyjnego lub jest "
+#~ "innego typy możesz"
 
 #~ msgid "%s make your own client software %s or"
 #~ msgstr "%s stworzyć własny program obsługujący platformę BOINC %s lub"
 
-#~ msgid "%s download executables from a third-party site %s (available for Solaris/Opteron, Linux/Opteron, Linux/PPC, HP-UX, and FreeBSD, and others)."
+#~ msgid ""
+#~ "%s download executables from a third-party site %s (available for Solaris/"
+#~ "Opteron, Linux/Opteron, Linux/PPC, HP-UX, and FreeBSD, and others)."
 #~ msgstr ""
-#~ "%s pobrać gotowe programy stworzone przez innych użytkowników %s (dostępne "
-#~ "dla platform Solaris/Opteron, Linux/Opteron, Linux/PPC, HP-UX, i FreeBSD "
-#~ "oraz innych)."
+#~ "%s pobrać gotowe programy stworzone przez innych użytkowników %s "
+#~ "(dostępne dla platform Solaris/Opteron, Linux/Opteron, Linux/PPC, HP-UX, "
+#~ "i FreeBSD oraz innych)."
 
 #, fuzzy
 #~ msgid "DL_MIRRORS"
-#~ msgstr "Note: files are downloaded from mirror servers at boinc.berkeley.edu, morel.mit.edu, einstein.aei.mpg.de, einstein.astro.gla.ac.uk, einstein.ligo.caltech.edu, and einstein.aset.psu.edu (thanks to these institutions). The server is chosen randomly - if a download fails, reload this page and try again. "
+#~ msgstr ""
+#~ "Note: files are downloaded from mirror servers at boinc.berkeley.edu, "
+#~ "morel.mit.edu, einstein.aei.mpg.de, einstein.astro.gla.ac.uk, einstein."
+#~ "ligo.caltech.edu, and einstein.aset.psu.edu (thanks to these "
+#~ "institutions). The server is chosen randomly - if a download fails, "
+#~ "reload this page and try again. "
 
-##############################################
+# #############################################
 # help.php
-##############################################
+# #############################################
 #, fuzzy
 #~ msgid "HELP_TITLE"
 #~ msgstr "Getting help with BOINC"
@@ -951,19 +999,33 @@ msgstr ""
 
 #, fuzzy
 #~ msgid "HELP_P1_1"
-#~ msgstr "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 ""
+#~ "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. "
 
 #, fuzzy
 #~ msgid "HELP_P1_2"
-#~ msgstr "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 ""
+#~ "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. "
 
 #, fuzzy
 #~ msgid "HELP_P1_3"
-#~ msgstr "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 ""
+#~ "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."
 
 #, fuzzy
 #~ msgid "HELP_P1_4"
-#~ msgstr "Volunteers speaking several languages are available. Please select a language: "
+#~ msgstr ""
+#~ "Volunteers speaking several languages are available. Please select a "
+#~ "language: "
 
 #, fuzzy
 #~ msgid "HELP_HEADING2"
@@ -995,30 +1057,44 @@ msgstr ""
 
 #, fuzzy
 #~ msgid "HELP_P3_1"
-#~ msgstr "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 ""
+#~ "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!  "
 
 #, fuzzy
 #~ msgid "HELP_P3_2"
-#~ msgstr "If you're already a Help Volunteer: to edit your settings, %sclick here%s. "
+#~ msgstr ""
+#~ "If you're already a Help Volunteer: to edit your settings, %sclick here%"
+#~ "s. "
 
-##############################################
+# #############################################
 # index.php
-##############################################
+# #############################################
 #, fuzzy
 #~ msgid "HOME_HEADING1"
 #~ msgstr "Volunteer"
 
 #, fuzzy
 #~ msgid "HOME_P1"
-#~ msgstr " Use the idle time on your computer  (Windows, Mac, or Linux)  to cure diseases, study global warming,  discover pulsars, and do many other types of scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %sDownload%s and run BOINC software  %sEnter%s an email address and password. "
+#~ msgstr ""
+#~ " Use the idle time on your computer  (Windows, Mac, or Linux)  to cure "
+#~ "diseases, study global warming,  discover pulsars, and do many other "
+#~ "types of scientific research.  It's safe, secure, and easy:  %sChoose%s "
+#~ "projects  %sDownload%s and run BOINC software  %sEnter%s an email address "
+#~ "and password. "
 
 #, fuzzy
 #~ msgid "HOME_P2"
-#~ msgstr "Or, if you run several projects, try an %saccount manager%s such as %sGridRepublic%s or %sBAM!%s. "
+#~ msgstr ""
+#~ "Or, if you run several projects, try an %saccount manager%s such as %"
+#~ "sGridRepublic%s or %sBAM!%s. "
 
 #, fuzzy
 #~ msgid "HOME_P3"
-#~ msgstr "If you have any questions, or need help getting started, you can %stalk to a Volunteer Helper%s. "
+#~ msgstr ""
+#~ "If you have any questions, or need help getting started, you can %stalk "
+#~ "to a Volunteer Helper%s. "
 
 #, fuzzy
 #~ msgid "HOME_DOWNLOAD"
@@ -1040,4 +1116,5 @@ msgstr ""
 #~ msgstr "Berkeley Open Infrastructure for Network Computing"
 
 #~ msgid "HOME_BOINC_DESC"
-#~ msgstr "Open-source software for %svolunteer computing%s and %sgrid computing%s"
+#~ msgstr ""
+#~ "Open-source software for %svolunteer computing%s and %sgrid computing%s"
diff --git a/locale/pl/pootle-boincclient610-pl.prefs b/locale/pl/pootle-boincclient610-pl.prefs
new file mode 100644
index 0000000..a231512
--- /dev/null
+++ b/locale/pl/pootle-boincclient610-pl.prefs
@@ -0,0 +1,9 @@
+# Pootle preferences for project boinctrunk, language pl
+
+rights:
+  MarekZ = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  Simek = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/pl/pootle-boinctrunk-pl.prefs b/locale/pl/pootle-boinctrunk-pl.prefs
deleted file mode 100644
index c455ce8..0000000
--- a/locale/pl/pootle-boinctrunk-pl.prefs
+++ /dev/null
@@ -1,7 +0,0 @@
-# Pootle preferences for project boinctrunk, language pl
-
-rights:
-  MarekZ = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  default = u'view, suggest, archive, pocompile'
-  nobody = u'view'
-  Simek = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/pt_BR/BOINC-Manager.mo b/locale/pt_BR/BOINC-Manager.mo
new file mode 100644
index 0000000..33d334d
Binary files /dev/null and b/locale/pt_BR/BOINC-Manager.mo differ
diff --git a/locale/pt_BR/BOINC-Manager.po b/locale/pt_BR/BOINC-Manager.po
index 80f6cff..2312e2e 100644
--- a/locale/pt_BR/BOINC-Manager.po
+++ b/locale/pt_BR/BOINC-Manager.po
@@ -1,9 +1,8 @@
-#, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -11,427 +10,489 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Translate Toolkit 1.2.1\n"
+"X-Poedit-SearchPath-0: clientgui\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
 msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
 msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
 msgid "Connect to another computer running %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
 msgid "Show information about %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
 msgid "Show information about BOINC and %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -440,55 +501,62 @@ msgid ""
 "Do you want to stop using %s?"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
+msgid "%s - Language Selection"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
+msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
-msgid "%s - Language Selection"
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
-msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
 msgid "Connected to %s (%s)"
 msgstr ""
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr ""
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -496,11 +564,11 @@ msgid ""
 "Please visit the project's web site and follow the instructions there."
 msgstr ""
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr ""
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -508,249 +576,291 @@ msgid ""
 "Please visit the project's web site and follow the instructions there."
 msgstr ""
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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 ""
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
 "Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
 msgid "%s is connecting to the Internet."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
 "Please connect to the Internet, or select a default connection\n"
 "using Advanced/Options/Connections."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
 msgid "%s failed to connect to the Internet."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -758,497 +868,491 @@ msgid ""
 "Click Finish to close."
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr ""
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr ""
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
+#, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
 "Click Clear to restore web-based settings."
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
 msgid "% of the processors"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
 msgid "% CPU time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr ""
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1258,8 +1362,8 @@ msgid ""
 "exit the Manager, then choose from the following options:"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1269,534 +1373,492 @@ msgid ""
 "tasks at the times you selected in your preferences."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr ""
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 msgid "Elapsed time"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr ""
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
 msgid "%s - Select Computer"
 msgstr ""
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr ""
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
 msgstr ""
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
+#, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1806,239 +1868,234 @@ msgid ""
 "then restart the %s."
 msgstr ""
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr ""
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr ""
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr ""
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr ""
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr ""
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr ""
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr ""
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr ""
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr ""
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr ""
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr ""
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr ""
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr ""
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr ""
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr ""
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr ""
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr ""
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr ""
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr ""
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr ""
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr ""
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr ""
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr ""
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr ""
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr ""
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr ""
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr ""
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr ""
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr ""
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr ""
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr ""
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr ""
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr ""
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr ""
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr ""
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr ""
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr ""
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr ""
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr ""
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr ""
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr ""
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr ""
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr ""
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr ""
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr ""
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr ""
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr ""
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr ""
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr ""
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr ""
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr ""
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/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 ""
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr ""
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2046,65 +2103,76 @@ msgid ""
 "Please check the URL and try again."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:320
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:321
-msgid "Already Attached to Project"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
 msgstr ""
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
 msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
 msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
 msgstr ""
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr ""
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2115,13 +2183,13 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2138,1297 +2206,1212 @@ msgid ""
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr ""
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 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 ""
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 ""
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
 "Please try again later."
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
 "Please try again later."
 msgstr ""
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr ""
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr ""
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr ""
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr ""
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
 "http://www.example.com/"
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
 "http://boincproject.example.com"
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 msgid "Copying selected messages to the clipboard..."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 msgid "Show all messages"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 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 ""
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr ""
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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 ""
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 msgid "Aborting transfer(s)..."
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
 "will not receive credit for it."
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 msgid "Abort File Transfer(s)"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr ""
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3437,13 +3420,13 @@ msgid ""
 "listed on or managed via %s."
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3459,130 +3442,138 @@ msgid ""
 "World Community Grid then please click on the following button:"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
+#: clientgui/WelcomePage.cpp:301
+msgid "To continue, click Next."
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
+#: clientgui/WizardAttachProject.cpp:610
+msgid "Do you really want to cancel?"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
+#: clientgui/WizardAttachProject.cpp:611
+msgid "Question"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
+msgid "&Next >"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
+#: clientgui/wizardex.cpp:383
+msgid "< &Back"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
+#: clientgui/wizardex.cpp:553
+msgid "&Finish"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
+msgid "New page inserted. Index = %i"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
+msgid "New page appended. Index = %i"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
+msgid "Old Page Index = %i"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
+msgid "OnDropTarget: index by HitTest = %i"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
+#: clientgui/common/wxPieCtrl.cpp:66
+msgid "Pie Ctrl"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:427
-msgid "To continue, click Next."
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
 msgstr ""
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
-msgid "Do you really want to cancel?"
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
 msgstr ""
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
-msgid "Question"
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
 msgstr ""
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
-msgid "&Next >"
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
 msgstr ""
 
-#: clientgui/wizardex.cpp:408
-msgid "< &Back"
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
 msgstr ""
 
-#: clientgui/wizardex.cpp:604
-msgid "&Finish"
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
-msgid "New page inserted. Index = %i"
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
-msgid "New page appended. Index = %i"
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
-msgid "Old Page Index = %i"
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
-msgid "OnDropTarget: index by HitTest = %i"
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
 msgstr ""
 
-#: clientgui/common/wxPieCtrl.cpp:66
-msgid "Pie Ctrl"
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr ""
diff --git a/locale/pt_BR/BOINC-Web.po b/locale/pt_BR/BOINC-Web.po
index 83e6639..be4e5d5 100644
--- a/locale/pt_BR/BOINC-Web.po
+++ b/locale/pt_BR/BOINC-Web.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
 "PO-Revision-Date: 2006-09-18 17:43-0300\n"
 "Last-Translator: alcirsp <alcirsp at user.com.br>\n"
 "Language-Team: \n"
@@ -18,386 +18,312 @@ msgstr ""
 "X-Poedit-Country: UNITED STATES\n"
 "X-Poedit-KeywordsList: tra\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
 msgstr ""
 
-"
-
+#: poll.inc:47
 msgid "Other:"
 msgstr ""
 
-"
-
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
 msgstr ""
 
-"
-
+#: poll_data.inc:22
 msgid "less than a week"
 msgstr ""
 
-"
-
+#: poll_data.inc:23
 msgid "less than a month"
 msgstr ""
 
-"
-
+#: poll_data.inc:24
 msgid "less than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:25
 msgid "more than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:34
 msgid "I lost interest"
 msgstr ""
 
-"
-
+#: poll_data.inc:35
 msgid "it was too complicated"
 msgstr ""
 
-"
-
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
 msgstr ""
 
-"
-
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:38
 msgid "it used too much electricity"
 msgstr ""
 
-"
-
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr ""
 
-"
-
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
 msgstr ""
 
-"
-
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
 msgstr ""
 
-"
-
+#: poll_data.inc:50
 msgid "I had network communication problems"
 msgstr ""
 
-"
-
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
 msgstr ""
 
-"
-
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr ""
 
-"
-
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
 msgstr ""
 
-"
-
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr ""
 
-"
-
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr ""
 
-"
-
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr ""
 
-"
-
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr ""
 
-"
-
+#: poll_data.inc:87
 msgid "Home"
 msgstr ""
 
-"
-
+#: poll_data.inc:88
 msgid "Work"
 msgstr ""
 
-"
-
+#: poll_data.inc:89
 msgid "School"
 msgstr ""
 
-"
-
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr ""
 
-"
-
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr ""
 
-"
-
+#: poll_data.inc:119
 msgid "Age"
 msgstr ""
 
-"
-
+#: poll_data.inc:129
 msgid "Sex"
 msgstr ""
 
-"
-
+#: poll_data.inc:131
 msgid "Male"
 msgstr ""
 
-"
-
+#: poll_data.inc:132
 msgid "Female"
 msgstr ""
 
-"
-
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr ""
 
-"
-
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr ""
 
-"
-
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr ""
 
-"
-
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr ""
 
-"
-
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr ""
 
-"
-
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr ""
 
-"
-
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
 msgstr ""
 
-"
-
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr ""
 
-"
-
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr ""
 
-"
-
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr ""
 
-"
-
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr ""
 
-"
-
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr ""
 
-"
-
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr ""
 
-"
-
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr ""
 
-"
-
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr ""
 
-"
-
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr ""
 
-"
-
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr ""
 
-"
-
+#: poll_data.inc:192
 msgid "Yes"
 msgstr ""
 
-"
-
+#: poll_data.inc:193
 msgid "No"
 msgstr ""
 
-"
-
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr ""
 
-"
-
+#: poll_data.inc:200
 msgid "to read information"
 msgstr ""
 
-"
-
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr ""
 
-"
-
+#: poll_data.inc:202
 msgid "None"
 msgstr ""
 
-"
-
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr ""
 
-"
-
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr ""
 
-"
-
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr ""
 
-"
-
+#: download.php:40
 msgid "Download BOINC"
 msgstr ""
 
-"
-
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr ""
 
-"
-
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -405,41 +331,34 @@ msgid ""
 "computer, you can connect it to as many of these projects as you like."
 msgstr ""
 
-"
-
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
 "(GPU), you may be able to %suse it to compute faster%s"
 msgstr ""
 
-"
-
+#: download.php:120
 msgid "System requirements"
 msgstr ""
 
-"
-
+#: download.php:121
 msgid "Release notes"
 msgstr ""
 
-"
-
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr ""
 
-"
-
+#: download.php:123
 msgid "All versions"
 msgstr ""
 
-"
-
+#: download.php:141
 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 "
@@ -448,8 +367,7 @@ msgid ""
 "problems you might have."
 msgstr ""
 
-"
-
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -458,8 +376,7 @@ msgid ""
 "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 "
@@ -467,20 +384,17 @@ msgid ""
 "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 "
@@ -488,30 +402,70 @@ msgid ""
 "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 ""
 
-"
+#: index.php:23
+msgid "Computing power"
+msgstr ""
 
-msgid "Volunteer"
+#: index.php:25
+msgid "Top 100 volunteers"
 msgstr ""
 
-"
+#: index.php:26
+msgid "Statistics"
+msgstr ""
 
-msgid "Download"
+#: index.php:53
+msgid "Active:"
 msgstr ""
 
-"
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
 
-msgid "Documentation"
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
 msgstr ""
 
-"
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
 
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -520,28 +474,92 @@ msgid ""
 "sDownload%s and run BOINC software  %sEnter%s an email address and password. "
 msgstr ""
 
-"
-
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
 "sGridRepublic%s or %sBAM!%s. "
 msgstr ""
 
-"
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
 
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
 
-"
-
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr ""
 
-"
-
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -554,84 +572,68 @@ msgid ""
 "href=poll_results.php>here</a>. "
 msgstr ""
 
-"
-
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr ""
 
-"
-
+#: poll.php:30
 msgid "Your participation"
 msgstr ""
 
-"
-
+#: poll.php:32
 msgid "Your computers"
 msgstr ""
 
-"
-
+#: poll.php:34
 msgid "You"
 msgstr ""
 
-"
-
+#: poll.php:39
 msgid "Nationality"
 msgstr ""
 
-"
-
+#: poll.php:44
 msgid "Comments"
 msgstr ""
 
-"
-
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
 msgstr ""
 
-"
-
+#: poll.php:50
 msgid "When done click:"
 msgstr ""
 
-"
-
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
 msgstr ""
 
-"
-
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr ""
 
-"
-
+#: poll_results.php:195
 msgid "Survey results"
 msgstr ""
 
-"
-
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
 msgstr ""
 
-"
-
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 ##########################################
diff --git a/locale/pt_BR/pootle-boincclient610-pt_BR.prefs b/locale/pt_BR/pootle-boincclient610-pt_BR.prefs
new file mode 100644
index 0000000..693f608
--- /dev/null
+++ b/locale/pt_BR/pootle-boincclient610-pt_BR.prefs
@@ -0,0 +1,8 @@
+# Pootle preferences for project boinctrunk, language pt_BR
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  ferfuji = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/pt_BR/pootle-boinctrunk-pt_BR.prefs b/locale/pt_BR/pootle-boinctrunk-pt_BR.prefs
deleted file mode 100644
index 93cb091..0000000
--- a/locale/pt_BR/pootle-boinctrunk-pt_BR.prefs
+++ /dev/null
@@ -1,2 +0,0 @@
-# Pootle preferences for project boinctrunk, language pt_BR
-
diff --git a/locale/pt_PT/BOINC-Manager.mo b/locale/pt_PT/BOINC-Manager.mo
new file mode 100644
index 0000000..238cd4d
Binary files /dev/null and b/locale/pt_PT/BOINC-Manager.mo differ
diff --git a/locale/pt_PT/BOINC-Manager.po b/locale/pt_PT/BOINC-Manager.po
new file mode 100644
index 0000000..8c24b2f
--- /dev/null
+++ b/locale/pt_PT/BOINC-Manager.po
@@ -0,0 +1,3919 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-01-28 13:07-0500\n"
+"PO-Revision-Date: 2010-02-19 12:43-0000\n"
+"Last-Translator: Miguel Veiga <Miguel.veig at gmail.com>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.2.1\n"
+"X-Poedit-Language: Português\n"
+"X-Poedit-SourceCharset: iso-8859-1\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
+"X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
+"X-Poedit-Country: PORTUGAL\n"
+"X-Poedit-SearchPath-0: clientgui\n"
+
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr "Identifique a sua conta"
+
+#: clientgui/AccountInfoPage.cpp:382
+msgid ""
+"Please enter your account information\n"
+"(to create an account, visit the project's web site)"
+msgstr ""
+"Por favor, insira os dados da sua conta\n"
+"(para criar uma conta, visite o website do projecto)"
+
+#: clientgui/AccountInfoPage.cpp:386
+msgid ""
+"This project is not currently accepting new accounts.\n"
+"You can attach only if you already have an account."
+msgstr ""
+"Este projecto não está de momento a aceitar novas contas.\n"
+"Só pode anexar se já tiver uma conta criada."
+
+#: clientgui/AccountInfoPage.cpp:390
+msgid "Are you already running this project?"
+msgstr "Já está a executar este projecto?"
+
+#: clientgui/AccountInfoPage.cpp:394
+msgid "&No, new user"
+msgstr "&Não, novo utilizador"
+
+#: clientgui/AccountInfoPage.cpp:397
+msgid "&Yes, existing user"
+msgstr "&Sim, utilizador já existente"
+
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+"Não conseguimos criar as informações da conta\n"
+"automaticamente.\n"
+"Por favor carregue no link 'Procurar informação de login\n"
+"em baixo para encontrar o que inserir no campo de endereço de email e\n"
+"no campo da palavra passe."
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr "Procurar informação de login"
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
+msgid "&Password:"
+msgstr "&Palavra passe:"
+
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
+msgid "Choose a &password:"
+msgstr "Escolha uma &palavra-passe:"
+
+#: clientgui/AccountInfoPage.cpp:435
+msgid "C&onfirm password:"
+msgstr "C&onfirme a palavra passe:"
+
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
+msgid "Are you already running %s?"
+msgstr "Já está a executar %s?"
+
+#: clientgui/AccountInfoPage.cpp:459
+msgid "&Username:"
+msgstr "&Nome de utilizador:"
+
+#: clientgui/AccountInfoPage.cpp:473
+msgid "&Email address:"
+msgstr "&Endereço de email:"
+
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
+msgid "minimum length %d"
+msgstr "comprimento minimo %d"
+
+#: clientgui/AccountInfoPage.cpp:488
+msgid "Forgot your password?"
+msgstr "Esqueceu a palavra-passe?"
+
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+"Se ainda não se registou neste gestor de conta,\n"
+"por favor faça-o antes de prosseguir. Carregue no link a seguir\n"
+"para se registar ou recuperar a password esquecida."
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr "Website do gestor de conta"
+
+#: clientgui/AccountInfoPage.cpp:530
+msgid "Attach to project"
+msgstr "Anexar ao projecto"
+
+#: clientgui/AccountInfoPage.cpp:532
+msgid "Update account manager"
+msgstr "Actualizar o gestor de conta"
+
+#: clientgui/AccountInfoPage.cpp:534
+msgid "Attach to account manager"
+msgstr "Axenar ao gestor de conta"
+
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
+msgid "The minimum password length for this project is %d. Please enter a different password."
+msgstr "O comprimento minimo da palavra-passe para este projecto é %d. Por favor insira uma palavra passe diferente."
+
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
+msgid "The minimum password length for this account manager is %d. Please enter a different password."
+msgstr "O comprimento minimo da palavra-passe para este gestor de conta é %d. Por favor insira uma palavra passe diferente."
+
+#: clientgui/AccountInfoPage.cpp:560
+msgid "The password and confirmation password do not match. Please type them again."
+msgstr "A palavra-passe original e a palavra-passe de confirmação não correspondem. Por favor escreva-as novamente."
+
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr "Escolha um gestor de conta"
+
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"Para escolher um gestor de conta, carregue no nome ou \n"
+"escreva no URL em baixo."
+
+#: clientgui/AccountManagerInfoPage.cpp:255
+msgid "Account Manager &URL:"
+msgstr "Gestor de Conta &URL:"
+
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
+msgid "Communicating with %s."
+msgstr "Comunicando com %s."
+
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
+msgid "Communicating with server."
+msgstr "Comunicando com o servidor."
+
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
+msgid "Please wait..."
+msgstr "Por favor aguarde..."
+
+#: clientgui/AccountManagerProcessingPage.cpp:325
+msgid "An internal server error has occurred.\n"
+msgstr "Ocorreu um erro interno no servidor.\n"
+
+#: clientgui/AdvancedFrame.cpp:93
+msgid "Connected"
+msgstr "Conectado"
+
+#: clientgui/AdvancedFrame.cpp:101
+msgid "Disconnected"
+msgstr "Disconectado"
+
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr "Fechar a %s janela"
+
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr "&Fechar Janela"
+
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr "Sair %s"
+
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
+msgid "E&xit"
+msgstr "S&air"
+
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr "&Projectos\tCtrl+Shift+P"
+
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr "Mostrar projectos"
+
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr "&Tarefas\tCtrl+Shift+T"
+
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr "Mostrar tarefas"
+
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr "Trans&ferências\tCtrl+Shift+X"
+
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr "Mostrar transferências"
+
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr "&Mensagens\tCtrl+Shift+M"
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr "Mostrar Mensagens"
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr "&Estatísticas\tCtrl+Shift+S"
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr "Mostrar Estatísticas"
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr "&Uso do disco\tCtrl+Shift+D"
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr "Mostrar uso do disco"
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "&Vista Simples...\tCtrl+Shift+V"
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr "Mostrar o interface gráfico simples."
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr "Anexar ao &projecto ou gestor de conta..."
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr "Anexar a um projecto ou gestor de conta para começar a executar trabalho"
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
+msgid "&Synchronize with %s"
+msgstr "&Sincronizar com %s"
+
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
+msgid "Get current settings from %s"
+msgstr "Receber as configurações actuais de %s"
+
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "Anexar ao &projecto..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Anexar ao projecto para começar a executar trabalho"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "&Parar de usar %s..."
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Remover cliente do controlo do gestor de conta."
+
+#: clientgui/AdvancedFrame.cpp:432
+msgid "&Run always"
+msgstr "&Executar sempre"
+
+#: clientgui/AdvancedFrame.cpp:433
+msgid "Allow work regardless of preferences"
+msgstr "Permitir executar trabalho independentemente das preferências"
+
+#: clientgui/AdvancedFrame.cpp:437
+msgid "Run based on &preferences"
+msgstr "Executar baseado nas &preferências"
+
+#: clientgui/AdvancedFrame.cpp:438
+msgid "Allow work according to your preferences"
+msgstr "Permitir executar trabalho de acordo com as preferências"
+
+#: clientgui/AdvancedFrame.cpp:442
+msgid "&Suspend"
+msgstr "&Suspender"
+
+#: clientgui/AdvancedFrame.cpp:443
+msgid "Stop work regardless of preferences"
+msgstr "Parar de executar trabalho independentemente das preferências"
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Use GPU always"
+msgstr "Usar GPU sempre"
+
+#: clientgui/AdvancedFrame.cpp:470
+msgid "Allow GPU work regardless of preferences"
+msgstr "Permitir GPU executar trabalho independentemente das preferências"
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Use GPU based on &preferences"
+msgstr "Usar GPU baseado nas &preferências"
+
+#: clientgui/AdvancedFrame.cpp:475
+msgid "Allow GPU work according to your preferences"
+msgstr "Permitir GPU executar trabalho de acordo com as preferências"
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Use GPU never"
+msgstr "Nunca usar GPU"
+
+#: clientgui/AdvancedFrame.cpp:480
+msgid "Stop GPU work regardless of preferences"
+msgstr "Parar GPU de executar trabalho independentemente das preferências"
+
+#: clientgui/AdvancedFrame.cpp:504
+msgid "&Network activity always available"
+msgstr "&Actividade de rede sempre disponível"
+
+#: clientgui/AdvancedFrame.cpp:505
+msgid "Allow network activity regardless of preferences"
+msgstr "Permitir actividade de rede independentemente das preferências"
+
+#: clientgui/AdvancedFrame.cpp:509
+msgid "Network activity based on pre&ferences"
+msgstr "Actividade de rede baseada nas pre&ferências"
+
+#: clientgui/AdvancedFrame.cpp:510
+msgid "Allow network activity according to your preferences"
+msgstr "Permitir actividade de rede de acordo com as suas preferências"
+
+#: clientgui/AdvancedFrame.cpp:514
+msgid "Network activity s&uspended"
+msgstr "Actividade de rede s&uspensa"
+
+#: clientgui/AdvancedFrame.cpp:515
+msgid "Stop BOINC network activity"
+msgstr "Parar actividade de rede do BOINC"
+
+#: clientgui/AdvancedFrame.cpp:522
+msgid "&Options..."
+msgstr "&Opções..."
+
+#: clientgui/AdvancedFrame.cpp:523
+msgid "Configure GUI options and proxy settings"
+msgstr "Configurar opções de GUI e definições de proxy"
+
+#: clientgui/AdvancedFrame.cpp:527
+msgid "&Preferences..."
+msgstr "&Preferências..."
+
+#: clientgui/AdvancedFrame.cpp:528
+msgid "Configure local preferences"
+msgstr "Configurar preferências locais"
+
+#: clientgui/AdvancedFrame.cpp:534
+#, c-format
+msgid "Connect to another computer running %s"
+msgstr "Ligar a outro computador executando %s"
+
+#: clientgui/AdvancedFrame.cpp:539
+msgid "Select computer..."
+msgstr "Escolha computador..."
+
+#: clientgui/AdvancedFrame.cpp:544
+msgid "Shut down connected client..."
+msgstr "Desligar clientes ligados..."
+
+#: clientgui/AdvancedFrame.cpp:545
+msgid "Shut down the currently connected core client"
+msgstr "Desligar o cliente actualmente ligado"
+
+#: clientgui/AdvancedFrame.cpp:549
+msgid "Run CPU &benchmarks"
+msgstr "Executar os &benchmarks do CPU"
+
+#: clientgui/AdvancedFrame.cpp:550
+msgid "Runs BOINC CPU benchmarks"
+msgstr "Executar os benchmarks BOINC do CPU"
+
+#: clientgui/AdvancedFrame.cpp:554
+msgid "Do network &communication"
+msgstr "Realizar &comunicação com a Rede"
+
+#: clientgui/AdvancedFrame.cpp:555
+msgid "Do all pending network communication."
+msgstr "Realizar comunicação com a rede para todos os pendentes."
+
+#: clientgui/AdvancedFrame.cpp:559
+msgid "Read config file"
+msgstr "Ler ficheiro de configuração"
+
+#: clientgui/AdvancedFrame.cpp:560
+msgid "Read configuration info from cc_config.xml."
+msgstr "Ler informação de configuração de cc_config.xml"
+
+#: clientgui/AdvancedFrame.cpp:564
+msgid "Read local prefs file"
+msgstr "Ler ficheiro de preferências local"
+
+#: clientgui/AdvancedFrame.cpp:565
+msgid "Read preferences from global_prefs_override.xml."
+msgstr "Ler preferências de global_prefs_override.xml"
+
+#: clientgui/AdvancedFrame.cpp:575
+#, c-format
+msgid "%s &help"
+msgstr "%s &ajuda"
+
+#: clientgui/AdvancedFrame.cpp:581
+#, c-format
+msgid "Show information about %s"
+msgstr "Mostrar informação acerca %s"
+
+#: clientgui/AdvancedFrame.cpp:593
+#, c-format
+msgid "&%s help"
+msgstr "&%s ajuda"
+
+#: clientgui/AdvancedFrame.cpp:599
+#, c-format
+msgid "Show information about the %s"
+msgstr "Mostrar informação acerca de"
+
+#: clientgui/AdvancedFrame.cpp:611
+#, c-format
+msgid "%s &website"
+msgstr "%s &website"
+
+#: clientgui/AdvancedFrame.cpp:617
+#, c-format
+msgid "Show information about BOINC and %s"
+msgstr "Mostrar informação acerca do BOINC e %s"
+
+#: clientgui/AdvancedFrame.cpp:633
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
+msgid "&About %s..."
+msgstr "&Acerca %s..."
+
+#: clientgui/AdvancedFrame.cpp:639
+msgid "Licensing and copyright information."
+msgstr "Licenças e informações sobre direitos de autor"
+
+#: clientgui/AdvancedFrame.cpp:646
+msgid "&File"
+msgstr "&Ficheiro"
+
+#: clientgui/AdvancedFrame.cpp:650
+msgid "&View"
+msgstr "&Ver"
+
+#: clientgui/AdvancedFrame.cpp:654
+msgid "&Tools"
+msgstr "&Ferramentas"
+
+#: clientgui/AdvancedFrame.cpp:658
+msgid "&Activity"
+msgstr "&Actividade"
+
+#: clientgui/AdvancedFrame.cpp:662
+msgid "A&dvanced"
+msgstr "A&vançado"
+
+#: clientgui/AdvancedFrame.cpp:666
+msgid "&Help"
+msgstr "&Ajuda"
+
+#: clientgui/AdvancedFrame.cpp:1033
+msgid "Attaching to project or account manager..."
+msgstr "Anexando ao projecto ou gestor de conta..."
+
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
+msgid "%s - Detach from %s"
+msgstr "%s - Desanexar de %s"
+
+#: clientgui/AdvancedFrame.cpp:1131
+#, 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 ""
+"Se para de usar %s,\n"
+"mantém todos os actuais projectos,\n"
+"mas tem que gerir os projectos manualmente.\n"
+"\n"
+"Quer parar de usar %s?"
+
+#: clientgui/AdvancedFrame.cpp:1308
+#, c-format
+msgid "%s - Language Selection"
+msgstr "%s  - Selecção de Linguagem"
+
+#: clientgui/AdvancedFrame.cpp:1315
+#, c-format
+msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
+msgstr "A %s linguagem por default foi mudada, para que estas alterações tenham efeito, deve reiniciar o %s."
+
+#: clientgui/AdvancedFrame.cpp:1478
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - Desligar o cliente actual..."
+
+#: clientgui/AdvancedFrame.cpp:1487
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s vai desligar o cliente actualmente ligado,\n"
+"e pedir para ligar outro host a.\n"
+
+#: clientgui/AdvancedFrame.cpp:1534
+msgid "Retrying communications for project(s)..."
+msgstr "Repetindo as comunicações com o/os projecto(s)..."
+
+#: clientgui/AdvancedFrame.cpp:1730
+#, c-format
+msgid "%s"
+msgstr "%s"
+
+#: clientgui/AdvancedFrame.cpp:1739
+#, c-format
+msgid "%s has successfully attached to %s"
+msgstr "%s foi anexado com sucesso a %s"
+
+#: clientgui/AdvancedFrame.cpp:1870
+#, c-format
+msgid "%s - (%s)"
+msgstr "%s - (%s)"
+
+#: clientgui/AdvancedFrame.cpp:1873
+#, c-format
+msgid "Connecting to %s"
+msgstr "Ligando a %s"
+
+#: clientgui/AdvancedFrame.cpp:1876
+#, c-format
+msgid "Connected to %s (%s)"
+msgstr "Ligado a %s (%s)"
+
+#: clientgui/AlreadyExistsPage.cpp:182
+msgid "Username already in use"
+msgstr "Utilizador já em uso"
+
+#: clientgui/AlreadyExistsPage.cpp:185
+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 ""
+"Uma conta com esse utilizador já existe e tem uma \n"
+"palavra-passe diferente daquela que inseriu.\n"
+"\n"
+"Por favor visite o website do projecto e siga as instruções lá indicadas."
+
+#: clientgui/AlreadyExistsPage.cpp:189
+msgid "Email address already in use"
+msgstr "Endereço de email já em uso"
+
+#: clientgui/AlreadyExistsPage.cpp:192
+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 ""
+"Uma conta com esse endereço de e-mail já existe e tem uma \n"
+"palavra-passe diferente daquela que inseriu.\n"
+"\n"
+"Por favor visite o website do projecto e siga as instruções lá indicadas."
+
+#: clientgui/AsyncRPC.cpp:1207
+msgid "Communicating with BOINC client.  Please wait ..."
+msgstr "Comunicando com o cliente BOINC. Por favor aguarde..."
+
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr "&Sair %s"
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr "S&air %s"
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
+msgid "%s - Connection Error"
+msgstr "%s - Erro de conexão"
+
+#: clientgui/BOINCBaseFrame.cpp:431
+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 ""
+"Não está autorizado actualmente para gerir o cliente.\n"
+"Por favor contacte o administrador para que o adicione ao grupo local 'boinc_users'."
+
+#: clientgui/BOINCBaseFrame.cpp:440
+msgid ""
+"Authorization failed connecting to running client.\n"
+"Make sure you start this program in the same directory as the client."
+msgstr ""
+"Autorização falhada ao conectar-se ao cliente em execução.\n"
+"Confirme que inicia o programa na mesma directoria que a do cliente."
+
+#: clientgui/BOINCBaseFrame.cpp:442
+msgid "Authorization failed connecting to running client."
+msgstr "Autorização falhada ao conectar-se ao cliente em execução."
+
+#: clientgui/BOINCBaseFrame.cpp:450
+msgid "The password you have provided is incorrect, please try again."
+msgstr "A palavra-passe que inseriu está incorrecta, por favor tente novamente."
+
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
+msgid "%s - Connection Failed"
+msgstr "%s - Conexão Falhada"
+
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
+msgid ""
+"%s is not able to connect to a %s client.\n"
+"Would you like to try to connect again?"
+msgstr ""
+"%s não é capaz de conectar ao %s cliente.\n"
+"Quer tentar se conectar novamente?"
+
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
+msgid "%s - Daemon Start Failed"
+msgstr "%s - O Início do Daemon falhou"
+
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
+"%s não é capaz de iniciar o %s cliente.\n"
+"Por favor vá a Painel de Controlo->Ferramentas Administrativas->Serviços e inicie o serviço BOINC."
+
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
+msgid ""
+"%s is not able to start a %s client.\n"
+"Please start the daemon and try again."
+msgstr ""
+"%s não é capaz de iniciar o %s cliente.\n"
+"Por favor inicie o daemon e tente novamente."
+
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
+msgid "%s - Connection Status"
+msgstr "%s - Estado da Conexão"
+
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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 ""
+"%s não está actualmente conectado ao %s cliente.\n"
+"Por favor vá ao menu 'Avançado\\Escolher Computador...' para se conectar ao %s cliente.\n"
+"Para se conectar ao seu computador local, use 'localhost' como o nome de host."
+
+#: clientgui/BOINCBaseView.cpp:749
+msgid "Web sites"
+msgstr "Websites"
+
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
+msgid "%s - Network Status"
+msgstr "%s - Estado da Ligação à Rede"
+
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
+msgid "%s needs to connect to the Internet.  Please click to open %s."
+msgstr "%s precisa de se conectar à Internet. Por favor carregue para abrir %s"
+
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
+msgid ""
+"%s is unable to communicate with a project and needs an Internet connection.\n"
+"Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
+msgstr ""
+"%s não é capaz de comunicar com o projecto e precisa duma conexão à Internet.\n"
+"Por favor conecte-se à Internet, depois seleccione o item 'Fazer comunicação com a rede' do menu Avançado."
+
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
+msgid ""
+"%s needs to connect to the Internet.\n"
+"May it do so now?"
+msgstr ""
+"%s precisa de se conectar à Internet.\n"
+"Pode fazê-lo agora?"
+
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
+msgid "%s is connecting to the Internet."
+msgstr "%s está a conectar-se à Internet."
+
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
+msgid ""
+"%s couldn't do Internet communication, and no default connection is selected.\n"
+"Please connect to the Internet, or select a default connection\n"
+"using Advanced/Options/Connections."
+msgstr ""
+"%s não conseguiu conectar-se à Internet e a conexão por default não foi seleccionada.\n"
+"Por favor conecte-se à Internet, ou seleccione a conexão por default\n"
+"usando Avançado/Opções/Conexões."
+
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
+msgid "%s has successfully connected to the Internet."
+msgstr "%s conectou-se à Internet com sucesso."
+
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
+msgid "%s failed to connect to the Internet."
+msgstr "%s falhou a conexão à Internet."
+
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
+msgid ""
+"%s has detected it is now connected to the Internet.\n"
+"Updating all projects and retrying all transfers."
+msgstr ""
+"%s detectou que está agora conectado à Internet.\n"
+"Actualizando todos os projectos e tentando novamente todas as transferências."
+
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
+msgid "%s has successfully disconnected from the Internet."
+msgstr "%s desconectou-se da Internet com sucesso."
+
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
+msgid "%s failed to disconnected from the Internet."
+msgstr "%s falhou ao disconectar-se da Internet."
+
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+"Não está actualmente autorizado a gerir o cliente.\n"
+"\n"
+"Para executar o BOINC como este utilizador, por favor:\n"
+"  - Reinstale o BOINC respondendo \"Sim\" à questão acerca dos\n"
+"     utilizadores não-administrativos\n"
+" ou\n"
+"  - contacte o seu administradir para que o adicione ao grupo\n"
+"'boinc_master'."
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"O direito de propriedade do BOINC ou as permissões não estão definidas correctamente; por favor reinstale o BOINC.\n"
+"(Código de erro %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
+msgid ""
+"A reboot is required in order for BOINC to run properly.\n"
+"Please reboot your computer and try again."
+msgstr ""
+"Um reinício do computador é necessário para que o BOINC corra correctamente.\n"
+"Por favor reinicie o seu computador e tente novamente."
+
+#: clientgui/BOINCGUIApp.cpp:379
+msgid "BOINC Manager"
+msgstr "Gestor do BOINC"
+
+#: clientgui/BOINCGUIApp.cpp:526
+msgid "BOINC Manager was started by the operating system automatically"
+msgstr "O Gestor do BOINC foi iniciado pelo sistema operativo automaticamente"
+
+#: clientgui/BOINCGUIApp.cpp:528
+msgid "Startup BOINC so only the system tray icon is visible"
+msgstr "Inicie o BOINC para que apenas o icon seja apenas visível na barra de tarefas"
+
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr "Directório contendo o executável do Cliente do BOINC"
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr "Directório de dados do BOINC"
+
+#: clientgui/BOINCGUIApp.cpp:533
+msgid "Startup BOINC with these optional arguments"
+msgstr "Inicie o BOINC com estes argumentos opcionais"
+
+#: clientgui/BOINCGUIApp.cpp:534
+msgid "disable BOINC security users and permissions"
+msgstr "desabilite os utilizadores de gestão de segurança e as permissões do BOINC"
+
+#: clientgui/BOINCGUIApp.cpp:535
+msgid "set skin debugging mode to enable skin manager error messages"
+msgstr "inicie o modo de depuração para habilitar o gestor de mensagens de erro"
+
+#: clientgui/BOINCGUIApp.cpp:725
+msgid "(Automatic Detection)"
+msgstr "(Detecção Automática)"
+
+#: clientgui/BOINCGUIApp.cpp:726
+msgid "(Unknown)"
+msgstr "(Desconhecido)"
+
+#: clientgui/BOINCGUIApp.cpp:727
+msgid "(User Defined)"
+msgstr "(Definido pelo Utilizador)"
+
+#: clientgui/BOINCTaskBar.cpp:348
+msgid "Computation is suspended."
+msgstr "Computação suspensa."
+
+#: clientgui/BOINCTaskBar.cpp:356
+msgid "Network activity is suspended."
+msgstr "Actividade de rede suspensa."
+
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
+msgid "%s: %.2f%% completed."
+msgstr "%s: %.2f%% completa."
+
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
+msgid "%d tasks running."
+msgstr "%d tarefas em execução."
+
+#: clientgui/BOINCTaskBar.cpp:412
+msgid "Reconnecting to client."
+msgstr "Reconectando-se ao cliente."
+
+#: clientgui/BOINCTaskBar.cpp:418
+msgid "Not connected to a client."
+msgstr "Não conectado ao cliente."
+
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
+msgid "Open %s Web..."
+msgstr "Abrir %s Web..."
+
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
+msgid "Open %s..."
+msgstr "Abrir %s..."
+
+#: clientgui/BOINCTaskBar.cpp:623
+msgid "Snooze"
+msgstr "Suspender"
+
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr "Suspender GPU"
+
+#: clientgui/CompletionErrorPage.cpp:199
+msgid "Failed to attach to project"
+msgstr "Falhou ao anexar ao projecto"
+
+#: clientgui/CompletionErrorPage.cpp:204
+msgid "Failed to update account manager"
+msgstr "Falhou ao actualizar o gestor de conta"
+
+#: clientgui/CompletionErrorPage.cpp:208
+msgid "Failed to remove account manager"
+msgstr "Falhou ao remover o gestor de conta"
+
+#: clientgui/CompletionErrorPage.cpp:212
+msgid "Failed to attach to account manager"
+msgstr "Falhou ao anexar ao gestor de conta"
+
+#: clientgui/CompletionErrorPage.cpp:221
+msgid ""
+"An error has occurred;\n"
+"check Messages for details.\n"
+"\n"
+"Click Finish to close."
+msgstr ""
+"Ocorreu um erro;\n"
+"verifique as mensagens para detalhes.\n"
+"\n"
+"Carregue Terminar para fechar."
+
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
+msgid "Click Finish to close."
+msgstr "Carregue Terminar para fechar."
+
+#: clientgui/CompletionErrorPage.cpp:234
+msgid "Messages from server:"
+msgstr "Mensagens do servidor:"
+
+#: clientgui/CompletionPage.cpp:208
+msgid "Attached to project"
+msgstr "Anexado ao projecto"
+
+#: clientgui/CompletionPage.cpp:214
+msgid "You are now successfully attached to this project."
+msgstr "Foi anexado com sucesso a este projecto"
+
+#: clientgui/CompletionPage.cpp:219
+msgid ""
+"When you click Finish, your web browser will go to a page where\n"
+"you can set your account name and preferences."
+msgstr ""
+"Quando carregar no Terminar, o seu navegador de internet irá para uma página onde\n"
+"pode definir o seu nome de conta e preferências."
+
+#: clientgui/CompletionPage.cpp:236
+#, c-format
+msgid "Update from %s completed."
+msgstr "Actualização de %s completa."
+
+#: clientgui/CompletionPage.cpp:240
+msgid "Update completed."
+msgstr "Actualização completa."
+
+#: clientgui/CompletionPage.cpp:257
+#, c-format
+msgid "Attached to %s"
+msgstr "Anexado a %s"
+
+#: clientgui/CompletionPage.cpp:261
+msgid "Attached to account manager"
+msgstr "Anexado ao gestor de conta"
+
+#: clientgui/CompletionPage.cpp:271
+#, c-format
+msgid "Welcome to %s!"
+msgstr "Bem vindo a %s!"
+
+#: clientgui/CompletionPage.cpp:285
+#, c-format
+msgid "You are now successfully attached to the %s system."
+msgstr "Foi anexado com sucesso ao %s sistema."
+
+#: clientgui/CompletionPage.cpp:289
+msgid "You are now successfully attached to this account manager."
+msgstr "Foi anexado com sucesso a este gestor de conta."
+
+#: clientgui/DlgAbout.cpp:98
+#, c-format
+msgid "About %s"
+msgstr "Acerca %s"
+
+#: clientgui/DlgAbout.cpp:155
+msgid "Version:"
+msgstr "Versão:"
+
+#: clientgui/DlgAbout.cpp:163
+msgid "wxWidgets Version:"
+msgstr "Versão wxWidgets:"
+
+#: clientgui/DlgAbout.cpp:171
+msgid "Copyright:"
+msgstr "Direitos de Autor:"
+
+#: clientgui/DlgAbout.cpp:175
+msgid ""
+"(C) 2003-2010 University of California, Berkeley.\n"
+"All Rights Reserved."
+msgstr ""
+"(C) 2003-2010 Universidade da Califórnia, Berkeley.\n"
+"Todos os Direitos Reservados."
+
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
+msgid "Berkeley Open Infrastructure for Network Computing"
+msgstr "Berkeley Open Infrastructure para Rede de Computação"
+
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
+msgid "&OK"
+msgstr "&OK"
+
+#: clientgui/DlgAdvPreferences.cpp:480
+msgid "invalid float"
+msgstr "erro de vírgula flutuante"
+
+#: clientgui/DlgAdvPreferences.cpp:481
+msgid "invalid time, format is HH:MM"
+msgstr "tempo inválido, o formato é HH:MM"
+
+#: clientgui/DlgAdvPreferences.cpp:482
+msgid "invalid time interval, format is HH:MM-HH:MM"
+msgstr "tempo de intervalo inválido, o formato é HH:MM-HH:MM"
+
+#: clientgui/DlgAdvPreferences.cpp:591
+msgid "invalid input value detected"
+msgstr "valor de input inválido detectado"
+
+#: clientgui/DlgAdvPreferences.cpp:593
+msgid "Validation Error"
+msgstr "Erro de validação"
+
+#: clientgui/DlgAdvPreferences.cpp:737
+msgid "Do you really want to clear all local preferences ?"
+msgstr "Quer mesmo limpar todas as suas preferências locais?"
+
+#: clientgui/DlgAdvPreferences.cpp:738
+msgid "Confirmation"
+msgstr "Confirmação"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
+msgid "%s - Preferences"
+msgstr "%s - Preferências"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:49
+msgid ""
+"This dialog controls preferences for this computer only.\n"
+"Click OK to set preferences.\n"
+"Click Clear to restore web-based settings."
+msgstr ""
+"Esta janela controla as preferências apenas para este computador.\n"
+"Carregue OK para definir as preferências.\n"
+"Carregue Limpar para restaurar as definições web."
+
+#: clientgui/DlgAdvPreferencesBase.cpp:52
+msgid "Clear"
+msgstr "Limpar"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:53
+msgid "clear all local preferences and close the dialog"
+msgstr "limpar todas as preferências locais e fechar a janela"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:76
+msgid "Computing allowed"
+msgstr "Computação permitida"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:80
+msgid " While computer is on batteries"
+msgstr " Enquanto o computador está ligado à bateria"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:83
+msgid "check this if you want this computer to do work while it runs on batteries"
+msgstr "assinale se quiser que o seu computador execute trabalho enquanto está ligado à bateria"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:89
+msgid " While computer is in use"
+msgstr "Enquanto o computador está em uso"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:92
+msgid "check this if you want this computer to do work even when you're using it"
+msgstr "assinale se quiser que o seu computador execute trabalho enquanto está a ser usado"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:98
+msgid " Use GPU while computer is in use"
+msgstr " Usar GPU enquanto o computador está a ser usado"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:101
+msgid "check this if you want your GPU to do work even when you're using the computer"
+msgstr "assinale se quiser que o seu GPU execute trabalho enquanto o computador está a ser usado"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:111
+msgid "Only after computer has been idle for"
+msgstr "Apenas depois do computador estar inactivo por"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:115
+msgid "do work only after you haven't used the computer for this number of minutes"
+msgstr "executar trabalho só depois do computador não estar em uso por este número de minutos"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:119
+#: clientgui/DlgAdvPreferencesBase.cpp:239
+msgid "minutes"
+msgstr "minutos"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:130
+#: clientgui/DlgAdvPreferencesBase.cpp:355
+msgid "Every day between hours of"
+msgstr "Todos os dias entre as horas"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:134
+msgid "start work at this time"
+msgstr "iniciar trabalho a esta hora"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:138
+#: clientgui/DlgAdvPreferencesBase.cpp:363
+msgid "and"
+msgstr "e"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:142
+msgid "stop work at this time"
+msgstr "parar trabalho a esta hora"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:146
+#: clientgui/DlgAdvPreferencesBase.cpp:371
+msgid "(no restriction if equal)"
+msgstr "(sem restrições se igual)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:151
+#: clientgui/DlgAdvPreferencesBase.cpp:376
+msgid "Day-of-week override:"
+msgstr "Escolha manual do dia de semana"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:156
+#: clientgui/DlgAdvPreferencesBase.cpp:381
+msgid "check box to specify hours for this day of week"
+msgstr "escolha para especificar as horas para este dia de semana"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:166
+#: clientgui/DlgAdvPreferencesBase.cpp:391
+msgid "Monday"
+msgstr "Segunda"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:173
+#: clientgui/DlgAdvPreferencesBase.cpp:398
+msgid "Tuesday"
+msgstr "Terça"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:180
+#: clientgui/DlgAdvPreferencesBase.cpp:405
+msgid "Wednesday"
+msgstr "Quarta"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:187
+#: clientgui/DlgAdvPreferencesBase.cpp:412
+msgid "Thursday"
+msgstr "Quinta"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:194
+#: clientgui/DlgAdvPreferencesBase.cpp:419
+msgid "Friday"
+msgstr "Sexta"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:201
+#: clientgui/DlgAdvPreferencesBase.cpp:426
+msgid "Saturday"
+msgstr "Sábado"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:208
+#: clientgui/DlgAdvPreferencesBase.cpp:433
+msgid "Sunday"
+msgstr "Domingo"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:225
+msgid "Other options"
+msgstr "Outras opções"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:233
+msgid "Switch between applications between every"
+msgstr "Trocar entre aplicações a cada"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:242
+msgid "On multiprocessor systems, use at most"
+msgstr "Em sistemas de processador múltiplo, usar no máximo"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:249
+#, no-c-format
+msgid "% of the processors"
+msgstr "%s dos processadores"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:252
+#: clientgui/DlgAdvPreferencesBase.cpp:468
+#: clientgui/DlgAdvPreferencesBase.cpp:490
+#: clientgui/DlgAdvPreferencesBase.cpp:511
+#: clientgui/DlgAdvPreferencesBase.cpp:534
+#: clientgui/DlgAdvPreferencesBase.cpp:544
+msgid "Use at most"
+msgstr "Usar no máximo"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:259
+#, no-c-format
+msgid "% CPU time"
+msgstr "%s tempo de CPU"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:269
+msgid "processor usage"
+msgstr "Uso de processador"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:277
+msgid "General options"
+msgstr "Opções Gerais"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:284
+msgid "Maximum download rate"
+msgstr "Taxa máxima de transferência"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:290
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+msgid "KBytes/sec."
+msgstr "Kbytes/seg."
+
+#: clientgui/DlgAdvPreferencesBase.cpp:293
+msgid "Maximum upload rate"
+msgstr "Taxa máxima de upload"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:302
+msgid "Connect about every"
+msgstr "Conectar-se a cada"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+msgid ""
+"this computer is connected to the Internet about every X days\n"
+"(0 if it's always connected)"
+msgstr ""
+"este computador está ligado à Internet a cada X dias\n"
+"(0 se estiver sempre conectado)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:310
+msgid "days"
+msgstr "dias"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:313
+msgid "Additional work buffer"
+msgstr "Trabalho de buffer adicional"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:319
+msgid "days (max. 10)"
+msgstr "dias (10 no máx.)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:322
+msgid " Skip image file verification"
+msgstr " Saltar verificação do ficheiro de imagem"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:324
+msgid "check this if your Internet provider modifies image files"
+msgstr "assinale se o seu provedor de Internet modifica os ficheiros de imagem"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:333
+msgid "Connect options"
+msgstr "Opções de Conexão"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:335
+msgid "Confirm before connecting to internet"
+msgstr "Confirme antes de se conectar à Internet"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
+msgstr "se assinalado, um diálogo de confirmação aparecerá antes de se tentar conectar à Internet"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:341
+msgid "Disconnect when done"
+msgstr "Disconectar quando terminado"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:343
+msgid ""
+"if checked, BOINC hangs up when network usage is done\n"
+"(only relevant for dialup-connection)"
+msgstr ""
+"se assinalado, o BOINC desliga quando o uso de rede estiver realizado\n"
+"(apenas relevante para conexões dial-up)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:350
+msgid "Network usage allowed"
+msgstr "Uso de Rede permitido"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:359
+msgid "network usage start hour"
+msgstr "hora de inicio do uso de rede"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:367
+msgid "network usage stop hour"
+msgstr "hora de paragem do uso de rede"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:452
+msgid "network usage"
+msgstr "uso de rede"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:460
+#: clientgui/DlgItemProperties.cpp:119
+msgid "Disk usage"
+msgstr "Uso de disco"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:472
+msgid "the maximum disk space used by BOINC (in Gigabytes)"
+msgstr "o máximo uso de disco usado pelo BOINC (em Gigabytes)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:476
+msgid "Gigabytes disk space"
+msgstr "Gigabytes de espaço no disco"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:479
+msgid "Leave at least"
+msgstr "Deixar pelo menos"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:483
+msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
+msgstr "O BOINC deixa pelo menos este montante de espaço em disco livre (em Gigabytes)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:487
+msgid "Gigabytes disk space free"
+msgstr "Gigabytes de espaço no disco livres"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:494
+msgid "BOINC uses at most this percentage of total disk space"
+msgstr "O BOINC usa no máximo esta percentagem de espaço total no disco"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:499
+#, no-c-format
+msgid "% of total disk space"
+msgstr "%s de espaço total no disco"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:502
+msgid "Tasks checkpoint to disk at most every"
+msgstr "Criar checkpoints das tarefas no disco no máximo a cada"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:508
+msgid "seconds"
+msgstr "segundos"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:518
+#, no-c-format
+msgid "% of page file (swap space)"
+msgstr "% de paginação (espaço temporário)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:526
+msgid "Memory usage"
+msgstr "Uso de memória"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:541
+#, no-c-format
+msgid "% when computer is in use"
+msgstr "% quando o computador está em uso"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:551
+#, no-c-format
+msgid "% when computer is idle"
+msgstr "% quando o computador está inactivo"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:556
+msgid " Leave applications in memory while suspended"
+msgstr "Deixar aplicaçõs em memória quando suspensas"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+msgid "if checked, suspended work units are left in memory"
+msgstr "se assinalado, unidades de trabalho suspensas são deixadas em memória"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:567
+msgid "disk and memory usage"
+msgstr "uso de disco e memória"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:580
+msgid "OK"
+msgstr "OK"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+msgid "save all values and close the dialog"
+msgstr "guardar todos os valores e fechar caixa de diálogo"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:586
+msgid "close the dialog without saving"
+msgstr "fechar caixa de diálogo sem salvar"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:590
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
+msgid "Help"
+msgstr "Ajuda"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:591
+msgid "shows the preferences web page"
+msgstr "Mostrar páginas web das preferências"
+
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
+msgid "%s - Exit Confirmation"
+msgstr "%s - Confirmar Saida"
+
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
+msgid ""
+"You have requested to exit the %s,\n"
+"which allows you to view and manage\n"
+"the science applications running on your computer.\n"
+"\n"
+"If you also want to stop running the science applications when you\n"
+"exit the Manager, then choose from the following options:"
+msgstr ""
+"Solicitou a saída do %s,n\que lhe permite ver e gerir\n"
+"as aplicações de ciência em execução no seu computador.\n"
+"\n"
+"Se também quiser parar de executar as aplicações de ciência quando\n"
+"sair do Gestor, então escolha as seguintes opções:"
+
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
+msgid ""
+"This will shut down %s and its tasks entirely until either the\n"
+"%s application 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 ""
+"Isto irá desligar % e as tarefas completamente até que\n"
+"%s aplicação ou a % protecção de ecrã esteja a correr outra vez.\n"
+"\n"
+"Na maioria dos casos, é melhor fechar apenas a %s janela\n"
+"do que sair da aplicação; isso irá permitir % executar as\n"
+"tarefas nos tempos que seleccionou nas suas preferências."
+
+#: clientgui/DlgExitMessage.cpp:153
+msgid "Stop running science applications when exiting the Manager"
+msgstr "Parar de executar aplicações de ciência quando sair do Gestor"
+
+#: clientgui/DlgExitMessage.cpp:164
+msgid "Remember this decision and do not show this dialog."
+msgstr "Lembrar desta decisão e não mostrar esta caixa de diálogo."
+
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
+msgid "&Cancel"
+msgstr "&Cancelar"
+
+#: clientgui/DlgGenericMessage.cpp:112
+msgid "Don't show this dialog again."
+msgstr "Não mostrar esta caixa de diálogo outra vez."
+
+#: clientgui/DlgItemProperties.cpp:57
+msgid "&Close"
+msgstr "&Fechar"
+
+#: clientgui/DlgItemProperties.cpp:101
+msgid "Properties of project "
+msgstr "Propriedades do projecto"
+
+#: clientgui/DlgItemProperties.cpp:105
+#: clientgui/DlgOptions.cpp:205
+msgid "General"
+msgstr "Geral"
+
+#: clientgui/DlgItemProperties.cpp:106
+msgid "Master URL"
+msgstr "URL Master"
+
+#: clientgui/DlgItemProperties.cpp:107
+msgid "User name"
+msgstr "Nome de utilizador"
+
+#: clientgui/DlgItemProperties.cpp:108
+msgid "Team name"
+msgstr "Nome da Equipa"
+
+#: clientgui/DlgItemProperties.cpp:109
+msgid "Resource share"
+msgstr "Partilha de recursos"
+
+#: clientgui/DlgItemProperties.cpp:111
+msgid "Scheduler RPC deferred for"
+msgstr "Agendador RPC deferido por"
+
+#: clientgui/DlgItemProperties.cpp:114
+msgid "File downloads deferred for"
+msgstr "Downloads dos ficheiros deferidos por"
+
+#: clientgui/DlgItemProperties.cpp:117
+msgid "File uploads deferred for"
+msgstr "Uploads dos ficheiros deferidos por"
+
+#: clientgui/DlgItemProperties.cpp:120
+msgid "Computer ID"
+msgstr "ID do Computador"
+
+#: clientgui/DlgItemProperties.cpp:121
+msgid "Non CPU intensive"
+msgstr "CPU não intensivo"
+
+#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:123
+#: clientgui/DlgItemProperties.cpp:124
+#: clientgui/DlgItemProperties.cpp:125
+#: clientgui/DlgItemProperties.cpp:126
+#: clientgui/DlgItemProperties.cpp:127
+msgid "yes"
+msgstr "sim"
+
+#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:123
+#: clientgui/DlgItemProperties.cpp:124
+#: clientgui/DlgItemProperties.cpp:125
+#: clientgui/DlgItemProperties.cpp:126
+#: clientgui/DlgItemProperties.cpp:127
+msgid "no"
+msgstr "não"
+
+#: clientgui/DlgItemProperties.cpp:122
+msgid "Suspended via GUI"
+msgstr "Suspendido através de GUI"
+
+#: clientgui/DlgItemProperties.cpp:123
+msgid "Don't request more work"
+msgstr "Não solicitar mais trabalhos "
+
+#: clientgui/DlgItemProperties.cpp:124
+msgid "Scheduler call in progress"
+msgstr "Agendador de tarefas em progresso"
+
+#: clientgui/DlgItemProperties.cpp:125
+msgid "Attached via account manager"
+msgstr "Anexado através do gestor de conta"
+
+#: clientgui/DlgItemProperties.cpp:126
+msgid "Detach when done"
+msgstr "Desanexar quando feito"
+
+#: clientgui/DlgItemProperties.cpp:127
+msgid "Ended"
+msgstr "Terminado"
+
+#: clientgui/DlgItemProperties.cpp:128
+msgid "Credit"
+msgstr "Crédito"
+
+#: clientgui/DlgItemProperties.cpp:129
+msgid "User"
+msgstr "Utilizador"
+
+#: clientgui/DlgItemProperties.cpp:136
+msgid "Host"
+msgstr "Host"
+
+#: clientgui/DlgItemProperties.cpp:145
+msgid "Scheduling"
+msgstr "Agendando"
+
+#: clientgui/DlgItemProperties.cpp:146
+msgid "CPU scheduling priority"
+msgstr "prioridade de agendamento para CPU"
+
+#: clientgui/DlgItemProperties.cpp:147
+msgid "CPU work fetch priority"
+msgstr "Prioridade de procura trabalho para CPU"
+
+#: clientgui/DlgItemProperties.cpp:150
+msgid "CPU work fetch deferred for"
+msgstr "Procura de trabalho para CPU deferido por"
+
+#: clientgui/DlgItemProperties.cpp:151
+msgid "CPU work fetch deferral interval"
+msgstr "Intervalo de procura de trabalho para CPU deferido"
+
+#: clientgui/DlgItemProperties.cpp:153
+msgid "NVIDIA GPU scheduling priority"
+msgstr "prioridade de agendamento para NVIDIA GPU"
+
+#: clientgui/DlgItemProperties.cpp:154
+msgid "NVIDIA GPU work fetch priority"
+msgstr "Procura de trabalho para NVIDIA GPU prioritário"
+
+#: clientgui/DlgItemProperties.cpp:157
+msgid "NVIDIA GPU work fetch deferred for"
+msgstr "Procura de trabalho para NVIDIA GPU deferido por"
+
+#: clientgui/DlgItemProperties.cpp:158
+msgid "NVIDIA GPU work fetch deferral interval"
+msgstr "Intervalo de procura de trabalho para NVIDIA GPU deferido"
+
+#: clientgui/DlgItemProperties.cpp:161
+msgid "ATI GPU scheduling priority"
+msgstr "Prioridade de agendamento para ATI GPU"
+
+#: clientgui/DlgItemProperties.cpp:162
+msgid "ATI GPU work fetch priority"
+msgstr "Procura de trabalho para ATI GPU prioritário"
+
+#: clientgui/DlgItemProperties.cpp:165
+msgid "ATI GPU work fetch deferred for"
+msgstr "Procura de trabalho para ATI GPU deferido por"
+
+#: clientgui/DlgItemProperties.cpp:166
+msgid "ATI GPU work fetch deferral interval"
+msgstr "Intervalo de procura de trabalho para ATI GPU deferido"
+
+#: clientgui/DlgItemProperties.cpp:168
+msgid "Duration correction factor"
+msgstr "Duração do factor de coreccção"
+
+#: clientgui/DlgItemProperties.cpp:178
+msgid "Properties of task "
+msgstr "Propriedades da tarefa"
+
+#: clientgui/DlgItemProperties.cpp:182
+msgid "Application"
+msgstr "Aplicação"
+
+#: clientgui/DlgItemProperties.cpp:183
+msgid "Workunit name"
+msgstr "Nome da unidade de trabalho"
+
+#: clientgui/DlgItemProperties.cpp:184
+msgid "State"
+msgstr "Estado"
+
+#: clientgui/DlgItemProperties.cpp:187
+msgid "Received"
+msgstr "Recebido"
+
+#: clientgui/DlgItemProperties.cpp:190
+msgid "Report deadline"
+msgstr "Reportar prazo limite"
+
+#: clientgui/DlgItemProperties.cpp:192
+msgid "Resources"
+msgstr "Recursos"
+
+#: clientgui/DlgItemProperties.cpp:195
+msgid "CPU time at last checkpoint"
+msgstr "Tempo de CPU no ultimo checkpoint"
+
+#: clientgui/DlgItemProperties.cpp:196
+#: clientgui/DlgItemProperties.cpp:211
+msgid "CPU time"
+msgstr "Tempo de CPU"
+
+#: clientgui/DlgItemProperties.cpp:198
+#: clientgui/DlgItemProperties.cpp:212
+msgid "Elapsed time"
+msgstr "Tempo decorrido"
+
+#: clientgui/DlgItemProperties.cpp:200
+msgid "Estimated time remaining"
+msgstr "Tempo restante previsto"
+
+#: clientgui/DlgItemProperties.cpp:201
+msgid "Fraction done"
+msgstr "Fracção terminada"
+
+#: clientgui/DlgItemProperties.cpp:202
+msgid "Virtual memory size"
+msgstr "Tamanho da memória virtual"
+
+#: clientgui/DlgItemProperties.cpp:203
+msgid "Working set size"
+msgstr "Tamanho previsto do trabalho"
+
+#: clientgui/DlgItemProperties.cpp:205
+msgid "Directory"
+msgstr "Directoria"
+
+#: clientgui/DlgItemProperties.cpp:208
+msgid "Process ID"
+msgstr "ID do Processo"
+
+#: clientgui/DlgItemProperties.cpp:306
+msgid "New"
+msgstr "Novo"
+
+#: clientgui/DlgItemProperties.cpp:310
+msgid "Download failed"
+msgstr "Download falhado"
+
+#: clientgui/DlgItemProperties.cpp:312
+msgid "Downloading"
+msgstr "Fazendo o download"
+
+#: clientgui/DlgItemProperties.cpp:317
+msgid "Project suspended by user"
+msgstr "Projecto suspenso pelo utilizador"
+
+#: clientgui/DlgItemProperties.cpp:319
+msgid "Task suspended by user"
+msgstr "Tarefa suspensa pelo utilizador"
+
+#: clientgui/DlgItemProperties.cpp:321
+msgid "Suspended"
+msgstr "Suspenso"
+
+#: clientgui/DlgItemProperties.cpp:323
+msgid " - on batteries"
+msgstr " - em bateria"
+
+#: clientgui/DlgItemProperties.cpp:326
+msgid " - user active"
+msgstr " - utilizador activo"
+
+#: clientgui/DlgItemProperties.cpp:329
+msgid " - computation suspended"
+msgstr " - computação suspensa"
+
+#: clientgui/DlgItemProperties.cpp:332
+msgid " - time of day"
+msgstr " - hora do dia"
+
+#: clientgui/DlgItemProperties.cpp:335
+msgid " - CPU benchmarks"
+msgstr " - Performance do CPU"
+
+#: clientgui/DlgItemProperties.cpp:338
+msgid " - need disk space"
+msgstr " - precisa de espaço em disco"
+
+#: clientgui/DlgItemProperties.cpp:342
+msgid "Waiting for memory"
+msgstr "Esperando por memória"
+
+#: clientgui/DlgItemProperties.cpp:344
+msgid "Waiting for shared memory"
+msgstr "Esperando por memória partilhada"
+
+#: clientgui/DlgItemProperties.cpp:347
+msgid "Running, high priority"
+msgstr "Executando com alta prioridade"
+
+#: clientgui/DlgItemProperties.cpp:349
+msgid "Running"
+msgstr "Executando"
+
+#: clientgui/DlgItemProperties.cpp:352
+msgid "Waiting to run"
+msgstr "À espera de executar"
+
+#: clientgui/DlgItemProperties.cpp:354
+#: clientgui/DlgItemProperties.cpp:357
+msgid "Ready to start"
+msgstr "Pronto para começar"
+
+#: clientgui/DlgItemProperties.cpp:361
+msgid "Computation error"
+msgstr "Erro de Computação"
+
+#: clientgui/DlgItemProperties.cpp:365
+msgid "Upload failed"
+msgstr "Upload falhado"
+
+#: clientgui/DlgItemProperties.cpp:367
+msgid "Uploading"
+msgstr "Fazendo o Upload"
+
+#: clientgui/DlgItemProperties.cpp:373
+msgid "Aborted by user"
+msgstr "Cancelado pelo utilizador"
+
+#: clientgui/DlgItemProperties.cpp:376
+msgid "Aborted by project"
+msgstr "Cancelado pelo projecto"
+
+#: clientgui/DlgItemProperties.cpp:379
+msgid "Aborted"
+msgstr "Cancelado"
+
+#: clientgui/DlgItemProperties.cpp:384
+msgid "Acknowledged"
+msgstr "Confirmado"
+
+#: clientgui/DlgItemProperties.cpp:386
+msgid "Ready to report"
+msgstr "Pronto para reportar"
+
+#: clientgui/DlgItemProperties.cpp:388
+#, c-format
+msgid "Error: invalid state '%d'"
+msgstr "Erro - estado inválido '%d"
+
+#: clientgui/DlgOptions.cpp:119
+#, c-format
+msgid "%s - Options"
+msgstr "%s - Opções"
+
+#: clientgui/DlgOptions.cpp:157
+msgid "Language:"
+msgstr "Linguagem:"
+
+#: clientgui/DlgOptions.cpp:164
+msgid "What language should the manager use?"
+msgstr "Que linguagem deve o gestor usar?"
+
+#: clientgui/DlgOptions.cpp:168
+msgid ""
+"Network reminder interval:\n"
+"(minutes)"
+msgstr ""
+"Intervalo do lembrete de rede:\n"
+"(minutos)"
+
+#: clientgui/DlgOptions.cpp:180
+msgid "How often should the Manager remind you when a network connection is needed?"
+msgstr "Com que frequência deve o gestor lembrar-lhe que é necessário uma conexão à rede?"
+
+#: clientgui/DlgOptions.cpp:185
+msgid "Run Manager at login?"
+msgstr "Executar o gestor quando executar o login?"
+
+#: clientgui/DlgOptions.cpp:191
+msgid "Run the BOINC Manager when you log on."
+msgstr "Executar o gestor do BOINC quando se logar."
+
+#: clientgui/DlgOptions.cpp:196
+msgid "Enable Manager exit dialog?"
+msgstr "Activar a caixa de diálogo à saida do Gestor?"
+
+#: clientgui/DlgOptions.cpp:202
+msgid "Display the exit dialog when shutting down the Manager."
+msgstr "Mostrar a caixa de diálogo quando o Gestor estiver sendo desligado."
+
+#: clientgui/DlgOptions.cpp:213
+msgid "Dial-up and Virtual Private Network settings"
+msgstr "Definições da ligação Dial-up e da Rede Virtual Privada"
+
+#: clientgui/DlgOptions.cpp:227
+msgid "&Set Default"
+msgstr "&Definir por Default"
+
+#: clientgui/DlgOptions.cpp:232
+msgid "&Clear Default"
+msgstr "&Limpar o Default"
+
+#: clientgui/DlgOptions.cpp:239
+msgid "Default Connection:"
+msgstr "Conexão por Default:"
+
+#: clientgui/DlgOptions.cpp:246
+msgid "Connections"
+msgstr "Conexões"
+
+#: clientgui/DlgOptions.cpp:255
+msgid "Connect via HTTP proxy server"
+msgstr "Conectar através de proxy por servidor de HTTP"
+
+#: clientgui/DlgOptions.cpp:259
+msgid "HTTP Proxy Server Configuration"
+msgstr "Configuração da Proxy por Servidor de HTTP"
+
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
+msgid "Address:"
+msgstr "Endereço:"
+
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
+msgid "Port:"
+msgstr "Porta:"
+
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
+msgid "Don't use proxy for:"
+msgstr "Não usar proxy para:"
+
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
+msgid "Leave these blank if not needed"
+msgstr "Deixar em branco se desnecessário"
+
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
+msgid "User Name:"
+msgstr "Nome de Utilizador:"
+
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
+msgid "Password:"
+msgstr "Palavra passe:"
+
+#: clientgui/DlgOptions.cpp:311
+msgid "HTTP Proxy"
+msgstr "HTTP Proxy"
+
+#: clientgui/DlgOptions.cpp:319
+msgid "Connect via SOCKS proxy server"
+msgstr "Conectar através de SOCKS por servidor de proxy"
+
+#: clientgui/DlgOptions.cpp:323
+msgid "SOCKS Proxy Server Configuration"
+msgstr "Configuração de SOCKS por Servidor de Proxy"
+
+#: clientgui/DlgOptions.cpp:375
+msgid "SOCKS Proxy"
+msgstr "SOCKS Proxy"
+
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
+msgid "%s - Select Computer"
+msgstr "%s - Escolha Computador"
+
+#: clientgui/DlgSelectComputer.cpp:127
+msgid "Host name:"
+msgstr "Nome do Host"
+
+#: clientgui/hyperlink.cpp:181
+#, c-format
+msgid "%s - Can't find web browser"
+msgstr "%s - Incapaz de encontrar o navegador web"
+
+#: clientgui/hyperlink.cpp:192
+#, c-format
+msgid ""
+"%s tried to display the web page\n"
+"\t%s\n"
+"but couldn't find a web browser.\n"
+"To fix this, set the environment variable\n"
+"BROWSER to the path of your web browser,\n"
+"then restart the %s."
+msgstr ""
+"%s tentou mostrar a página web\n"
+"\t%s\n"
+"mas não consegiu encontrar um navegador web.\n"
+"Para resolver isto, defina a variável do ambiente\n"
+"NAVEGADOR na directoria onde se encontra o seu navegador web,\n"
+"depois reinicie o %s."
+
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
+msgid "Message boards"
+msgstr "Fóruns"
+
+#: clientgui/Localization.cpp:33
+msgid "Correspond with other users on the SETI at home message boards"
+msgstr "Corresponder-se com outros utilizadores nos fóruns do SETI at home"
+
+#: clientgui/Localization.cpp:37
+msgid "Ask questions and report problems"
+msgstr "Fazer perguntas e reportar problemas"
+
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
+msgid "Your account"
+msgstr "A sua conta"
+
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
+msgid "View your account information and credit totals"
+msgstr "Ver informações da sua conta e os créditos totais"
+
+#: clientgui/Localization.cpp:43
+msgid "Your preferences"
+msgstr "As suas preferências"
+
+#: clientgui/Localization.cpp:45
+msgid "View and modify your SETI at home account profile and preferences"
+msgstr "Ver e modificar as suas preferências no perfil da conta no SETI at home"
+
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
+msgid "Your results"
+msgstr "Os seus resultados"
+
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
+msgid "View your last week (or more) of computational results and work"
+msgstr "Ver a ultima semana (ou mais) dos resultados de computação e trabalho"
+
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
+msgid "Your computers"
+msgstr "Os seus computadores"
+
+#: clientgui/Localization.cpp:53
+msgid "View a listing of all the computers on which you are running SETI at Home"
+msgstr "Ver uma lista de todos os computadores onde está a correr o SETI at home"
+
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
+msgid "Your team"
+msgstr "A sua equipa"
+
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
+msgid "View information about your team"
+msgstr "Ver informações acerca da sua equipa"
+
+#: clientgui/Localization.cpp:61
+msgid "Common questions"
+msgstr "Questões comuns"
+
+#: clientgui/Localization.cpp:63
+msgid "Read the Einstein at Home Frequently Asked Question list"
+msgstr "Ler a lista das Questões mais Frequentes no Einstein at Home"
+
+#: clientgui/Localization.cpp:65
+msgid "Screensaver info"
+msgstr "Informação da Protecção de Ecrã"
+
+#: clientgui/Localization.cpp:67
+msgid "Read a detailed description of the Einstein at Home screensaver"
+msgstr "Ler uma descrição detalhada da protecção de ecrã no Einstein at Home"
+
+#: clientgui/Localization.cpp:71
+msgid "Correspond with admins and other users on the Einstein at Home message boards"
+msgstr "Corresponder-se com administradores e outros utilizadores nos fóruns do Einstein at Home"
+
+#: clientgui/Localization.cpp:73
+msgid "Einstein status"
+msgstr "Estado do Einstein"
+
+#: clientgui/Localization.cpp:75
+msgid "Current status of the Einstein at Home server"
+msgstr "Estado actual do servidor no Einstein at Home"
+
+#: clientgui/Localization.cpp:77
+msgid "Report problems"
+msgstr "Reportar problemas"
+
+#: clientgui/Localization.cpp:79
+msgid "A link to the Einstein at Home problems and bug reports message board"
+msgstr "O link para o fóruns de problemas e reportagem de bugs no Einstein at Home"
+
+#: clientgui/Localization.cpp:83
+msgid "View and modify your Einstein at Home account profile and preferences"
+msgstr "Ver e modificar as preferências no perfil da conta no Einstein at Home"
+
+#: clientgui/Localization.cpp:85
+msgid "Account summary"
+msgstr "Resumo da conta"
+
+#: clientgui/Localization.cpp:95
+msgid "View a listing of all the computers on which you are running Einstein at Home"
+msgstr "Ver uma lista de todos os computadores onde está a correr o Einstein at Home"
+
+#: clientgui/Localization.cpp:101
+msgid "LIGO project"
+msgstr "Projecto LIGO"
+
+#: clientgui/Localization.cpp:103
+msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
+msgstr "A página principal do projecto LASER Interferometer Gravitational-wave Observatory (LIGO)"
+
+#: clientgui/Localization.cpp:105
+msgid "GEO-600 project"
+msgstr "Projecto GEO-600"
+
+#: clientgui/Localization.cpp:107
+msgid "The home page of the GEO-600 project"
+msgstr "A página principal do projecto GEO-600"
+
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
+msgid "Team"
+msgstr "Equipa"
+
+#: clientgui/Localization.cpp:117
+msgid "Info about your Team"
+msgstr "Informação acerca da sua Equipa"
+
+#: clientgui/Localization.cpp:123
+msgid "Get help for climateprediction.net"
+msgstr "Obter ajuda para climateprediction.net"
+
+#: clientgui/Localization.cpp:125
+msgid "News"
+msgstr "Novidades"
+
+#: clientgui/Localization.cpp:127
+msgid "climateprediction.net News"
+msgstr "Novidades de climateprediction.net"
+
+#: clientgui/Localization.cpp:131
+msgid "View your account information, credits, and trickles"
+msgstr "Ver informação da sua conta, créditos e percurso"
+
+#: clientgui/Localization.cpp:135
+msgid "Info about your team"
+msgstr "Informação acerca da sua equipa"
+
+#: clientgui/Localization.cpp:141
+msgid "Search for help in our help system"
+msgstr "Procurar por ajuda no nosso sistema de ajuda"
+
+#: clientgui/Localization.cpp:143
+msgid "Global Statistics"
+msgstr "Estatisticas Globais"
+
+#: clientgui/Localization.cpp:145
+msgid "Summary statistics for World Community Grid"
+msgstr "Resumo das estatisticas para Worl Community Grid"
+
+#: clientgui/Localization.cpp:147
+msgid "My Grid"
+msgstr "A minha grelha"
+
+#: clientgui/Localization.cpp:149
+msgid "Your statistics and settings"
+msgstr "As suas estatisticas e definições"
+
+#: clientgui/Localization.cpp:151
+msgid "Device Profiles"
+msgstr "Perfil do dispositivo"
+
+#: clientgui/Localization.cpp:153
+msgid "Update your device settings"
+msgstr "Actualizar as definições do seu dispositivo"
+
+#: clientgui/Localization.cpp:155
+msgid "Research"
+msgstr "Pesquisa"
+
+#: clientgui/Localization.cpp:157
+msgid "Learn about the projects hosted at World Community Grid"
+msgstr "Aprender acerca dos projectos alojados em World Community Grid"
+
+#: clientgui/MainDocument.cpp:536
+msgid "Starting client services; please wait..."
+msgstr "Iniciando os serviços do client; por favor aguarde..."
+
+#: clientgui/MainDocument.cpp:1073
+msgid "Retrieving system state; please wait..."
+msgstr "Revendo o estado do sistema; por favor aguarde..."
+
+#: clientgui/MainDocument.cpp:1082
+msgid "Retrieving host information; please wait..."
+msgstr "Revendo a informação do host, por favor aguarde..."
+
+#: clientgui/NoInternetConnectionPage.cpp:179
+msgid "No Internet connection"
+msgstr "Sem ligação à internet"
+
+#: clientgui/NoInternetConnectionPage.cpp:182
+msgid "Please connect to the Internet and try again."
+msgstr "Por favor conecte-se à Internet e tente novamente"
+
+#: clientgui/NotDetectedPage.cpp:181
+msgid "Project not found"
+msgstr "Projecto não encontrado"
+
+#: clientgui/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 ""
+"O URL que forneceu não é um projecto baseado no BOINC.\n"
+"\n"
+"Por favor verifique o URL e tente novamente."
+
+#: clientgui/NotDetectedPage.cpp:188
+msgid "Account manager not found"
+msgstr "Gestor de conta não encontrado"
+
+#: clientgui/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 ""
+"O URL que forneceu não é de uma conta baseada no BOINC.\n"
+"\n"
+"Por favor verifique o URL e tente novamente."
+
+#: clientgui/NotFoundPage.cpp:181
+msgid "Login Failed."
+msgstr "Login falhado"
+
+#: clientgui/NotFoundPage.cpp:185
+msgid "Check the username and password, and try again."
+msgstr "Verifique o nome de utilizador e palavra-passe, e tente novamente."
+
+#: clientgui/NotFoundPage.cpp:189
+msgid "Check the email address and password, and try again."
+msgstr "Verifique o endereço de e-mail e palavra-passe e tente novamente"
+
+#: clientgui/ProjectInfoPage.cpp:259
+msgid "Choose a project"
+msgstr "Escolha um projecto"
+
+#: clientgui/ProjectInfoPage.cpp:262
+msgid "To choose a project, click its name or type its URL below."
+msgstr "Para escolher um projecto, carregue no seu nome ou escreva o URL em baixo"
+
+#: clientgui/ProjectInfoPage.cpp:265
+msgid "Project &URL:"
+msgstr "&URL do Projecto"
+
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr "Este projecto pode não ter trabalho para este tipo de computador. Tem a certeza que quer continuar?"
+
+#: clientgui/ProjectInfoPage.cpp:417
+msgid "You are already attached to this project. Please choose a different project."
+msgstr "Já está anexado a este projecto. Por favor escolha um projecto diferente"
+
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr "Carregue"
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr "CPU Multicore Suportado"
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr "NVDIA GPU Suportada"
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr "ATI GPU Suportada"
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr "Website do Projecto"
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
+msgid ""
+"Communicating with project\n"
+"Please wait..."
+msgstr ""
+"A comunicar com o projecto\n"
+"Por favor aguarde..."
+
+#: clientgui/ProjectProcessingPage.cpp:498
+msgid ""
+"Required wizard file(s) are missing from the target server.\n"
+"(lookup_account.php/create_account.php)\n"
+msgstr ""
+"Os ficheiros do assistente do servidor especificado estão desaparecidos.\n"
+"(lookup_account.php/create_account.php)\n"
+
+#: clientgui/ProxyInfoPage.cpp:195
+msgid "Network communication failure"
+msgstr "Falha na comunicação à rede"
+
+#: clientgui/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 ""
+"The World Community Grid - O software BOINC falhou ao comunicar\n"
+"à Internet- As razões mais prováveis são:\n"
+"\n"
+"1) Problemas de conectividade. Verifique a sua conexão à rede ou ao modem\n"
+"e depois volte atrás e tente novamente.\n"
+"\n"
+"2)O software da firewall pessoal está a bloquear World Community\n"
+"Grid - Software BOINC. Configure a sua firewall pessoal para permitir\n"
+"BOINC e Gestor do BOINC comunicar na porta 80 e na porta 443,\n"
+"depois carregue em voltar atrás e tente novamente.\n"
+"\n"
+"3) Está a usar um servidor de proxy.\n"
+"Carregue em Próximo para configurar as definições de proxy do BOINC."
+
+#: clientgui/ProxyInfoPage.cpp:216
+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 ""
+"O BOINC falhou a comunicação à Internet.\n"
+"As razões mais prováveis são:\n"
+"\n"
+"1) Problemas de conectividade. Verifique a rede\n"
+"ou a conexão ao modem e depois carregue em voltar atrás e tente novamente.\n"
+"\n"
+"2) O software da firewall pessoal esta a bloquear o BOINC.\n"
+"Configure a sua firewall pessoal para permitir o BOINC e.\n"
+"o Gestor do BOINC comunicar na porta 80,\n"
+"depois carregue em voltar atrás e tente novamente.\n"
+"\n"
+"3) Está a usar um servidor de proxy.\n"
+"Carregue em seguinte para configurar as definições no BOINC de proxy."
+
+#: clientgui/ProxyPage.cpp:331
+msgid "Proxy configuration"
+msgstr "Configuração da Proxy"
+
+#: clientgui/ProxyPage.cpp:334
+msgid "HTTP proxy"
+msgstr "Proxy HTTP"
+
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
+msgid "Server:"
+msgstr "Servidor:"
+
+#: clientgui/ProxyPage.cpp:350
+msgid "Autodetect"
+msgstr "Detectar Automaticamente"
+
+#: clientgui/ProxyPage.cpp:354
+msgid "SOCKS proxy"
+msgstr "SOCKS proxy"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr "Vista Avançada...\tCtrl+Shift+A"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr "Mostrar o interface gráfico avançado(acessivel)."
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
+msgid "&%s"
+msgstr "&%s"
+
+#: clientgui/sg_ClientStateIndicator.cpp:288
+msgid "Retrieving current status."
+msgstr "A rever o estado actual."
+
+#: clientgui/sg_ClientStateIndicator.cpp:291
+msgid "You don't have any projects.  Please Add a Project."
+msgstr "Não tem nenhum projecto. Por favor adicione um Projecto."
+
+#: clientgui/sg_ClientStateIndicator.cpp:294
+msgid "Downloading work from the server."
+msgstr "Fazendo o download do trabalho do servidor."
+
+#: clientgui/sg_ClientStateIndicator.cpp:299
+msgid "Processing Suspended:  Running On Batteries."
+msgstr "Processamento Suspenso:  A correr em Bateria."
+
+#: clientgui/sg_ClientStateIndicator.cpp:301
+msgid "Processing Suspended:  User Active."
+msgstr "Processamento Suspenso:  Utilizador Activo."
+
+#: clientgui/sg_ClientStateIndicator.cpp:303
+msgid "Processing Suspended:  User paused processing."
+msgstr "Processamento Suspenso:  O Utilizador parou o Processamento."
+
+#: clientgui/sg_ClientStateIndicator.cpp:305
+msgid "Processing Suspended:  Time of Day."
+msgstr "Processamento Suspenso:  Hora do Dia."
+
+#: clientgui/sg_ClientStateIndicator.cpp:307
+msgid "Processing Suspended:  Benchmarks Running."
+msgstr "Processamento Suspenso:  A Correr Performance."
+
+#: clientgui/sg_ClientStateIndicator.cpp:309
+msgid "Processing Suspended."
+msgstr "Processamento Suspenso."
+
+#: clientgui/sg_ClientStateIndicator.cpp:313
+msgid "Waiting to contact project servers."
+msgstr "À espera de contactar os servidores do projecto"
+
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
+msgid "Retrieving current status"
+msgstr "A rever estado actual"
+
+#: clientgui/sg_ClientStateIndicator.cpp:320
+msgid "No work available to process"
+msgstr "Sem trabalho disponivel para processar"
+
+#: clientgui/sg_ClientStateIndicator.cpp:322
+msgid "Unable to connect to the core client"
+msgstr "Incapaz de se conectar ao cliente de core"
+
+#: clientgui/sg_DlgMessages.cpp:107
+msgid "Project"
+msgstr "Projecto"
+
+#: clientgui/sg_DlgMessages.cpp:108
+msgid "Time"
+msgstr "Hora"
+
+#: clientgui/sg_DlgMessages.cpp:109
+msgid "Message"
+msgstr "Mensagem"
+
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
+msgid "Copy all the messages to the clipboard."
+msgstr "Copiar todas as mensagens para o clipboard."
+
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
+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 "Copiar as mensagens seleccionadas para o clipboard. Pode seleccionar multiplas mensagem pressionando o shift enquanto carrega nas mensagens."
+
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
+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 "Copiar as mensagens seleccionadas para o clipboard. Pode seleccionar multiplas mensagens pressionando o shift ou o control enquanto carrega nas mensagens."
+
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
+msgid "Get help with BOINC"
+msgstr "Obter ajuda com o BOINC"
+
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
+msgid "%s - Messages"
+msgstr "%s - Mensagens"
+
+#: clientgui/sg_DlgPreferences.cpp:95
+msgid "100 MB"
+msgstr "100 MB"
+
+#: clientgui/sg_DlgPreferences.cpp:96
+msgid "200 MB"
+msgstr "200 MB"
+
+#: clientgui/sg_DlgPreferences.cpp:97
+msgid "500 MB"
+msgstr "500 MB"
+
+#: clientgui/sg_DlgPreferences.cpp:98
+msgid "1 GB"
+msgstr "1 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:99
+msgid "2 GB"
+msgstr "2 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:100
+msgid "5 GB"
+msgstr "5 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:101
+msgid "10 GB"
+msgstr "10 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:102
+msgid "20 GB"
+msgstr "20 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:103
+msgid "50 GB"
+msgstr "50 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:104
+msgid "100 GB"
+msgstr "100 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:135
+msgid "10%"
+msgstr "10%"
+
+#: clientgui/sg_DlgPreferences.cpp:136
+msgid "20%"
+msgstr "20%"
+
+#: clientgui/sg_DlgPreferences.cpp:137
+msgid "30%"
+msgstr "30%"
+
+#: clientgui/sg_DlgPreferences.cpp:138
+msgid "40%"
+msgstr "40%"
+
+#: clientgui/sg_DlgPreferences.cpp:139
+msgid "50%"
+msgstr "50%"
+
+#: clientgui/sg_DlgPreferences.cpp:140
+msgid "60%"
+msgstr "60%"
+
+#: clientgui/sg_DlgPreferences.cpp:141
+msgid "70%"
+msgstr "70%"
+
+#: clientgui/sg_DlgPreferences.cpp:142
+msgid "80%"
+msgstr "80%"
+
+#: clientgui/sg_DlgPreferences.cpp:143
+msgid "90%"
+msgstr "90%"
+
+#: clientgui/sg_DlgPreferences.cpp:144
+msgid "100%"
+msgstr "100%"
+
+#: clientgui/sg_DlgPreferences.cpp:169
+msgid "1"
+msgstr "1"
+
+#: clientgui/sg_DlgPreferences.cpp:170
+msgid "3"
+msgstr "3"
+
+#: clientgui/sg_DlgPreferences.cpp:171
+msgid "5"
+msgstr "5"
+
+#: clientgui/sg_DlgPreferences.cpp:172
+msgid "10"
+msgstr "10"
+
+#: clientgui/sg_DlgPreferences.cpp:173
+msgid "15"
+msgstr "15"
+
+#: clientgui/sg_DlgPreferences.cpp:174
+msgid "30"
+msgstr "30"
+
+#: clientgui/sg_DlgPreferences.cpp:175
+msgid "60"
+msgstr "60"
+
+#: clientgui/sg_DlgPreferences.cpp:284
+msgid "Skin"
+msgstr "Máscara"
+
+#: clientgui/sg_DlgPreferences.cpp:291
+msgid "Skin:"
+msgstr "Máscara:"
+
+#: clientgui/sg_DlgPreferences.cpp:307
+msgid "Preferences"
+msgstr "Preferências"
+
+#: clientgui/sg_DlgPreferences.cpp:324
+msgid "I want to customize my preferences for this computer only."
+msgstr "Quero personalizar as minhas preferências para este computador apenas."
+
+#: clientgui/sg_DlgPreferences.cpp:333
+msgid "Customized Preferences"
+msgstr "Preferências Personalizadas"
+
+#: clientgui/sg_DlgPreferences.cpp:349
+msgid "Do work only between:"
+msgstr "Trabalhar apenas entre:"
+
+#: clientgui/sg_DlgPreferences.cpp:371
+msgid "Connect to internet only between:"
+msgstr "Conectar-se à Internet apenas entre:"
+
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
+msgid "Use no more than:"
+msgstr "Usar não mais do que:"
+
+#: clientgui/sg_DlgPreferences.cpp:406
+msgid "of disk space"
+msgstr "de espaço em disco"
+
+#: clientgui/sg_DlgPreferences.cpp:423
+msgid "of the processor"
+msgstr "de processador"
+
+#: clientgui/sg_DlgPreferences.cpp:427
+msgid "Do work while on battery?"
+msgstr "Trabalhar enquanto ligado à bateria?"
+
+#: clientgui/sg_DlgPreferences.cpp:440
+msgid "Do work after idle for:"
+msgstr "Trabalhar depois de estar inactivo após:"
+
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
+msgid "Anytime"
+msgstr "A qualquer altura"
+
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
+msgid "%d MB"
+msgstr "%d MB"
+
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
+msgid "%4.2f GB"
+msgstr "%4.2f GB"
+
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
+msgid "%d%%"
+msgstr "%d%%"
+
+#: clientgui/sg_DlgPreferences.cpp:864
+msgid "0 (Run Always)"
+msgstr "0 (Correr Sempre)"
+
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
+msgid "%d"
+msgstr "%d"
+
+#: clientgui/sg_ImageButton.cpp:90
+msgid "Paused: Other work running"
+msgstr "Pausado: Outro trabalho a correr"
+
+#: clientgui/sg_ImageButton.cpp:92
+msgid "Paused: User initiatied.  Click 'Resume' to continue"
+msgstr "Pausado: Utilizador iniciado. Carregue em 'Resumir' para continuar"
+
+#: clientgui/sg_ImageButton.cpp:94
+msgid "Paused: User active"
+msgstr "Pausado: Utilizador activo"
+
+#: clientgui/sg_ImageButton.cpp:96
+msgid "Paused: Computer on battery"
+msgstr "Pausado: Computador ligado à bateria"
+
+#: clientgui/sg_ImageButton.cpp:98
+msgid "Paused: Time of Day"
+msgstr "Pausado: Hora do Dia"
+
+#: clientgui/sg_ImageButton.cpp:100
+msgid "Paused: Benchmarks running"
+msgstr "Pausado: Performance a correr"
+
+#: clientgui/sg_ImageButton.cpp:102
+msgid "Paused"
+msgstr "Pausado"
+
+#: clientgui/sg_ImageButton.cpp:104
+msgid "Paused: Application start delayed"
+msgstr "Pausado: Aplicação começou com atraso"
+
+#: clientgui/sg_ImageButton.cpp:132
+msgid "Click to show project graphics"
+msgstr "Carregue para mostrar os gráficos do projecto"
+
+#: clientgui/sg_ProjectsComponent.cpp:106
+msgid "Attach to an additional project"
+msgstr "Anexar a um projecto adicional"
+
+#: clientgui/sg_ProjectsComponent.cpp:123
+msgid "Synchronize projects with account manager system"
+msgstr "Sincronizar os projectos com um sistema de gestor de conta"
+
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
+msgid "Open a window to view messages"
+msgstr "Abrir uma janela para ver as mensagens"
+
+#: clientgui/sg_ProjectsComponent.cpp:223
+msgid "Stop all activity"
+msgstr "Parar todas as actividades"
+
+#: clientgui/sg_ProjectsComponent.cpp:235
+msgid "Resume activity"
+msgstr "Resumir actividade"
+
+#: clientgui/sg_ProjectsComponent.cpp:252
+msgid "Open a window to set your preferences"
+msgstr "Abrir uma janela para definir as preferências"
+
+#: clientgui/sg_ProjectsComponent.cpp:269
+msgid "Switch to the BOINC advanced view"
+msgstr "Mudar para a janela de modo avançado do BOINC"
+
+#: clientgui/sg_ProjectsComponent.cpp:296
+msgid "My Projects:"
+msgstr "Os Meus Projectos"
+
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
+msgid "%s. Work done by %s: %0.2f"
+msgstr "%s. Trabalho realizado por %s: %0.2f"
+
+#: clientgui/sg_StatImageLoader.cpp:154
+msgid "Remove Project"
+msgstr "Remover Projecto"
+
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
+msgid "Are you sure you want to detach from project '%s'?"
+msgstr "Tem a certeza que quer desanexar do projecto '%s'?"
+
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
+msgid "Detach from Project"
+msgstr "Desanexar do Projecto"
+
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
+msgid "%.1lf"
+msgstr "%.11f"
+
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
+msgid "%d hr %d min %d sec"
+msgstr "%d hr %d min %d seg"
+
+#: clientgui/sg_ViewTabPage.cpp:421
+msgid "Are you sure you want to display graphics on a remote machine?"
+msgstr "Tem a certeza que quer mostrar os gráficos numa máquina remota?"
+
+#: clientgui/sg_ViewTabPage.cpp:422
+msgid "Show graphics"
+msgstr "Mostrar gráficos"
+
+#: clientgui/sg_ViewTabPage.cpp:444
+msgid "Application: "
+msgstr "Aplicação: "
+
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
+msgid "Time Remaining: "
+msgstr "Tempo Restante: "
+
+#: clientgui/sg_ViewTabPage.cpp:450
+msgid "Elapsed Time: "
+msgstr "Tempo Decorrido: "
+
+#: clientgui/TermsOfUsePage.cpp:218
+msgid "Terms of Use"
+msgstr "Termos de Uso"
+
+#: clientgui/TermsOfUsePage.cpp:222
+msgid "Please read the following terms of use:"
+msgstr "Por favor leia os seguintes termos de uso:"
+
+#: clientgui/TermsOfUsePage.cpp:231
+msgid "I agree to the terms of use."
+msgstr "Eu concordo com os termos de uso."
+
+#: clientgui/TermsOfUsePage.cpp:237
+msgid "I do not agree with the terms of use."
+msgstr "Eu não concordo com os termos de uso."
+
+#: clientgui/UnavailablePage.cpp:183
+msgid "Project temporarily unavailable"
+msgstr "Projecto temporariamente indisponivel"
+
+#: clientgui/UnavailablePage.cpp:186
+msgid ""
+"The project is temporarily unavailable.\n"
+"\n"
+"Please try again later."
+msgstr ""
+"O projecto está temporariamente indisponivel.\n"
+"\n"
+"Por favor tente mais tarde."
+
+#: clientgui/UnavailablePage.cpp:190
+msgid "Account manager temporarily unavailable"
+msgstr "Gestor de conta temporariamente indisponivel"
+
+#: clientgui/UnavailablePage.cpp:193
+msgid ""
+"The account manager is temporarily unavailable.\n"
+"\n"
+"Please try again later."
+msgstr ""
+"O gestor de conta está temporariamente indisponivel.\n"
+"\n"
+"Por favor tente mais tarde."
+
+#: clientgui/ValidateAccountKey.cpp:68
+msgid "Please specify an account key to continue."
+msgstr "Por favor especifique uma chave de conta para continuar"
+
+#: clientgui/ValidateAccountKey.cpp:71
+msgid "Invalid Account Key; please enter a valid Account Key"
+msgstr "Chave de Conta Inválida; Por favor insira uma Chave de Conta Válida"
+
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
+msgid "Validation conflict"
+msgstr "Conflito de validação"
+
+#: clientgui/ValidateEmailAddress.cpp:72
+msgid "Please specify an email address"
+msgstr "Por favor especifique um endereço de e-mail"
+
+#: clientgui/ValidateEmailAddress.cpp:75
+msgid "Invalid email address; please enter a valid email address"
+msgstr "Endereço de e-mail inválido; por favor insira um endereço de email válido"
+
+#: clientgui/ValidateURL.cpp:69
+msgid "Missing URL"
+msgstr "URL em falta"
+
+#: clientgui/ValidateURL.cpp:70
+msgid ""
+"Please specify a URL.\n"
+"For example:\n"
+"http://www.example.com/"
+msgstr ""
+"Por favor especifique um URL.\n"
+"Por exemplo:\n"
+"http://www.example.com/"
+
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
+msgid "Invalid URL"
+msgstr "URL Inválido"
+
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
+msgid ""
+"Please specify a valid URL.\n"
+"For example:\n"
+"http://boincproject.example.com"
+msgstr ""
+"Por favor especifique um URL válido.\n"
+"Por exemplo:\n"
+"http://boincproject.example.com"
+
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
+msgid "'%s' does not contain a valid host name."
+msgstr "'%s' não contém um nome de host válido."
+
+#: clientgui/ValidateURL.cpp:111
+#, c-format
+msgid "'%s' does not contain a valid path."
+msgstr "'%s' não contém um caminho válido."
+
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
+msgid "Commands"
+msgstr "Comandos"
+
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
+msgid "Copy all messages"
+msgstr "Copiar todas as mensagens"
+
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
+msgid "Copy selected messages"
+msgstr "Copiar as mensagens seleccionadas"
+
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
+msgid "Show only this project"
+msgstr "Mostrar apenas este projecto"
+
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
+msgid "Show only the messages for the selected project."
+msgstr "Mostrar apenas as mensagens para o projecto seleccionado."
+
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
+msgid "Messages"
+msgstr "Mensagens"
+
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
+msgid "Copying all messages to the clipboard..."
+msgstr "Copiar todas as mensagens para o clipboard"
+
+#: clientgui/ViewMessages.cpp:223
+msgid "Copying selected messages to the clipboard..."
+msgstr "Copiar as mensagens seleccionadas para o clipboard"
+
+#: clientgui/ViewMessages.cpp:286
+msgid "Filtering messages..."
+msgstr "Filtrando mensagens..."
+
+#: clientgui/ViewMessages.cpp:494
+msgid "Show all messages"
+msgstr "Mostrar todas as mensagens"
+
+#: clientgui/ViewMessages.cpp:495
+msgid "Show messages for all projects."
+msgstr "Mostrar mensagens para todos os projectos"
+
+#: clientgui/ViewMessagesGrid.cpp:128
+msgid "ID"
+msgstr "ID"
+
+#: clientgui/ViewMessagesGrid.cpp:128
+msgid "Priority"
+msgstr "Prioridade"
+
+#: clientgui/ViewMessagesGrid.cpp:151
+msgid "MessagesGrid"
+msgstr "Grelha de Mensagens "
+
+#: clientgui/ViewMessagesGrid.cpp:209
+msgid "Copying selected messages to Clipboard..."
+msgstr "Copiando as mensagens seleccionadas para o Clipboard..."
+
+#: clientgui/ViewMessagesGrid.cpp:396
+msgid "Info"
+msgstr "Informação"
+
+#: clientgui/ViewMessagesGrid.cpp:399
+msgid "Warning"
+msgstr "Aviso"
+
+#: clientgui/ViewMessagesGrid.cpp:403
+msgid "Error"
+msgstr "Erro"
+
+#: clientgui/ViewNews.cpp:76
+msgid "News Feeds"
+msgstr "Actualização de Novidades"
+
+#: clientgui/ViewNews.cpp:80
+msgid "BOINC"
+msgstr "BOINC"
+
+#: clientgui/ViewNews.cpp:81
+msgid "Display the latest news about BOINC"
+msgstr "Mostrar as ultimas novidades acerca do BOINC"
+
+#: clientgui/ViewNews.cpp:87
+msgid "BOINC Website"
+msgstr "Website do BOINC"
+
+#: clientgui/ViewNews.cpp:88
+msgid "Display the latest news about BOINC from the BOINC website"
+msgstr "Mostrar as ultimas novidades acerca do BOINC a partir do website do BOINC"
+
+#: clientgui/ViewProjects.cpp:173
+msgid "Update"
+msgstr "Actualizar"
+
+#: clientgui/ViewProjects.cpp:174
+msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
+msgstr "Reportar todas as tarefas completas, obter os ultimos créditos, obter as ultimas preferências e possivelmente mais tarefas."
+
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
+msgid "Suspend"
+msgstr "Suspender"
+
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
+msgid "Suspend tasks for this project."
+msgstr "Suspender tarefas para este projecto"
+
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
+msgid "No new tasks"
+msgstr "Não obter novas tarefas"
+
+#: clientgui/ViewProjects.cpp:188
+msgid "Don't get new tasks for this project."
+msgstr "Não obter novas tarefas para este projecto."
+
+#: clientgui/ViewProjects.cpp:194
+msgid "Reset project"
+msgstr "Fazer reset ao projecto"
+
+#: clientgui/ViewProjects.cpp:195
+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 "Apaga todos os ficheiros e tarefas associadas com este projecto e obtém novas tarefas. Pode actualizar o projecto primeiro para reportar tarefas concluidas."
+
+#: clientgui/ViewProjects.cpp:201
+msgid "Detach"
+msgstr "Desanexar"
+
+#: clientgui/ViewProjects.cpp:202
+msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
+msgstr "Desanexar computador deste projecto. Tarefas em progresso serão perdidas (use 'Actualizar' primeiro para reportar tarefas concluidas)."
+
+#: clientgui/ViewProjects.cpp:208
+msgid "Properties"
+msgstr "Propriedades"
+
+#: clientgui/ViewProjects.cpp:209
+msgid "Show project details."
+msgstr "Mostrar detalhes do projecto"
+
+#: clientgui/ViewProjects.cpp:219
+msgid "Account"
+msgstr "Conta"
+
+#: clientgui/ViewProjects.cpp:221
+msgid "Work done"
+msgstr "Trabalho realizado"
+
+#: clientgui/ViewProjects.cpp:222
+msgid "Avg. work done"
+msgstr "Média do trabalho realizado"
+
+#: clientgui/ViewProjects.cpp:224
+msgid "Status"
+msgstr "Estado"
+
+#: clientgui/ViewProjects.cpp:249
+msgid "Projects"
+msgstr "Projectos"
+
+#: clientgui/ViewProjects.cpp:296
+msgid "Updating project..."
+msgstr "Actualizando o projecto..."
+
+#: clientgui/ViewProjects.cpp:338
+msgid "Resuming project..."
+msgstr "Resumindo o projecto..."
+
+#: clientgui/ViewProjects.cpp:342
+msgid "Suspending project..."
+msgstr "Suspendendo o projecto..."
+
+#: clientgui/ViewProjects.cpp:379
+msgid "Telling project to allow additional task downloads..."
+msgstr "Informando o projecto para permitir downloads de tarefas adicionais..."
+
+#: clientgui/ViewProjects.cpp:383
+msgid "Telling project to not fetch any additional tasks..."
+msgstr "Informando o projecto para não procurar por tarefas adicionais..."
+
+#: clientgui/ViewProjects.cpp:419
+msgid "Resetting project..."
+msgstr "Fazendo o reset ao projecto..."
+
+#: clientgui/ViewProjects.cpp:432
+#, c-format
+msgid "Are you sure you want to reset project '%s'?"
+msgstr "Tem a certeza que quer fazer o reset ao projecto '%s?"
+
+#: clientgui/ViewProjects.cpp:438
+msgid "Reset Project"
+msgstr "Fazer Reset ao Projecto"
+
+#: clientgui/ViewProjects.cpp:477
+msgid "Detaching from project..."
+msgstr "Desanexando do projecto..."
+
+#: clientgui/ViewProjects.cpp:537
+msgid "Launching browser..."
+msgstr "Lançando o navegador..."
+
+#: clientgui/ViewProjects.cpp:703
+msgid "Resume"
+msgstr "Resumir"
+
+#: clientgui/ViewProjects.cpp:703
+msgid "Resume tasks for this project."
+msgstr "Resumir tarefas para este projecto"
+
+#: clientgui/ViewProjects.cpp:722
+msgid "Allow new tasks"
+msgstr "Permitir novas tarefas"
+
+#: clientgui/ViewProjects.cpp:722
+msgid "Allow fetching new tasks for this project."
+msgstr "Permitir is buscar novas tarefas para este projecto."
+
+#: clientgui/ViewProjects.cpp:726
+msgid "Don't fetch new tasks for this project."
+msgstr "Não ir buscar novas tarefas para este projecto."
+
+#: clientgui/ViewProjects.cpp:1052
+msgid "Suspended by user"
+msgstr "Suspenso pelo utilizador"
+
+#: clientgui/ViewProjects.cpp:1055
+msgid "Won't get new tasks"
+msgstr "Não obter novas tarefas"
+
+#: clientgui/ViewProjects.cpp:1058
+msgid "Project ended - OK to detach"
+msgstr "Projecto terminado - OK para desanexar"
+
+#: clientgui/ViewProjects.cpp:1061
+msgid "Will detach when tasks done"
+msgstr "Irá desanexar quando as tarefas concluirem"
+
+#: clientgui/ViewProjects.cpp:1064
+msgid "Scheduler request pending"
+msgstr "Requisitar agendador pendente"
+
+#: clientgui/ViewProjects.cpp:1068
+msgid "Scheduler request in progress"
+msgstr "Requisitar agendador em progresso"
+
+#: clientgui/ViewProjects.cpp:1074
+msgid "Communication deferred "
+msgstr "Comunicação deferida"
+
+#: clientgui/ViewProjectsGrid.cpp:193
+msgid "ProjectsGrid"
+msgstr "Grelha de Projectos"
+
+#: clientgui/ViewResources.cpp:61
+msgid "Total disk usage"
+msgstr "Uso de disco total"
+
+#: clientgui/ViewResources.cpp:82
+msgid "Disk usage by BOINC projects"
+msgstr "Uso de disco pelos projectos BOINC"
+
+#: clientgui/ViewResources.cpp:117
+msgid "Disk"
+msgstr "Disco"
+
+#: clientgui/ViewResources.cpp:223
+msgid "not attached to any BOINC project: 0 bytes"
+msgstr "não anexado a projectos BOINC: 0 bytes"
+
+#: clientgui/ViewResources.cpp:260
+msgid "used by BOINC: "
+msgstr "usado pelo BOINC:"
+
+#: clientgui/ViewResources.cpp:270
+msgid "free, available to BOINC: "
+msgstr "livre, disponivel para o BOINC: "
+
+#: clientgui/ViewResources.cpp:280
+msgid "free, not available to BOINC: "
+msgstr "livre, não disponivel para o BOINC: "
+
+#: clientgui/ViewResources.cpp:290
+msgid "free: "
+msgstr "livre: "
+
+#: clientgui/ViewResources.cpp:300
+msgid "used by other programs: "
+msgstr "usado por outros programas: "
+
+#: clientgui/ViewStatistics.cpp:1142
+msgid "User Total"
+msgstr "Totais do Utilizador"
+
+#: clientgui/ViewStatistics.cpp:1143
+msgid "User Average"
+msgstr "Média do Utilizador"
+
+#: clientgui/ViewStatistics.cpp:1144
+msgid "Host Total"
+msgstr "Totais do Host"
+
+#: clientgui/ViewStatistics.cpp:1145
+msgid "Host Average"
+msgstr "Média do Host"
+
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
+msgid "Last update: %.0f days ago"
+msgstr "Ultima actualização: %s.0f dias atrás"
+
+#: clientgui/ViewStatistics.cpp:1745
+msgid "Show user total"
+msgstr "Mostrar totais do utilizador"
+
+#: clientgui/ViewStatistics.cpp:1746
+msgid "Show total credit for user"
+msgstr "Mostrar créditos totais do utilizador"
+
+#: clientgui/ViewStatistics.cpp:1752
+msgid "Show user average"
+msgstr "Mostrar médias do utilizador"
+
+#: clientgui/ViewStatistics.cpp:1753
+msgid "Show average credit for user"
+msgstr "Mostrar média de créditos do utilizador"
+
+#: clientgui/ViewStatistics.cpp:1759
+msgid "Show host total"
+msgstr "Mostrar totais do host"
+
+#: clientgui/ViewStatistics.cpp:1760
+msgid "Show total credit for host"
+msgstr "Mostrar créditos totais do host"
+
+#: clientgui/ViewStatistics.cpp:1766
+msgid "Show host average"
+msgstr "Mostrar média do host"
+
+#: clientgui/ViewStatistics.cpp:1767
+msgid "Show average credit for host"
+msgstr "Mostrar média de créditos do host"
+
+#: clientgui/ViewStatistics.cpp:1776
+msgid "< &Previous project"
+msgstr "< &Projecto anterior"
+
+#: clientgui/ViewStatistics.cpp:1777
+msgid "Show chart for previous project"
+msgstr "Mostrar gráficos do projecto anterior"
+
+#: clientgui/ViewStatistics.cpp:1782
+msgid "&Next project >"
+msgstr "&Próximo projecto >"
+
+#: clientgui/ViewStatistics.cpp:1783
+msgid "Show chart for next project"
+msgstr "Mostrar gráficos do proximo projecto"
+
+#: clientgui/ViewStatistics.cpp:1788
+msgid "Mode view"
+msgstr "Modo de visualização"
+
+#: clientgui/ViewStatistics.cpp:1791
+msgid "All projects"
+msgstr "Todos os projectos"
+
+#: clientgui/ViewStatistics.cpp:1792
+msgid "Show all projects, one chart per project"
+msgstr "Mostrar todos os projectos, um gráfico por projecto"
+
+#: clientgui/ViewStatistics.cpp:1798
+msgid "One project"
+msgstr "Um projecto"
+
+#: clientgui/ViewStatistics.cpp:1799
+msgid "Show one chart with selected project"
+msgstr "Mostrar um gráfico com os projectos seleccionados"
+
+#: clientgui/ViewStatistics.cpp:1805
+msgid "All projects(sum)"
+msgstr "Todos os projectos(juntos)"
+
+#: clientgui/ViewStatistics.cpp:1806
+msgid "Show one chart with all projects"
+msgstr "Mostrar um gráfico com todos os projectos"
+
+#: clientgui/ViewStatistics.cpp:1833
+msgid "Statistics"
+msgstr "Estatísticas"
+
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
+msgid "Updating charts..."
+msgstr "Actualizando gráficos..."
+
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
+msgid "Retry Now"
+msgstr "Tente novamentente"
+
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
+msgid "Click 'Retry now' to transfer the file now"
+msgstr "Carregue em 'Tente Novamente' para transferir o ficheiro agora"
+
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
+msgid "Abort Transfer"
+msgstr "Cancelar Transferência"
+
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
+msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
+msgstr "Carregue em 'Cancelar transferência' para apagar o ficheiro em espera. Isto prevenirá que lhe seja atribuido crédito para este resultado. "
+
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
+msgid "File"
+msgstr "Ficheiro"
+
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
+msgid "Progress"
+msgstr "Progresso"
+
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
+msgid "Size"
+msgstr "Tamanho"
+
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
+msgid "Elapsed Time"
+msgstr "Tempo Decorrido"
+
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
+msgid "Speed"
+msgstr "Velocidade"
+
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
+msgid "Transfers"
+msgstr "Transferências"
+
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
+msgid "Retrying transfer now..."
+msgstr "Tentando transferir novamente..."
+
+#: clientgui/ViewTransfers.cpp:309
+msgid "Aborting transfer..."
+msgstr "Cancelando transferência..."
+
+#: clientgui/ViewTransfers.cpp:322
+#, 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 ""
+"Tem a certeza que quer cancelar a transferência do ficheiro '%s?\n"
+"NOTA: Cancelando uma transferência invalidará a tarefa e\n"
+"não receberá crédito pela mesma."
+
+#: clientgui/ViewTransfers.cpp:328
+msgid "Abort File Transfer"
+msgstr "Cancelar Transferência do Ficheiro"
+
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
+msgid "Retry in "
+msgstr "Tentar novamente em "
+
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
+msgid "Upload pending"
+msgstr "Upload pendente"
+
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
+msgid "Download pending"
+msgstr "Download pendente"
+
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr " (project backoff:"
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ")"
+
+#: clientgui/ViewTransfersGrid.cpp:161
+msgid "TransfersGrid"
+msgstr "Grelha de Transferências"
+
+#: clientgui/ViewTransfersGrid.cpp:228
+msgid "Aborting transfer(s)..."
+msgstr "Cancelando transferências(s)..."
+
+#: clientgui/ViewTransfersGrid.cpp:230
+msgid ""
+"Are you sure you want to abort this file(s) transfer ?\n"
+"NOTE: Aborting a transfer will invalidate a task and you\n"
+"will not receive credit for it."
+msgstr ""
+"Tem a certeza que quer cancelar a transferência deste(s) ficheiro(s) '%s?\n"
+"NOTA: Cancelando uma transferência invalidará a tarefa e\n"
+"não receberá crédito pela mesma."
+
+#: clientgui/ViewTransfersGrid.cpp:231
+msgid "Abort File Transfer(s)"
+msgstr "Cancelar Transferência(s) do(s) Ficheiro(s)"
+
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr "Mostrar tarefas activas"
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr "Mostrar apenas as tarefas activas."
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
+msgid "Show application graphics in a window."
+msgstr "Mostrar gráfico da aplicação numa janela."
+
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
+msgid "Suspend work for this result."
+msgstr "Suspender trabalho para este rsultado."
+
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
+msgid "Abort"
+msgstr "Cancelar"
+
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
+msgid "Abandon work on the result. You will get no credit for it."
+msgstr "Abandonar resultado do trabalho. Não receberá crédito por ele"
+
+#: clientgui/ViewWork.cpp:213
+msgid "Show task details."
+msgstr "Mostrar detalhes da tarefa"
+
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
+msgid "Name"
+msgstr "Nome"
+
+#: clientgui/ViewWork.cpp:225
+msgid "Elapsed"
+msgstr "Decorrido"
+
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
+msgid "To completion"
+msgstr "Para completar"
+
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
+msgid "Tasks"
+msgstr "Tarefas"
+
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
+msgid "Resuming task..."
+msgstr "Resumindo tarefa..."
+
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
+msgid "Suspending task..."
+msgstr "Suspendendo tarefa..."
+
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
+msgid "Showing graphics for task..."
+msgstr "Mostrando gráficos para a tarefa..."
+
+#: clientgui/ViewWork.cpp:426
+#, c-format
+msgid ""
+"Are you sure you want to abort this task '%s'?\n"
+"(Progress: %s, Status: %s)"
+msgstr ""
+"Tem a certeza que quer cancelar esta tarefa '%s'?\n"
+"(Progresso: %s, Estado: %s)"
+
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "Tem a certeza que quer cancelar estas %d tarefas?"
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
+msgid "Abort task"
+msgstr "Cancelar tarefa"
+
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Cancelando resultado..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr "Mostrar todas as tarefas"
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr "Mostrar todas as tarefas."
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
+msgid "Resume work for this task."
+msgstr "Resumir trabalho para esta tarefa."
+
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
+msgid "Suspend work for this task."
+msgstr "Suspender trabalho para esta tarefa."
+
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr "GPU não detectado"
+
+#: clientgui/ViewWork.cpp:1149
+msgid " - an exclusive app is running"
+msgstr " - uma aplicação exclusiva está a correr"
+
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
+msgid " (non-CPU-intensive)"
+msgstr " (CPU não intensivo)"
+
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr "Abortado: não executado devido ao tempo limite excedido"
+
+#: clientgui/ViewWorkGrid.cpp:184
+msgid "TasksGrid"
+msgstr "Grelha de Tarefas"
+
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
+msgid ""
+"Are you sure you want to abort this task '%s'?\n"
+"(Progress: %s %%, Status: %s)"
+msgstr ""
+"Tem a certeza que quer cancelar esta tarefa '%s'?\n"
+"(Progresso: %s %%, Estado: %s)"
+
+#: clientgui/WelcomePage.cpp:255
+msgid "Attach to project or account manager"
+msgstr "Anexar ao projecto ou gestor de conta"
+
+#: clientgui/WelcomePage.cpp:263
+#, 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 ""
+"Se possivel, adicione projectos no\n"
+"%s website.\n"
+"\n"
+"Projectos adicionados através do assistente não ficarão\n"
+"listados ou possiveis de gerir através do %s.%s website.\n"
+"\n"
+
+#: clientgui/WelcomePage.cpp:276
+msgid ""
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
+"Vamos guiá-lo no processo de anexação\n"
+"a um projecto ou gestor de conta."
+
+#: clientgui/WelcomePage.cpp:280
+msgid ""
+"You have selected to attach to a new BOINC project.  Attaching to a new\n"
+"project means that you will be connecting your computer to a new website\n"
+"and organization.  If this is what you wanted to do, then please click on\n"
+"the 'Next' button below.\n"
+"\n"
+"Some projects like World Community Grid run multiple research applications.\n"
+"If you want to change which research applications are sent to your computer\n"
+"to run, then you should visit the project's website and modify your\n"
+"preferences there.\n"
+"\n"
+"To change which research applications are sent to you from\n"
+"World Community Grid then please click on the following button:"
+msgstr ""
+"Escolheu anexar-se a um novo Projecto do BOINC. Anexando-se a um novo\n"
+"projecto significa que irá conectar o seu computador a um novo website\n"
+"e organização. Se é isto que quer fazer, então carregue no\n"
+"botão 'Próximo' em baixo.\n"
+"\n"
+"Algnus projectos como o World Community Grid correm variadas aplicações de pesquisa.\n"
+"Se quer trocar as aplicações de pesquisa que são mandadas para correrem no seu computador\n"
+"então deve visita o website do projecto e modificar as suas\n"
+"preferências lá.\n"
+"\n"
+"Para mudar que aplicações são mandadas para si do\n"
+"World Community Grid, então carregue no seguinte botão:"
+
+#: clientgui/WelcomePage.cpp:283
+msgid "Change Research Applications at World Community Grid"
+msgstr "Trocar Aplicações de Pesquisa no World Community Grid"
+
+#: clientgui/WelcomePage.cpp:300
+msgid "To continue, click Next."
+msgstr "Para continuar, carregue em Próximo."
+
+#: clientgui/WizardAttachProject.cpp:610
+msgid "Do you really want to cancel?"
+msgstr "Quer mesmo cancelar?"
+
+#: clientgui/WizardAttachProject.cpp:611
+msgid "Question"
+msgstr "Questão"
+
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
+msgid "&Next >"
+msgstr "&Próximo >"
+
+#: clientgui/wizardex.cpp:383
+msgid "< &Back"
+msgstr "< &Anterior"
+
+#: clientgui/wizardex.cpp:553
+msgid "&Finish"
+msgstr "&Terminar"
+
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
+msgid "New page inserted. Index = %i"
+msgstr "Nova página inserida. Index = %i"
+
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
+msgid "New page appended. Index = %i"
+msgstr "Nova página em apenso. Index = %i"
+
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
+msgid "Old Page Index = %i"
+msgstr "Index da Página Antiga"
+
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
+msgid "OnDropTarget: index by HitTest = %i"
+msgstr "OnDropTarget: index by HitTest = %i"
+
+#: clientgui/common/wxPieCtrl.cpp:66
+msgid "Pie Ctrl"
+msgstr "Pie Ctrl"
+
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr "para suporte de acessibilidade, por favor seleccione avançado no menu de vista ou escreve o comando shift a"
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr "Este painel contém gráficos mostrando os totais dos projectos do utilizador"
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr "branco"
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr "lista de "
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr "está vazio"
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr "%d de %d "
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr "coluna actual"
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr " ordem decrescente "
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr " ordem crescente "
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr "coluna "
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr "a lista está vazia"
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr "seleccionada "
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr "fila %d "
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr "de %d "
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr "coluna %d "
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr "lista de projectos ou gestores de conta"
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr "fila %d de %d "
+
+#: clientgui/DlgAdvPreferences.h:29
+msgid "specify work start and stop hours in format HH:MM-HH:MM"
+msgstr "especifique as horas de começo e fim do trabalho no formato HH:MM-HH:MM"
+
+#: clientgui/DlgAdvPreferences.h:30
+msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
+msgstr "especifique as horas de começo e fim do uso da rede no formato HH:MM-HH:MM"
+
+#, fuzzy
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "&Fechar Janela\tCtrl+W"
+
+#~ msgid "&News\tCtrl+Shift+N"
+#~ msgstr "&Novidades\tCtrl+Shift+N"
+
+#~ msgid "Display news"
+#~ msgstr "Mostrar novidades"
+
+#~ msgid "Network activity based on &preferences"
+#~ msgstr "Actividade de rede baseada nas &preferências"
+
+#~ msgid "&Network activity suspended"
+#~ msgstr "&Suspender actividade de rede"
+
+#, c-format
+#~ msgid "%s - Shut down the current client..."
+#~ msgstr "%s - Desligar o cliente actual..."
+
+#, c-format
+#~ msgid ""
+#~ "%s will shut down the current client\n"
+#~ "and prompt you for another host to connect to."
+#~ msgstr ""
+#~ "%s vai desligar o cliente actualmente ligado,\n"
+#~ "e pedir para ligar outro host a.\n"
+
+#~ msgid "Retrying communications."
+#~ msgstr "Repetindo comunicações"
+
+#, fuzzy
+#~ msgid "Switch between applications every"
+#~ msgstr "Trocar entre aplicações a cada"
+
+#, fuzzy
+#~ msgid "Communicating with project."
+#~ msgstr "A comunicar com o servidor."
+
+#~ msgid "Required files not found on the server."
+#~ msgstr "Ficheiros necvessários não encontrados no servidor."
+
+#, fuzzy
+#~ msgid "An internal server error has occurred."
+#~ msgstr "Ocorreu um erro interno no servidor.\n"
+
+#, fuzzy
+#~ msgid ""
+#~ "You currently are not authorized to manage the client.\n"
+#~ "Please contact your administrator to add you to the 'boinc_master' user group."
+#~ msgstr ""
+#~ "Não está autorizado actualmente para gerir o cliente.\n"
+#~ "Por favor contacte o administrador para que o adicione ao grupo local 'boinc_users'."
+
+#~ msgid "User information"
+#~ msgstr "Informação do Utilizador"
+
+#~ msgid "Account Manager URL"
+#~ msgstr "URL do Gestor de Conta"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "Insira o URL do website do gestor de conta."
+
+#~ msgid "Close BOINC Manager Window."
+#~ msgstr "Fechar Janela do Gestor do BOINC"
+
+#, c-format
+#~ msgid "Exit the %s"
+#~ msgstr "Sair do %s"
+
+#~ msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
+#~ msgstr "A vista avançada permite-lhe mostrar vários tipos de colunas e mostrar graficamente as barras de progresso"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "Anexando ao projecto..."
+
+#~ msgid "&Quit BOINC"
+#~ msgstr "&Sair do BOINC"
+
+#~ msgid "E&xit BOINC"
+#~ msgstr "S&air do BOINC"
+
+#, c-format
+#~ msgid "Removal from %s completed."
+#~ msgstr "Remoção de %s completa."
+
+#~ msgid "Removal succeeded!"
+#~ msgstr "Remoção bem sucedida!"
+
+#~ msgid "Write to disk at most every"
+#~ msgstr "Escrever no disco no máximo a cada"
+
+#~ msgid "Slot"
+#~ msgstr "Slot"
+
+#~ msgid "Already Attached to Project"
+#~ msgstr "Já anexado ao Projecto"
+
+#~ msgid "This project may not have work for your type of computer."
+#~ msgstr "Este projecto pode não ter trabalhos para este tipo de computador."
+
+#, c-format
+#~ msgid "Click here to go to %s's website."
+#~ msgstr "Carregue aqui para ir ao %s's website."
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr ""
+#~ "Vamos agora guiá-lo atraves do processo de anexação\n"
+#~ "a um projecto."
+
+#, c-format
+#~ msgid "&Stop using%s"
+#~ msgstr "&Parar de usar%s"
+
+#, c-format
+#~ msgid ""
+#~ "We'll now remove this computer from %s.  From now on,\n"
+#~ "attach and detach projects directly from this computer.\n"
+#~ msgstr ""
+#~ "Vamos agora remover este computador de %s. De agora em diante,\n"
+#~ "anexe e desanexe projectos directamente deste computador.\n"
+
+#~ msgid "Account manager"
+#~ msgstr "Gestor de Conta"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to an account manager.\n"
+#~ "\n"
+#~ "If you want to attach to a single project, click Cancel,\n"
+#~ "then select the 'Attach to project' menu item instead."
+#~ msgstr ""
+#~ "Vamos agora guiá-lo através do processo de anexação\n"
+#~ "a um gestor de conta.\n"
+#~ "\n"
+#~ "Se quer anexar-se apenas a um projecto, carregue em Cancelar,\n"
+#~ "depois seleccione o menu 'Anexar a projecto'."
+
+#~ msgid "Debug Flags"
+#~ msgstr "Bandeiras de Depuração"
+
+#~ msgid "Project Properties Failure"
+#~ msgstr "Falha nas Propriedades do Projecto"
+
+#~ msgid "Project Communication Failure"
+#~ msgstr "Falha na Comunicação do Projecto"
+
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "Falha no URL das Propriedades do Projecto"
+
+#~ msgid "Account Creation Disabled"
+#~ msgstr "Criação de Conta Desabilitada"
+
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "Criação de Conta de Cliente Desabilitada"
+
+#~ msgid "Account Already Exists"
+#~ msgstr "A Conta Já Existe"
+
+#~ msgid "Project Already Attached"
+#~ msgstr "Projecto Já Anexado"
+
+#~ msgid "Project Attach Failure"
+#~ msgstr "Falha no Anexamento ao Projecto"
+
+#~ msgid "Failure Communicating with Reference Site"
+#~ msgstr "Falha ao Comunicar com o Site de Referência"
+
+#, c-format
+#~ msgid "Net Detection Failure"
+#~ msgstr "Falha na Detecção de NEM"
diff --git a/locale/ar/BOINC-Project-Generic.po b/locale/pt_PT/BOINC-Project-Generic.po
similarity index 100%
copy from locale/ar/BOINC-Project-Generic.po
copy to locale/pt_PT/BOINC-Project-Generic.po
diff --git a/locale/pt_PT/BOINC-Web.po b/locale/pt_PT/BOINC-Web.po
new file mode 100644
index 0000000..8a769c3
--- /dev/null
+++ b/locale/pt_PT/BOINC-Web.po
@@ -0,0 +1,979 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
+"PO-Revision-Date: 2010-02-19 12:10-0000\n"
+"Last-Translator: Miguel Veiga <Miguel.veig at gmail.com>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.2.1\n"
+"X-Poedit-Language: English\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
+"X-Poedit-Country: UNITED STATES\n"
+"X-Poedit-KeywordsList: tra\n"
+"X-Poedit-SearchPath-0: doc\n"
+
+#: poll.inc:18
+msgid "[check all that apply]"
+msgstr "[marque aquelas que se aplicam]"
+
+#: poll.inc:47
+msgid "Other:"
+msgstr "Outro:"
+
+#: poll_data.inc:19
+msgid "Yes - I have been running BOINC on my computer for..."
+msgstr "Sim - I uso o BOINC no meu computador há..."
+
+#: poll_data.inc:22
+msgid "less than a week"
+msgstr "menos de uma semana"
+
+#: poll_data.inc:23
+msgid "less than a month"
+msgstr "menos de um mês"
+
+#: poll_data.inc:24
+msgid "less than a year"
+msgstr "menos de um ano"
+
+#: poll_data.inc:25
+msgid "more than a year"
+msgstr "mais de um ano"
+
+#: poll_data.inc:31
+msgid "No - I used to run BOINC, but..."
+msgstr "Não - I costumava usar o BOINC, mas..."
+
+#: poll_data.inc:34
+msgid "I lost interest"
+msgstr "Perdi o interesse"
+
+#: poll_data.inc:35
+msgid "it was too complicated"
+msgstr "era muito complicado"
+
+#: poll_data.inc:36
+msgid "I stopped it and forgot to start again"
+msgstr "Parei de usar e esqueci-me de recomeçar"
+
+#: poll_data.inc:37
+msgid "it caused problems on my computer"
+msgstr "causou problemas no meu computador"
+
+#: poll_data.inc:38
+msgid "it used too much electricity"
+msgstr "consumia muita eletricidade"
+
+#: poll_data.inc:39
+msgid "I switched to a non-BOINC computing project"
+msgstr "Troquei por um projecto de computação que não o BOINC"
+
+#: poll_data.inc:45
+msgid "No - I tried running BOINC, but..."
+msgstr "Não - Eu tentei usar o BOINC, mas..."
+
+#: poll_data.inc:48
+msgid "the software didn't install correctly"
+msgstr "o software não instalou correctamente"
+
+#: poll_data.inc:49
+msgid "I couldn't figure out how to use the software"
+msgstr "Não consegui perceber como usar o software"
+
+#: poll_data.inc:50
+msgid "I had network communication problems"
+msgstr "Tive problemas com a internet"
+
+#: poll_data.inc:51
+msgid "I couldn't attach to a project"
+msgstr "Não consegui anexar um projecto"
+
+#: poll_data.inc:52
+msgid "I attached to a project, but never got any work"
+msgstr "Anexei um projecto, mas nunca teve nenhum trabalho"
+
+#: poll_data.inc:58
+msgid "No - I never tried running BOINC, because..."
+msgstr "Não - Nunca tentei usar o BOINC, porque..."
+
+#: poll_data.inc:61
+msgid "I was concerned about security"
+msgstr "Estava preocupado com a segurança"
+
+#: poll_data.inc:62
+msgid "I wasn't interested in any of the projects"
+msgstr "Não estava interessado em nenhum dos projectos"
+
+#: poll_data.inc:63
+msgid "I don't have permission to run it on my computer"
+msgstr "Não tinha permissões para o usar no meu computador"
+
+#: poll_data.inc:64
+msgid "No version was available for my computer"
+msgstr "Não havia uma versão disponível para o meu computador"
+
+#: poll_data.inc:75
+msgid "What kind of computers do you have running BOINC?"
+msgstr "Que tipo de computadores tem a correr o BOINC?"
+
+#: poll_data.inc:85
+msgid "Where are they?"
+msgstr "Onde é que eles estão?"
+
+#: poll_data.inc:87
+msgid "Home"
+msgstr "Casa"
+
+#: poll_data.inc:88
+msgid "Work"
+msgstr "Trabalho"
+
+#: poll_data.inc:89
+msgid "School"
+msgstr "Escola"
+
+#: poll_data.inc:96
+msgid "How many computers?"
+msgstr "Quantos computadores?"
+
+#: poll_data.inc:107
+msgid "On average, how many hours per day are they powered on?"
+msgstr "Em média, quantas horas por dia estão ligados?"
+
+#: poll_data.inc:119
+msgid "Age"
+msgstr "Idade"
+
+#: poll_data.inc:129
+msgid "Sex"
+msgstr "Sexo"
+
+#: poll_data.inc:131
+msgid "Male"
+msgstr "Homem"
+
+#: poll_data.inc:132
+msgid "Female"
+msgstr "Mulher"
+
+#: poll_data.inc:137
+msgid "Your level of computer expertise"
+msgstr "O seu nível de conhecimentos informáticos"
+
+#: poll_data.inc:139
+msgid "Beginner"
+msgstr "Iniciado"
+
+#: poll_data.inc:140
+msgid "Intermediate"
+msgstr "Intermédio"
+
+#: poll_data.inc:141
+msgid "Advanced"
+msgstr "Avançado"
+
+#: poll_data.inc:149
+msgid "Where did you learn about BOINC projects?"
+msgstr "Onde é que ouviu falar acerca dos projectos do BOINC"
+
+#: poll_data.inc:151
+msgid "TV/radio/newspaper"
+msgstr "TV/Rádio/Jornais"
+
+#: poll_data.inc:152
+msgid "From friends, relatives, or coworkers"
+msgstr "Através de amigos, conhecidos ou colegas de trabalho"
+
+#: poll_data.inc:153
+msgid "Team message boards or web sites"
+msgstr "Mensagens em fóruns ou websites"
+
+#: poll_data.inc:154
+#: poll_data.inc:210
+msgid "The BOINC web site"
+msgstr "No website do BOINC"
+
+#: poll_data.inc:155
+msgid "Other web sites"
+msgstr "Outros websites"
+
+#: poll_data.inc:161
+msgid "Which are the most important factors when you decide whether to participate in a BOINC project?"
+msgstr "Quais são os factores mais importantes que o levaram a participar num projecto BOINC?"
+
+#: poll_data.inc:163
+msgid "Nice-looking screensaver graphics"
+msgstr "Screensavers com bom aspecto gráfico"
+
+#: poll_data.inc:164
+msgid "Fair and quick granting of credit for work done"
+msgstr "Uma maneira rápida e honesta de garantir créditos pelo trabalho realizado"
+
+#: poll_data.inc:165
+msgid "Getting more credit from this project than from others"
+msgstr "Ganhar mais créditos neste projecto do que em outros"
+
+#: poll_data.inc:166
+msgid "Helpful and friendly message boards"
+msgstr "Fóruns com boa ajuda e amigáveis"
+
+#: poll_data.inc:167
+msgid "Participation by project staff on the message boards"
+msgstr "Participação por parte do staff do projecto nos fóruns "
+
+#: poll_data.inc:168
+msgid "Informative project web site"
+msgstr "Website do projecto com muita informação"
+
+#: poll_data.inc:169
+msgid "The science is important and beneficial"
+msgstr "A ciência é importante e benéfica"
+
+#: poll_data.inc:170
+msgid "Non-profit, and results are public"
+msgstr "Não lucrativo e os resultados são públicos"
+
+#: poll_data.inc:171
+msgid "Personal recognition if my computer finds something"
+msgstr "Reconhecimento pessoal se o meu computador encontrar algo"
+
+#: poll_data.inc:172
+msgid "Publication by the project in scientific journals"
+msgstr "Publicações do projecto nos jornais científicos"
+
+#: poll_data.inc:173
+msgid "Periodic email newsletters from the project"
+msgstr "Newsletters periódicas do projecto"
+
+#: poll_data.inc:180
+msgid "How many BOINC projects do you participate in?"
+msgstr "Em quantos projectos do BOINC participa?"
+
+#: poll_data.inc:190
+msgid "Do you run BOINC as a screensaver?"
+msgstr "Usa o BOINC como protecção de ecrã?"
+
+#: poll_data.inc:192
+msgid "Yes"
+msgstr "Sim"
+
+#: poll_data.inc:193
+msgid "No"
+msgstr "Não"
+
+#: poll_data.inc:198
+msgid "Your usage of project messages boards:"
+msgstr "A finalidade com que usa o fórum do projecto:"
+
+#: poll_data.inc:200
+msgid "to read information"
+msgstr "para ler informação"
+
+#: poll_data.inc:201
+msgid "to read and post information"
+msgstr "para ler e colocar informação"
+
+#: poll_data.inc:202
+msgid "None"
+msgstr "Nenhuma"
+
+#: poll_data.inc:206
+msgid "Where do you get information to help resolve problems with BOINC and/or BOINC projects?"
+msgstr "Onde obtém informações que o ajudem a resolver problemas com o BOINC  e/ou projectos BOINC?"
+
+#: poll_data.inc:208
+msgid "The project message boards"
+msgstr "Nos fóruns do projecto"
+
+#: poll_data.inc:209
+msgid "The BOINC message boards"
+msgstr "Nos fóruns do BOINC"
+
+#: poll_data.inc:211
+msgid "BOINC mailing lists"
+msgstr "Nas lista de e-mail do BOINC"
+
+#: poll_data.inc:212
+msgid "The Unofficial BOINC Wiki"
+msgstr "No site não-oficial BOINC Wiki"
+
+#: poll_data.inc:213
+msgid "Team web sites"
+msgstr "Nos websites das equipas"
+
+#: poll_data.inc:214
+msgid "Google or other search engines"
+msgstr "Google ou outros sites de pesquisa"
+
+#: download.php:40
+msgid "Download BOINC"
+msgstr "Download BOINC"
+
+#: download.php:42
+#, php-format
+msgid "%s for %s (%s MB)"
+msgstr "%s para %s (%s MB)"
+
+#: download.php:89
+msgid "BOINC is a program that lets you donate your idle computer time to science projects like SETI at home, Climateprediction.net, Rosetta at home, World Community Grid, and many others. <p> After installing BOINC on your computer, you can connect it to as many of these projects as you like."
+msgstr "BOINC é um programa que o deixa doar tempo inactivo do seu computador à ciência, a projectos como SETI at home, Climateprediction.net, Rosetta at home, World Community Grid e muitos outros. <p> Depois de instalar o BOINC no seu computador, pode conectá-lo a tantos projectos quantos quiser."
+
+#: download.php:114
+#, php-format
+msgid "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit (GPU), you may be able to %suse it to compute faster%s"
+msgstr "Nota: se o seu computador estiver equipado com uma NVIDIA com Unidade de Processamento Gráfico (GPU), pode %susar o seu computador para fazer a computação mais rápida%s"
+
+#: download.php:120
+msgid "System requirements"
+msgstr "Requisitos do Sistema"
+
+#: download.php:121
+msgid "Release notes"
+msgstr "Notas de lançamento"
+
+#: download.php:122
+#: index.php:89
+msgid "Help"
+msgstr "Ajuda"
+
+#: download.php:123
+msgid "All versions"
+msgstr "Todas as versões"
+
+#: download.php:141
+msgid "BOINC: compute for science"
+msgstr "BOINC: computação pela ciência"
+
+#: 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 "A ajuda online do BOINC permite-o falar cara-a-cara com utilizadores do BOINC experientes, que podem: %s responder ás suas questões acerca do BOINC e computação voluntária; %s acompanhá-lo através do processo de instalação e uso do BOINC; %s resolver qualquer problema que possa ter."
+
+#: 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 "A ajuda online do BOINC é baseada no %sSkype%s, um sistema de telefonia baseada na internet. O Skype é gratuito (tanto o software como as chamadas). Se ainda não tem o Skype, faça o %sdownload e instale-o agora%s. Quando acabar, regresse a esta página."
+
+#: 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 "A melhor maneira de obter ajuda é através de voz, pelo que precisa de um microfone e colunas ou um headset externo ao seu computador. Pode também usar o sistema de chat do Skype ou o e-mail (se não tiver o Skype para comunicar com os voluntários)."
+
+#: help.php:31
+msgid "Volunteers speaking several languages are available. Please select a language:"
+msgstr "Voluntários que falem várias linguas precisam-se. Por favor escolha uma lingua:"
+
+#: help.php:47
+msgid "Be a Help Volunteer"
+msgstr "Seja um voluntário"
+
+#: 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 "Se é um utilizador do BOINC experiente, encorajamo-lo a se %stornar um voluntário%s. É uma óptima maneira de ajudar a causa da pesquisa científica e computação voluntária - e é divertido!"
+
+#: help.php:56
+#, php-format
+msgid "If you're already a Help Volunteer: to edit your settings, %sclick here%s."
+msgstr "Se já é um Voluntário: para editar as suas preferências, %scarregue aqui%s."
+
+#: index.php:23
+msgid "Computing power"
+msgstr "Poder de computação"
+
+#: index.php:25
+msgid "Top 100 volunteers"
+msgstr "Top 100 voluntários"
+
+#: index.php:26
+msgid "Statistics"
+msgstr "Estatísticas"
+
+#: index.php:53
+msgid "Active:"
+msgstr "Activo:"
+
+#: index.php:53
+msgid "volunteers,"
+msgstr "voluntários,"
+
+#: index.php:53
+msgid "computers.\n"
+msgstr "computadores.\n"
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr "Média de 24 horas:"
+
+#: index.php:54
+msgid "TeraFLOPS."
+msgstr "TeraFLOPS"
+
+#: index.php:66
+msgid "News"
+msgstr "Novidades"
+
+#: index.php:72
+msgid "... more"
+msgstr "... mais"
+
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr "Novidades estão disponíveis como %sRSS feed%s"
+
+#: index.php:86
+msgid "Volunteer"
+msgstr "Voluntário"
+
+#: index.php:88
+msgid "Download"
+msgstr "Download"
+
+#: index.php:90
+#: index.php:125
+#: index.php:163
+msgid "Documentation"
+msgstr "Documentação"
+
+#: index.php:96
+#, php-format
+msgid " Use the idle time on your computer (Windows, Mac, or Linux) to cure diseases, study global warming, discover pulsars, and do many other types of scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %sDownload%s and run BOINC software  %sEnter%s an email address and password. "
+msgstr " Use o tempo inactivo do seu computador (Windows, Mac ou Linux) para curar doenças, estudar o aquecimento global, descobrir pulsares e muitos mais tipos de pesquisa científica. É seguro e fácil: %sEscolha o Projecto %sFaça o Download%s e use o software BOINC  %sInsira um endereço de e-mail e palavra passe. "
+
+#: index.php:107
+#, php-format
+msgid "Or, if you run several projects, try an %saccount manager%s such as %sGridRepublic%s or %sBAM!%s. "
+msgstr "Ou, se corre vários projectos, experimente um %sgestor de conta%s como a %sGridRepublic%s ou o %sBAM!%s. "
+
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr "Computação com o BOINC"
+
+#: index.php:126
+msgid "Software updates"
+msgstr "Updates de Software"
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr "O projecto BOINC"
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr "Ajuda precisa-se!"
+
+#: index.php:160
+msgid "Programming"
+msgstr "Programando"
+
+#: index.php:161
+msgid "Translation"
+msgstr "Tradução"
+
+#: index.php:162
+msgid "Testing"
+msgstr "Testando"
+
+#: index.php:165
+msgid "Software development"
+msgstr "Desenvolvimento de software"
+
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr "APIs para software add-on"
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr "Pessoal e contribuidores"
+
+#: index.php:168
+msgid "Message boards"
+msgstr "Fóruns"
+
+#: index.php:169
+msgid "Email lists"
+msgstr "Listas de email"
+
+#: index.php:170
+msgid "Events"
+msgstr "Eventos"
+
+#: index.php:171
+msgid "Conferences"
+msgstr "Conferências"
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr "Papéis e conversas"
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr "Logotipos e gráficos"
+
+#: index.php:206
+msgid "Browser default"
+msgstr "Navegador por default"
+
+#: index.php:250
+#, php-format
+msgid "Open-source software for %svolunteer computing%s and %sgrid computing%s."
+msgstr "Software open-source para a %scomputação voluntária%s e %srede de computação%s."
+
+#: poll.php:9
+msgid "BOINC user survey"
+msgstr "Questionário de utilizador do BOINC"
+
+#: poll.php:19
+msgid "Several volunteer computing projects, including Climateprediction.net, Einstein at home, and SETI at home, use software called BOINC.  If you participate in projects like this, we request that you answer the following questions.  This will help BOINC-based projects increase participation and achieve greater scientific results. <p> Please answer as many questions as you want, then go to the bottom and click OK. If you previously completed the survey but your answers have changed, please complete it again - your new answers will replace the old ones. <p> The current results of the survey are <a href=poll_results.php>here</a>. "
+msgstr "Vários projectos de computação voluntária, incluindo o Climateprediction.net, Einstein at home, and SETI at home, usam o software conhecido por BOINC. Se participa em projectos como estes, propomos-lhe que responda às seguintes questões. Estas questões ajudarão os projectos baseados no BOINC a ter maior participação e alcançar melhores resultados científicos. <p> Responda a tantas questões quanto desejar depois vá ao topo da página e carregue OK. Se já anteriormente respondeu ao questionário mas as suas respostas mudaram, por favor responda otura vez - as suas novas respostas serão substituidas pelas antigas. <p> Os resultados actuais do questionário estão <a href=poll_results.php>aqui</a>. "
+
+#: poll.php:25
+msgid "Do you run BOINC?"
+msgstr "Usa o BOINC"
+
+#: poll.php:30
+msgid "Your participation"
+msgstr "A sua participação"
+
+#: poll.php:32
+msgid "Your computers"
+msgstr "Os seus computadores"
+
+#: poll.php:34
+msgid "You"
+msgstr "Você"
+
+#: poll.php:39
+msgid "Nationality"
+msgstr "Nacionalidade"
+
+#: poll.php:44
+msgid "Comments"
+msgstr "Comentários"
+
+#: poll.php:46
+msgid "Please suggest ways that BOINC, and the projects that use it, could be improved:"
+msgstr "Por favor sugira maneiras para que o BOINC e os projectos que usa, possam ser melhorados:"
+
+#: poll.php:50
+msgid "When done click:"
+msgstr "Quando concluido, carregue:"
+
+#: poll_action.php:9
+msgid "Error - results not recorded"
+msgstr "Erro - resultados não guardados"
+
+#: poll_action.php:10
+msgid "An internal error has prevented us from recording your survey response.  Please try again later."
+msgstr "Um erro interno impediu-nos de guardar as repostas do seu questionário. Por favor, tente mais tarde."
+
+#: poll_action.php:32
+msgid "Survey response recorded"
+msgstr "Respostas do questionário guardadas"
+
+#: poll_action.php:33
+msgid "Thank you for completing the BOINC user survey."
+msgstr "Obrigado por ter preenchido o questionário de utilizador do BOINC."
+
+#: poll_results.php:195
+msgid "Survey results"
+msgstr "Resultados do questionário"
+
+#: poll_results.php:196
+msgid "These are the current results of the <a href=poll.php>BOINC user survey</a>.  This page is updated every hour."
+msgstr "Estes são os resultados actuais do <a href=poll.php>questionário do utilizador do BOINC</a>. Esta página é actualizada hora a hora."
+
+# The charset used for the text in this file (please try to use UTF-8 if possible)
+# The charset used for the text in this file (please try to use UTF-8 if possible)
+##########################################
+# Language: English (International)
+# FileID  : $Id: pt_BR.po 13097 2007-07-04 15:28:28Z Rytis $
+# For more information please see:
+# http://boinc.berkeley.edu/web_translation.php
+#~ msgid "CHARSET"
+#~ msgstr "UTF-8"
+# The name of this language in this language
+# The name of this language in this language
+#, fuzzy
+#~ msgid "LANG_NAME_NATIVE"
+#~ msgstr "English"
+
+# The name of this language in an international language (English)
+# The name of this language in an international language (English)
+#, fuzzy
+#~ msgid "LANG_NAME_INTERNATIONAL"
+#~ msgstr "English"
+
+########################################
+# poll-related stuff
+########################################
+# poll-related stuff
+########################################
+# for user survey
+#, fuzzy
+#~ msgid "POLL_TITLE"
+#~ msgstr "BOINC user survey"
+
+#, fuzzy
+#~ msgid "POLL_INTRO"
+#~ msgstr "Several volunteer computing projects, including Climateprediction.net, Einstein at home, and SETI at home, use software called BOINC. If you participate in projects like this, we request that you answer the following questions. This will help BOINC-based projects increase participation and achieve greater scientific results. <p> Please answer as many questions as you want, then go to the bottom and click OK. If you previously completed the survey but your answers have changed, please complete it again - your new answers will replace the old ones. <p> The current results of the survey are <a href=poll_results.php>here</a>. "
+
+#, fuzzy
+#~ msgid "POLL_RUN"
+#~ msgstr "Do you run BOINC?"
+
+#, fuzzy
+#~ msgid "POLL_PARTICIPATION"
+#~ msgstr "Your participation"
+
+#, fuzzy
+#~ msgid "POLL_COMPUTERS"
+#~ msgstr "Your computers"
+
+#, fuzzy
+#~ msgid "POLL_YOU"
+#~ msgstr "You"
+
+#, fuzzy
+#~ msgid "POLL_NATIONALITY"
+#~ msgstr "Nationality"
+
+#, fuzzy
+#~ msgid "POLL_COMMENTS"
+#~ msgstr "Comments"
+
+#, fuzzy
+#~ msgid "POLL_COMMENTS_QUESTION"
+#~ msgstr "Please suggest ways that BOINC, and the projects that use it, could be improved:"
+
+#, fuzzy
+#~ msgid "POLL_OTHER"
+#~ msgstr "Other:"
+
+#, fuzzy
+#~ msgid "POLL_CHECK_ALL"
+#~ msgstr "[check all that apply]"
+
+#, fuzzy
+#~ msgid "POLL_DONE"
+#~ msgstr "When done click:"
+
+#, fuzzy
+#~ msgid "POLL_CURRENT"
+#~ msgstr "Yes - I have been running BOINC on my computer for..."
+
+#, fuzzy
+#~ msgid "POLL_TWEEK"
+#~ msgstr "less than a week"
+
+#, fuzzy
+#~ msgid "POLL_TMONTH"
+#~ msgstr "less than a month"
+
+#, fuzzy
+#~ msgid "POLL_TYEAR"
+#~ msgstr "less than a year"
+
+#, fuzzy
+#~ msgid "POLL_TMOREYEAR"
+#~ msgstr "more than a year"
+
+#, fuzzy
+#~ msgid "POLL_LAPSED"
+#~ msgstr "No - I was running BOINC, but stopped because..."
+
+#, fuzzy
+#~ msgid "POLL_LINTEREST"
+#~ msgstr "I lost interest"
+
+#, fuzzy
+#~ msgid "POLL_LCOMPLICATED"
+#~ msgstr "it was too complicated"
+
+#, fuzzy
+#~ msgid "POLL_LSTOPPED"
+#~ msgstr "I stopped it and forgot to start again"
+
+#, fuzzy
+#~ msgid "POLL_LPROBLEMS"
+#~ msgstr "it caused problems on my computer"
+
+#, fuzzy
+#~ msgid "POLL_LPOWER"
+#~ msgstr "it used too much electricity"
+
+#, fuzzy
+#~ msgid "POLL_LNONBOINC"
+#~ msgstr "I switched to a non-BOINC computing project"
+
+#, fuzzy
+#~ msgid "POLL_FAILED"
+#~ msgstr "No - I tried running BOINC, but..."
+
+#, fuzzy
+#~ msgid "POLL_FINSTALL"
+#~ msgstr "the software didn't install correctly"
+
+#, fuzzy
+#~ msgid "POLL_FFIGURE"
+#~ msgstr "I couldn't figure out how to use the software"
+
+#, fuzzy
+#~ msgid "POLL_FNETWORK"
+#~ msgstr "I had network communication problems"
+
+#, fuzzy
+#~ msgid "POLL_FATTACH"
+#~ msgstr "I couldn't attach to a project"
+
+#, fuzzy
+#~ msgid "POLL_FWORK"
+#~ msgstr "I attached to a project, but never got any work"
+
+#, fuzzy
+#~ msgid "POLL_NEVER"
+#~ msgstr "No - I never tried running BOINC, because..."
+
+#, fuzzy
+#~ msgid "POLL_NSECURITY"
+#~ msgstr "I was concerned about security"
+
+#, fuzzy
+#~ msgid "POLL_NPROJECT"
+#~ msgstr "I wasn't interested in any of the projects"
+
+#, fuzzy
+#~ msgid "POLL_NPERMISSION"
+#~ msgstr "I don't have permission to run it on my computer"
+
+#, fuzzy
+#~ msgid "POLL_NVERSION"
+#~ msgstr "No version was available for my computer"
+
+#, fuzzy
+#~ msgid "POLL_KIND"
+#~ msgstr "What kind of computers do you have running BOINC?"
+
+#, fuzzy
+#~ msgid "POLL_WHERE"
+#~ msgstr "Where are they?"
+
+#, fuzzy
+#~ msgid "POLL_HOME"
+#~ msgstr "Home"
+
+#, fuzzy
+#~ msgid "POLL_WORK"
+#~ msgstr "Work"
+
+#, fuzzy
+#~ msgid "POLL_SCHOOL"
+#~ msgstr "School"
+
+#, fuzzy
+#~ msgid "POLL_HOW_MANY"
+#~ msgstr "How many computers?"
+
+#, fuzzy
+#~ msgid "POLL_TURNED_ON"
+#~ msgstr "On average, how many hours per day are they powered on?"
+
+#, fuzzy
+#~ msgid "POLL_AGE"
+#~ msgstr "Age"
+
+#, fuzzy
+#~ msgid "POLL_SEX"
+#~ msgstr "Sex"
+
+#, fuzzy
+#~ msgid "POLL_MALE"
+#~ msgstr "Male"
+
+#, fuzzy
+#~ msgid "POLL_FEMALE"
+#~ msgstr "Female"
+
+#, fuzzy
+#~ msgid "POLL_EXPERTISE"
+#~ msgstr "Your level of computer expertise"
+
+#, fuzzy
+#~ msgid "POLL_LEVB"
+#~ msgstr "Beginner"
+
+#, fuzzy
+#~ msgid "POLL_LEVI"
+#~ msgstr "Intermediate"
+
+#, fuzzy
+#~ msgid "POLL_LEVA"
+#~ msgstr "Advanced"
+
+#, fuzzy
+#~ msgid "POLL_LEARN_WHERE"
+#~ msgstr "Where did you learn about BOINC projects?"
+
+#, fuzzy
+#~ msgid "POLL_WTV"
+#~ msgstr "TV/radio/newspaper"
+
+#, fuzzy
+#~ msgid "POLL_WPERS"
+#~ msgstr "From friends, relatives, or coworkers"
+
+#, fuzzy
+#~ msgid "POLL_WTEAM"
+#~ msgstr "Team message boards or web sites"
+
+#, fuzzy
+#~ msgid "POLL_WBOINC"
+#~ msgstr "The BOINC web site"
+
+#, fuzzy
+#~ msgid "POLL_WWEB"
+#~ msgstr "Other web sites"
+
+#, fuzzy
+#~ msgid "POLL_FACTOR"
+#~ msgstr "Which are the most important factors when you decide whether to participate in a BOINC project?"
+
+#, fuzzy
+#~ msgid "POLL_GRAPHICS"
+#~ msgstr "Nice-looking screensaver graphics"
+
+#, fuzzy
+#~ msgid "POLL_CREDIT_FAIR"
+#~ msgstr "Fair and quick granting of credit for work done"
+
+#, fuzzy
+#~ msgid "POLL_CREDIT_MORE"
+#~ msgstr "Getting more credit from this project than from others"
+
+#, fuzzy
+#~ msgid "POLL_MB_FRIENDLY"
+#~ msgstr "Helpful and friendly message boards"
+
+#, fuzzy
+#~ msgid "POLL_MB_STAFF"
+#~ msgstr "Participation by project staff on the message boards"
+
+#, fuzzy
+#~ msgid "POLL_WEB_SITE"
+#~ msgstr "Informative project web site"
+
+#, fuzzy
+#~ msgid "POLL_SCIENCE_IMPORTANT"
+#~ msgstr "The science is important and beneficial"
+
+#, fuzzy
+#~ msgid "POLL_SCIENCE_PUBLIC"
+#~ msgstr "Non-profit, and results are public"
+
+#, fuzzy
+#~ msgid "POLL_RECOGNIZE"
+#~ msgstr "Personal recognition if my computer finds something"
+
+#, fuzzy
+#~ msgid "POLL_PUBLISH"
+#~ msgstr "Publication by the project in scientific journals"
+
+#, fuzzy
+#~ msgid "POLL_EMAIL"
+#~ msgstr "Periodic email newsletters from the project"
+
+#, fuzzy
+#~ msgid "POLL_NPROJECTS"
+#~ msgstr "How many BOINC projects do you participate in?"
+
+#, fuzzy
+#~ msgid "POLL_SSAVER"
+#~ msgstr "Do you run BOINC as a screensaver?"
+
+#, fuzzy
+#~ msgid "POLL_YES"
+#~ msgstr "Yes"
+
+#, fuzzy
+#~ msgid "POLL_NO"
+#~ msgstr "No"
+
+#, fuzzy
+#~ msgid "POLL_MBOARDS"
+#~ msgstr "Your usage of project messages boards:"
+
+#, fuzzy
+#~ msgid "POLL_MBR"
+#~ msgstr "to read information"
+
+#, fuzzy
+#~ msgid "POLL_MBRW"
+#~ msgstr "to read and post information"
+
+#, fuzzy
+#~ msgid "POLL_NONE"
+#~ msgstr "None"
+
+#, fuzzy
+#~ msgid "POLL_HELP"
+#~ msgstr "Where do you get information to help resolve problems with BOINC and/or BOINC projects?"
+
+#, fuzzy
+#~ msgid "POLL_HELP_PMB"
+#~ msgstr "The project message boards"
+
+#, fuzzy
+#~ msgid "POLL_HELP_BMB"
+#~ msgstr "The BOINC message boards"
+
+#, fuzzy
+#~ msgid "POLL_HELP_BDOC"
+#~ msgstr "The BOINC web site"
+
+#, fuzzy
+#~ msgid "POLL_HELP_BMLIST"
+#~ msgstr "BOINC mailing lists"
+
+#, fuzzy
+#~ msgid "POLL_HELP_WIKI"
+#~ msgstr "The Unofficial BOINC Wiki"
+
+#, fuzzy
+#~ msgid "POLL_HELP_TEAM"
+#~ msgstr "Team web sites"
+
+#, fuzzy
+#~ msgid "POLL_HELP_GOOGLE"
+#~ msgstr "Google or other search engines"
+
+#, fuzzy
+#~ msgid "POLL_ERROR_TITLE"
+#~ msgstr "Error - results not recorded"
+
+#, fuzzy
+#~ msgid "POLL_ERROR_TEXT"
+#~ msgstr "An internal error has prevented us from recording your survey response.  Please try again later."
+
+#, fuzzy
+#~ msgid "POLL_RECORDED"
+#~ msgstr "Survey response recorded"
+
+#, fuzzy
+#~ msgid "POLL_THANKS"
+#~ msgstr "Thank you for completing the BOINC user survey."
+
+#, fuzzy
+#~ msgid "POLL_RESULTS_TITLE"
+#~ msgstr "Survey results"
+
+#, fuzzy
+#~ msgid "POLL_RESULTS_TEXT"
+#~ msgstr "These are the current results of the <a href=poll.php>BOINC user survey</a>.  This page is updated every hour."
+
+#~ msgid "DL_MIRRORS"
+#~ msgstr "Note: files are downloaded from mirror servers at boinc.berkeley.edu, morel.mit.edu, einstein.aei.mpg.de, einstein.astro.gla.ac.uk, einstein.ligo.caltech.edu, and einstein.aset.psu.edu (thanks to these institutions). The server is chosen randomly - if a download fails, reload this page and try again. "
diff --git a/locale/pt_PT/pootle-boincclient610-pt_PT.prefs b/locale/pt_PT/pootle-boincclient610-pt_PT.prefs
new file mode 100644
index 0000000..b498815
--- /dev/null
+++ b/locale/pt_PT/pootle-boincclient610-pt_PT.prefs
@@ -0,0 +1,8 @@
+# Pootle preferences for project boinctrunk, language pt_BR
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  MeGaBeSuNTa = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/ro/BOINC-Manager.mo b/locale/ro/BOINC-Manager.mo
index c629cb5..215c6bd 100644
Binary files a/locale/ro/BOINC-Manager.mo and b/locale/ro/BOINC-Manager.mo differ
diff --git a/locale/ro/BOINC-Manager.po b/locale/ro/BOINC-Manager.po
index fa5db3d..dfb621f 100644
--- a/locale/ro/BOINC-Manager.po
+++ b/locale/ro/BOINC-Manager.po
@@ -1,469 +1,524 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 4.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
 "PO-Revision-Date: 2005-09-26 01:18-0500\n"
 "Last-Translator: Mathe Stefan <mstefan at cs.toronto.edu>\n"
 "Language-Team: BOINC Development Team <rwalton at ssl.berkeley.edu>\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Translate Toolkit 1.2.1\n"
 "X-Poedit-Language: English\n"
 "X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: iso-8859-1\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: UNITED STATES\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:425 clientgui/AccountInfoPage.cpp:591
 #, fuzzy
 msgid "&Password:"
 msgstr "Parola:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432 clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 #, fuzzy
 msgid "C&onfirm password:"
 msgstr "Confirmaţi parola:"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 #, fuzzy
 msgid "&Username:"
 msgstr "Nume utilizator:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 #, fuzzy
 msgid "&Email address:"
 msgstr "Adresa email:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "AtaÅŸare la proiect"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
-#, c-format
-#, fuzzy
-msgid "The minimum password length for this project is %d. Please enter a different password."
+#: clientgui/AccountInfoPage.cpp:543
+#, fuzzy, c-format
+msgid ""
+"The minimum password length for this project is %d. Please enter a different "
+"password."
 msgstr ""
 "Lungimea minimă pentru parolă este '%d'. Va rugăm alegeţi o alta parolă."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
-#, c-format
-#, fuzzy
-msgid "The minimum password length for this account manager is %d. Please enter a different password."
+#: clientgui/AccountInfoPage.cpp:549
+#, fuzzy, c-format
+msgid ""
+"The minimum password length for this account manager is %d. Please enter a "
+"different password."
 msgstr ""
 "Lungimea minimă pentru parolă este '%d'. Va rugăm alegeţi o alta parolă."
 
-#: clientgui/AccountInfoPage.cpp:506
-msgid "The password and confirmation password do not match. Please type them again."
+#: clientgui/AccountInfoPage.cpp:560
+msgid ""
+"The password and confirmation password do not match. Please type them again."
 msgstr ""
-"Parola si confirmarea parolei nu sunt identice. Vă rugăm să le "
-"reintroduceţi."
+"Parola si confirmarea parolei nu sunt identice. Vă rugăm să le reintroduceţi."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-#, fuzzy
-msgid "Account Manager URL"
-msgstr "URL Account Manager:"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
 msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 #, fuzzy
 msgid "Account Manager &URL:"
 msgstr "URL Account Manager:"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Conectat"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Deconectat"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324 clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "I&eÅŸire"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:345
-#, fuzzy
-msgid "Attach to &project..."
-msgstr "AtaÅŸare la proiect..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:346
-#, fuzzy
-msgid "Attach to a project"
-msgstr "AtaÅŸare la proiect"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+#, fuzzy
+msgid "Attach to &project..."
+msgstr "AtaÅŸare la proiect..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "&Rulează continuu"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 #, fuzzy
 msgid "Allow work regardless of preferences"
 msgstr "Lucrează indiferent de preferinţte"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "Rulează conform &preferinţelor"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 #, fuzzy
 msgid "Allow work according to your preferences"
 msgstr "Lucrează conform preferinţelor"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "&Suspendă"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 #, fuzzy
 msgid "Stop work regardless of preferences"
 msgstr "Suspendă lucrul indiferent de preferinţe"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+#, fuzzy
+msgid "Allow GPU work regardless of preferences"
+msgstr "Lucrează indiferent de preferinţte"
+
+#: clientgui/AdvancedFrame.cpp:473
+#, fuzzy
+msgid "Use GPU based on &preferences"
+msgstr "Rulează conform &preferinţelor"
+
+#: clientgui/AdvancedFrame.cpp:474
+#, fuzzy
+msgid "Allow GPU work according to your preferences"
+msgstr "Lucrează conform preferinţelor"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+#, fuzzy
+msgid "Stop GPU work regardless of preferences"
+msgstr "Suspendă lucrul indiferent de preferinţe"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "Acces la reţea disponibil perma&nent"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 #, fuzzy
 msgid "Allow network activity regardless of preferences"
 msgstr "Activează în reţea indiferent de preferinţe"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+#, fuzzy
+msgid "Network activity based on pre&ferences"
 msgstr "Acces la reţea conform &preferinţelor"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 #, fuzzy
 msgid "Allow network activity according to your preferences"
 msgstr "Activează în reţea în funcţie de preferinţe"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+#, fuzzy
+msgid "Network activity s&uspended"
 msgstr "Suspendă accesul la retea"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 #, fuzzy
 msgid "Stop BOINC network activity"
 msgstr "Suspendă activitatea de reţea BOINC"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "Configurează opţiunile GUI şi setările proxy"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
-#, c-format
-#, fuzzy
+#: clientgui/AdvancedFrame.cpp:533
+#, fuzzy, c-format
 msgid "Connect to another computer running %s"
 msgstr "Conectare la alt computer care rulează BOINC"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 #, fuzzy
 msgid "Select computer..."
 msgstr "Selectează Computer..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "Rulează benchmarks CPU BOINC"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:483
-#, fuzzy
-msgid "Attach to &project"
-msgstr "AtaÅŸare la proiect"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
 msgid "Show information about %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
-#, c-format
-#, fuzzy
+#: clientgui/AdvancedFrame.cpp:616
+#, fuzzy, c-format
 msgid "Show information about BOINC and %s"
 msgstr "Afisează informaţii despre BOINC Manager"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628 clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "Informaţii despre licenţă şi drepturi de autor."
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "&FiÅŸier"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "&Unelte"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "Ajutor"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -472,61 +527,66 @@ msgid ""
 "Do you want to stop using %s?"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "AtaÅŸare la proiect..."
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
+msgid "%s - Language Selection"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
+#: clientgui/AdvancedFrame.cpp:1310
+#, fuzzy, c-format
+msgid ""
+"The %s's default language has been changed, in order for this change to take "
+"affect you must restart the %s."
 msgstr ""
+"Setările de limbă pentru BOINC Manager au fost schimbate. Pentru a vizualiza "
+"efectele, restartaţi BOINC manager."
 
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
-msgid "%s - Language Selection"
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1482
 #, c-format
-#, fuzzy
-msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
 msgstr ""
-"Setările de limbă pentru BOINC Manager au fost schimbate. Pentru a vizualiza "
-"efectele, restartaţi BOINC manager."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "In curs de conectare la %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
-#, c-format
-#, fuzzy
+#: clientgui/AdvancedFrame.cpp:1871
+#, fuzzy, c-format
 msgid "Connected to %s (%s)"
 msgstr "Conectat la %s"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr ""
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 #, fuzzy
 msgid ""
 "An account with that username already exists and has a\n"
@@ -539,11 +599,11 @@ msgstr ""
 "\n"
 "Va rugăm accesaţi web site-ul proiectului si urmaţi instrucţiunile de acolo."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "Adresa de email este deja in uz."
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -555,106 +615,122 @@ msgstr ""
 "\n"
 "Va rugăm accesaţi web site-ul proiectului si urmaţi instrucţiunile de acolo."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1229
+#, fuzzy
+msgid "Cancel"
+msgstr "&Renunţă"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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."
+"Please contact your administrator to add you to the 'boinc_users' local user "
+"group."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "Parola este incorectă, va rugăm reîncercaţi."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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."
+"Please launch the Control Panel->Administative Tools->Services applet and "
+"start the BOINC service."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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"
+"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 ""
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Sit-uri web"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
 msgid ""
-"%s is unable to communicate with a project and needs an Internet connection.\n"
-"Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
+"%s is unable to communicate with a project and needs an Internet "
+"connection.\n"
+"Please connect to the Internet, then select the 'Do network communications' "
+"item from the Advanced menu."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
-#, c-format
-#, fuzzy
+#: clientgui/BOINCDialupManager.cpp:310
+#, fuzzy, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
@@ -662,39 +738,32 @@ msgstr ""
 "BOINC necesită conectarea la retea.\n"
 "Poate face asta acum?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
-#, c-format
-#, fuzzy
+#: clientgui/BOINCDialupManager.cpp:323
+#, fuzzy, c-format
 msgid "%s is connecting to the Internet."
 msgstr "BOINC se conectează la Internet."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
-"%s couldn't do Internet communication, and no default connection is selected.\n"
+"%s couldn't do Internet communication, and no default connection is "
+"selected.\n"
 "Please connect to the Internet, or select a default connection\n"
 "using Advanced/Options/Connections."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
-#, c-format
-#, fuzzy
+#: clientgui/BOINCDialupManager.cpp:386
+#, fuzzy, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "Conectarea BOINC la Internet s-a încheiat cu succes."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
-#, c-format
-#, fuzzy
+#: clientgui/BOINCDialupManager.cpp:414
+#, fuzzy, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "Conectarea BOINC la Internet a eÅŸuat."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
-#, c-format
-#, fuzzy
+#: clientgui/BOINCDialupManager.cpp:455
+#, fuzzy, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
@@ -702,121 +771,148 @@ msgstr ""
 "BOINC este acum conectat la Internet. Actualizează toate proiectele şi "
 "reinitializează toate transferurile."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
-#, c-format
-#, fuzzy
+#: clientgui/BOINCDialupManager.cpp:500
+#, fuzzy, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "Deconectarea BOINC de la Internet s-a încheiat cu succes."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
-#, c-format
-#, fuzzy
+#: clientgui/BOINCDialupManager.cpp:516
+#, fuzzy, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "Deconectarea BOINC de la Internet a eÅŸuat."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall "
+"BOINC.\n"
+"(Error code %d)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "BOINC Manager"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr "Rulează BOINC numai în System Tray"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Detectare Automata)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Necunoscut)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Definit de utilizator)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 #, fuzzy
 msgid "Network activity is suspended."
 msgstr "Suspendă accesul la retea"
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "Ataşare la proiect eşuată."
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -824,27 +920,24 @@ msgid ""
 "Click Finish to close."
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225 clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246 clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "Apăsaţi Finish pentru a inchide."
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "AtaÅŸat la proiect"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "AtaÅŸarea la proiect s-a incheiat cu succes."
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -852,480 +945,471 @@ msgstr ""
 "Cand apăsati butonul Finish, browserul dvs. va incărca o pagină unde \n"
 "puteţi seta numele contului dvs. si preferinţele."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr ""
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr ""
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
-#, c-format
-#, fuzzy
+#: clientgui/CompletionPage.cpp:285
+#, fuzzy, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "AtaÅŸarea la proiect s-a incheiat cu succes."
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 #, fuzzy
 msgid "You are now successfully attached to this account manager."
 msgstr "AtaÅŸarea la proiect s-a incheiat cu succes."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "Versiunea:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Drepturi de autor:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 #, fuzzy
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
 "(C) 2005 University of California at Berkeley.\n"
 "Toate drepturile rezervate."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179 clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr "Berkeley Open Infrastructure for Network Computing"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195 clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120 clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "&OK"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
 "Click Clear to restore web-based settings."
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
-msgid "check this if you want this computer to do work while it runs on batteries"
+#: clientgui/DlgAdvPreferencesBase.cpp:83
+msgid ""
+"check this if you want this computer to do work while it runs on batteries"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
-msgid "check this if you want this computer to do work even when you're using it"
+#: clientgui/DlgAdvPreferencesBase.cpp:92
+msgid ""
+"check this if you want this computer to do work even when you're using it"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
-msgid "check this if you want your GPU to do work even when you're using the computer"
+#: clientgui/DlgAdvPreferencesBase.cpp:101
+msgid ""
+"check this if you want your GPU to do work even when you're using the "
+"computer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
-msgid "do work only after you haven't used the computer for this number of minutes"
+#: clientgui/DlgAdvPreferencesBase.cpp:123
+msgid ""
+"do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
 msgid "% of the processors"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
-#, no-c-format
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, fuzzy, no-c-format
 msgid "% CPU time"
 msgstr "Timp CPU"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
-msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
+#: clientgui/DlgAdvPreferencesBase.cpp:384
+msgid ""
+"if checked, a confirmation dialog will be displayed before trying to connect "
+"to the Internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507 clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-#, fuzzy
-msgid "Cancel"
-msgstr "&Renunţă"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637 clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121 clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "Ajutor"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1335,8 +1419,8 @@ msgid ""
 "exit the Manager, then choose from the following options:"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1346,538 +1430,477 @@ msgid ""
 "tasks at the times you selected in your preferences."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177 clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388 clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "&Renunţă"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199 clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "General"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 #, fuzzy
 msgid "User name"
 msgstr "Nume utilizator:"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Resurse partajate"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215 clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217 clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219 clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215 clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217 clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219 clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Aplicaţia"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Ultima zi pentru raport"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290 clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "Timp CPU"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292 clientgui/DlgItemProperties.cpp:306
 #, fuzzy
 msgid "Elapsed time"
 msgstr "Timp scurs"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Nou"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "Download-ul a eÅŸuat"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "In curs de download"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Suspendat"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "Rulează"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448 clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Eroare de calcul"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "Upload-ul a eÅŸuat"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "In curs de upload"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Renunţat de utilizator"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Acreditat"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "Gata de raport"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Eroare: stare nevalidă cu codul '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:180
-msgid "How often should the Manager remind you when a network connection is needed?"
+#: clientgui/DlgOptions.cpp:180
+msgid ""
+"How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "Setări Dial-up si Virtual Private Network"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "&Setează ca implicit"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "Anulează setarea implicit"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Conexiune implicită:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Conexiuni"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Conectare prin HTTP proxy server"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "Configurare HTTP Proxy server"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267 clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Adresa:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275 clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Port:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283 clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290 clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Nu completaţi dacă nu e necesar"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296 clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Nume utilizator:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304 clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Parola:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "HTTP Proxy"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Conectare prin SOCKS proxy server"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "Configurare SOCKS Proxy server"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "SOCKS Proxy"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
-#, c-format
-#, fuzzy
+#: clientgui/DlgSelectComputer.cpp:90
+#, fuzzy, c-format
 msgid "%s - Select Computer"
 msgstr "Selectează computer"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Nume host:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
 msgstr ""
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
+#, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1887,244 +1910,234 @@ msgid ""
 "then restart the %s."
 msgstr ""
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31 clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "Panouri de mesaje"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "Corespondează cu alţi useri de pe panourile de mesaje SETI at home"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "Intrebări şi probleme"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39 clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111 clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "Contul dumneavoastră"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41 clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "Vizualizaţii informaţii despre cont si total credit"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "Preferinţele dumneavoastră"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr ""
 "Vizualizaţi şi modificaţi profilul si preferinţele contului dvs. SETI at home"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47 clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "Rezultatele dumneavoastră"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49 clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
-msgstr "Vizualizaţii rezultatele procesării din ultima saptamană (sau mai mult)"
+msgstr ""
+"Vizualizaţii rezultatele procesării din ultima saptamană (sau mai mult)"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51 clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "Computerele dumneavoastră"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr "Vizualizaţi toate computerele dvs. pe care rulează SETI at home"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55 clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "Echipa dvs."
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57 clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr ""
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr ""
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr ""
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr ""
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr ""
 
-#: clientgui/Localization.cpp:71
-msgid "Correspond with admins and other users on the Einstein at Home message boards"
+#: clientgui/Localization.cpp:71
+msgid ""
+"Correspond with admins and other users on the Einstein at Home message boards"
 msgstr ""
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr ""
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr ""
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr ""
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr ""
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 #, fuzzy
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr ""
 "Vizualizaţi şi modificaţi profilul si preferinţele contului dvs. SETI at home"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr ""
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 #, fuzzy
-msgid "View a listing of all the computers on which you are running Einstein at Home"
+msgid ""
+"View a listing of all the computers on which you are running Einstein at Home"
 msgstr "Vizualizaţi toate computerele dvs. pe care rulează SETI at home"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr ""
 
-#: clientgui/Localization.cpp:103
-msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
+#: clientgui/Localization.cpp:103
+msgid ""
+"The home page of the Laser Interferometer Gravitational-wave Observatory "
+"(LIGO) project"
 msgstr ""
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr ""
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr ""
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115 clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Echipa"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr ""
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr ""
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 #, fuzzy
 msgid "News"
 msgstr "Nou"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr ""
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr ""
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr ""
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr ""
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr ""
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr ""
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr ""
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr ""
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr ""
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr ""
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr ""
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr ""
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr ""
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "Recuperare informaţii despre starea sistemului; va rugam asteptaţi..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "Recuperare informaţii despre host; vă rugăm aşteptaţi..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "Lipsă conexiune Internet"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Vă rugăm conectaţi-vă la Internet si reîncercaţi."
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Proiectul nu a fost găsit."
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/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 ""
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr ""
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2132,69 +2145,82 @@ msgid ""
 "Please check the URL and try again."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 #, fuzzy
 msgid "Project &URL:"
 msgstr "URL proiect:"
 
-#: clientgui/ProjectInfoPage.cpp:320
-msgid "You are already attached to this project. Please choose a different project."
+#: clientgui/ProjectInfoPage.cpp:393
+msgid ""
+"This project may not have work for your type of computer. Are you sure you "
+"wish to continue?"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:321
-#, fuzzy
-msgid "Already Attached to Project"
-msgstr "Deja ataÅŸat la proiect"
+#: clientgui/ProjectInfoPage.cpp:417
+msgid ""
+"You are already attached to this project. Please choose a different project."
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
 msgstr ""
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
 msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 #, fuzzy
 msgid ""
 "Communicating with project\n"
 "Please wait..."
 msgstr "În curs de comunicare cu proiectul - vă rugăm să asteptaţi"
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
 msgstr ""
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 #, fuzzy
 msgid "Network communication failure"
 msgstr "Comunicare in reţea esuată"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2205,13 +2231,13 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2228,497 +2254,465 @@ msgid ""
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "Proxy HTTP"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337 clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "Server:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "Autodetectare"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "Proxy SOCKS"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Proiect"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "Timp"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Mesaj"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177 clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Copiază toate mesajele in clipboard."
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202 clientgui/sg_DlgMessages.cpp:210
 #, fuzzy
-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."
+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 ""
 "Copiază mesajele selectate in clipboard. Puteţi selecta mai multe mesaje "
 "prin apăsarea si menţinerea tastelor shift sau control în timp ce selectaţi "
 "cu mouse-ul mesajele."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
-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."
+#: clientgui/sg_DlgMessages.cpp:204 clientgui/sg_DlgMessages.cpp:212
+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 ""
 "Copiază mesajele selectate in clipboard. Puteţi selecta mai multe mesaje "
 "prin apăsarea si menţinerea tastelor shift sau control în timp ce selectaţi "
 "cu mouse-ul mesajele."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252 clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393 clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678 clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749 clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765 clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927 clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217 clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "Sunteţi sigur că doriţi să vă detaşaţi de la proiectul '%s'?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223 clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "DetaÅŸare de la proiect"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138 clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr ""
 
 # Not quite pleasing...
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 #, fuzzy
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr "Sunteţi sigur că doriţi să afişaţi graficele pe o altă maşină?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Afişează graficele"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 #, fuzzy
 msgid "Application: "
 msgstr "Aplicaţia"
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447 clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 #, fuzzy
 msgid "Elapsed Time: "
 msgstr "Timp scurs"
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Pentru moment proiectul nu este accesibil."
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 #, fuzzy
 msgid ""
 "The project is temporarily unavailable.\n"
@@ -2729,11 +2723,11 @@ msgstr ""
 "\n"
 "Vă rugăm încercaţi mai tarziu."
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 #, fuzzy
 msgid ""
 "The account manager is temporarily unavailable.\n"
@@ -2744,32 +2738,32 @@ msgstr ""
 "\n"
 "Vă rugăm încercaţi mai tarziu."
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "Vă rugăm specificaţi un cheie de cont pentru a continua."
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
-msgstr "Cheie de cont nevalidă; va rugăm să introduceţi o cheie de cont validă."
+msgstr ""
+"Cheie de cont nevalidă; va rugăm să introduceţi o cheie de cont validă."
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82 clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Conflict de validare"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr ""
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "URL absent"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2779,18 +2773,14 @@ msgstr ""
 "De exemplu:\n"
 "http://www.example.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83 clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91 clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107 clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "URL nevalid"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84 clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 #, fuzzy
 msgid ""
 "Please specify a valid URL.\n"
@@ -2801,780 +2791,679 @@ msgstr ""
 "De exemplu:\n"
 "boincproject.example.com"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104 clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "'%s' nu conţine un nume de host valid."
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "'%s' nu conţine o cale de căutare validă."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84 clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88 clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Copiază toate mesajele"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95 clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Copiază mesajele selectate"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106 clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107 clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164 clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Mesaje"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187 clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "Se copiază toate mesajele in clipboard..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 #, fuzzy
 msgid "Copying selected messages to the clipboard..."
 msgstr "Se copiază toate mesajele in clipboard..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 #, fuzzy
 msgid "Show all messages"
 msgstr "Copiază toate mesajele"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 #, fuzzy
 msgid "Copying selected messages to Clipboard..."
 msgstr "Se copiază toate mesajele in clipboard..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 #, fuzzy
 msgid "BOINC Website"
 msgstr "BOINC &Website"
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Actualizare"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 #, fuzzy
-msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
+msgid ""
+"Report all completed tasks, get latest credit, get latest preferences, and "
+"possibly get more tasks."
 msgstr ""
 "Raportează toate sarcinile incheiate, actualizează creditul, actualizeazaă "
 "preferinţele si, eventual, cere alte sarcini."
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180 clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Suspendă"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181 clientgui/ViewProjects.cpp:707
 #, fuzzy
 msgid "Suspend tasks for this project."
 msgstr "Suspendă lucrul la acest proiect."
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187 clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 #, fuzzy
 msgid "Don't get new tasks for this project."
 msgstr "Nu lua sarcini noi pentru acest proiect."
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Resetează proiectul"
 
 # ?
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 #, fuzzy
-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."
+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 ""
 "Sterge toate fişierele si sarcinile asociate acestui proiect si caută noi "
 "sarcini. Puteţi actualiza proiectul intâi, pentru a raporta sarcinile "
 "incheiate."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Detaşează"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
-msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
+#: clientgui/ViewProjects.cpp:202
+msgid ""
+"Detach computer from this project.  Tasks in progress will be lost (use "
+"'Update' first to report any completed tasks)."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Cont"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Stare"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Proiecte"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "In curs de actualizare proiect..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "Reluare proiect..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "Suspendare proiect..."
 
 # Hmmm... could've done better...
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 #, fuzzy
 msgid "Telling project to allow additional task downloads..."
-msgstr "Informare proiect pentru a accepta download-ul de sarcini adiţionale..."
+msgstr ""
+"Informare proiect pentru a accepta download-ul de sarcini adiţionale..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 #, fuzzy
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "Informare proiect de a nu accepta sarcini adiţionale..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "Resetare proiect..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Sunteti sigur ca doriţi să resetaţi proiectul '%s'?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Resetare Proiect"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "DetaÅŸare de la proiect..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "Lansare browser..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Reluare"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 #, fuzzy
 msgid "Resume tasks for this project."
 msgstr "Reluare calcul pentru proiect."
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 #, fuzzy
 msgid "Allow fetching new tasks for this project."
 msgstr "Acceptăa aducerea de sarcini noi pentru acest proiect."
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 #, fuzzy
 msgid "Don't fetch new tasks for this project."
 msgstr "Nu lua sarcini noi pentru acest proiect."
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Suspendat de utilizator"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 #, fuzzy
 msgid "Won't get new tasks"
 msgstr "Nu vor fi luate sarcini noi"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Cerere către planificator în aşteptare"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "Comunicarea este amânată"
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Disc"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Total utilizator"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Media utilizator"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Total host"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Media host"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Afişează total utilizator"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "Afisează media utilizator"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Afisează total host"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "Afisează media pentru host"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Statistici"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853 clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895 clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938 clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980 clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "Actualizare grafice..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163 clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Reîncearcă"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164 clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "Apasaţi 'Reîncearcă' pentru a transfera fişierul acum"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170 clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Renunţă la transfer"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
-msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
+#: clientgui/ViewTransfers.cpp:171 clientgui/ViewTransfersGrid.cpp:114
+msgid ""
+"Click 'Abort transfer' to delete the file from the transfer queue. This will "
+"prevent you from being granted credit for this result."
 msgstr ""
 "Apasaţi 'Renunţă la transfer' pentru a şterge fişierul din coada de "
 "aşteptare. In urma acestei acţiuni nu veţi primi credit pentru acest "
 "rezultat."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182 clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "FiÅŸier"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183 clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226 clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Progres"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184 clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Dimensiune"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185 clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "Timp scurs"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186 clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Viteză"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212 clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Transferuri"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271 clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "Reiniţializare transfer..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "Renunţare la transfer..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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 ""
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Renunţă la transferul fişierului"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751 clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "Reincearcă în"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763 clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763 clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 #, fuzzy
 msgid "Aborting transfer(s)..."
 msgstr "Renunţare la transfer..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
 "will not receive credit for it."
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 #, fuzzy
 msgid "Abort File Transfer(s)"
 msgstr "Renunţă la transferul fişierului"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184 clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185 clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192 clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "Afişează graficele aplicaţiei într-o nouă fereastră."
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199 clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "Suspendare lucru pentru acest rezultat."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205 clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Renunţă"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206 clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr "Abandonează lucrul la rezultat. Nu veţi primi credit pentru el."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224 clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Nume"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227 clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "Până la finalizare"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254 clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Sarcini"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342 clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345 clientgui/ViewWorkGrid.cpp:223
 #, fuzzy
 msgid "Suspending task..."
 msgstr "Suspendare rezultat..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373 clientgui/ViewWorkGrid.cpp:251
 #, fuzzy
 msgid "Showing graphics for task..."
 msgstr "AfiÅŸare grafice pentru rezultat..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Renunţare la rezultat..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, fuzzy, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "Sunteţi sigur că doriţi să renunţaţi la acest rezultat '%s'?"
+
+#: clientgui/ViewWork.cpp:437 clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446 clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Renunţare la rezultat..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728 clientgui/ViewWorkGrid.cpp:445
 #, fuzzy
 msgid "Resume work for this task."
 msgstr "Reluare lucru pentru acest rezultat."
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734 clientgui/ViewWorkGrid.cpp:451
 #, fuzzy
 msgid "Suspend work for this task."
 msgstr "Suspendare lucru pentru acest rezultat."
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168 clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3583,14 +3472,13 @@ msgid ""
 "listed on or managed via %s."
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:350
-#, fuzzy
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
-msgstr "Acum vă vom ghida in procesul de ataşare la un proiect."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3606,136 +3494,199 @@ msgid ""
 "World Community Grid then please click on the following button:"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
+#: clientgui/WelcomePage.cpp:301
+msgid "To continue, click Next."
+msgstr "Pentru a continua, apăsaţi Next."
+
+#: clientgui/WizardAttachProject.cpp:610
+msgid "Do you really want to cancel?"
+msgstr "Sunteţi sigur că doriţi să abandonaţi?"
+
+#: clientgui/WizardAttachProject.cpp:611
+msgid "Question"
+msgstr "ÃŽntrebare"
+
+#: clientgui/wizardex.cpp:377 clientgui/wizardex.cpp:553
+msgid "&Next >"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:380
-#, fuzzy
-msgid "Account manager"
-msgstr "Managerul de conturi"
+#: clientgui/wizardex.cpp:383
+msgid "< &Back"
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
+#: clientgui/wizardex.cpp:553
+msgid "&Finish"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "Indicatori de depanare"
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
+msgid "New page inserted. Index = %i"
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "Eşuare Proprietăţi Proiect"
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
+msgid "New page appended. Index = %i"
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
+msgid "Old Page Index = %i"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "Eşuare URL Proprietăţi Proiect"
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
+msgid "OnDropTarget: index by HitTest = %i"
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "Creare Cont Dezactivată"
+#: clientgui/common/wxPieCtrl.cpp:66
+msgid "Pie Ctrl"
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "Creare Cont Client Dezactivată"
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid ""
+"for accessibility support, please select advanced from the view menu or type "
+"command shift a"
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "Contul Există Deja"
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "Proiect Deja AtaÅŸat"
+#: clientgui/mac/MacAccessiblity.cpp:528 clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "EÅŸuare AtaÅŸare Proiect"
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "Eşuare Detectare Reţea"
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:427
-msgid "To continue, click Next."
-msgstr "Pentru a continua, apăsaţi Next."
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
-msgid "Do you really want to cancel?"
-msgstr "Sunteţi sigur că doriţi să abandonaţi?"
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
-msgid "Question"
-msgstr "ÃŽntrebare"
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
-msgid "&Next >"
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
 msgstr ""
 
-#: clientgui/wizardex.cpp:408
-msgid "< &Back"
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
 msgstr ""
 
-#: clientgui/wizardex.cpp:604
-msgid "&Finish"
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
-msgid "New page inserted. Index = %i"
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
-msgid "New page appended. Index = %i"
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
-msgid "Old Page Index = %i"
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
-msgid "OnDropTarget: index by HitTest = %i"
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
 msgstr ""
 
-#: clientgui/common/wxPieCtrl.cpp:66
-msgid "Pie Ctrl"
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 
 #, fuzzy
+#~ msgid "Account Manager URL"
+#~ msgstr "URL Account Manager:"
+
+#, fuzzy
+#~ msgid "Attach to a project"
+#~ msgstr "AtaÅŸare la proiect"
+
+#, fuzzy
+#~ msgid "Attach to &project"
+#~ msgstr "AtaÅŸare la proiect"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "AtaÅŸare la proiect..."
+
+#, fuzzy
+#~ msgid "Already Attached to Project"
+#~ msgstr "Deja ataÅŸat la proiect"
+
+#, fuzzy
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr "Acum vă vom ghida in procesul de ataşare la un proiect."
+
+#, fuzzy
+#~ msgid "Account manager"
+#~ msgstr "Managerul de conturi"
+
+#~ msgid "Debug Flags"
+#~ msgstr "Indicatori de depanare"
+
+#~ msgid "Project Properties Failure"
+#~ msgstr "Eşuare Proprietăţi Proiect"
+
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "Eşuare URL Proprietăţi Proiect"
+
+#~ msgid "Account Creation Disabled"
+#~ msgstr "Creare Cont Dezactivată"
+
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "Creare Cont Client Dezactivată"
+
+#~ msgid "Account Already Exists"
+#~ msgstr "Contul Există Deja"
+
+#~ msgid "Project Already Attached"
+#~ msgstr "Proiect Deja AtaÅŸat"
+
+#~ msgid "Project Attach Failure"
+#~ msgstr "EÅŸuare AtaÅŸare Proiect"
+
+#~ msgid "Net Detection Failure"
+#~ msgstr "Eşuare Detectare Reţea"
+
+#, fuzzy
 #~ msgid ""
 #~ "You can copy and paste the URL from your browser's\n"
 #~ "address bar."
@@ -3750,8 +3701,12 @@ msgstr ""
 #~ msgid "&About BOINC Manager..."
 #~ msgstr "Despre BOINC Manager"
 
-#~ msgid "A software platform for distributed computing using volunteered computer resources"
-#~ msgstr "O platformă software pentru procesare distribuită cu ajutorul resurselor de calcul puse la dispoziţie de voluntari"
+#~ msgid ""
+#~ "A software platform for distributed computing using volunteered computer "
+#~ "resources"
+#~ msgstr ""
+#~ "O platformă software pentru procesare distribuită cu ajutorul resurselor "
+#~ "de calcul puse la dispoziţie de voluntari"
 
 #~ msgid ""
 #~ "Account managers make it easy to find and join BOINC projects.\n"
@@ -3790,8 +3745,12 @@ msgstr ""
 #~ msgid "Reminder Frequency:"
 #~ msgstr "Frecvenţa reminder-ului:"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
-#~ msgstr "Cât de des, în minute, va raporta managerul posibile evenimente ale conexiunii."
+#~ msgid ""
+#~ "How often, in minutes, should the manager remind you of possible "
+#~ "connection events."
+#~ msgstr ""
+#~ "Cât de des, în minute, va raporta managerul posibile evenimente ale "
+#~ "conexiunii."
 
 #~ msgid "&Automatically detect network connection settings"
 #~ msgstr "Detectează &automat setările pentru conectarea la retea"
@@ -3841,8 +3800,10 @@ msgstr ""
 #~ msgid "&Manage Accounts"
 #~ msgstr "&Gestionează conturile"
 
-#~ msgid "Connect to an account manager website and update all of your accounts"
-#~ msgstr "Conectare la websit-ul account manager si actualizează toate conturile"
+#~ msgid ""
+#~ "Connect to an account manager website and update all of your accounts"
+#~ msgstr ""
+#~ "Conectare la websit-ul account manager si actualizează toate conturile"
 
 #~ msgid "&Options"
 #~ msgstr "&Opţiuni"
@@ -3859,27 +3820,45 @@ msgstr ""
 #~ msgid "BOINC Manager - Network Status"
 #~ msgstr "BOINC Manager - Starea reţelei"
 
-#~ msgid "BOINC needs a connection to the Internet to perform some maintenance, open the BOINC Manager to connect up and perform the needed work."
-#~ msgstr "BOINC necesită o conexiune la Internet pentru operaţii de mentenanţă. Deschideţi BOINC Manager pentru conectare şi efectuarea operaţiilor necesare. "
+#~ msgid ""
+#~ "BOINC needs a connection to the Internet to perform some maintenance, "
+#~ "open the BOINC Manager to connect up and perform the needed work."
+#~ msgstr ""
+#~ "BOINC necesită o conexiune la Internet pentru operaţii de mentenanţă. "
+#~ "Deschideţi BOINC Manager pentru conectare şi efectuarea operaţiilor "
+#~ "necesare. "
 
 #~ msgid "Update All"
 #~ msgstr "Actualizează totul"
 
-#~ msgid "Report all upload items, completed work, get latest credit, get latest preferences, and possibly get more work."
-#~ msgstr "Raportează toate elementele de upload, sarcinile incheiate, actualizează creditul, actualizează preferinţele şi, eventual, cere alte sarcini."
+#~ msgid ""
+#~ "Report all upload items, completed work, get latest credit, get latest "
+#~ "preferences, and possibly get more work."
+#~ msgstr ""
+#~ "Raportează toate elementele de upload, sarcinile incheiate, actualizează "
+#~ "creditul, actualizează preferinţele şi, eventual, cere alte sarcini."
 
 #~ msgid "No new work"
 #~ msgstr "Nici o sarcină nouă."
 
 # ?
-#~ msgid "Detach this computer from this project.  Work in progress will be lost. You can update the project first to report any completed work."
-#~ msgstr "Detaşează acest computer de la proiect. Lucrul in curs se va pierde. Puteţi actualiza proiectul intâi, pentru a raporta sarcinile incheiate."
+#~ msgid ""
+#~ "Detach this computer from this project.  Work in progress will be lost. "
+#~ "You can update the project first to report any completed work."
+#~ msgstr ""
+#~ "Detaşează acest computer de la proiect. Lucrul in curs se va pierde. "
+#~ "Puteţi actualiza proiectul intâi, pentru a raporta sarcinile incheiate."
 
 #~ msgid "Attach to new project"
 #~ msgstr "Ataşează la un proiect nou"
 
-#~ msgid "Attach this computer to a BOINC project.  You'll need a project URL and account key (visit the project's web site to get these)."
-#~ msgstr "Ataşează acest computer la un proiect BOINC. Veţi avea nevoie de un URL al proiectului si o cheie de cont (account key). Vizitaţi site-ul proiectului pentru a le obţine."
+#~ msgid ""
+#~ "Attach this computer to a BOINC project.  You'll need a project URL and "
+#~ "account key (visit the project's web site to get these)."
+#~ msgstr ""
+#~ "Ataşează acest computer la un proiect BOINC. Veţi avea nevoie de un URL "
+#~ "al proiectului si o cheie de cont (account key). Vizitaţi site-ul "
+#~ "proiectului pentru a le obţine."
 
 #~ msgid "Total credit"
 #~ msgstr "Credit total"
@@ -3896,7 +3875,6 @@ msgstr ""
 #~ msgid "Disk Space"
 #~ msgstr "Spaţiu pe disk"
 
-#, c-format
 #~ msgid "Are you sure you want to abort this file transfer '%s'?"
 #~ msgstr "Sunteţi sigur că doriti să renunţaţi la transferul fişierului '%s'?"
 
@@ -3906,10 +3884,6 @@ msgstr ""
 #~ msgid "Resuming result..."
 #~ msgstr "Reluare rezultat..."
 
-#, c-format
-#~ msgid "Are you sure you want to abort this result '%s'?"
-#~ msgstr "Sunteţi sigur că doriţi să renunţaţi la acest rezultat '%s'?"
-
 #~ msgid "Abort result"
 #~ msgstr "Renunţare rezultat"
 
@@ -3950,7 +3924,8 @@ msgstr ""
 #~ msgstr "Introduceţi cheia de cont (account key)"
 
 #~ msgid "This project uses an \"account key\" to identify you."
-#~ msgstr "Acest proiect utilizează o \"cheie de cont\" pentru a vă identifica."
+#~ msgstr ""
+#~ "Acest proiect utilizează o \"cheie de cont\" pentru a vă identifica."
 
 #~ msgid ""
 #~ "Go to the project's web site to create an account. Your account\n"
@@ -4012,7 +3987,8 @@ msgstr ""
 #~ msgstr ""
 #~ "Nu am reusit să comunicăm cu proiectul sau alte adrese web.\n"
 #~ "\n"
-#~ "De regulă aceasta se datorează faptului că dvs. utilizaţi un proxy server.\n"
+#~ "De regulă aceasta se datorează faptului că dvs. utilizaţi un proxy "
+#~ "server.\n"
 #~ "Este necesar să specificati date în legătură cu acesta.\n"
 #~ "\n"
 #~ "Apasaţi Next pentru a seta configuraţia proxy."
@@ -4051,7 +4027,8 @@ msgstr ""
 #~ "This page just increases the refcount of various bitmap resources\n"
 #~ "so that DialogBlocks doesn't nuke the refences to them."
 #~ msgstr ""
-#~ "Această pagină are doar rolul de a mări numărul de referinţe ale diverselor resurse de tip bitmap \n"
+#~ "Această pagină are doar rolul de a mări numărul de referinţe ale "
+#~ "diverselor resurse de tip bitmap \n"
 #~ " astfel încât DiagBlocks nu le elimină."
 
 #~ msgid "About BOINC Manager"
diff --git a/locale/ro/BOINC-Web.po b/locale/ro/BOINC-Web.po
index 9b0134c..6d9ecaa 100644
--- a/locale/ro/BOINC-Web.po
+++ b/locale/ro/BOINC-Web.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -18,386 +18,312 @@ msgstr ""
 "X-Poedit-Country: UNITED STATES\n"
 "X-Poedit-KeywordsList: tra\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
 msgstr ""
 
-"
-
+#: poll.inc:47
 msgid "Other:"
 msgstr ""
 
-"
-
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
 msgstr ""
 
-"
-
+#: poll_data.inc:22
 msgid "less than a week"
 msgstr ""
 
-"
-
+#: poll_data.inc:23
 msgid "less than a month"
 msgstr ""
 
-"
-
+#: poll_data.inc:24
 msgid "less than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:25
 msgid "more than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:34
 msgid "I lost interest"
 msgstr ""
 
-"
-
+#: poll_data.inc:35
 msgid "it was too complicated"
 msgstr ""
 
-"
-
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
 msgstr ""
 
-"
-
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:38
 msgid "it used too much electricity"
 msgstr ""
 
-"
-
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr ""
 
-"
-
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
 msgstr ""
 
-"
-
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
 msgstr ""
 
-"
-
+#: poll_data.inc:50
 msgid "I had network communication problems"
 msgstr ""
 
-"
-
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
 msgstr ""
 
-"
-
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr ""
 
-"
-
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
 msgstr ""
 
-"
-
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr ""
 
-"
-
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr ""
 
-"
-
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr ""
 
-"
-
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr ""
 
-"
-
+#: poll_data.inc:87
 msgid "Home"
 msgstr ""
 
-"
-
+#: poll_data.inc:88
 msgid "Work"
 msgstr ""
 
-"
-
+#: poll_data.inc:89
 msgid "School"
 msgstr ""
 
-"
-
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr ""
 
-"
-
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr ""
 
-"
-
+#: poll_data.inc:119
 msgid "Age"
 msgstr ""
 
-"
-
+#: poll_data.inc:129
 msgid "Sex"
 msgstr ""
 
-"
-
+#: poll_data.inc:131
 msgid "Male"
 msgstr ""
 
-"
-
+#: poll_data.inc:132
 msgid "Female"
 msgstr ""
 
-"
-
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr ""
 
-"
-
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr ""
 
-"
-
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr ""
 
-"
-
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr ""
 
-"
-
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr ""
 
-"
-
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr ""
 
-"
-
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
 msgstr ""
 
-"
-
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr ""
 
-"
-
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr ""
 
-"
-
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr ""
 
-"
-
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr ""
 
-"
-
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr ""
 
-"
-
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr ""
 
-"
-
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr ""
 
-"
-
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr ""
 
-"
-
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr ""
 
-"
-
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr ""
 
-"
-
+#: poll_data.inc:192
 msgid "Yes"
 msgstr ""
 
-"
-
+#: poll_data.inc:193
 msgid "No"
 msgstr ""
 
-"
-
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr ""
 
-"
-
+#: poll_data.inc:200
 msgid "to read information"
 msgstr ""
 
-"
-
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr ""
 
-"
-
+#: poll_data.inc:202
 msgid "None"
 msgstr ""
 
-"
-
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr ""
 
-"
-
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr ""
 
-"
-
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr ""
 
-"
-
+#: download.php:40
 msgid "Download BOINC"
 msgstr ""
 
-"
-
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr ""
 
-"
-
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -405,41 +331,34 @@ msgid ""
 "computer, you can connect it to as many of these projects as you like."
 msgstr ""
 
-"
-
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
 "(GPU), you may be able to %suse it to compute faster%s"
 msgstr ""
 
-"
-
+#: download.php:120
 msgid "System requirements"
 msgstr ""
 
-"
-
+#: download.php:121
 msgid "Release notes"
 msgstr ""
 
-"
-
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr ""
 
-"
-
+#: download.php:123
 msgid "All versions"
 msgstr ""
 
-"
-
+#: download.php:141
 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 "
@@ -448,8 +367,7 @@ msgid ""
 "problems you might have."
 msgstr ""
 
-"
-
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -458,8 +376,7 @@ msgid ""
 "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 "
@@ -467,20 +384,17 @@ msgid ""
 "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 "
@@ -488,30 +402,70 @@ msgid ""
 "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 ""
 
-"
+#: index.php:23
+msgid "Computing power"
+msgstr ""
 
-msgid "Volunteer"
+#: index.php:25
+msgid "Top 100 volunteers"
 msgstr ""
 
-"
+#: index.php:26
+msgid "Statistics"
+msgstr ""
 
-msgid "Download"
+#: index.php:53
+msgid "Active:"
 msgstr ""
 
-"
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
 
-msgid "Documentation"
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
 msgstr ""
 
-"
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
 
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -520,28 +474,92 @@ msgid ""
 "sDownload%s and run BOINC software  %sEnter%s an email address and password. "
 msgstr ""
 
-"
-
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
 "sGridRepublic%s or %sBAM!%s. "
 msgstr ""
 
-"
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
 
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
 
-"
-
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr ""
 
-"
-
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -554,84 +572,68 @@ msgid ""
 "href=poll_results.php>here</a>. "
 msgstr ""
 
-"
-
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr ""
 
-"
-
+#: poll.php:30
 msgid "Your participation"
 msgstr ""
 
-"
-
+#: poll.php:32
 msgid "Your computers"
 msgstr ""
 
-"
-
+#: poll.php:34
 msgid "You"
 msgstr ""
 
-"
-
+#: poll.php:39
 msgid "Nationality"
 msgstr ""
 
-"
-
+#: poll.php:44
 msgid "Comments"
 msgstr ""
 
-"
-
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
 msgstr ""
 
-"
-
+#: poll.php:50
 msgid "When done click:"
 msgstr ""
 
-"
-
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
 msgstr ""
 
-"
-
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr ""
 
-"
-
+#: poll_results.php:195
 msgid "Survey results"
 msgstr ""
 
-"
-
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
 msgstr ""
 
-"
-
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 #~ msgid "CHARSET"
 #~ msgstr "UTF-8"
diff --git a/locale/ro/pootle-boincclient610-ro.prefs b/locale/ro/pootle-boincclient610-ro.prefs
new file mode 100644
index 0000000..502eb1c
--- /dev/null
+++ b/locale/ro/pootle-boincclient610-ro.prefs
@@ -0,0 +1,7 @@
+# Pootle preferences for project boinctrunk, language ro
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/ro/pootle-boinctrunk-ro.prefs b/locale/ro/pootle-boinctrunk-ro.prefs
deleted file mode 100644
index 7557de9..0000000
--- a/locale/ro/pootle-boinctrunk-ro.prefs
+++ /dev/null
@@ -1,2 +0,0 @@
-# Pootle preferences for project boinctrunk, language ro
-
diff --git a/locale/ru/BOINC-Manager.mo b/locale/ru/BOINC-Manager.mo
index f947f40..49e25d5 100644
Binary files a/locale/ru/BOINC-Manager.mo and b/locale/ru/BOINC-Manager.mo differ
diff --git a/locale/ru/BOINC-Manager.po b/locale/ru/BOINC-Manager.po
index f08d995..250c3f1 100644
--- a/locale/ru/BOINC-Manager.po
+++ b/locale/ru/BOINC-Manager.po
@@ -1,11 +1,11 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 6.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
-"PO-Revision-Date: 2009-05-02 08:09-0700\n"
-"Last-Translator: Max F <mifistor.x at gmail.com>\n"
-"Language-Team: mifistor_x <mifistor.x at gmail.com>\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2010-03-10 23:36-0700\n"
+"Last-Translator: Nikolay Saharov <saharovna at gmail.com>\n"
+"Language-Team: Russia\n"
 "Language: ru\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -14,18 +14,18 @@ msgstr ""
 "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 "X-Generator: Pootle 1.2.1\n"
 "X-Poedit-Language: Russian\n"
-"X-Poedit-SearchPath-0: \n"
+"X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: iso-8859-1\n"
-"X-Poedit-Basepath: E:\\CVS\\BOINC\\boinc_svn\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: RUSSIAN FEDERATION\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "Информация об участнике"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr "Ваша учетная запись "
 
 # ???
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
@@ -34,7 +34,7 @@ msgstr ""
 "(учётная запись создаётся на сайте проекта)"
 
 # крииииво
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
@@ -42,454 +42,502 @@ msgstr ""
 "Создание новых учётных записей запрещено.\n"
 "Подключение только для уже зарегистрированных."
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "Вы уже зарегистрированы в проекте?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "Нет, новый участник"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "Да, уже зарегистрирован"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+"Не удалось настроить вашу учетную запись\n"
+"автоматически.\n"
+"\n"
+"Пожалуйста нажмите ссылку 'Найти информацию для регистрации',\n"
+"находящуюся ниже, чтобы узнать, что ввести в\n"
+"поле адреса электронной почты и пароля."
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr "Найти информацию для регистрации"
+
+#: clientgui/AccountInfoPage.cpp:425 clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "Пароль:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432 clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "Введите пароль:"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "Повторный ввод пароля:"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
 #, c-format
 msgid "Are you already running %s?"
 msgstr "Вы уже зарегистрированы в проекте %s?"
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr "Имя участника:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "Адрес электронной почты:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
 #, c-format
 msgid "minimum length %d"
 msgstr "минимум %d символов"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr "Забыли пароль?"
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+"Если Вы еще не зарегистрировались в этом менеджере проектов,\n"
+"пожалуйста сделайте это перед тем, как продолжить.  Нажмите на ссылку ниже,\n"
+"чтобы зарегистрироваться или восстановить забытый пароль."
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr "Вебсайт менеджера проектов"
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "Подключение к проекту"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "Обновление менеджера проектов"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "Подключение к менеджеру проектов"
 
 # ?
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
 #, c-format
-msgid "The minimum password length for this project is %d. Please enter a different password."
+msgid ""
+"The minimum password length for this project is %d. Please enter a different "
+"password."
 msgstr ""
 "Минимальная длина пароля для данного проекта %d символов. Измените пароль."
 
 # ?
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
 #, c-format
-msgid "The minimum password length for this account manager is %d. Please enter a different password."
+msgid ""
+"The minimum password length for this account manager is %d. Please enter a "
+"different password."
 msgstr ""
 "Минимальная длина пароля для данного менеджера проектов %d символов. "
 "Измените пароль."
 
-#: clientgui/AccountInfoPage.cpp:506
-msgid "The password and confirmation password do not match. Please type them again."
+#: clientgui/AccountInfoPage.cpp:560
+msgid ""
+"The password and confirmation password do not match. Please type them again."
 msgstr "'Пароль' и 'Подтверждение пароля' не совпадают. Повторите ввод пароля."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "Адрес менеджера проектов"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr "Выбор менеджера проектов"
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Введите адрес выбранного менеджера проектов."
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"Выберите понравившийся менеджер проектов, щёлкнув на его названии,\n"
+"или введите его адрес URL в поле ниже."
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "Адрес (URL):"
 
 # ???
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
 #, c-format
 msgid "Communicating with %s."
 msgstr "Установка связи с %s."
 
 # ???
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr "Установка связи с сервером."
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "Пожалуйста подождите..."
 
 # что бы это значило???
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr "Произошла внутренняя ошибка сервера.\n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Соединение установлено"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Отсутствует соединение"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "Закрыть окно\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr "Закрыть окно %s"
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "Закрыть окно BOINC менеджера."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr "Закрыть окно"
 
-# ?
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
+#: clientgui/AdvancedFrame.cpp:319
 #, c-format
-msgid "Exit the %s"
-msgstr "Завершить работу программы %s"
+msgid "Exit %s"
+msgstr "Выйти из %s"
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324 clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "Выход"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
-msgstr "Полный вид\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr "Проекты\tCtrl+Shift+P"
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
-msgstr ""
-"Продвинутый вид таблиц с возможностью сортировки по столбцам и графическим "
-"индикатором прогресса."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr "Показать проекты"
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
-msgstr "Сокращённый вид...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr "Задания\tCtrl+Shift+T"
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "Изменить внешний вид BOINC менеджера на более понятный."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr "Показать задания"
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "Добавить проект..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr "Передача\tCtrl+Shift+X"
 
-# дубль (перевода)
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "Подключиться к ещё одному проекту распределённых вычислений"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr "Показать передачу данных"
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "Соединиться с менеджером проектов..."
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr "Сообщения\tCtrl+Shift+M"
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Соединиться с менеджером проектов"
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr "Показать сообщения"
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr "Статистика\tCtrl+Shift+S"
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr "Показать статистику"
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr "Диск\tCtrl+Shift+D"
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr "Показать использование диска"
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "Упрощенный вид...\tCtrl+Shift+V"
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr "Изменить внешний вид на более простой и понятный."
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr "Подключиться к проекту или менеджеру проектов..."
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+"Чтобы начать обработку заданий, необходимо подключиться к проекту или "
+"менеджеру проектов"
 
 # обновить данные
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:397
 #, c-format
 msgid "&Synchronize with %s"
 msgstr "Синхронизироваться с %s"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
 #, c-format
 msgid "Get current settings from %s"
 msgstr "Обновить настройки с %s"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "Добавить проект..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr ""
+"Чтобы начать обработку заданий необходимо подключиться к проекту "
+"распределённых вычислений"
+
+# ???
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "Отсоединиться от %s..."
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Отсоединить клиент от менеджера проектов."
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "Постоянная обработка"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr "Обработка заданий запущена всегда"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "График работы определяется настройками"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "Обработка происходит в моменты времени в соответствие с настройками"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "Приостановить обработку"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr "Приостанавливается обработка всех заданий во всех проектах"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr "Постоянная обработка на GPU"
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr "Обработка заданий на GPU запущена всегда"
+
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr "График работы GPU определяется настройками"
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr ""
+"Обработка на GPU происходит в моменты времени в соответствие с настройками"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr "Не использовать GPU"
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr "Приостанавливается обработка на GPU всех заданий во всех проектах"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "Подключен к интернету"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr ""
 "Разрешается обмен данными через интернет в любой момент времени, независимо "
 "от настроек"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
 msgstr "Доступ в интернет определяется настройками"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr ""
 "Обмен данными через интернет осуществляется в соответствии с настройками"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
 msgstr "Работать автономно"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr ""
 "Запрещается обмен данными через интернет между BOINC и серверами проектов"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "Настройки программы..."
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "Настройки графического интерфейса программы и прокси серверов"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "Настройки клиента..."
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr "Локально хранимые настройки для текущего BOINC клиента"
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
 #, c-format
 msgid "Connect to another computer running %s"
 msgstr "Подключить другой компьютер с %s"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "Сменить компьютер..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr "Завершить работу подключенного BOINC клиента..."
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr "Завершить работу подключенного BOINC клиента"
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "Запустить тест производительности"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "Запустить тест производительности процессора"
 
 # ???
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr "Повторить обмен данными с серверами проектов"
 
 # ???
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr "Повторить все незавершённые обмены данными с серверами проектов."
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr "Перезагрузить файл спецнастроек"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr "Перезагрузить файл спецнастроек cc_config.xml."
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "Перезагрузить локальный файл общих настроек"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr "Перезагрузить локальный файл общих настроек global_prefs_override.xml."
 
-# ???
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-#, c-format
-msgid "&Stop using %s..."
-msgstr "Отсоединиться от %s..."
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "Отсоединить клиент от менеджера проектов."
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "Добавить проект"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr ""
-"Чтобы начать обработку заданий необходимо подключиться к проекту "
-"распределённых вычислений"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
 #, c-format
 msgid "%s &help"
 msgstr "Справка %s"
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
 #, c-format
 msgid "Show information about %s"
 msgstr "Показать справку по %s"
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
 #, c-format
 msgid "&%s help"
 msgstr "Справка %s"
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
 #, c-format
 msgid "Show information about the %s"
 msgstr "Показать справку по программе %s"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
 #, c-format
 msgid "%s &website"
 msgstr "Домашняя страница %s"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
 #, c-format
 msgid "Show information about BOINC and %s"
 msgstr "Показать информацию о BOINC и %s"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628 clientgui/BOINCTaskBar.cpp:631
 #, c-format
 msgid "&About %s..."
 msgstr "О %s..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "Показать сведения о версии программы и авторских правах."
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "Файл"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "Вид"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "Сервис"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "Управление"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "Дополнительно"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "Справка"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr "%s - Завершение работы текущего BOINC клиента..."
-
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-"%s остановит подключенного в данный момент клиента,\n"
-"и запросит у Вас для подключения адрес другого компьютера.\n"
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr "Подключение к проекту или менеджеру проектов..."
 
 # ?
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
 #, c-format
 msgid "%s - Detach from %s"
 msgstr "%s - отсоединение от %s"
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
 #, c-format
 msgid ""
 "If you stop using %s,\n"
@@ -504,64 +552,68 @@ msgstr ""
 "\n"
 "Отсоединиться от %s?"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "Подключение к проекту..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "Повторный обмен данными для всех подключенных проектов..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
 #, c-format
 msgid "%s - Language Selection"
 msgstr "%s - изменение языка"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
 #, c-format
-msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
+msgid ""
+"The %s's default language has been changed, in order for this change to take "
+"affect you must restart the %s."
 msgstr ""
 "Язык интерфейса программы %s был изменён,\n"
 "для вступления в силу изменений требуется перезапустить программу %s."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - Завершение работы текущего BOINC клиента..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s остановит подключенного в данный момент клиента,\n"
+"и запросит у Вас для подключения адрес другого компьютера.\n"
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Повторный обмен данными для всех подключенных проектов..."
+
+#: clientgui/AdvancedFrame.cpp:1725
 #, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
 #, c-format
 msgid "%s has successfully attached to %s"
 msgstr "Подключение %s к проекту %s прошло успешно"
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
 #, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
 #, c-format
 msgid "Connecting to %s"
 msgstr "Идёт подключение к %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
 #, c-format
 msgid "Connected to %s (%s)"
 msgstr "Подключен к %s (%s)"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "Данное имя участника уже используется"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -574,11 +626,11 @@ msgstr ""
 "Посетите домашнюю страницу проекта для получения инструкций."
 
 # не влазит полностью
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "Данный адрес эл. почты уже используется"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -590,22 +642,36 @@ msgstr ""
 "\n"
 "Посетите домашнюю страницу проекта для получения инструкций."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr "Устанавливается связь с BOINC клиентом.  Пожалуйста подождите ..."
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr "Выйти из %s"
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr "Выйти из %s"
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "Отмена"
+
+#: clientgui/BOINCBaseFrame.cpp:422
 #, c-format
 msgid "%s - Connection Error"
 msgstr "%s - ошибка соединения"
 
 # Пью пиво,
 # меняю пароли.
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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."
+"Please contact your administrator to add you to the 'boinc_users' local user "
+"group."
 msgstr ""
 "У вас недостаточно прав для управления BOINC клиентом.\n"
 "Управление станет возможно после добавления вас в группу 'boinc_users' "
@@ -615,7 +681,7 @@ msgstr ""
 # программа и клиент это типа два разных глюка из одной папки,
 # и все главное сразу догадались кто программа а кто клиент.
 # загадочное какое-то сообщение, программа и клиент это типа два разных глюка из одной папки, и все главное сразу догадались кто программа а кто клиент.
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
@@ -623,22 +689,20 @@ msgstr ""
 "Подключение к клиенту не удалось из-за ошибки контроля доступа.\n"
 "Убедитесь, что программа запускается из той же папки что и клиент."
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr "Подключение к клиенту не удалось из-за ошибки контроля доступа."
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "Введен не правильный пароль, попробуйте подключиться еще раз."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
 #, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - ошибка подключения"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
 #, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
@@ -647,26 +711,24 @@ msgstr ""
 "%s не может подключиться к клиенту %s.\n"
 "Попытаться повторить подключение?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
 #, c-format
 msgid "%s - Daemon Start Failed"
 msgstr "%s - сбой при старте демона"
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
 #, 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."
+"Please launch the Control Panel->Administative Tools->Services applet and "
+"start the BOINC service."
 msgstr ""
 "%s не может запустить клиента %s.\n"
-"Попробуйте запустить службу BOINC ещё раз из 'Панель "
-"управления/Администрирование/Службы'."
+"Попробуйте запустить службу BOINC ещё раз из 'Панель управления/"
+"Администрирование/Службы'."
 
 # чё-то муть какая-то, зачем и что повторить-то.
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
 #, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
@@ -675,18 +737,17 @@ msgstr ""
 "%s не может запустить клиента %s.\n"
 "Попробуйте запустить демона ещё раз."
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
 #, c-format
 msgid "%s - Connection Status"
 msgstr "%s - состояние подключения"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
 #, 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"
+"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 ""
 "%s не подключен к клиенту %s.\n"
@@ -695,37 +756,33 @@ msgstr ""
 "Для локального компьютера используйте 'localhost' в качестве имени "
 "компьютера."
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Ссылки"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
 #, c-format
 msgid "%s - Network Status"
 msgstr "%s - состояние сетевого подключения"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
 #, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr "%s необходимо подключиться к интернету.  Щёлкните чтобы открыть %s."
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
 #, c-format
 msgid ""
-"%s is unable to communicate with a project and needs an Internet connection.\n"
-"Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
+"%s is unable to communicate with a project and needs an Internet "
+"connection.\n"
+"Please connect to the Internet, then select the 'Do network communications' "
+"item from the Advanced menu."
 msgstr ""
 "%s не смог связаться с проектом - необходимо подключиться к интернету.\n"
 "Подключитесь к интернету и нажмите 'Повторить обмен данными с серверами "
 "проектов'."
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
 #, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
@@ -734,17 +791,16 @@ msgstr ""
 "%s необходимо подключиться к интернету.\n"
 "Произвести соединение сейчас?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
 #, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s производит подключение к интернету."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
 #, c-format
 msgid ""
-"%s couldn't do Internet communication, and no default connection is selected.\n"
+"%s couldn't do Internet communication, and no default connection is "
+"selected.\n"
 "Please connect to the Internet, or select a default connection\n"
 "using Advanced/Options/Connections."
 msgstr ""
@@ -752,20 +808,17 @@ msgstr ""
 "Подключитесь к интернету или задайте подключение по умолчанию\n"
 "в меню 'Дополнительно/Настройки программы.../Параметры подключения'."
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
 #, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s установил подключение к интернету."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
 #, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "%s не удалось подключиться к интернету."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
 #, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
@@ -774,19 +827,48 @@ msgstr ""
 "%s обнаружил установленное подключение к интернету.\n"
 "Идёт обмен файлами данных и обновление информации о проектах."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
 #, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s разорвал подключение к интернету."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
 #, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s не удалось разорвать подключение к интернету."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+"В настоящий момент у Вас нет права на управление клиентом.\n"
+"\n"
+"Чтобы запустить BOINC под текущим пользователем, необходимо:\n"
+" - переустановить ПО BOINC, ответив \"Да\" на вопрос\n"
+"   о пользователях без административных прав\n"
+"или\n"
+" - обратиться к Вашему администратору, чтобы он добавил Вас\n"
+"   в группу пользователей 'boinc_master'."
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall "
+"BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"Владелец BOINC или права доступа установлены некорректно; пожалуйста "
+"переустановите ПО BOINC.\n"
+"(Код ошибки %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
@@ -794,117 +876,125 @@ msgstr ""
 "Требуется перезагрузка для корректной работы клиента BOINC.\n"
 "Пожалуйста, перезагрузите Ваш компьютер и попытайтесь еще раз."
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "BOINC менеджер"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr "BOINC менеджер был автоматически запущен операционной системой"
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr "сворачивать BOINC менеджер в значок на панели задач при запуске"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr "Каталог, содержащий исполняемый файл клиента BOINC"
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr "Каталог данных BOINC"
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr "запускать BOINC клиент с ключами запуска"
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr "отключить политику безопасности доступа пользователей к BOINC"
 
 # Это описание ключа запуска BOINC managera. Не переводится.
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 "включить режим отладки менеджера обложек для вывода сообщений об ошибках"
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Автоопределение)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Неизвестный)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Пользовательский)"
 
 # пауза
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr "Обработка приостановлена."
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr "Автономная работа."
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
 #, c-format
 msgid "%s: %.2f%% completed."
 msgstr "%s: прогресс %.2f%%."
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
 #, c-format
 msgid "%d tasks running."
 msgstr "обрабатывается заданий: %d."
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr "Повторное подключение к клиенту."
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr "Не подключен к клиенту."
 
 # не соответствует реальности - реально при фразе "Open BOINC Web..." - открывается GridRepublic
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
 #, c-format
 msgid "Open %s Web..."
 msgstr "Посетить веб-страницу %s..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
 #, c-format
 msgid "Open %s..."
 msgstr "Открыть %s..."
 
 # Сончас
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "Пауза"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+#, fuzzy
+msgid "Snooze GPU"
+msgstr "Приостановить GPU"
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "Не удалось добавить проект"
 
 # ???
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr ""
 "Не удалось обновить данные\n"
 "с менеджера проектов"
 
 # ???
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr ""
 "Не удалось отсоединиться\n"
 "от менеджера проектов"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr ""
 "Не удалось соединиться\n"
 "с менеджером проектов"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -916,28 +1006,25 @@ msgstr ""
 "\n"
 "Для завершения нажмите кнопку 'Готово'."
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225 clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246 clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "Нажмите кнопку 'Готово' для выхода из мастера."
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "Сообщения от сервера:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "Проект добавлен"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "Подключение к проекту прошло успешно."
 
 # ...
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -946,139 +1033,117 @@ msgstr ""
 "автоматически откроется страница, где вы сможете указать\n"
 "имя вашей учётной записи и изменить её настройки."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
 #, c-format
 msgid "Update from %s completed."
 msgstr "Обновление %s завершено."
 
 # ???
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "Обновление завершено."
 
-# есть некоторые сомнения в правильности перевода :)
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-#, c-format
-msgid "Removal from %s completed."
-msgstr "Удаление %s завершено."
-
-# Goblin forever
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "Удаление завершено!"
-
 # ???
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
 #, c-format
 msgid "Attached to %s"
 msgstr "Проект %s добавлен"
 
 # ?
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "Менеджер проектов подключен"
 
 # Хоть "в" хоть "на" - всё равно как-то криво
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
 #, c-format
 msgid "Welcome to %s!"
 msgstr "Добро пожаловать в %s!"
 
 # ??
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
 #, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "Подключение к %s прошло успешно."
 
 # ?
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "Подключение к указанному менеджеру проектов успешно установлено."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
 #, c-format
 msgid "About %s"
 msgstr "О %s"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "Версия:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr "Версия wxWidgets:"
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Авторские права:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
-"(C) 2003-2008 Калифорнийский университет, Беркли.\n"
+"(C) 2003-2010 Калифорнийский университет, Беркли.\n"
 "Все права защищены."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179 clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr ""
 "BOINC - Berkeley Open Infrastructure for Network Computing\n"
 "Открытая Инфраструктура для Распределенных Вычислений университета Беркли"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195 clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120 clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "OK"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr "ошибка ввода числа"
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr "ошибка ввода, формат времени ЧЧ:ММ"
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr "ошибка при задании интервала, правильный формат ЧЧ:ММ-ЧЧ:ММ"
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr "обнаружено некорректное значение"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr "Ошибка проверки"
 
 # ?
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr "Удалить все локально хранимые настройки BOINC клиента ?"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr "Подтверждение"
 
 # ???
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
 #, c-format
 msgid "%s - Preferences"
 msgstr "%s - Настройки клиента"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
@@ -1088,198 +1153,213 @@ msgstr ""
 "на компьютере с клиентом. Для сохранения настроек нажмите 'OK'.\n"
 "Для возврата к настройкам с сайта проекта нажмите 'Удалить'."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr "Удалить"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr ""
 "удалить локально хранимые настройки для данного компьютера и закрыть окно"
 
 # переделать
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr "Запускать обработку заданий при выполнении следующих условий"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr " При питании от аккумуляторов"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
-msgid "check this if you want this computer to do work while it runs on batteries"
+#: clientgui/DlgAdvPreferencesBase.cpp:83
+msgid ""
+"check this if you want this computer to do work while it runs on batteries"
 msgstr ""
 "выберите данный пункт если хотите обрабатывать задания когда компьютер "
 "питается от аккумуляторов"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr " Когда компьютер используется для работы"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
-msgid "check this if you want this computer to do work even when you're using it"
+#: clientgui/DlgAdvPreferencesBase.cpp:92
+msgid ""
+"check this if you want this computer to do work even when you're using it"
 msgstr ""
 "выберите данный пункт если хотите обрабатывать задания когда компьютер "
 "используется пользователями для работы"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr " Использовать GPU когда компьютер используется для работы"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
-msgid "check this if you want your GPU to do work even when you're using the computer"
+#: clientgui/DlgAdvPreferencesBase.cpp:101
+msgid ""
+"check this if you want your GPU to do work even when you're using the "
+"computer"
 msgstr ""
 "выберите данный пункт если хотите обрабатывать задания с помощью видеокарты "
 "(GPU) когда компьютер используется пользователями для работы"
 
 # не удачно
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr "При отсутствии активности пользователя более"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
-msgid "do work only after you haven't used the computer for this number of minutes"
+#: clientgui/DlgAdvPreferencesBase.cpp:123
+msgid ""
+"do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 "через сколько минут отсутствия активности на компьютере начинать "
 "обрабатывать задания"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr "минут"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr "При использовании процессора менее"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+"остановить обработку, если использование процессора превысит этот уровень"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr "процентов (0 - нет ограничений)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr "Ежедневно с"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr "запустить обработку в это время"
 
 # и
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr "до"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr "остановить обработку в это время"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr "(ограничение не действует при равенстве значений)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr "По расписанию:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr "выберите день недели и укажите временной интервал"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr "Понедельник"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr "Вторник"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr "Среда"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr "Четверг"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr "Пятница"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr "Суббота"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr "Воскресенье"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr "Другие параметры"
 
 # поправить
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
-msgstr "Переключение между проектами каждые"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
+msgstr "Переключение между приложениями каждые"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr "В многопроцессорных системах использовать"
 
 # процессоры в процентах
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
 msgid "% of the processors"
 msgstr "% от общего числа процессоров (ЦП)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr "Использовать не более"
 
 # Загрузка ЦП
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
 msgid "% CPU time"
 msgstr "% времени каждого процессора (ЦП)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr "процессор"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr "Общие параметры"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr "Ограничить скорость загрузки"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr "кбайт/сек."
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr "Ограничить скорость отправки"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr "Загружать заданий на"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
@@ -1287,48 +1367,49 @@ msgstr ""
 "периодичность с которой компьютер подключается к интернету\n"
 "(0 - если подключен к интернету постоянно)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr "дней"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr "Дополнительный буфер"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr "дней (макс. 10)"
 
 # не проверять изображение файла
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr " Не проверять загружаемые файлы"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr ""
-"выберите данный пункт если ваш интернет провайдер изменяет передаваемые "
-"файлы"
+"выберите данный пункт если ваш интернет провайдер изменяет передаваемые файлы"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr "Параметры подключения"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr "Предупреждать перед подключением к интернету"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
-msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
+#: clientgui/DlgAdvPreferencesBase.cpp:384
+msgid ""
+"if checked, a confirmation dialog will be displayed before trying to connect "
+"to the Internet"
 msgstr ""
 "перед началом автоматического установления связи с интернетом BOINC спросит "
 "можно ли установить соединение"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr "Разорвать соединение после завершения"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
@@ -1337,142 +1418,129 @@ msgstr ""
 "операции\n"
 "(для обладателей dial-up модемов)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr "Доступ в интернет"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr "начиная с данного времени разрешён доступ в интернет"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr "после данного времени доступ в интернет запрещён"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr "настройки сети"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507 clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr "Использование диска"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr ""
 "ограничение на занимаемое BOINC и проектами пространство на диске (в "
 "гигабайтах)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr "Гбайт места на диске"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr "Оставлять не менее"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr ""
 "минимальный объём дискового пространства, который должен оставаться "
 "свободным (в гигабайтах)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr "Гбайт свободного места на диске"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr ""
 "ограничение на занимаемое BOINC и проектами пространство на диске в "
 "процентах от общего объёма диска"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
 #, no-c-format
 msgid "% of total disk space"
 msgstr "% от объёма диска"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
-msgstr "Период сохранения на диск"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr "Период сохранения на диск промежуточных результатов заданий"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr "секунд"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
 #, no-c-format
 msgid "% of page file (swap space)"
 msgstr "% виртуальной памяти (файл подкачки)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr "Оперативная память"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
 #, no-c-format
 msgid "% when computer is in use"
 msgstr "% когда компьютер используется для работы"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
 #, no-c-format
 msgid "% when computer is idle"
 msgstr "% когда компьютер простаивает"
 
 # ?
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr " Оставлять неактивные приложения в памяти"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr "оставлять приложение в памяти на время приостановки обработки задания"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr "диск и память"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr "OK"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr "сохранить все значения и закрыть окно"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr "Отмена"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr "закрыть окно без сохранения изменений"
 
 # было 'Вопросы и ответы'-для SETI
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637 clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121 clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "Помощь"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr "перейти на веб-страницу с описанием данных настроек"
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
 #, c-format
 msgid "%s - Exit Confirmation"
 msgstr "%s - Подтверждение выхода"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
 #, c-format
 msgid ""
 "You have requested to exit the %s,\n"
@@ -1490,8 +1558,7 @@ msgstr ""
 "при выходе из BOINC менеджера:"
 
 # ???
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
 #, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
@@ -1508,427 +1575,377 @@ msgstr ""
 "Тогда %s продолжит управлять обработкой заданий\n"
 "в соответствии с определёнными вами настройками."
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr "Останавливать программы обработки при выходе из BOINC менеджера"
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr "Запомнить выбор и больше не показывать данное окно."
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177 clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388 clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "Отмена"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr "Больше не показывать данное окно."
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr "Закрыть"
 
 # ???? уточнить
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr "Информация о проекте "
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199 clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "Общие"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr "Адрес для подключения"
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
 msgstr "Имя участника"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr "Команда"
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Выделено ресурсов"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr "Запрос к планировщику отложен на"
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr "Загрузка файлов отложена на"
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr "Отправка файлов отложена на"
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr "Идентификатор компьютера"
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr "Без использования ЦП"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215 clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217 clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219 clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr "да"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215 clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217 clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219 clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr "нет"
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr "Приостановлен вручную"
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr "Не запрашивать задания"
 
 # ?
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr "Сеанс связи с планировщиком"
 
 # ?
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
 msgstr "Подключен менеджером проектов"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr "Отсоединиться после завершения"
 
 # что именно завершено ???
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr "Завершён"
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr "Очки"
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr "Участник"
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr "Компьютер (хост)"
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr "Планировщик"
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr "Приоритет планировщика процессора"
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr "Приоритет запроса заданий для ЦП"
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr "Запрос заданий для ЦП отложен на"
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr "Интервал задержки запроса заданий для ЦП"
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr "Приоритет планировщика GPU NVIDIA"
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr "Приоритет запроса заданий для GPU NVIDIA"
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr "Запрос заданий для GPU NVIDIA отложен на"
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr "Интервал задержки запроса заданий для GPU NVIDIA"
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr "Приоритет планировщика GPU ATI"
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr "Приоритет запроса заданий для GPU ATI"
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr "Запрос заданий для GPU ATI отложен на"
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr "Интервал задержки запроса заданий для GPU ATI"
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr "Поправочный коэффициент продолжительности"
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr "Информация о задании "
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Приложение"
 
 # ??
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr "Имя задания"
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr "Состояние"
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr "Получено"
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Отправить до"
 
 # не уверен
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr "Выделено ресурсов"
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr "Время ЦП в контрольной точке"
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290 clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "Время ЦП"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292 clientgui/DlgItemProperties.cpp:306
 msgid "Elapsed time"
 msgstr "Затрачено времени"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr "Осталось до завершения"
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr "Процент выполнения"
 
 # не точно
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr "Объём виртуальной памяти"
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr "Использование памяти"
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
-msgstr "Слот"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr "Каталог"
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr "ID процесса"
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Новое"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "Ошибка загрузки данных"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "Загрузка данных"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "Проект приостановлен пользователем"
 
 # длинно
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr "Обработка задания приостановлена пользователем"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Приостановлена"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr " - питание от аккумуляторов"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr " - пользователь работает"
 
 # пауза
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr " - обработка приостановлена"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr " - в зависимости от времени суток"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr " - запущен тест производительности"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr " - не хватает места на диске"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr "Ожидание освобождения оперативной памяти"
 
 # офигеть можно от такого объяснения
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr "Ожидание освобождения разделяемой оперативной памяти (shared memory)"
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr "Работает, обработать в первую очередь"
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "Работает"
 
 # Приостановлено с последующим продолжением обработки
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr "Ждёт своей очереди"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448 clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr "Готово к запуску"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Ошибка вычислений"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "Ошибка отправки данных"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "Отправка данных"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Прервано пользователем"
 
 # ???? уточнить
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "Прервано проектом"
 
 # ???
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "Прервано"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Признано"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "Ожидается подтверждение о приеме данных"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
 #, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Ошибка: недопустимое состояние '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
 #, c-format
 msgid "%s - Options"
 msgstr "%s - Настройки программы"
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr "Язык (language):"
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr "Выбор языка интерфейса программы BOINC менеджер."
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
@@ -1936,120 +1953,107 @@ msgstr ""
 "Интервал между напоминаниями:\n"
 "(в минутах)"
 
-#: clientgui/DlgOptions.cpp:180
-msgid "How often should the Manager remind you when a network connection is needed?"
+#: clientgui/DlgOptions.cpp:180
+msgid ""
+"How often should the Manager remind you when a network connection is needed?"
 msgstr "Интервал между напоминаниями о необходимости соединения с интернетом."
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr "Автозагрузка BOINC менеджера?"
 
 # не знаю как это у нормальных людей называется - залогиниваться
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr "Запускать BOINC менеджер при входе пользователя на компьютер."
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr "Подтверждение при выходе из программы?"
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr "Спрашивать перед выходом из программы BOINC менеджер."
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "Настройки модемного соединения и VPN"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "Подключение по умолчанию"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "Нет подключения по умолчанию"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Подключение по умолчанию:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Параметры подключения"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Соединяться через HTTP прокси сервер"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "Параметры HTTP прокси сервера"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267 clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Адрес:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275 clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Порт:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283 clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr "Не использовать прокси для:"
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290 clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Оставить поля пустыми если не используются"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296 clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Имя пользователя:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304 clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Пароль:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "HTTP прокси"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Соединяться через SOCKS прокси сервер"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "Параметры SOCKS прокси сервера"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "SOCKS прокси"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
 #, c-format
 msgid "%s - Select Computer"
 msgstr "%s - Подключение к компьютеру"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Имя компьютера в сети или IP:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
 #, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s - не найден веб-браузер"
@@ -2057,8 +2061,7 @@ msgstr "%s - не найден веб-браузер"
 # ?
 # поиски браузера продолжаются...
 # ? поиски браузера продолжаются...
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
 #, c-format
 msgid ""
 "%s tried to display the web page\n"
@@ -2075,273 +2078,262 @@ msgstr ""
 "как браузер по умолчанию\n"
 "и перезапустите %s."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31 clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "Доска сообщений"
 
 # seti
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "Форум для общения с другими участниками проекта SETI at home"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "Форум, где можно задать вопросы и сообщить об ошибках"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39 clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111 clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "Ваша учётная запись"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41 clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "Просмотр информации о вашей учётной записи и набранных очках"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "Ваши настройки"
 
 # seti
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr ""
 "Просмотр и изменение настроек вашей учётной записи и вашего профиля в "
 "проекте SETI at home"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47 clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "Ваши результаты"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49 clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
-msgstr "Просмотр информации о выданных заданиях (за последние несколько недель)"
+msgstr ""
+"Просмотр информации о выданных заданиях (за последние несколько недель)"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51 clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "Ваши компьютеры"
 
 # seti
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr ""
 "Просмотр информации о ваших компьютерах, участвующих в обработке заданий "
 "проекта SETI at Home"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55 clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "Команда"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57 clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "Просмотр информации о команде, к которой вы присоединились"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "Частые вопросы"
 
 # einstein
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "Часто задаваемые вопросы по проекту Einstein at Home"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "Экранная заставка"
 
 # einstein
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "Подробное описание экранной заставки проекта Einstein at Home"
 
 # einstein
-#: clientgui/Localization.cpp:71
-msgid "Correspond with admins and other users on the Einstein at Home message boards"
+#: clientgui/Localization.cpp:71
+msgid ""
+"Correspond with admins and other users on the Einstein at Home message boards"
 msgstr ""
 "Форум для общения с разработчиками и другими участниками проекта "
 "Einstein at Home"
 
 # einstein
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "Состояние серверов"
 
 # einstein
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Информация о текущем состоянии серверов проекта Einstein at Home"
 
 # ?
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "Проблемы и ошибки"
 
 # einstein
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr ""
-"Форум для обсуждения проблем и ошибок в работе программ проекта "
-"Einstein at Home"
+"Форум для обсуждения проблем и ошибок в работе программ проекта Einstein at Home"
 
 # einstein
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr ""
 "Просмотр и изменение настроек вашей учётной записи и вашего профиля в "
 "проекте Einstein at Home"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "Учётная запись (инфо.)"
 
 # einstein
-#: clientgui/Localization.cpp:95
-msgid "View a listing of all the computers on which you are running Einstein at Home"
+#: clientgui/Localization.cpp:95
+msgid ""
+"View a listing of all the computers on which you are running Einstein at Home"
 msgstr ""
 "Просмотр информации о ваших компьютерах, участвующих в обработке заданий "
 "проекта Einstein at Home"
 
 # einstein
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "LIGO"
 
 # einstein ?
-#: clientgui/Localization.cpp:103
-msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
+#: clientgui/Localization.cpp:103
+msgid ""
+"The home page of the Laser Interferometer Gravitational-wave Observatory "
+"(LIGO) project"
 msgstr ""
 "Домашняя страница проекта LIGO (лазерный интерферометр обсерватории "
 "гравитационных волн)"
 
 # einstein
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "GEO-600"
 
 # einstein
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "Домашняя страница проекта GEO-600"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115 clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Команда"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "Просмотр информации о команде, к которой вы присоединились"
 
 # cpdn ???
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "Помощь по проекту climateprediction.net"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "Новости"
 
 # cpdn
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "Новости проекта climateprediction.net"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr "Просмотр информации о вашей учётной записи и набранных очках"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "Просмотр информации о команде, к которой вы присоединились"
 
 # ?
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr ""
 "Система помощи по работе программ и участии в распределённых вычислениях на "
 "базе WCG"
 
 # WCG
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "Общая статистика"
 
 # WCG
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "Сводная статистика по проектам WCG"
 
 # WCG
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr "Ваша учётная запись"
 
 # WCG
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "Ваша индивидуальная статистика по проектам и настройки учётной записи"
 
 # WCG
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr "Настройки компьютера"
 
 # WCG
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr "Изменение настроек ваших компьютеров"
 
 # WCG
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr "Описания проектов"
 
 # WCG
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "Подробные описания проектов запущенных в рамках WCG"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr "Попытка запустить службу; пожалуйста подождите..."
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "Обновляется информация о состоянии системы; пожалуйста подождите..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "Обновляется информация о хосте; пожалуйста подождите..."
 
 # ?
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "Отсутствует связь с интернетом"
 
 # ?
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Произведите подключение к интернету и повторите."
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Проект не найден"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2351,11 +2343,11 @@ msgstr ""
 "на базе BOINC.\n"
 "Уточните адрес (URL) и повторите попытку."
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "Менеджер проектов не найден"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2368,59 +2360,72 @@ msgstr ""
 "Уточните адрес (URL) и повторите попытку."
 
 # ???? кто такой Login и почему Failed с большой буквы.
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr "Неудача."
 
 # пользователя
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr ""
 "Проверьте правильность написания имени\n"
 "участника и пароля и повторите ввод."
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr ""
 "Проверьте правильность написания адреса\n"
 "электронной почты и пароля и повторите ввод."
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr "Выбор проекта"
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
 "Выберите понравившийся проект щёлкнув на его\n"
 "названии, или введите его адрес URL в поле ниже."
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "Адрес (URL):"
 
-#: clientgui/ProjectInfoPage.cpp:320
-msgid "You are already attached to this project. Please choose a different project."
+#: clientgui/ProjectInfoPage.cpp:393
+msgid ""
+"This project may not have work for your type of computer. Are you sure you "
+"wish to continue?"
+msgstr ""
+"Возможно, что данный проект не поддерживает тип вашего компьютера или "
+"операционную систему. Вы всё равно хотите продолжить?"
+
+#: clientgui/ProjectInfoPage.cpp:417
+msgid ""
+"You are already attached to this project. Please choose a different project."
 msgstr "Этот проект уже подключен. Выберите другой проект."
 
-#: clientgui/ProjectInfoPage.cpp:321
-msgid "Already Attached to Project"
-msgstr "Проект уже подключен"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr "Нажать"
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
-msgstr ""
-"Возможно, что данный проект не поддерживает тип вашего компьютера или "
-"операционную систему."
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr "Поддержка многоядерных ЦП"
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-#, c-format
-msgid "Click here to go to %s's website."
-msgstr "Посетить сайт проекта - %s."
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr "Поддержка GPU NVIDIA"
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr "Поддержка GPU ATI"
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr "Веб-сайт проекта"
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
@@ -2429,7 +2434,7 @@ msgstr ""
 "Пожалуйста подождите..."
 
 # искусственный интеллект какой-то
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
@@ -2438,11 +2443,12 @@ msgstr ""
 "(lookup_account.php/create_account.php)\n"
 
 # Неудача при попытке установить соединение
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "Неудача при установлении соединения"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
+#, fuzzy
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2453,7 +2459,7 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
@@ -2472,7 +2478,7 @@ msgstr ""
 "3) Вы используете прокси сервер для выхода в интернет,\n"
 "а BOINC не знает об этом."
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2502,512 +2508,472 @@ msgstr ""
 "3) Вы используете прокси сервер для выхода в интернет,\n"
 "а BOINC не знает об этом."
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Параметры прокси сервера"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "HTTP прокси"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337 clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "Сервер:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "Автоопределение"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "SOCKS прокси"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr "Полный вид...\tCtrl+Shift+A"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+"Изменить внешний вид на расширенный (Будут полностью доступны все функции "
+"управления)."
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
 #, c-format
 msgid "&%s"
 msgstr "&%s"
 
 # ?????? это о чём
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr "Проверка текущего состояния."
 
 # ?
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr "BOINC не подключен ни к одному проекту."
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr "Загрузка заданий с сервера проекта."
 
 # ноутбук
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr "Обработка приостановлена:  работа компьютера от батарей."
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr "Обработка приостановлена:  пользователь работает."
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr "Обработка приостановлена:  по инициативе пользователя."
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr "Обработка приостановлена:  запрещённое время суток."
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr "Обработка приостановлена:  запущен тест производительности."
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr "Обработка приостановлена."
 
 # Оригинальная фраза не соостветствует смыслу того места где появляется.
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr "Подождите пожалуйста."
 
 # ??? для тех кто не заметил, в предыдущей аналогичной фразе есть точка
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr "Проверка текущего состояния"
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr "Нет заданий для обработки"
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr "Не удалось подключиться к BOINC клиенту"
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Проект"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "Время"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Сообщение"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177 clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Копировать все сообщения в буфер обмена."
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
-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."
+#: clientgui/sg_DlgMessages.cpp:202 clientgui/sg_DlgMessages.cpp:210
+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 ""
 "Копировать выделенные сообщения в буфер обмена. Можно использовать SHIFT и "
 "CTRL для выделения нескольких сообщений."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
-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."
+#: clientgui/sg_DlgMessages.cpp:204 clientgui/sg_DlgMessages.cpp:212
+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 ""
 "Копировать выделенные сообщения в буфер обмена. Можно использовать SHIFT и "
 "CTRL для выделения нескольких сообщений."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252 clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr "Помощь по работе с программой BOINC"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
 #, c-format
 msgid "%s - Messages"
 msgstr "%s - Сообщения"
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr "100 Мб"
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr "200 Мб"
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr "500 Мб"
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr "1 Гб"
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr "2 Гб"
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr "5 Гб"
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr "10 Гб"
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr "20 Гб"
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr "50 Гб"
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr "100 Гб"
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr "10%"
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr "20%"
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr "30%"
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr "40%"
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr "50%"
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr "60%"
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr "70%"
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr "80%"
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr "90%"
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr "100%"
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr "1"
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr "3"
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr "5"
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr "10"
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr "15"
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr "30"
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr "60"
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr "Обложка"
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr "Обложка:"
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr "Общие настройки"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr "Изменить параметры только для данного компьютера."
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr "Изменяемые параметры"
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr "Обрабатывать только с"
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr "Доступ в интернет только с"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393 clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr "Использовать не более:"
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr "места на диске"
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr "процессора"
 
 # ...отопления
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr "Работать на батареях?"
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr "Запуск обработки при простое:"
 
 # ?
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678 clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749 clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765 clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927 clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr "всегда"
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
 #, c-format
 msgid "%d MB"
 msgstr "%d МБ"
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
 #, c-format
 msgid "%4.2f GB"
 msgstr "%4.2f ГБ"
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
 #, c-format
 msgid "%d%%"
 msgstr "%d%%"
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr "работать всегда"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
 #, c-format
 msgid "%d"
 msgstr "%d"
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr "Пауза: обрабатывается другое задание"
 
 # Resume это картинка !!! - зависит от скина
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr "Обработка приостановлена пользователем"
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr "Пауза: пользователь работает"
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr "Пауза: работа компьютера от батарей"
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr "Пауза: запрещённое время суток"
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr "Пауза: запущен тест производительности"
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr "Пауза"
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr "Пауза: запуск приложения отложен"
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr "Нажмите чтобы показать окно приложения с графической информацией"
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr "Подключиться к ещё одному проекту распределённых вычислений"
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr ""
 "Синхронизация информации о проектах и настройках между BOINC клиентом и "
 "менеджером проектов"
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr "Открыть окно с сообщениями"
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr "Приостановить всю обработку и сетевую активность"
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr "Возобновить обработку"
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr "Открыть окно настроек клиента"
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr "Изменить внешний вид BOINC менеджера на более подробный"
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr "Проекты:"
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
 #, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr "%s. Участником %s заработано: %0.2f очков"
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr "Удалить проект"
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217 clientgui/ViewProjects.cpp:490
 #, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "Вы действительно хотите отсоединиться от проекта '%s'?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223 clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "Отсоединение от проекта"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138 clientgui/sg_ViewTabPage.cpp:278
 #, c-format
 msgid "%.1lf"
 msgstr "%.1lf"
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
 #, c-format
 msgid "%d hr %d min %d sec"
 msgstr "%d часов %d минут %d секунд"
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr ""
 "Вы уверены, что хотите показать графическое окно для приложения на удаленном "
 "компьютере?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Показать графику"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
 msgstr "Приложение: "
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447 clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr "Осталось: "
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
 msgstr "Затрачено: "
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr "Условия использования"
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr "Ознакомтесь с условиями использования программы:"
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr "Я согласен с условиями."
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr "Я не согласен с условиями использования."
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Проект временно недоступен"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -3018,11 +2984,11 @@ msgstr ""
 "Попробуйте подключиться позже."
 
 # ?
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "Менеджер проектов временно недоступен"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -3032,37 +2998,36 @@ msgstr ""
 "\n"
 "Попробуйте подключиться позже."
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "Введите учётный ключ для продолжения."
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr "Введен не правильный учётный ключ, повторите ввод ключа"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82 clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Ошибка проверки правильности ввода данных"
 
 # ???
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr "Укажите адрес электронной почты"
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr ""
 "Введен неправильный адрес электронной почты;\n"
 "повторите ввод адреса электронной почты"
 
 # ?
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "Не указан адрес (URL)"
 
 # ?
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -3072,18 +3037,14 @@ msgstr ""
 "Пример:\n"
 "http://www.example.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83 clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91 clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107 clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "Не корректный адрес (URL)"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84 clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -3094,630 +3055,504 @@ msgstr ""
 "http://boincproject.example.com"
 
 # ?
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104 clientgui/ValidateURL.cpp:108
 #, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "Компьютер (хост) с именем: '%s' не найден."
 
 # ?
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
 #, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "Указанный путь: '%s' не существует."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84 clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "Действия"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88 clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Копировать все"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95 clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Копировать выделенное"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106 clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr "Сообщения проекта"
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107 clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr "Показать сообщения только от выбранного проекта."
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164 clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Сообщения"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187 clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "В буфер обмена копируются все сообщения..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 msgid "Copying selected messages to the clipboard..."
 msgstr "В буфер обмена копируются выделенные сообщения..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr "Фильтрация сообщений..."
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 msgid "Show all messages"
 msgstr "Все сообщения"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr "Показать все сообщения."
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr "Идентификатор"
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr "Приоритет"
 
 # ипользуется внутри программы
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr "MessagesGrid"
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr "В буфер обмена копируются выделенные сообщения..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr "Информация"
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr "Предупреждение"
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr "Ошибка"
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr "Новости"
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr "BOINC"
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr "Показать последние новости BOINC"
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
 msgstr "Домашняя страница BOINC"
 
 # долго думал
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr "Показать последние новости BOINC с домашней страницы BOINC"
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Обновить"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
-msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
+#: clientgui/ViewProjects.cpp:174
+msgid ""
+"Report all completed tasks, get latest credit, get latest preferences, and "
+"possibly get more tasks."
 msgstr ""
 "Получить информацию с сервера проекта: о подтверждении передачи завершенных "
 "заданий, о количестве набранных очков, о настройках учётной записи и "
 "(возможно) закачке новых заданий."
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180 clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Приостановить"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181 clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr "Приостановить обработку выделенного проекта."
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187 clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr "Не запрашивать задания"
 
 # ?
 # дубль???
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr "Не запрашивать новые задания с сервера проекта."
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Перезапустить проект"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
-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."
+#: clientgui/ViewProjects.cpp:195
+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 ""
 "Удалить ВСЕ файлы и задания выделенного проекта и закачать новые.\n"
 "ВНИМАНИЕ: не забудьте перед данной операцией отправить все завершенные "
 "задания для данного проекта."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Удалить проект"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
-msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
+#: clientgui/ViewProjects.cpp:202
+msgid ""
+"Detach computer from this project.  Tasks in progress will be lost (use "
+"'Update' first to report any completed tasks)."
 msgstr ""
 "Отсоединить данный компьютер от выделенного проекта.  Обрабатываемые в "
 "данный момент задания будут потеряны.\n"
 "ВНИМАНИЕ: не забудьте перед данной операцией отправить все завершенные "
 "задания для данного проекта."
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr "Информация"
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr "Информация о проекте."
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Учётная запись"
 
 # ??
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "Заработанные очки"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr "В среднем за день"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Состояние"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Проекты"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "Обновляется информация о проекте..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "Проект запускается..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "Приостанавливается выполнение проекта..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr ""
 "Передается запрос на разрешение получения новых заданий для обработки..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "Передается запрос на запрет получения новых заданий для обработки..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "Проект перезапускается..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
 #, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Вы действительно хотите перезапустить проект '%s'?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Перезапуск проекта"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "Отсоединение от проекта..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "Загружается браузер..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Запустить"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "Продолжить обработку выделенного проекта."
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "Получать новые задания"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr "Запрашивать новые задания с сервера проекта."
 
 # ???
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "Не запрашивать новые задания с сервера проекта."
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Приостановлено пользователем"
 
 # ???
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "Не запрашивать новые задания"
 
 # ?
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr "Проект завершён - можно удалять"
 
 # ?
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr "Будет удалён после завершения заданий"
 
 # ?
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Запрос информации у планировщика"
 
 # ?
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr "Производится запрос информации у планировщика"
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "Повтор через "
 
 # ипользуется внутри программы
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr "ProjectsGrid"
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr "Полный объём диска"
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr "Занято проектами BOINC"
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Диск"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr "BOINC не подключен ни к одному проекту: 0 байт"
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr "занято BOINC: "
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr "свободно, доступно для BOINC: "
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr "свободно, недоступно для BOINC: "
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr "свободно: "
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr "занято другими данными: "
 
 # Общее количество очков набранных участником
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Общее количество очков участника"
 
 # Среднее количество очков набираемых участником за день
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Среднее количество очков за день"
 
 # Общее количество очков набранных на данном хосте
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Общее количество очков для хоста"
 
 # Среднее количество очков набираемых данным хостом за день
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Среднее количество очков за день для хоста"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
 #, c-format
 msgid "Last update: %.0f days ago"
 msgstr "Информация обновлялась: %.0f дн. назад"
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Всего очков"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr "Показать общее количество очков набранных участником"
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "В среднем за день"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr "Показать среднее количество очков набираемых участником за день"
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Всего очков для хоста"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr "Показать общее количество очков набранных на данном хосте"
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "В среднем для хоста"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr "Показать среднее количество очков набираемых данным хостом за день"
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< Предыдущий"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr "Показать предыдущий проект (вверх)"
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "Следующий >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr "Показать следующий проект (вниз)"
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "Вид графиков"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "Все проекты"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr "Показать все проекты, каждый проект на отдельном графике"
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "Один проект"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr "Показать один выбранный проект"
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr "Все проекты вместе"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr "Показать все проекты на одном графике"
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Статистика"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853 clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895 clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938 clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980 clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "Обновляется график..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163 clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Повторить"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164 clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "Запустить повторную передачу данных"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170 clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Удалить"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
-msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
+#: clientgui/ViewTransfers.cpp:171 clientgui/ViewTransfersGrid.cpp:114
+msgid ""
+"Click 'Abort transfer' to delete the file from the transfer queue. This will "
+"prevent you from being granted credit for this result."
 msgstr ""
 "Удалить выделенный передаваемый файл данных. ВНИМАНИЕ: очки за задание, "
 "использующее этот файл, будут потеряны."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182 clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "Файл"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183 clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226 clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Прогресс"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184 clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Размер"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185 clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "Затрачено времени"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186 clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Скорость"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212 clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Передача"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271 clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "Повторная попытка передачи данных..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr ""
 "Прерывание передачи данных с последующим удалением передаваемого файла..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
 #, c-format
 msgid ""
 "Are you sure you want to abort this file transfer '%s'?\n"
@@ -3728,39 +3563,43 @@ msgstr ""
 "ВНИМАНИЕ: задание, использующее этот файл, будет завершено\n"
 "с ошибкой и очки за него будут потеряны."
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Прерывание передачи файла"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751 clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "Повтор через "
 
 # не очень
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763 clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr "Ожидание отправки данных"
 
 # не очень
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763 clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "Ожидание загрузки данных"
 
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr "(запрос к проекту отложен на: "
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ")"
+
 # ипользуется внутри программы
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr "TransfersGrid"
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 msgid "Aborting transfer(s)..."
 msgstr ""
-"Прерывание передачи данных с последующим удалением передаваемого "
-"файла(ов)..."
+"Прерывание передачи данных с последующим удалением передаваемого файла(ов)..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
@@ -3771,78 +3610,70 @@ msgstr ""
 "ВНИМАНИЕ: задания, использующие этот(эти) файл(ы), будут завершены\n"
 "с ошибкой и очки за них будут потеряны."
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 msgid "Abort File Transfer(s)"
 msgstr "Прерывание передачи файла(ов)"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184 clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr "Показать активные задания"
+
+#: clientgui/ViewWork.cpp:185 clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr "Показать только активные задания."
+
+#: clientgui/ViewWork.cpp:192 clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "Показать окно приложения с графической информацией."
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199 clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "Приостановить обработку выделенного задания."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205 clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Прервать обработку"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206 clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr ""
 "Прервать обработку выделенного задания (удалить задание). Очки за прерванные "
 "задания не начисляются."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr "Информация о задании."
 
 # Имя
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224 clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Задание"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr "Затрачено времени"
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227 clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "Осталось"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254 clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Задания"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342 clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "Возобновляется обработка ранее приостановленного задания..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345 clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "Приостанавливается обработка выделенного задания..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373 clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "Открывается окно приложения с графической информацией..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Прерывается обработка выделенного задания..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
 #, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
@@ -3851,37 +3682,58 @@ msgstr ""
 "Вы уверены, что хотите прервать обработку выделенного задания '%s'?\n"
 "(Прогресс: %s, Состояние: %s)"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "Вы уверены, что хотите прервать обработку этих %d заданий?"
+
+#: clientgui/ViewWork.cpp:437 clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "Прерывание обработки задания"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446 clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Прерывается обработка выделенного задания..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr "Показать все задания"
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr "Показать все задания."
+
+#: clientgui/ViewWork.cpp:728 clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr "Продолжить обработку выделенного задания."
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734 clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr "Приостановить обработку выделенного задания."
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr "Отсутствие GPU, "
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr " - выполняется эксклюзивное приложение"
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168 clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr " (без использования ЦП)"
 
+#: clientgui/ViewWork.cpp:1202
+#, fuzzy
+msgid "Aborted: not started by deadline"
+msgstr "Прервано: не было запущено до крайнего срока"
+
 # ипользуется внутри программы
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr "TasksGrid"
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
 #, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
@@ -3890,13 +3742,11 @@ msgstr ""
 "Вы уверены, что хотите прервать обработку выделенного задания '%s'?\n"
 "(Прогресс: %s %%, Состояние: %s)"
 
-# WCG
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
-msgstr "Выбрать расчётные приложения для World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr "Выбор проекта или менеджера проектов"
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
 #, c-format
 msgid ""
 "If possible, add projects at the\n"
@@ -3911,15 +3761,15 @@ msgstr ""
 "Проекты, добавленные с помощью данного\n"
 "мастера, не будут управляться через %s."
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
 msgstr ""
 "Данный мастер поможет вам подключиться\n"
-"к проекту распределённых вычислений."
+"к проекту распределённых вычислений или менеджеру проектов."
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3947,163 +3797,347 @@ msgstr ""
 "Для выбора расчётных приложений World Community Grid\n"
 "работающих на вашем компьютере, нажмите следующую кнопку:"
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-#, c-format
-msgid "&Stop using%s"
-msgstr "Отсоединение от %s"
-
-# Компьютер отключен от %s. Теперь только вы\n<br />
-# сами отвечаете за управление BOINC клиентом\n
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-"Компьютер отключен от %s.  Теперь проекты можно\n"
-"добавлять или удалять только на данном компьютере.\n"
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "Менеджер проектов"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"Данный мастер поможет вам подключиться\n"
-"к менеджеру проектов.\n"
-"\n"
-"Если вы хотите подключиться к проекту, нажмите 'Отмена'\n"
-"и выберите меню 'Дополнительно/Добавить проект'."
-
-# if defined(__WXDEBUG__)
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "Отладочные флаги"
-
-# if defined(__WXDEBUG__)
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "Неудача при проверке информации о проекте"
-
-# Неудача при попытке установить соединение
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr "Неудача при установлении соединения"
-
-# if defined(__WXDEBUG__)
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "Неудача при проверке адреса (URL) свойств проекта"
-
-# if defined(__WXDEBUG__)
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "Создание учётной записи запрещено"
-
-# if defined(__WXDEBUG__)
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "Создание клиентской учётной записи запрещено"
-
-# if defined(__WXDEBUG__)
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "Учётная запись уже существует"
-
-# if defined(__WXDEBUG__)
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "Проект уже подключен"
-
-# if defined(__WXDEBUG__)
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "Неудача при подключении проекта"
-
-# ???
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
-msgstr "Неудача при установке связи с сервером"
-
-# if defined(__WXDEBUG__)
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "Неудача при поиске сети"
+# WCG
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr "Выбрать расчётные приложения для World Community Grid"
 
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "Для продолжения нажмите кнопку 'Далее'."
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "Прервать процесс подключения?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "Вопрос"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377 clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "Далее >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< Назад"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "Готово"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
 #, c-format
 msgid "New page inserted. Index = %i"
 msgstr "Новая страница вставлена. Индекс = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
 #, c-format
 msgid "New page appended. Index = %i"
 msgstr "Новая страница добавлена. Индекс = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
 #, c-format
 msgid "Old Page Index = %i"
 msgstr "Индекс старой страницы = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
 #, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr "OnDropTarget: индекс по HitTest = %i"
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr "Pie Ctrl"
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:184
+#, fuzzy
+msgid ""
+"for accessibility support, please select advanced from the view menu or type "
+"command shift a"
+msgstr ""
+"для поддержки доступности, пожалуйста выберите меню Расширенный вид или "
+"введите команду shift a"
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+#, fuzzy
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+"Эта панель содержит графики, показывающие пользовательские достижения в "
+"проектах"
+
+#: clientgui/mac/MacAccessiblity.cpp:528 clientgui/mac/MacAccessiblity.cpp:636
+#, fuzzy
+msgid "blank"
+msgstr "пусто"
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+#, fuzzy
+msgid "list of "
+msgstr "список "
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+#, fuzzy
+msgid " is empty"
+msgstr "пуст"
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, fuzzy, c-format
+msgid "%d of %d; "
+msgstr "%d из %d; "
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+#, fuzzy
+msgid "current sort column "
+msgstr "текущий столбец сортировки "
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+#, fuzzy
+msgid " descending order "
+msgstr "порядок убывания "
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+#, fuzzy
+msgid " ascending order "
+msgstr "порядок возрастания "
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+#, fuzzy
+msgid "column "
+msgstr "столбец "
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+#, fuzzy
+msgid "list is empty"
+msgstr "список пуст"
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+#, fuzzy
+msgid "selected "
+msgstr "выбран "
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, fuzzy, c-format
+msgid "row %d "
+msgstr "строка %d "
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, fuzzy, c-format
+msgid "of %d; "
+msgstr "из %d; "
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, fuzzy, c-format
+msgid "column %d; "
+msgstr "столбец %d; "
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+#, fuzzy
+msgid "list of projects or account managers"
+msgstr "список проектов и менеджеров проектов"
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, fuzzy, c-format
+msgid "row %d of %d; "
+msgstr "строка %d из %d; "
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 "задайте время, когда разрешено обрабатывать задания, в формате ЧЧ:мм-ЧЧ:мм"
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 "задайте время, когда клиенту разрешено подключаться к интернету, в формате "
 "ЧЧ:мм-ЧЧ:мм"
 
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "Закрыть окно\tCtrl+W"
+
+#~ msgid "&News\tCtrl+Shift+N"
+#~ msgstr "Новости\tCtrl+Shift+N"
+
+#~ msgid "Display news"
+#~ msgstr "Показать новости"
+
+#~ msgid "&Projects\tCTRL+SHIFT+P"
+#~ msgstr "Проекты\tCTRL+SHIFT+P"
+
+#~ msgid "&Tasks\tCTRL+SHIFT+T"
+#~ msgstr "Задания\tCTRL+SHIFT+T"
+
+#~ msgid "Trans&fers\tCTRL+SHIFT+X"
+#~ msgstr "Передача\tCTRL+SHIFT+X"
+
+#~ msgid "&Messages\tCTRL+SHIFT+M"
+#~ msgstr "Сообщения\tCTRL+SHIFT+M"
+
+#~ msgid "&Statistics\tCTRL+SHIFT+S"
+#~ msgstr "Статистика\tCTRL+SHIFT+S"
+
+#~ msgid "&Disk usage\tCTRL+SHIFT+D"
+#~ msgstr "Диск\tCTRL+SHIFT+D"
+
+#~ msgid "&News\tCTRL+SHIFT+N"
+#~ msgstr "Новости\tCTRL+SHIFT+N"
+
+# Пью пиво,&lt;br /&gt;<br />
+# меняю пароли.
+#, fuzzy
+#~ msgid ""
+#~ "You currently are not authorized to manage the client.\n"
+#~ "Please contact your administrator to add you to the 'boinc_master' user "
+#~ "group."
+#~ msgstr ""
+#~ "У Вас недостаточно прав для управления BOINC клиентом.\n"
+#~ "Управление станет возможно после добавления Вас в группу 'boinc_master' "
+#~ "Администратором компьютера."
+
+#~ msgid "User information"
+#~ msgstr "Информация об участнике"
+
+#~ msgid "Account Manager URL"
+#~ msgstr "Адрес менеджера проектов"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "Введите адрес выбранного менеджера проектов."
+
+#~ msgid "Close BOINC Manager Window."
+#~ msgstr "Закрыть окно BOINC менеджера."
+
+# ?
+#~ msgid "Exit the %s"
+#~ msgstr "Завершить работу программы %s"
+
+#~ msgid ""
+#~ "Advanced views allow you to sort various columns and displays graphical "
+#~ "progress bars."
+#~ msgstr ""
+#~ "Продвинутый вид таблиц с возможностью сортировки по столбцам и "
+#~ "графическим индикатором прогресса."
+
+# дубль (перевода)
+#~ msgid "Attach to a project"
+#~ msgstr "Подключиться к ещё одному проекту распределённых вычислений"
+
+#~ msgid "Attach to &account manager..."
+#~ msgstr "Соединиться с менеджером проектов..."
+
+#~ msgid "Attach to an account manager"
+#~ msgstr "Соединиться с менеджером проектов"
+
+#~ msgid "Attach to &project"
+#~ msgstr "Добавить проект"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "Подключение к проекту..."
+
+# есть некоторые сомнения в правильности перевода :)
+#~ msgid "Removal from %s completed."
+#~ msgstr "Удаление %s завершено."
+
+# Goblin forever
+#~ msgid "Removal succeeded!"
+#~ msgstr "Удаление завершено!"
+
+#~ msgid "Write to disk at most every"
+#~ msgstr "Период сохранения на диск"
+
+#~ msgid "Slot"
+#~ msgstr "Слот"
+
+#~ msgid "Already Attached to Project"
+#~ msgstr "Проект уже подключен"
+
+#~ msgid "This project may not have work for your type of computer."
+#~ msgstr ""
+#~ "Возможно, что данный проект не поддерживает тип вашего компьютера или "
+#~ "операционную систему."
+
+#~ msgid "Click here to go to %s's website."
+#~ msgstr "Посетить сайт проекта - %s."
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr ""
+#~ "Данный мастер поможет вам подключиться\n"
+#~ "к проекту распределённых вычислений."
+
+#~ msgid "&Stop using%s"
+#~ msgstr "Отсоединение от %s"
+
+# Компьютер отключен от %s. Теперь только вы\n<br />
+# сами отвечаете за управление BOINC клиентом\n
+#~ msgid ""
+#~ "We'll now remove this computer from %s.  From now on,\n"
+#~ "attach and detach projects directly from this computer.\n"
+#~ msgstr ""
+#~ "Компьютер отключен от %s.  Теперь проекты можно\n"
+#~ "добавлять или удалять только на данном компьютере.\n"
+
+#~ msgid "Account manager"
+#~ msgstr "Менеджер проектов"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to an account manager.\n"
+#~ "\n"
+#~ "If you want to attach to a single project, click Cancel,\n"
+#~ "then select the 'Attach to project' menu item instead."
+#~ msgstr ""
+#~ "Данный мастер поможет вам подключиться\n"
+#~ "к менеджеру проектов.\n"
+#~ "\n"
+#~ "Если вы хотите подключиться к проекту, нажмите 'Отмена'\n"
+#~ "и выберите меню 'Дополнительно/Добавить проект'."
+
+# if defined(__WXDEBUG__)
+#~ msgid "Debug Flags"
+#~ msgstr "Отладочные флаги"
+
+# if defined(__WXDEBUG__)
+#~ msgid "Project Properties Failure"
+#~ msgstr "Неудача при проверке информации о проекте"
+
+# Неудача при попытке установить соединение
+#~ msgid "Project Communication Failure"
+#~ msgstr "Неудача при установлении соединения"
+
+# if defined(__WXDEBUG__)
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "Неудача при проверке адреса (URL) свойств проекта"
+
+# if defined(__WXDEBUG__)
+#~ msgid "Account Creation Disabled"
+#~ msgstr "Создание учётной записи запрещено"
+
+# if defined(__WXDEBUG__)
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "Создание клиентской учётной записи запрещено"
+
+# if defined(__WXDEBUG__)
+#~ msgid "Account Already Exists"
+#~ msgstr "Учётная запись уже существует"
+
+# if defined(__WXDEBUG__)
+#~ msgid "Project Already Attached"
+#~ msgstr "Проект уже подключен"
+
+# if defined(__WXDEBUG__)
+#~ msgid "Project Attach Failure"
+#~ msgstr "Неудача при подключении проекта"
+
+# ???
+#~ msgid "Failure Communicating with Reference Site"
+#~ msgstr "Неудача при установке связи с сервером"
+
+# if defined(__WXDEBUG__)
+#~ msgid "Net Detection Failure"
+#~ msgstr "Неудача при поиске сети"
+
 #~ msgid ""
 #~ "You can copy and paste the URL from your browser's\n"
 #~ "address bar."
diff --git a/locale/ru/BOINC-Project-Generic.po b/locale/ru/BOINC-Project-Generic.po
index c695458..e06f289 100644
--- a/locale/ru/BOINC-Project-Generic.po
+++ b/locale/ru/BOINC-Project-Generic.po
@@ -6,12 +6,12 @@ msgstr ""
 "PO-Revision-Date: 2009-05-22 13:46-0700\n"
 "Last-Translator: Nikolay Saharov <saharovna at gmail.com>\n"
 "Language-Team: Russia\n"
-"Language: ru\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
-"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Language: ru\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 "X-Generator: Pootle 1.2.1\n"
 "X-Poedit-Language: Russian\n"
 "X-Poedit-SearchPath-0: html\\user\n"
@@ -619,8 +619,8 @@ 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 ""
-"Если Вы хотите добавить фотографию в ваш профиль, нажмите кнопку \"Обзор...\" "
-"и выберите файл формата JPEG или PNG. Пожалуйста выберите изображения "
+"Если Вы хотите добавить фотографию в ваш профиль, нажмите кнопку \"Обзор..."
+"\" и выберите файл формата JPEG или PNG. Пожалуйста выберите изображения "
 "размером %1 или меньше."
 
 msgid "Language"
@@ -635,7 +635,8 @@ msgstr "Сохранение профиля"
 msgid ""
 "To protect the project's webpages from spam, we kindly ask you to type in "
 "the two words shown in the image:<br>\n"
-msgstr "Чтобы защитить web-страницы проекта от спама, мы предлагаем Вам ввести здесь "
+msgstr ""
+"Чтобы защитить web-страницы проекта от спама, мы предлагаем Вам ввести здесь "
 "два слова, показанные на этом изображении:<br>\n"
 
 msgid "Create/edit profile"
@@ -742,8 +743,8 @@ msgid ""
 "If you have a question or problem, please use the %1Questions & Answers%2 "
 "section of the message boards."
 msgstr ""
-"Если у Вас есть вопрос или проблема, пожалуйста воспользуйтесь разделом "
-"%1Вопросы и ответы%2 этой доски сообщений."
+"Если у Вас есть вопрос или проблема, пожалуйста воспользуйтесь разделом %"
+"1Вопросы и ответы%2 этой доски сообщений."
 
 msgid "Topic"
 msgstr "Тема"
@@ -1031,10 +1032,10 @@ msgid ""
 msgstr ""
 "Если Вы принимаете участие в %1, информация о Вашем компьютере (такая как "
 "тип процессора, объем оперативной памяти, и т.д.) будет записана проектом %1 "
-"и использована для принятия решения о том, какой тип работы назначить "
-"Вашему компьютеру. Эта информация также будет показана на web-сайте %1. "
-"Ничего, что указывало бы на местонахождение Вашего компьютера (например, его "
-"доменное или сетевое имя), не будет показываться."
+"и использована для принятия решения о том, какой тип работы назначить Вашему "
+"компьютеру. Эта информация также будет показана на web-сайте %1. Ничего, что "
+"указывало бы на местонахождение Вашего компьютера (например, его доменное "
+"или сетевое имя), не будет показываться."
 
 msgid ""
 "To participate in %1, you must give an address where you receive email. This "
@@ -1380,8 +1381,8 @@ msgstr "расформировать команду, в которой нет у
 
 msgid "To join a team, visit its team page and click %1Join this team%2."
 msgstr ""
-"Чтобы присоединиться к команде, посетите ее страницу и нажмите "
-"%1Присоединиться к этой команде%2."
+"Чтобы присоединиться к команде, посетите ее страницу и нажмите %"
+"1Присоединиться к этой команде%2."
 
 msgid "Find a team"
 msgstr "Найти команду"
@@ -1504,10 +1505,12 @@ msgstr ""
 #~ msgid "Really delete?"
 #~ msgstr "Действительно удалить?"
 
-#~ msgid "Are you sure you want to delete the message with subject &quot;%1&quot; (sent by %2 on %3)?"
+#~ msgid ""
+#~ "Are you sure you want to delete the message with subject &quot;%1&quot; "
+#~ "(sent by %2 on %3)?"
 #~ msgstr ""
-#~ "Вы уверены, что хотите удалить сообщение с темой &quot;%1&quot; (отправил %2 "
-#~ "на %3)?"
+#~ "Вы уверены, что хотите удалить сообщение с темой &quot;%1&quot; (отправил "
+#~ "%2 на %3)?"
 
 #~ msgid "Yes, delete"
 #~ msgstr "Да, удалить"
@@ -1515,8 +1518,11 @@ msgstr ""
 #~ msgid "No such message."
 #~ msgstr "Нет такого сообщения."
 
-#~ msgid "Account creation is disabled for %1 at the moment. Please try again later."
-#~ msgstr "В данный момент создание учетной записи запрещено в %1. Пожалуйста, повторите позже."
+#~ msgid ""
+#~ "Account creation is disabled for %1 at the moment. Please try again later."
+#~ msgstr ""
+#~ "В данный момент создание учетной записи запрещено в %1. Пожалуйста, "
+#~ "повторите позже."
 
 #~ msgid "Edit message"
 #~ msgstr "Редактировать сообщение"
@@ -1537,7 +1543,9 @@ msgstr ""
 #~ msgstr "Доска сообщений"
 
 #~ msgid "If you have not already done so, %1download BOINC client software%2."
-#~ msgstr "Если Вы этого еще не сделали, %1загрузите клиентское программное обеспечение BOINC%2."
+#~ msgstr ""
+#~ "Если Вы этого еще не сделали, %1загрузите клиентское программное "
+#~ "обеспечение BOINC%2."
 
 #~ msgid "Teams"
 #~ msgstr "Команды"
diff --git a/locale/ru/BOINC-Web.po b/locale/ru/BOINC-Web.po
index 7539664..ca64f79 100644
--- a/locale/ru/BOINC-Web.po
+++ b/locale/ru/BOINC-Web.po
@@ -6,12 +6,12 @@ msgstr ""
 "PO-Revision-Date: 2009-08-03 08:23-0700\n"
 "Last-Translator: Max F <mifistor.x at gmail.com>\n"
 "Language-Team: Russia\n"
-"Language: ru\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
-"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Language: ru\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 "X-Generator: Pootle 1.2.1\n"
 "X-Poedit-Language: Russian\n"
 "X-Poedit-SearchPath-0: doc\n"
@@ -344,10 +344,10 @@ msgid ""
 "computer, you can connect it to as many of these projects as you like."
 msgstr ""
 "BOINC - это программа, предоставляющая неиспользуемое время вашего "
-"компьютера для научных проектов, таких как: SETI at home, "
-"Climateprediction.net, Rosetta at home, World Community Grid и других. <p> "
-"После установки BOINC на ваш компьютер, вы сможете выбрать и участвовать "
-"одновременно в нескольких проектах, каких - решайте сами."
+"компьютера для научных проектов, таких как: SETI at home, Climateprediction."
+"net, Rosetta at home, World Community Grid и других. <p> После установки BOINC "
+"на ваш компьютер, вы сможете выбрать и участвовать одновременно в нескольких "
+"проектах, каких - решайте сами."
 
 #: download.php:114
 #, php-format
@@ -399,11 +399,11 @@ msgid ""
 "Skype, please %sdownload and install it now%s.  When you're finished, return "
 "to this page."
 msgstr ""
-"Горячая линия техподдержки BOINC построена на использовании "
-"интернет-телефона %sSkype%s. Skype - это бесплатная программа, позволяющая "
-"бесплатно звонить по всему миру.  Если у вас ещё не установлен Skype, вы "
-"можете %sзагрузить и установить%s его, а затем вернуться на данную страницу "
-"для выбора помощника."
+"Горячая линия техподдержки BOINC построена на использовании интернет-"
+"телефона %sSkype%s. Skype - это бесплатная программа, позволяющая бесплатно "
+"звонить по всему миру.  Если у вас ещё не установлен Skype, вы можете %"
+"sзагрузить и установить%s его, а затем вернуться на данную страницу для "
+"выбора помощника."
 
 #: help.php:28
 msgid ""
@@ -413,9 +413,9 @@ msgid ""
 "Skype) to communicate with Help Volunteers."
 msgstr ""
 "Лучше всего задать вопрос помощнику лично в режиме телефонного разговора, но "
-"для этого потребуются микрофон и наушники.  В качестве альтернативы, в "
-"Skype можно воспользоваться текстовым чатом, в крайнем случае оставьте ваш "
-"вопрос и адрес электронной почты (чтобы можно было на него ответить)."
+"для этого потребуются микрофон и наушники.  В качестве альтернативы, в Skype "
+"можно воспользоваться текстовым чатом, в крайнем случае оставьте ваш вопрос "
+"и адрес электронной почты (чтобы можно было на него ответить)."
 
 #: help.php:31
 msgid ""
@@ -517,8 +517,8 @@ msgstr ""
 " Предоставьте неиспользуемое время вашего компьютера (с ОС: Windows, Mac, "
 "или Linux) для поиска лекарств и методов лечения, изучения глобального "
 "изменения климата, пульсаров, а также для множества других научных "
-"исследований.  Сделать это достаточно просто и относительно безопасно:  "
-"%sВыберите%s понравившиеся проекты  %sЗагрузите%s и установите программное "
+"исследований.  Сделать это достаточно просто и относительно безопасно:  %"
+"sВыберите%s понравившиеся проекты  %sЗагрузите%s и установите программное "
 "обеспечение BOINC  %sУкажите:%s ваш адрес электронной почты и пароль для "
 "вашей учётной записи в проекте. "
 
@@ -606,9 +606,9 @@ msgstr "как в браузере"
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
-"Программное обеспечение с открытым исходным кодом для организации "
-"%sдобровольных распределённых вычислений%s или %sраспределённых вычислений "
-"на настольных компьютерах%s."
+"Программное обеспечение с открытым исходным кодом для организации %"
+"sдобровольных распределённых вычислений%s или %sраспределённых вычислений на "
+"настольных компьютерах%s."
 
 #: poll.php:9
 msgid "BOINC user survey"
diff --git a/locale/ru/pootle-boincclient610-ru.prefs b/locale/ru/pootle-boincclient610-ru.prefs
new file mode 100644
index 0000000..a1d859d
--- /dev/null
+++ b/locale/ru/pootle-boincclient610-ru.prefs
@@ -0,0 +1,10 @@
+# Pootle preferences for project boinctrunk, language ru
+
+rights:
+  SaharovNA = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  default = u'view, suggest, archive'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  mifistorX = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  DeadJDona = u'view, suggest, archive'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/ru/pootle-boinctrunk-ru.prefs b/locale/ru/pootle-boinctrunk-ru.prefs
deleted file mode 100644
index c6869c9..0000000
--- a/locale/ru/pootle-boinctrunk-ru.prefs
+++ /dev/null
@@ -1,10 +0,0 @@
-# Pootle preferences for project boinctrunk, language ru
-
-rights:
-  SaharovNA = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  default = u'view, suggest, archive'
-  nobody = u'view'
-  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  mifistorX = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  DeadJDona = u'view, suggest, archive'
-  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/sk/BOINC-Manager.mo b/locale/sk/BOINC-Manager.mo
index 334aead..2cea42a 100644
Binary files a/locale/sk/BOINC-Manager.mo and b/locale/sk/BOINC-Manager.mo differ
diff --git a/locale/sk/BOINC-Manager.po b/locale/sk/BOINC-Manager.po
index c09bfd6..21e05d7 100644
--- a/locale/sk/BOINC-Manager.po
+++ b/locale/sk/BOINC-Manager.po
@@ -1,27 +1,27 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 5.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
 "PO-Revision-Date: 2007-02-07 22:59+0100\n"
 "Last-Translator: marpes <marpes at zoznam.sk>\n"
 "Language-Team: BOINC SK\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Translate Toolkit 1.2.1\n"
 "X-Poedit-Language: English\n"
 "X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: iso-8859-1\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: UNITED STATES\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "Informácie o užívateľovi"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
@@ -29,7 +29,7 @@ msgstr ""
 "Prosím vložte informácie o Vašom konte\n"
 "(pre vytvorenie konta, navštívte web stránku projekltu)"
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
@@ -37,421 +37,482 @@ msgstr ""
 "Tento projekt momentálne neakceptuje nové kontá.\n"
 "Môžete sa pripojiť iba ak už máte konto."
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "Už ste niekedy počítali tento projekt?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "&Nie, som nový užívateľ"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "&Áno, som už existujúci užívateľ"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:425 clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "&Heslo:"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432 clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "Zvoľte &heslo:"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "P&otvrďte heslo:"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr "&Užívateľské meno:"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "&Emailová adresa:"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr "minimálna dĺžka %d"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "Pripojiť k projektu"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "Aktualizovať správcu konta"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "Pripojiť ku správcovi konta"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
-msgid "The minimum password length for this project is %d. Please enter a different password."
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
+msgid ""
+"The minimum password length for this project is %d. Please enter a different "
+"password."
 msgstr "Mnimálna dĺžka hesla pre tento projekt je %d. Prosím zvoľte iné heslo."
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
-msgid "The minimum password length for this account manager is %d. Please enter a different password."
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
+msgid ""
+"The minimum password length for this account manager is %d. Please enter a "
+"different password."
 msgstr ""
-"Mnimálna dĺžka hesla pre tohoto správcu konta je %d. Prosím zvoľte iné "
-"heslo."
+"Mnimálna dĺžka hesla pre tohoto správcu konta je %d. Prosím zvoľte iné heslo."
 
-#: clientgui/AccountInfoPage.cpp:506
-msgid "The password and confirmation password do not match. Please type them again."
+#: clientgui/AccountInfoPage.cpp:560
+msgid ""
+"The password and confirmation password do not match. Please type them again."
 msgstr "Heslo a potvrdenie hesla nesúhlasia. Prosím vložte ich znova."
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "URL správcu konta"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Vložte URL web stránky správcu konta."
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "&URL správcu konta:"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr "Komunikácia s %s."
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr "Komunikácia so servrom."
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "Prosím čakajte..."
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr "Vyskytla sa chyba interného servra.\n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "Pripojené"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "Odpojené"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "&Zatvoriť okno\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "Zatvoriť okno BOINC Manažéra"
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
-msgstr "Odchod z %s"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324 clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "O&dchod"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "Zobraziť BOINC v jednoduchom grafickom rozhraní."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "Pripojiť do &projektu"
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "Pripojiť do projektu"
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "Pripojiť k správcovi &konta"
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Pripojiť k správcovi konta"
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:372
+#, fuzzy
+msgid "Display the simple graphical interface."
+msgstr "Zobraziť BOINC v jednoduchom grafickom rozhraní."
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr "&Synchronizovať s %s"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr "Získať aktuálne nastavenia z %s"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "Pripojiť do &projektu"
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Pripojiť k projektu pre zahájenie spracovania práce"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, fuzzy, c-format
+msgid "&Stop using %s..."
+msgstr "&Zastaviť používanie %s"
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Odstrániť klienta z ovládania správcu konta."
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "&Počítať stále"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr "Dovoliť prácu bez ohľadu na preferencie"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "Počítať podľa &preferencií"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "Dovoliť prácu podľa Vašich preferencií"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "&Pozastavené"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr "Zastaví prácu bez ohľadu na preferencie"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+#, fuzzy
+msgid "Allow GPU work regardless of preferences"
+msgstr "Dovoliť prácu bez ohľadu na preferencie"
+
+#: clientgui/AdvancedFrame.cpp:473
+#, fuzzy
+msgid "Use GPU based on &preferences"
+msgstr "Počítať podľa &preferencií"
+
+#: clientgui/AdvancedFrame.cpp:474
+#, fuzzy
+msgid "Allow GPU work according to your preferences"
+msgstr "Dovoliť prácu podľa Vašich preferencií"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+#, fuzzy
+msgid "Stop GPU work regardless of preferences"
+msgstr "Zastaví prácu bez ohľadu na preferencie"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "&Sieťové aktivity vždy povolené"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr "Dovoliť sieťové aktivity bez ohľadu na preferencie"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+#, fuzzy
+msgid "Network activity based on pre&ferences"
 msgstr "Sieťové aktivity podľa &preferencií"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr "Dovoliť sieťové aktivity v súlade s Vašimi preferenciami"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+#, fuzzy
+msgid "Network activity s&uspended"
 msgstr "&Sieťové aktivity pozastavené"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr "Zastaviť sieťové aktivity pre BOINC"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "&Nastavenia..."
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr ""
 "Konfigurovať voľby grafického užívateľského rozhrania (GUI) a proxy "
 "nastavenia"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "&Preferencie..."
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr "Konfigurovať lokálne preferencie"
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
 msgid "Connect to another computer running %s"
 msgstr "Pripojiť k inému počítaču počítajúcemu %s"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "Vybrať počítač..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 #, fuzzy
 msgid "Shut down connected client..."
 msgstr "Vypnúť pripojeného klienta..."
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 #, fuzzy
 msgid "Shut down the currently connected core client"
 msgstr "Vypnúť aktuálne pripojeného klienta jadra"
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "Spustiť CPU &testy"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "Spustiť BOINC CPU testy"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr "Čítať konfiguračný súbor"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr "Čítať konfiguračné informácie z cc-config.xml."
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "Čítať súbor lokálnych preferencií"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr "Čítať preferencie z global_prefs_override.xml."
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
 #, c-format
-#, fuzzy
-msgid "&Stop using %s..."
-msgstr "&Zastaviť používanie %s"
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "Odstrániť klienta z ovládania správcu konta."
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "Pripojiť k &projektu"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "Pripojiť k projektu pre zahájenie spracovania práce"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
 msgid "%s &help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
-#, c-format
-#, fuzzy
+#: clientgui/AdvancedFrame.cpp:580
+#, fuzzy, c-format
 msgid "Show information about %s"
 msgstr "Ukázať informácie o %s"
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr "Ukázať informácie o %s"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr "%s &web stránka"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
 msgid "Show information about BOINC and %s"
 msgstr "Ukázať informácie o BOINC a %s"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628 clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr "&O %s..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "Informácie o licencovaní a autorských právach."
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "&Súbor"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "&Náhľad"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "&Nástroje"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "&Aktivity"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "&Pokročilý"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "&Pomoc"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-#, c-format
-#, fuzzy
-msgid "%s - Shutdown the current client..."
-msgstr "Vypnúť atuálneho klienta..."
-
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -465,59 +526,66 @@ msgstr ""
 "\n"
 "Chcete zastaviť používanie %s?"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "Pripájenie k projektu..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "Opakovanie komunikácií pre projekt(y)..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr "%s - Výber jazyka"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
-msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
+msgid ""
+"The %s's default language has been changed, in order for this change to take "
+"affect you must restart the %s."
 msgstr ""
 "Predvolený jazyk pre %s bol zmenený. Aby sa táto zmena prejavila, musíte "
 "reštartovať %s."
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, fuzzy, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "Vypnúť atuálneho klienta..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Opakovanie komunikácií pre projekt(y)..."
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr "%s bol úspešne pripojený k %s"
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "Pripájanie k %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
-#, c-format
-#, fuzzy
+#: clientgui/AdvancedFrame.cpp:1871
+#, fuzzy, c-format
 msgid "Connected to %s (%s)"
 msgstr "Pripojené k %s"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "Užívateľské meno je už použité"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -529,11 +597,11 @@ msgstr ""
 "\n"
 "Prosím navštívte web stránku projektu a riaďte sa tam instrukciami."
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "Emailová adresa sa už používa"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -545,22 +613,37 @@ msgstr ""
 "\n"
 "Prosím navštívte web stránku projektu a riaďte sa inštrukciami."
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "Späť"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr "%s - Chyba pripojenia"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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."
+"Please contact your administrator to add you to the 'boinc_users' local user "
+"group."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
@@ -568,21 +651,21 @@ msgstr ""
 "Autorizácia nemala pripojenie pre spustenie klienta.\n"
 "Preverte, či spúšťate tento program v tom istom adresári kde je klient."
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "Heslo ktoré ste poskytli je nesprávne, prosím skúste znova."
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - Pripojenie neúspešné"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
@@ -590,74 +673,74 @@ msgstr ""
 "%s nie je schopný pripojiť sa k %s klientovi.\n"
 "Chcete skúsiť pripojiť sa znova?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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."
+"Please launch the Control Panel->Administative Tools->Services applet and "
+"start the BOINC service."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr "%s - Stav pripojenia"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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"
+"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 ""
 "%s nie je momentálne pripojený k %s clientovi.\n"
-"Prosím použite 'Súbor\\Vybrať počítač...' voľbu ponuky pre pripojenie sa k %s "
-"klientovi.\n"
+"Prosím použite 'Súbor\\Vybrať počítač...' voľbu ponuky pre pripojenie sa k %"
+"s klientovi.\n"
 "Pre pripojenie sa k Vášmu miestnemu počítaču prosím použite 'localhost' ako "
 "názov počítača."
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "Web stránky"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr "%s - Stav siete"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr "%s potrebuje pripojenie k Internetu. Prosím kliknite pre otvorenie %s."
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
-#, c-format
-#, fuzzy
+#: clientgui/BOINCDialupManager.cpp:263
+#, fuzzy, c-format
 msgid ""
-"%s is unable to communicate with a project and needs an Internet connection.\n"
-"Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
+"%s is unable to communicate with a project and needs an Internet "
+"connection.\n"
+"Please connect to the Internet, then select the 'Do network communications' "
+"item from the Advanced menu."
 msgstr ""
 "%s nie je schopný komunikovať s projektom; je potrebné Internetové "
 "pripojenie.\n"
 "Prosím pripojte sa k Internetu, potom vyberte 'Opakovať komunikáciu' položku "
 "z ponuky Pokročilý."
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
@@ -665,15 +748,16 @@ msgstr ""
 "%s sa potrebuje pripojiť k Internetu.\n"
 "Môže to byť teraz?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s sa pripája k Internetu."
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
-"%s couldn't do Internet communication, and no default connection is selected.\n"
+"%s couldn't do Internet communication, and no default connection is "
+"selected.\n"
 "Please connect to the Internet, or select a default connection\n"
 "using Advanced/Options/Connections."
 msgstr ""
@@ -682,18 +766,18 @@ msgstr ""
 "Prosím pripojte sa k Internetu, alebo vyberte prednastavené pripojenie\n"
 "použitím Pokročilý/Nastavenia/Pripojenia."
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s má úspešné pripojenie k Internetu."
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "%s zlyhalo pripojenie k Internetu."
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
@@ -701,117 +785,151 @@ msgstr ""
 "%s má detekované aktuálne pripojenie k Internetu.\n"
 "Aktualizujú sa všetky projekty a obnovujú všetky prenosy."
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s je úspešné odpojený od Internetu."
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s zlyhalo odpojenie od Internetu."
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, fuzzy, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall "
+"BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"BOINC vlastnícke práva alebo povolenia nie sú nastavené správne; prosím "
+"nainštalujte znova BOINC.\n"
+"(kód chyby %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "BOINC Manažér"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr "Spustiť BOINC len s ikonou na paneli úloh"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr "Spustiť BOINC s týmito voliteľnými argumentmi"
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr "zablokovať BOINC bezpečnosť užívateľov a oprávnení"
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(Automatická detekcia)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(Neznáme)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(Užívateľsky definované)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 #, fuzzy
 msgid "Network activity is suspended."
 msgstr "&Sieťové aktivity pozastavené"
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr "Otvorenie %s web..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr "Otvorenie %s..."
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "Spánok"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "Neúspešné pripojenie k projektu"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr "Neúspešná aktualizácia správcu konta"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr "Neúspešné odstránenie správcu konta"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "Neúspešné pripojenie k správcovi konta"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -823,27 +941,24 @@ msgstr ""
 "\n"
 "Kliknite na Dokončiť pre zatvorenie."
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225 clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246 clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "Kliknite na Dokončiť pre zatvorenie."
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "Hlásenia zo servera:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "Pripojený k projektu"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "Teraz ste úspešne pripojený do tohto projektu."
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -851,498 +966,492 @@ msgstr ""
 "Keď kliknete na Dokončiť, Váš webový prehliadač pôjde na stránku,\n"
 "kde môžete nastaviť meno Vášho konta a preferencie."
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr "Aktualizácia z %s je úplná."
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "Aktualizácia je úplná."
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr "Odstránenie z %s je úplné."
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "Odstránenie úspešné!"
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr "Pripojené k %s"
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "Pripojené k cprávcovi konta"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
 msgstr "Vítajte v %s!"
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
+#, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "Teraz ste úspešne priojený k %s systému."
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "Teraz ste úspešne pripojený k tomuto správcovi konta."
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr "O %s"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "Verzia:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Autorské práva:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 #, fuzzy
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
 "(C) 2003-2006 University of California at Berkeley.\n"
 "Všetky práva vyhradené."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179 clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr "Berkeley Open Infrastructure for Network Computing"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195 clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120 clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "&OK"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 #, fuzzy
 msgid "invalid input value detected"
 msgstr "zistená neplatná hodnota"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr "Chyba pri validácii"
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr "Chcete skutočne odstrániť všetky lokálne preferencie?"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr "Potvrdenie"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
 "Click Clear to restore web-based settings."
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr "Odstrániť"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 #, fuzzy
 msgid " While computer is on batteries"
 msgstr "pokiaľ je počítač na batériách"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
-msgid "check this if you want this computer to do work while it runs on batteries"
+#: clientgui/DlgAdvPreferencesBase.cpp:83
+msgid ""
+"check this if you want this computer to do work while it runs on batteries"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 #, fuzzy
 msgid " While computer is in use"
 msgstr "pokiaľ je počítač používaný"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
-msgid "check this if you want this computer to do work even when you're using it"
+#: clientgui/DlgAdvPreferencesBase.cpp:92
+msgid ""
+"check this if you want this computer to do work even when you're using it"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
-msgid "check this if you want your GPU to do work even when you're using the computer"
+#: clientgui/DlgAdvPreferencesBase.cpp:101
+msgid ""
+"check this if you want your GPU to do work even when you're using the "
+"computer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
-msgid "do work only after you haven't used the computer for this number of minutes"
+#: clientgui/DlgAdvPreferencesBase.cpp:123
+msgid ""
+"do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr "minút(y)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+#, fuzzy
+msgid "While processor usage is less than"
+msgstr "využitie procesora"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 #, fuzzy
 msgid "Every day between hours of"
 msgstr "každý deň medzi hodinami"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr "a"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr "Pondelok"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr "Utorok"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr "Streda"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr "Å tvrtok"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr "Piatok"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr "Sobota"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr "Nedeľa"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 #, fuzzy
 msgid "Other options"
 msgstr "iné nastavenia"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
+#: clientgui/DlgAdvPreferencesBase.cpp:280
 #, fuzzy
-msgid "Switch between applications between every"
+msgid "Switch between applications every"
 msgstr "prepínať medzi aplikáciami približne každých"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 #, fuzzy
 msgid "On multiprocessor systems, use at most"
 msgstr "na viacprocesrových systémoch, použiť najviac"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
-#, no-c-format
-#, fuzzy
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, fuzzy, no-c-format
 msgid "% of the processors"
 msgstr "procesora"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 #, fuzzy
 msgid "Use at most"
 msgstr "použiť najviac"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
 msgid "% CPU time"
 msgstr "% CPU času"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr "využitie procesora"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 #, fuzzy
 msgid "General options"
 msgstr "všeobecné nastavenia"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 #, fuzzy
 msgid "Maximum download rate"
 msgstr "maximálna rýchlosť sťahovania"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 #, fuzzy
 msgid "KBytes/sec."
 msgstr "kB/sekundu"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 #, fuzzy
 msgid "Maximum upload rate"
 msgstr "maximálna rýchlosť odosielania"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 #, fuzzy
 msgid "Connect about every"
 msgstr "pripájať v intervale asi"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr "dňa (dní)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 #, fuzzy
 msgid " Skip image file verification"
 msgstr "vynechávať verifikáciu obrazových súborov"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 #, fuzzy
 msgid "Connect options"
 msgstr "nastavenie pripojenia"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 #, fuzzy
 msgid "Confirm before connecting to internet"
 msgstr "potvrdiť pred pripojením k Internetu"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
-msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
+#: clientgui/DlgAdvPreferencesBase.cpp:384
+msgid ""
+"if checked, a confirmation dialog will be displayed before trying to connect "
+"to the Internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 #, fuzzy
 msgid "Disconnect when done"
 msgstr "odpojiť po dokončení"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr "využitie siete"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507 clientgui/DlgItemProperties.cpp:213
 #, fuzzy
 msgid "Disk usage"
 msgstr "využitie disku"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr "GB miesta na disku"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 #, fuzzy
 msgid "Leave at least"
 msgstr "ponechať najmenej"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr "GB voľného miesta na disku"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr "% of) celkového miesta na disku"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-#, fuzzy
-msgid "Write to disk at most every"
-msgstr "zapisovať na disk najneskôr každých"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr "sekúnd"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr "% of) stránkovaného súboru (swapového priestoru)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 #, fuzzy
 msgid "Memory usage"
 msgstr "využitie pamäte"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr "% keď je počítač používaný"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr "% keď je počítač nevyužitý"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 #, fuzzy
 msgid " Leave applications in memory while suspended"
 msgstr "ponechať aplikácie v pamäti pri ich pozastavení"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr "využitie disku a pamäte"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr "OK"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr "Späť"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637 clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121 clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "Pomoc"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
 msgstr "%s - Potvrdenie Odchodu"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1352,8 +1461,8 @@ msgid ""
 "exit the Manager, then choose from the following options:"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1370,537 +1479,478 @@ msgstr ""
 "radšej než ukončiť aplikáciu; čo dovolí %s počítať\n"
 "úlohy v čase vami vybratom vo vašich preferenciách."
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177 clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388 clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "&Späť"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199 clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "VÅ¡eobecne"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 #, fuzzy
 msgid "User name"
 msgstr "Užívateľské meno:"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "Podiel výkonu"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215 clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217 clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219 clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215 clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217 clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219 clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 #, fuzzy
 msgid "Attached via account manager"
 msgstr "Pripojené k cprávcovi konta"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "Aplikácia"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "Odoslať do"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290 clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "ÄŒas CPU"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292 clientgui/DlgItemProperties.cpp:306
 #, fuzzy
 msgid "Elapsed time"
 msgstr "Uplynutý čas"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "Nová"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "Stiahnutie zlyhalo"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "SÅ¥ahovanie"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "Projekt pozastavený užívateľom"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr "Úloha pozastavená užívateľom"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "Pozastavené"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr " - z batérií"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr " - užívateľ aktívny"
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr " - výpočet pozastavený"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr " - denná doba"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr " - CPU testy"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr " - potrebné miesto na disku"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr "Čakanie na pamäť"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "Počítanie"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr "Čakanie na výpočet"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448 clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr "Pripravená na spustenie"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "Chyba výpočtu"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "Odoslanie zlyhalo"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "Odosielanie"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "Zrušená užívateľom"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "Zrušená projektom"
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "Zrušená"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "Potvrdená"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "Pripravená na odoslanie"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr "Chyba: neplatný stav '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:180
-msgid "How often should the Manager remind you when a network connection is needed?"
+#: clientgui/DlgOptions.cpp:180
+msgid ""
+"How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "Nastavenia Dialógového pripojenia a Virtuálnej privátnej siete"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "&Nastaviť predvolené"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "&Vymazať predvolené"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "Predvolené pripojenie:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "Pripojenia"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "Pripojenie cez HTTP proxy server"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "Konfigurácia HTTP proxy servra"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267 clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "Adresa:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275 clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "Port:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283 clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290 clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "Toto ponechať prázdne, ak nie je potrebné"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296 clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "Užívateľské meno:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304 clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "Heslo:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "HTTP Proxy"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "Pripojenie cez SOCKS proxy server"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "Konfigurácia SOCKS proxy servra"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "SOCKS Proxy"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
 msgid "%s - Select Computer"
 msgstr ""
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "Názov počítača:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s - Nemožno nájsť web prehliadač"
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
+#, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1916,233 +1966,223 @@ msgstr ""
 "BROWSER (VYHĽADÁVAČ) do cesty Vášho web prehliadača,\n"
 "potom reštartujte %s."
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31 clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "Panely hlásení"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "Korešpondujte s ostatnými užívateľmi na SETI at home paneloch hlásení"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "Položte otázku a oznámte problémy"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39 clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111 clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "Vaše konto"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41 clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "Prehľad informácií o Vašom konte a celkovom kredite"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "Vaše preferencie"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr "Prezrite si a modifikujte Váš SETI at home profil konta a preferencie"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47 clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "Vaše výsledky"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49 clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
-msgstr "Prezrite si posledný týždeň (alebo viac) vypočítaných výsledkov a práce"
+msgstr ""
+"Prezrite si posledný týždeň (alebo viac) vypočítaných výsledkov a práce"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51 clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "Vaše počítače"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr "Prezrite si zoznam všetkých počítačov na ktorých počítate SETI at home"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55 clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "Váš tím"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57 clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "Prehliadnite si informácie o Vašom tíme"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "Bežné otázky"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "Prečítajte si zoznam často kladených otázok k Einstein at Home"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "Informácie o šetriči obrazovky"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "Prečítajte si podrobný opis šetriča obrazovky Einstein at Home"
 
-#: clientgui/Localization.cpp:71
-msgid "Correspond with admins and other users on the Einstein at Home message boards"
+#: clientgui/Localization.cpp:71
+msgid ""
+"Correspond with admins and other users on the Einstein at Home message boards"
 msgstr ""
 "Korešpondujte s administrátormi a ostatnými užívateľmi na Einstein at Home "
 "paneloch hlásení"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "Stav projektu Einstein"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Aktuálny stav Einstein at Home servra"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "Oznámenie problémov"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr "Linka na panel hlásení problémov a chýb Einstein at Home"
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr "Prezrite si a modifikujte Váš Einstein at Home profil konta a preferencie"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "Súhrn konta"
 
-#: clientgui/Localization.cpp:95
-msgid "View a listing of all the computers on which you are running Einstein at Home"
+#: clientgui/Localization.cpp:95
+msgid ""
+"View a listing of all the computers on which you are running Einstein at Home"
 msgstr ""
 "Prezrite si zoznam všetkých počítačov, na ktorých počítate Einstein at Home"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "LIGO projekt"
 
-#: clientgui/Localization.cpp:103
-msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
+#: clientgui/Localization.cpp:103
+msgid ""
+"The home page of the Laser Interferometer Gravitational-wave Observatory "
+"(LIGO) project"
 msgstr ""
 "Domovská stránka projektu Laser Interferometer Gravitational-wave "
 "Observatory (LIGO)"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "Projekt GEO-600"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "Domovská stránka projektu GEO-600"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115 clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "Tím"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "Informácie o Vašom tíme"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "Získajte pomoc pre climateprediction.net"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "Novinky"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "Novinky climateprediction.net"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr "Prehliadnite si informácie o Vašom konte, kredite a kontaktoch"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "Informácie o Vašom tíme"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr "Pátranie po pomoci v našom systéme pomoci"
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "Globálne štatistiky"
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "Sumárne štatistiky pre World Community Grid"
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr "Môj Grid"
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "Vaše štatistiky a nastavenia"
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr "Profily zariadenia"
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr "Aktualizácia nastavení Vášho zariadenia"
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr "Výskum"
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "Poznajte projekty hosťujúce vo World Community Grid"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr ""
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "Obnova stavu systému; prosím čakajte..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "Obnova hosťovských informácií; prosím čakajte..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "Žiadne pripojenie Internetu"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "Prosím pripojte sa k Internetu a skúste znova."
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "Projekt nenájdený"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2152,11 +2192,11 @@ msgstr ""
 "\n"
 "Prosím skontrolujte URL a skúste znova."
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "Správca konta nenájdený"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2167,50 +2207,63 @@ msgstr ""
 "\n"
 "Prosím skontrolujte URL a skúste znova."
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr "Prihlásenie neúspešné."
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr "Skontrolujte užívateľské meno a heslo, potom skúste znova."
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr "Skontrolujte emailovú adresu a heslo, potom skúste znova."
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "&URL projektu:"
 
-#: clientgui/ProjectInfoPage.cpp:320
-msgid "You are already attached to this project. Please choose a different project."
+#: clientgui/ProjectInfoPage.cpp:393
+msgid ""
+"This project may not have work for your type of computer. Are you sure you "
+"wish to continue?"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:321
-#, fuzzy
-msgid "Already Attached to Project"
-msgstr "Už pripojený do projektu"
+#: clientgui/ProjectInfoPage.cpp:417
+msgid ""
+"You are already attached to this project. Please choose a different project."
+msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
 msgstr ""
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
 msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
@@ -2218,7 +2271,7 @@ msgstr ""
 "Komunikácia s projektom\n"
 "Prosím čakajte..."
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
@@ -2226,11 +2279,11 @@ msgstr ""
 "Požadovaný(é) wizard súbor(y) chýba(jú) na cieľovom servri.\n"
 "(lookup_account.php/create_account.php)\n"
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "Sieťová komunikácia zlyhala"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
 #, fuzzy
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
@@ -2242,7 +2295,7 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
@@ -2260,7 +2313,7 @@ msgstr ""
 "3) Používate proxy server.\n"
 "Kliknite na Ďalej pre konfigurovanie proxy nastavení BOINC."
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 #, fuzzy
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
@@ -2290,492 +2343,460 @@ msgstr ""
 "3) Používate proxy server.\n"
 "Kliknite na Ďalej pre konfigurovanie proxy nastavení BOINC."
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Konfigurácia proxy"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "HTTP proxy"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337 clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "Server:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "Autodetekcia"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "SOCKS proxy"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr "&%s"
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr "Obnovovanie aktuálneho stavu."
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr "Nemáte žiadne projekty. Prosím pridajte projekt."
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr "Sťahovanie práce zo servra."
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr "Spracovanie pozastavené:  Beh z batérií."
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr "Spracovanie pozastavené: Užívateľ pracuje."
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr "Spracovanie pozastavené: Užívateľ pozastavil spracovanie."
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr "Spracovanie pozastavené: Denná doba."
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr "Spracovanie pozastavené: Bežia testy CPU."
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr "Spracovanie pozastavené."
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr "ÄŒakanie na kontakt servrov projektu."
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr "Obnovovanie aktuálneho stavu"
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr "Žiadna práca dostupná pre proces"
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr "Nemožno pripojiť ku klientovi jadra"
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "Projekt"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "ÄŒas"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "Hlásenie"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177 clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "Kopírovať všetky správy do kopírovacej schránky."
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
-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."
+#: clientgui/sg_DlgMessages.cpp:202 clientgui/sg_DlgMessages.cpp:210
+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 ""
 "Kopírovať vybraté správy do schránky. Môžete vybrať viaceré správy pri "
 "podržaní stlačeného Shift alebo príkazového klávesa pokiaľ vyberáte správy."
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
-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."
+#: clientgui/sg_DlgMessages.cpp:204 clientgui/sg_DlgMessages.cpp:212
+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 ""
 "Kopírovať vybrané správy do schránky. Môžete vybrať viaceré správy pri "
 "podržaní stlačeného Shift alebo Ctrl pokiaľ vyberáte správy."
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252 clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr "Získajte pomoc s BOINC"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr "100 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr "200 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr "500 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr "1 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr "2 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr "5 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr "10 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr "20 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr "50 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr "100 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr "10%"
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr "20%"
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr "30%"
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr "40%"
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr "50%"
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr "60%"
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr "70%"
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr "80%"
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr "90%"
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr "100%"
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr "1"
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr "3"
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr "5"
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr "10"
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr "15"
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr "30"
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr "60"
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr "Vzhľad"
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr "Vzhľad:"
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr "Preferencie"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr "Chcem upraviť moje preferencie iba pre tento počítač."
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr "Upravené preferencie"
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr "Pracovať iba medzi:"
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr "Pripojiť k Internetu iba medzi:"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393 clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr "Použiť nie viac ako:"
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr "miesta na disku"
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr "procesora"
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr "Pracovať z batérií?"
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr "Pracovať pri nečinnosti za:"
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678 clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749 clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765 clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927 clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr "Trvalo"
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr "%d MB"
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr "%4.2f GB"
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr "%d%%"
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr "0 (Beží stále)"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr "%d"
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr "Pripojiť k ďalšiemu projektu"
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr "Otvoriť okno pre prezretie správ"
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr "Zastaviť všetky aktivity"
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr "Povoliť aktivity"
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr "Otvoriť okno pre nastavenie Vašich preferencií"
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr "Prepnúť BOINC do pokročilého náhľadu"
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr "%s. Práca dokončená v %s: %0.2f"
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217 clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "Ste si istý, že sa chcete odppojiť od projektu '%s'?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223 clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "Odpojenie od projektu"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138 clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr "%.1lf"
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr "%d hodín %d minút %d sekúnd"
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr "Ste si istý že chcete zobraziť grafiku na vzdialenom počítači?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "Ukázať grafiku"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 #, fuzzy
 msgid "Application: "
 msgstr "Aplikácia"
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447 clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 #, fuzzy
 msgid "Elapsed Time: "
 msgstr "Uplynutý čas"
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "Projekt dočasne nedostupný"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2785,11 +2806,11 @@ msgstr ""
 "\n"
 "Prosím skúste znova neskôr."
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "Správca konta dočasne nedostupný"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2799,32 +2820,31 @@ msgstr ""
 "\n"
 "Prosím skúste znova neskôr."
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "Prosím špecifikujte kľúč konta pre pokračovanie."
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr "Neplatný kľúč konta; prosím vložte platný kľúč konta"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82 clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "Konflikt pri validácii"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr "Prosím špecifikujte emailovú adresu"
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr "Neplatná emailová adresa; prosím vložiť správnu emailovú adresu"
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "Chýbajúca URL"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2834,18 +2854,14 @@ msgstr ""
 "Napríklad:\n"
 "http://www.example.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83 clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91 clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107 clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "Neplatná URL"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84 clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2855,611 +2871,490 @@ msgstr ""
 "Napríklad:\n"
 "http://boincproject.example.com"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104 clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "'%s' neobsahuje správny názov počítača."
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "'%s' neobsahuje správnu cestu."
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84 clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "Príkazy"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88 clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "Kopírovať všetky správy"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95 clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "Kopírovať vybraté správy"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106 clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107 clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164 clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "Správy"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187 clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "Kopírovanie všetkých správ do schránky..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 #, fuzzy
 msgid "Copying selected messages to the clipboard..."
 msgstr "Kopírovanie vybratých správ do schránky..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 #, fuzzy
 msgid "Show all messages"
 msgstr "Kopírovať všetky správy"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr "ID"
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr "Priorita"
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr "tab. Správy"
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr "Kopírovanie vybratých správ do schránky..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "Aktualizovať"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
-msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
+#: clientgui/ViewProjects.cpp:174
+msgid ""
+"Report all completed tasks, get latest credit, get latest preferences, and "
+"possibly get more tasks."
 msgstr ""
 "Odoslať všetky dokončené úlohy, získať posledný kredit, získať posledné "
 "preferencie a ak je možné získať ďalšie úlohy."
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180 clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "Pozastaviť"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181 clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr "Pozastaviť úlohy pre tento projekt."
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187 clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr "Žiadne nové úlohy"
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr "Nezískať nové úlohy pre tento projekt."
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "Resetovať projekt"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
-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."
+#: clientgui/ViewProjects.cpp:195
+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 ""
 "Vymazať všetky súbory a úlohy spojené s týmto projektom a získať nové úlohy. "
 "Mali by ste najskôr aktualizovať projekt pre odoslanie všetkých dokončených "
 "úloh."
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "Odpojiť"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
-msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
+#: clientgui/ViewProjects.cpp:202
+msgid ""
+"Detach computer from this project.  Tasks in progress will be lost (use "
+"'Update' first to report any completed tasks)."
 msgstr ""
 "Odpojiť počítač od tohto projektu. Rozpracované úlohy budú stratené (použite "
 "najskôr Aktualizovať pre odoslanie všetkých dokončených úloh)."
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "Konto"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "Vykonaná práca"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr "Denný priemer"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "Stav"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "Projekty"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "Aktualizácia projektu..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "Pokračovanie projektu..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "Pozastavenie projektu..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr "Pokyn projektu, aby stiahol ďalšie úlohy..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "Pokyn projektu, aby nesťahoval žiadne ďalšie úlohy..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "Resetovanie projektu..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "Ste si istý, že chcete resetovať projekt '%s'?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "Resetovať projekt"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "Odpájenie od projektu..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "Spúšťanie vyhľadávača..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "Pokračovať"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "Pokračovať na úlohách pre tento projekt."
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "Povoliť nové úlohy"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr "Povoliť volanie nových úloh pre tento projekt."
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "Nevolať nové úlohy pre tento projekt."
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "Pozastavené užívateľom"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "Nebudú získané nové úlohy"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "Žiadosť plánovača nevyriešená"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "Komunikácia odložená o: "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 #, fuzzy
 msgid "Total disk usage"
 msgstr "celkové využitie disku"
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 #, fuzzy
 msgid "Disk usage by BOINC projects"
 msgstr "využitie disku BOINC projektmi"
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "Disk"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 #, fuzzy
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr "nepripojený k žiadnemu BOINC projektu - 0 bytov"
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 #, fuzzy
 msgid "used by BOINC: "
 msgstr "používané BOINCom - "
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 #, fuzzy
 msgid "used by other programs: "
 msgstr "používané inými programami - "
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "Užívateľ celkom"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "Užívateľ priemerne"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "Počítač celkom"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "Počítač priemerne"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
 msgstr "Posledná aktualizácia pred: %.0f dňami"
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "Ukázať úhrn užívateľa"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr "Ukázať celkový kredit pre užívateľa"
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "Ukázať priemer užívateľa"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr "Ukázať priemerný kredit pre užívateľa"
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "Ukázať úhrn počítača"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr "Ukázať celkový kredit pre počítač"
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "Ukázať priemer počítača"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr "Ukázať priemerný kredit pre počítač"
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< &Predošlý projekt"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr "Ukázať graf pre predošlý projekt"
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "&Nasledujúci projekt >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr "Ukázať graf pre nasledujúci projekt"
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "Mód náhľadu"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "VÅ¡etky projekty"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr "Ukázať všetky projekty, jeden graf pre každý projekt"
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "Jeden projekt"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr "Ukázať jeden graf s vybratým projektom"
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr "VÅ¡etky projekty (sum)"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr "Ukázať jeden graf so všetkými projektmi"
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "Å tatistiky"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853 clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895 clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938 clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980 clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "Aktualizovanie grafov..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163 clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "Zopakovať teraz"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164 clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "Kliknúť na 'Zopakuj teraz' pre prenos súboru teraz"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170 clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "Zrušiť prenos"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
-msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
+#: clientgui/ViewTransfers.cpp:171 clientgui/ViewTransfersGrid.cpp:114
+msgid ""
+"Click 'Abort transfer' to delete the file from the transfer queue. This will "
+"prevent you from being granted credit for this result."
 msgstr ""
 "Kliknúť na 'Zrušiť prenos' pre vymazanie súboru z prenosovej fronty. Toto "
 "zabráni, aby Vám bol pridelený kredit za tentto výsledok."
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182 clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "Súbor"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183 clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226 clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "Priebeh"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184 clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "Veľkosť"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185 clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "Uplynutý čas"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186 clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "Rýchlosť"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212 clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "Prenosy"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271 clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "Opakovanie prenosu teraz..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "Prerušenie prenosu..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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"
@@ -3469,35 +3364,40 @@ msgstr ""
 "POZNÁMKA: Zrušenie prenosu neodsúhlasí úlohu a Vy\n"
 "nedostanete pridelený kredit za ňu."
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "Zrušiť prenos súboru"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751 clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "Zopakovať o: "
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763 clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr "Odoslanie nevyriešené"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763 clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "Stiahnutie navyriešené"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 #, fuzzy
 msgid "Aborting transfer(s)..."
 msgstr "Prerušenie prenosu..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 #, fuzzy
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
@@ -3508,76 +3408,69 @@ msgstr ""
 "POZNÁMKA: Zrušenie prenosu neodsúhlasí úlohu a Vy\n"
 "nedostanete pridelený kredit za ňu."
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 #, fuzzy
 msgid "Abort File Transfer(s)"
 msgstr "Zrušiť prenos súboru"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184 clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185 clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192 clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "Ukázať grafiku aplkácie v okne."
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199 clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "Pozastaviť prácu pre tento výsledok."
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205 clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "Zrušiť"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206 clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr "Zanechať prácu na tomto výsledku. Nedostanete preň žiaden kredit."
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224 clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "Názov"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227 clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "Do dokončenia"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254 clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "Úlohy"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342 clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "Pokračovanie úlohy..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345 clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "Pozastavenie úlohy..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373 clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "Ukázanie grafiky pre úlohu..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Rušenie výsledku..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
@@ -3585,36 +3478,57 @@ msgstr ""
 "Ste si istý že chcete zrušiť túto úlohu '%s'?\n"
 "(Priebeh: %s, Stav: %s)"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:437 clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "Zrušiť úlohu"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446 clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Rušenie výsledku..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728 clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr "Pokračovať v práci na tejto úlohe."
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734 clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr "Pozastaviť prácu na tejto úlohe."
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168 clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
@@ -3622,12 +3536,12 @@ msgstr ""
 "Ste si istý že chcete zrušiť túto úlohu '%s'?\n"
 "(Priebeh: %s %%, Stav: %s)"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3636,13 +3550,13 @@ msgid ""
 "listed on or managed via %s."
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
-msgstr "Teraz Vás povedieme cez proces pripojenia k projektu."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3658,141 +3572,248 @@ msgid ""
 "World Community Grid then please click on the following button:"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
-msgstr "&Zastaviť používanie%s"
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-"Teraz odstránime tento počítač z %s. Odteraz\n"
-"pripojíme a odpojíme projekty priamo z tohoto počítača.\n"
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "Správca konta"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"Teraz Vás povedieme cez proces pripojenia\n"
-"k správcovi konta.\n"
-"\n"
-"Ak sa chcete pripojiť k samostatnému projektu, kliknite na Späť,\n"
-"potom namiesto toho vyberte položku 'Pripojiť k projektu' v ponuke."
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "Vlajky ladenia"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "Vlastnosti projektu zlyhali"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "URL vlastností projektu zlyhala"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "Vytvorenie konta zablokované"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "Vytvorenie konta klienta zablokované"
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "Konto už existuje"
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "Projekt je už pripojený"
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "Pripojenie projektu zlyhalo"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "Net detekcia zlyhala"
-
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "Pre pokračovanie stlačte Ďalej"
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "Chcete skutočne odísť?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "Otázka"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377 clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "&ÄŽalej >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< &Späť"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "&Dokončiť"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
 msgid "New page inserted. Index = %i"
 msgstr "Nová stránka vložená. Index = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
 msgid "New page appended. Index = %i"
 msgstr "Nová stránka doplnená. Index = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
 msgid "Old Page Index = %i"
 msgstr "Index starej stránky = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr "OnDropTarget: index by HitTest = %i"
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr "Pie Ctrl"
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid ""
+"for accessibility support, please select advanced from the view menu or type "
+"command shift a"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:528 clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 
+#, fuzzy
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "&Zatvoriť okno\tCTRL+W"
+
+#~ msgid "User information"
+#~ msgstr "Informácie o užívateľovi"
+
+#~ msgid "Account Manager URL"
+#~ msgstr "URL správcu konta"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "Vložte URL web stránky správcu konta."
+
+#~ msgid "Close BOINC Manager Window."
+#~ msgstr "Zatvoriť okno BOINC Manažéra"
+
+#~ msgid "Exit the %s"
+#~ msgstr "Odchod z %s"
+
+#~ msgid "Attach to a project"
+#~ msgstr "Pripojiť do projektu"
+
+#~ msgid "Attach to &account manager..."
+#~ msgstr "Pripojiť k správcovi &konta"
+
+#~ msgid "Attach to an account manager"
+#~ msgstr "Pripojiť k správcovi konta"
+
+#~ msgid "Attach to &project"
+#~ msgstr "Pripojiť k &projektu"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "Pripájenie k projektu..."
+
+#~ msgid "Removal from %s completed."
+#~ msgstr "Odstránenie z %s je úplné."
+
+#~ msgid "Removal succeeded!"
+#~ msgstr "Odstránenie úspešné!"
+
+#, fuzzy
+#~ msgid "Write to disk at most every"
+#~ msgstr "zapisovať na disk najneskôr každých"
+
+#, fuzzy
+#~ msgid "Already Attached to Project"
+#~ msgstr "Už pripojený do projektu"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr "Teraz Vás povedieme cez proces pripojenia k projektu."
+
+#~ msgid "&Stop using%s"
+#~ msgstr "&Zastaviť používanie%s"
+
+#~ msgid ""
+#~ "We'll now remove this computer from %s.  From now on,\n"
+#~ "attach and detach projects directly from this computer.\n"
+#~ msgstr ""
+#~ "Teraz odstránime tento počítač z %s. Odteraz\n"
+#~ "pripojíme a odpojíme projekty priamo z tohoto počítača.\n"
+
+#~ msgid "Account manager"
+#~ msgstr "Správca konta"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to an account manager.\n"
+#~ "\n"
+#~ "If you want to attach to a single project, click Cancel,\n"
+#~ "then select the 'Attach to project' menu item instead."
+#~ msgstr ""
+#~ "Teraz Vás povedieme cez proces pripojenia\n"
+#~ "k správcovi konta.\n"
+#~ "\n"
+#~ "Ak sa chcete pripojiť k samostatnému projektu, kliknite na Späť,\n"
+#~ "potom namiesto toho vyberte položku 'Pripojiť k projektu' v ponuke."
+
+#~ msgid "Debug Flags"
+#~ msgstr "Vlajky ladenia"
+
+#~ msgid "Project Properties Failure"
+#~ msgstr "Vlastnosti projektu zlyhali"
+
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "URL vlastností projektu zlyhala"
+
+#~ msgid "Account Creation Disabled"
+#~ msgstr "Vytvorenie konta zablokované"
+
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "Vytvorenie konta klienta zablokované"
+
+#~ msgid "Account Already Exists"
+#~ msgstr "Konto už existuje"
+
+#~ msgid "Project Already Attached"
+#~ msgstr "Projekt je už pripojený"
+
+#~ msgid "Project Attach Failure"
+#~ msgstr "Pripojenie projektu zlyhalo"
+
+#~ msgid "Net Detection Failure"
+#~ msgstr "Net detekcia zlyhala"
+
 #~ msgid ""
 #~ "You can copy and paste the URL from your browser's\n"
 #~ "address bar."
@@ -3835,44 +3856,35 @@ msgstr ""
 #~ msgid "Retry &communications"
 #~ msgstr "Opakovať &komunikácie"
 
-#~ msgid "Report completed work, get latest credit, get latest preferences, and possibly get more work."
-#~ msgstr "Odoslať dokončenú prácu, získať posledný kredit, získať posledné preferencie a ak je možné, získať ďalšiu prácu."
+#~ msgid ""
+#~ "Report completed work, get latest credit, get latest preferences, and "
+#~ "possibly get more work."
+#~ msgstr ""
+#~ "Odoslať dokončenú prácu, získať posledný kredit, získať posledné "
+#~ "preferencie a ak je možné, získať ďalšiu prácu."
 
-#, c-format
 #~ msgid ""
 #~ "%s is going to shutdown the core client it is currently connected to.\n"
 #~ "NOTE: Choosing 'OK' will cause the select new computer dialog to appear \n"
 #~ "so you can attach to a different core client."
 #~ msgstr ""
 #~ "%s vypína klienta jadra, aktuálne k nemu pripojeného.\n"
-#~ "POZNÁMKA: Zvolenie 'OK' spôsobí objavenie sa dialógu výberu nového počítača, \n"
+#~ "POZNÁMKA: Zvolenie 'OK' spôsobí objavenie sa dialógu výberu nového "
+#~ "počítača, \n"
 #~ "aby ste sa mohli pripojiť k inému klientovi jadra."
 
-#, c-format
 #~ msgid "BOINC Manager - Detach from %s"
 #~ msgstr "BOINC Manažér - Odpojiť od %s"
 
-#, c-format
-#~ msgid ""
-#~ "BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
-#~ "(Error code %d)"
-#~ msgstr ""
-#~ "BOINC vlastnícke práva alebo povolenia nie sú nastavené správne; prosím nainštalujte znova BOINC.\n"
-#~ "(kód chyby %d)"
-
-#, c-format
 #~ msgid "%s is currently suspended...\n"
 #~ msgstr "%s je práve pozastavený...\n"
 
-#, c-format
 #~ msgid "%s networking is currently suspended...\n"
 #~ msgstr "%s pripojenie do siete je práve pozastavené...\n"
 
-#, c-format
 #~ msgid "%s is currently reconnecting to a %s client...\n"
 #~ msgstr "%s sa práve presmerováva na %s klienta...\n"
 
-#, c-format
 #~ msgid "%s is not currently connected to a %s client...\n"
 #~ msgstr "%s nie je práve pripojený na %s klienta...\n"
 
@@ -3886,7 +3898,8 @@ msgstr ""
 #~ msgstr ""
 #~ "Tento dialóg riadi preferencie len na tomto počítači.\n"
 #~ "Pri Uložení - preferencie budú uložené lokálne.\n"
-#~ "Ak by ste sa radi vrátili k nastaveniam na stránke, kliknite na tlačidlo Odstrániť."
+#~ "Ak by ste sa radi vrátili k nastaveniam na stránke, kliknite na tlačidlo "
+#~ "Odstrániť."
 
 #~ msgid "when do work"
 #~ msgstr "kedy pracuje"
@@ -3913,7 +3926,8 @@ msgstr ""
 #~ msgstr "sieť použiť iba ako je stanovené tu:"
 
 #~ msgid "Click here to disable displaying this message in the future."
-#~ msgstr "Kliknite sem, pre zablokovanie zobrazenia tohoto hlásenia v budúcnosti."
+#~ msgstr ""
+#~ "Kliknite sem, pre zablokovanie zobrazenia tohoto hlásenia v budúcnosti."
 
 #~ msgid "Language Selection:"
 #~ msgstr "Výber jazyka:"
@@ -3924,8 +3938,12 @@ msgstr ""
 #~ msgid "Reminder Frequency:"
 #~ msgstr "Opakovanie pripomienky:"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
-#~ msgstr "Ako často, v minútach, by Vám mal správca pripomínať možné udalosti spojenia."
+#~ msgid ""
+#~ "How often, in minutes, should the manager remind you of possible "
+#~ "connection events."
+#~ msgstr ""
+#~ "Ako často, v minútach, by Vám mal správca pripomínať možné udalosti "
+#~ "spojenia."
 
 #~ msgid "Project URL"
 #~ msgstr "URL projektu"
@@ -3968,7 +3986,8 @@ msgstr ""
 #~ "specify network usage start and stop hours in format HH:MM-HH:MM\n"
 #~ "start must be lower than stop"
 #~ msgstr ""
-#~ "definujte začiatok a koniec využívania siete v hodinách, vo formáte HH:MM-HH:MM\n"
+#~ "definujte začiatok a koniec využívania siete v hodinách, vo formáte HH:MM-"
+#~ "HH:MM\n"
 #~ "začiatok musí byť menší ako koniec"
 
 #~ msgid "BOINC Manager - Options"
diff --git a/locale/sk/BOINC-Web.po b/locale/sk/BOINC-Web.po
index b2923b8..2cd04f3 100644
--- a/locale/sk/BOINC-Web.po
+++ b/locale/sk/BOINC-Web.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: boinc 1.10\n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
 "PO-Revision-Date: 2007-01-06 02:34+0100\n"
 "Last-Translator: marpes <marpes at zoznam.sk>\n"
 "Language-Team: boinc.sk\n"
@@ -18,386 +18,312 @@ msgstr ""
 "X-Poedit-Country: UNITED STATES\n"
 "X-Poedit-KeywordsList: tra\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
 msgstr ""
 
-"
-
+#: poll.inc:47
 msgid "Other:"
 msgstr ""
 
-"
-
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
 msgstr ""
 
-"
-
+#: poll_data.inc:22
 msgid "less than a week"
 msgstr ""
 
-"
-
+#: poll_data.inc:23
 msgid "less than a month"
 msgstr ""
 
-"
-
+#: poll_data.inc:24
 msgid "less than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:25
 msgid "more than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:34
 msgid "I lost interest"
 msgstr ""
 
-"
-
+#: poll_data.inc:35
 msgid "it was too complicated"
 msgstr ""
 
-"
-
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
 msgstr ""
 
-"
-
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:38
 msgid "it used too much electricity"
 msgstr ""
 
-"
-
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr ""
 
-"
-
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
 msgstr ""
 
-"
-
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
 msgstr ""
 
-"
-
+#: poll_data.inc:50
 msgid "I had network communication problems"
 msgstr ""
 
-"
-
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
 msgstr ""
 
-"
-
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr ""
 
-"
-
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
 msgstr ""
 
-"
-
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr ""
 
-"
-
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr ""
 
-"
-
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr ""
 
-"
-
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr ""
 
-"
-
+#: poll_data.inc:87
 msgid "Home"
 msgstr ""
 
-"
-
+#: poll_data.inc:88
 msgid "Work"
 msgstr ""
 
-"
-
+#: poll_data.inc:89
 msgid "School"
 msgstr ""
 
-"
-
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr ""
 
-"
-
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr ""
 
-"
-
+#: poll_data.inc:119
 msgid "Age"
 msgstr ""
 
-"
-
+#: poll_data.inc:129
 msgid "Sex"
 msgstr ""
 
-"
-
+#: poll_data.inc:131
 msgid "Male"
 msgstr ""
 
-"
-
+#: poll_data.inc:132
 msgid "Female"
 msgstr ""
 
-"
-
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr ""
 
-"
-
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr ""
 
-"
-
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr ""
 
-"
-
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr ""
 
-"
-
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr ""
 
-"
-
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr ""
 
-"
-
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
 msgstr ""
 
-"
-
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr ""
 
-"
-
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr ""
 
-"
-
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr ""
 
-"
-
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr ""
 
-"
-
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr ""
 
-"
-
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr ""
 
-"
-
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr ""
 
-"
-
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr ""
 
-"
-
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr ""
 
-"
-
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr ""
 
-"
-
+#: poll_data.inc:192
 msgid "Yes"
 msgstr ""
 
-"
-
+#: poll_data.inc:193
 msgid "No"
 msgstr ""
 
-"
-
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr ""
 
-"
-
+#: poll_data.inc:200
 msgid "to read information"
 msgstr ""
 
-"
-
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr ""
 
-"
-
+#: poll_data.inc:202
 msgid "None"
 msgstr ""
 
-"
-
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr ""
 
-"
-
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr ""
 
-"
-
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr ""
 
-"
-
+#: download.php:40
 msgid "Download BOINC"
 msgstr ""
 
-"
-
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr ""
 
-"
-
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -405,41 +331,34 @@ msgid ""
 "computer, you can connect it to as many of these projects as you like."
 msgstr ""
 
-"
-
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
 "(GPU), you may be able to %suse it to compute faster%s"
 msgstr ""
 
-"
-
+#: download.php:120
 msgid "System requirements"
 msgstr ""
 
-"
-
+#: download.php:121
 msgid "Release notes"
 msgstr ""
 
-"
-
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr ""
 
-"
-
+#: download.php:123
 msgid "All versions"
 msgstr ""
 
-"
-
+#: download.php:141
 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 "
@@ -448,8 +367,7 @@ msgid ""
 "problems you might have."
 msgstr ""
 
-"
-
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -458,8 +376,7 @@ msgid ""
 "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 "
@@ -467,20 +384,17 @@ msgid ""
 "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 "
@@ -488,30 +402,70 @@ msgid ""
 "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 ""
 
-"
+#: index.php:23
+msgid "Computing power"
+msgstr ""
 
-msgid "Volunteer"
+#: index.php:25
+msgid "Top 100 volunteers"
 msgstr ""
 
-"
+#: index.php:26
+msgid "Statistics"
+msgstr ""
 
-msgid "Download"
+#: index.php:53
+msgid "Active:"
 msgstr ""
 
-"
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
 
-msgid "Documentation"
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
 msgstr ""
 
-"
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
 
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -520,28 +474,92 @@ msgid ""
 "sDownload%s and run BOINC software  %sEnter%s an email address and password. "
 msgstr ""
 
-"
-
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
 "sGridRepublic%s or %sBAM!%s. "
 msgstr ""
 
-"
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
 
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
 
-"
-
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr ""
 
-"
-
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -554,84 +572,68 @@ msgid ""
 "href=poll_results.php>here</a>. "
 msgstr ""
 
-"
-
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr ""
 
-"
-
+#: poll.php:30
 msgid "Your participation"
 msgstr ""
 
-"
-
+#: poll.php:32
 msgid "Your computers"
 msgstr ""
 
-"
-
+#: poll.php:34
 msgid "You"
 msgstr ""
 
-"
-
+#: poll.php:39
 msgid "Nationality"
 msgstr ""
 
-"
-
+#: poll.php:44
 msgid "Comments"
 msgstr ""
 
-"
-
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
 msgstr ""
 
-"
-
+#: poll.php:50
 msgid "When done click:"
 msgstr ""
 
-"
-
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
 msgstr ""
 
-"
-
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr ""
 
-"
-
+#: poll_results.php:195
 msgid "Survey results"
 msgstr ""
 
-"
-
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
 msgstr ""
 
-"
-
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 # ########################################
diff --git a/locale/sk/pootle-boincclient610-sk.prefs b/locale/sk/pootle-boincclient610-sk.prefs
new file mode 100644
index 0000000..cc01b89
--- /dev/null
+++ b/locale/sk/pootle-boincclient610-sk.prefs
@@ -0,0 +1,7 @@
+# Pootle preferences for project boinctrunk, language sk
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/sk/pootle-boinctrunk-sk.prefs b/locale/sk/pootle-boinctrunk-sk.prefs
deleted file mode 100644
index d23cfde..0000000
--- a/locale/sk/pootle-boinctrunk-sk.prefs
+++ /dev/null
@@ -1,2 +0,0 @@
-# Pootle preferences for project boinctrunk, language sk
-
diff --git a/locale/sl/BOINC-Manager.mo b/locale/sl/BOINC-Manager.mo
new file mode 100644
index 0000000..8c4332e
Binary files /dev/null and b/locale/sl/BOINC-Manager.mo differ
diff --git a/locale/sl/BOINC-Manager.po b/locale/sl/BOINC-Manager.po
new file mode 100644
index 0000000..c444201
--- /dev/null
+++ b/locale/sl/BOINC-Manager.po
@@ -0,0 +1,3763 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2009-12-15 10:47-0700\n"
+"Last-Translator: Miha P <miha at wolfey.si>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: sl\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
+"%100==4 ? 2 : 3);\n"
+"X-Generator: Pootle 1.2.1\n"
+"X-Poedit-SearchPath-0: clientgui\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
+"X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
+
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr "Identificirajte vaš uporabniški račun"
+
+#: clientgui/AccountInfoPage.cpp:382
+msgid ""
+"Please enter your account information\n"
+"(to create an account, visit the project's web site)"
+msgstr ""
+"Prosim vnesite informacije o vašem uporabniškem računu\n"
+"(da ustvarite račun, obiščite domačo stran projekta)"
+
+#: clientgui/AccountInfoPage.cpp:386
+msgid ""
+"This project is not currently accepting new accounts.\n"
+"You can attach only if you already have an account."
+msgstr ""
+"Ta projekt trenutne ne sprejema novih uporabniških računov.\n"
+"Lahko se pripnete le, če račun že imate."
+
+#: clientgui/AccountInfoPage.cpp:390
+msgid "Are you already running this project?"
+msgstr "Ali že poganjate ta projekt?"
+
+#: clientgui/AccountInfoPage.cpp:394
+msgid "&No, new user"
+msgstr "&Ne, nov uporabnik"
+
+#: clientgui/AccountInfoPage.cpp:397
+msgid "&Yes, existing user"
+msgstr "&Da, obstoječi uporabnik"
+
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+"Nismo vam mogli samodejno nastaviti informacij\n"
+"vašega uporabniškega računa.\n"
+"\n"
+"Prosim kliknite na povezavo \"Najdi prijavne informacije\"\n"
+"spodaj, da izveste kaj napisati v vnosni polji\n"
+"elektronska pošta in geslo."
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr "Najdi prijavne informacije"
+
+#: clientgui/AccountInfoPage.cpp:425 clientgui/AccountInfoPage.cpp:591
+msgid "&Password:"
+msgstr "&Geslo:"
+
+#: clientgui/AccountInfoPage.cpp:432 clientgui/AccountInfoPage.cpp:606
+msgid "Choose a &password:"
+msgstr "Izberite &geslo:"
+
+#: clientgui/AccountInfoPage.cpp:435
+msgid "C&onfirm password:"
+msgstr "P&otrdi geslo:"
+
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
+msgid "Are you already running %s?"
+msgstr "Ali že poganjate %s?"
+
+#: clientgui/AccountInfoPage.cpp:459
+msgid "&Username:"
+msgstr "&Uporabniško ime:"
+
+#: clientgui/AccountInfoPage.cpp:473
+msgid "&Email address:"
+msgstr "&Elektronska pošta:"
+
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
+msgid "minimum length %d"
+msgstr "minimalna dolžina %d"
+
+#: clientgui/AccountInfoPage.cpp:488
+msgid "Forgot your password?"
+msgstr "Ste pozabili geslo?"
+
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+"Če še niste registrirani s tem upraviteljem računov,\n"
+"prosim to storite pred nadaljevanjem. Kliknite na povezavo spodaj\n"
+"za registriracijo ali da spet pridobite pozabljeno geslo."
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr "Spletna stran upravitelja računov"
+
+#: clientgui/AccountInfoPage.cpp:530
+msgid "Attach to project"
+msgstr "Priklopite se k projektu"
+
+#: clientgui/AccountInfoPage.cpp:532
+msgid "Update account manager"
+msgstr "Posodobite upravitelja računov"
+
+#: clientgui/AccountInfoPage.cpp:534
+msgid "Attach to account manager"
+msgstr "Pripnite se na upravitelja računov"
+
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
+msgid ""
+"The minimum password length for this project is %d. Please enter a different "
+"password."
+msgstr ""
+"Najmanjša dolžina gesla za ta projekt je %d. Prosim vnesite drugo geslo."
+
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
+msgid ""
+"The minimum password length for this account manager is %d. Please enter a "
+"different password."
+msgstr ""
+"Najmanjša dolžina gesla za ta upravitelj računov je %d. Prosim vnesite drugo "
+"geslo."
+
+#: clientgui/AccountInfoPage.cpp:560
+msgid ""
+"The password and confirmation password do not match. Please type them again."
+msgstr "Geslo in potrditev gesla se ne ujemata. Prosim, vtipkajte jih znova."
+
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr "Izberite upravitelja računov"
+
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"Da izberete upravitelja računov, kliknite njegovo ime ali\n"
+"spodaj napišite njegov URL."
+
+#: clientgui/AccountManagerInfoPage.cpp:255
+msgid "Account Manager &URL:"
+msgstr "Upravitelj računov &URL:"
+
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
+msgid "Communicating with %s."
+msgstr "Komuniciram z %s."
+
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
+msgid "Communicating with server."
+msgstr "Komuniciram s strežnikom."
+
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
+msgid "Please wait..."
+msgstr "Prosim, počakajte..."
+
+#: clientgui/AccountManagerProcessingPage.cpp:325
+msgid "An internal server error has occurred.\n"
+msgstr "Pojavila se je notranja napaka strežnika\n"
+
+#: clientgui/AdvancedFrame.cpp:93
+msgid "Connected"
+msgstr "Povezan"
+
+#: clientgui/AdvancedFrame.cpp:101
+msgid "Disconnected"
+msgstr "Odklopljen"
+
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr "Zapri okno %s"
+
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr "Zapusti %s"
+
+#: clientgui/AdvancedFrame.cpp:324 clientgui/BOINCTaskBar.cpp:641
+msgid "E&xit"
+msgstr "Iz&hod"
+
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr "&Projekti\tCtrl-Shitf+P"
+
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr "Prikaži projekte"
+
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr "&Opravila\tCtrl+Shift+T"
+
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr "Prikaži opravila"
+
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr "P&renosi\tCtrl-Shift+X"
+
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr "Prikaži prenose"
+
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr "S&poročila\tCtrl+Shift+M"
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr "Prikaži sporočila"
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr "&Statistika\tCtrl+Shift+S"
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr "Prikaži statistiko"
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr "Poraba &diska\tCtrl+Shift+D"
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr "Prikaži porabo diska"
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "Preprosti &pogled...\tCtrl+Shift+V"
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr "Prikaži preprost uporabniški vmesnik."
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr "Priklopite se na &projekt ali na upravitelja računov..."
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+"Priklopite se na projekt ali upravitelja računov za začetek obdelave dela"
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
+msgid "&Synchronize with %s"
+msgstr "&Sinhroniziraj s %s"
+
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
+msgid "Get current settings from %s"
+msgstr "Dobi trenutne nastavitve od %s"
+
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "Priklopite se na &projekt..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Priklopite se na projekt za začetek dela procesiranja"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "&Nehajte uporabljati %s..."
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Odstrani odjemalca iz nadzora upravitelja računov."
+
+#: clientgui/AdvancedFrame.cpp:432
+msgid "&Run always"
+msgstr "&Poganjaj vedno"
+
+#: clientgui/AdvancedFrame.cpp:433
+msgid "Allow work regardless of preferences"
+msgstr "Dovoli delo, ne glede na nastavitve"
+
+#: clientgui/AdvancedFrame.cpp:437
+msgid "Run based on &preferences"
+msgstr "Poganjaj glede na &nastavitve"
+
+#: clientgui/AdvancedFrame.cpp:438
+msgid "Allow work according to your preferences"
+msgstr "Dovoli delo glede na vaše nastavitve"
+
+#: clientgui/AdvancedFrame.cpp:442
+msgid "&Suspend"
+msgstr "Na ča&kanje"
+
+#: clientgui/AdvancedFrame.cpp:443
+msgid "Stop work regardless of preferences"
+msgstr "Ustavi delo ne glede na nastavitve"
+
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+#, fuzzy
+msgid "Allow GPU work regardless of preferences"
+msgstr "Dovoli delo, ne glede na nastavitve"
+
+#: clientgui/AdvancedFrame.cpp:473
+#, fuzzy
+msgid "Use GPU based on &preferences"
+msgstr "Poganjaj glede na &nastavitve"
+
+#: clientgui/AdvancedFrame.cpp:474
+#, fuzzy
+msgid "Allow GPU work according to your preferences"
+msgstr "Dovoli delo glede na vaše nastavitve"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+#, fuzzy
+msgid "Stop GPU work regardless of preferences"
+msgstr "Ustavi delo ne glede na nastavitve"
+
+#: clientgui/AdvancedFrame.cpp:503
+msgid "&Network activity always available"
+msgstr "Mrež&na aktivnost vedno na voljo"
+
+#: clientgui/AdvancedFrame.cpp:504
+msgid "Allow network activity regardless of preferences"
+msgstr "Dovoli mrežno aktivnost ne glede na nastavitve"
+
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
+msgstr "Mrežna aktivnost glede na &nastavitve"
+
+#: clientgui/AdvancedFrame.cpp:509
+msgid "Allow network activity according to your preferences"
+msgstr "Dovoli mrežno aktivnost glede na vaše nastavitve"
+
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
+msgstr "Mrežna aktivnost na ča&kanju"
+
+#: clientgui/AdvancedFrame.cpp:514
+msgid "Stop BOINC network activity"
+msgstr "Ustavi mrežno aktivnost BOINC"
+
+#: clientgui/AdvancedFrame.cpp:521
+msgid "&Options..."
+msgstr "M&ožnosti"
+
+#: clientgui/AdvancedFrame.cpp:522
+msgid "Configure GUI options and proxy settings"
+msgstr ""
+"Nastavi možnosti grafičnega uporabniškega vmesnika in nastavitve "
+"posredniškega strežnika (proxy)"
+
+#: clientgui/AdvancedFrame.cpp:526
+msgid "&Preferences..."
+msgstr "&Nastavitve..."
+
+#: clientgui/AdvancedFrame.cpp:527
+msgid "Configure local preferences"
+msgstr "Nastavi lokalne nastavitve"
+
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
+msgid "Connect to another computer running %s"
+msgstr "Poveži se na drug računalnik, ki poganja %s"
+
+#: clientgui/AdvancedFrame.cpp:538
+msgid "Select computer..."
+msgstr "Izberi računalnik..."
+
+#: clientgui/AdvancedFrame.cpp:543
+msgid "Shut down connected client..."
+msgstr "Izklopi povezanega odjemalca..."
+
+#: clientgui/AdvancedFrame.cpp:544
+msgid "Shut down the currently connected core client"
+msgstr "Izklopi povezanega odjemalca jedra"
+
+#: clientgui/AdvancedFrame.cpp:548
+msgid "Run CPU &benchmarks"
+msgstr "Poženi meritev &hitrost procesorja"
+
+#: clientgui/AdvancedFrame.cpp:549
+msgid "Runs BOINC CPU benchmarks"
+msgstr "Požene BOINC meritve hitrosti procesorja"
+
+#: clientgui/AdvancedFrame.cpp:553
+msgid "Do network &communication"
+msgstr "Izvedi &komunikacijo po mreži"
+
+#: clientgui/AdvancedFrame.cpp:554
+msgid "Do all pending network communication."
+msgstr "Izvedi vso čakajočo komunikacijo po mreži"
+
+#: clientgui/AdvancedFrame.cpp:558
+msgid "Read config file"
+msgstr "Preberi konfiguracijsko datoteko"
+
+#: clientgui/AdvancedFrame.cpp:559
+msgid "Read configuration info from cc_config.xml."
+msgstr "Preberi konfiguracijske informacije iz cc_config.xml."
+
+#: clientgui/AdvancedFrame.cpp:563
+msgid "Read local prefs file"
+msgstr "Preberi lokalno datoteko z nastavitvami"
+
+#: clientgui/AdvancedFrame.cpp:564
+msgid "Read preferences from global_prefs_override.xml."
+msgstr "Preberi nastavitve iz global_prefs_override.xml."
+
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
+msgid "%s &help"
+msgstr "%s &pomoč"
+
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
+msgid "Show information about %s"
+msgstr "Prikaži informacije o %s"
+
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
+msgid "&%s help"
+msgstr "&%s pomoč"
+
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
+msgid "Show information about the %s"
+msgstr "Prikaži informacije o %s"
+
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
+msgid "%s &website"
+msgstr "%s &spletna stran"
+
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
+msgid "Show information about BOINC and %s"
+msgstr "Prikaži informacije o BOINC in %s"
+
+#: clientgui/AdvancedFrame.cpp:628 clientgui/BOINCTaskBar.cpp:631
+#, c-format
+msgid "&About %s..."
+msgstr "&O %s..."
+
+#: clientgui/AdvancedFrame.cpp:634
+msgid "Licensing and copyright information."
+msgstr "Informacije o licencah in avtorskih pravicah."
+
+#: clientgui/AdvancedFrame.cpp:641
+msgid "&File"
+msgstr "&Datoteka"
+
+#: clientgui/AdvancedFrame.cpp:645
+msgid "&View"
+msgstr "&Pogled"
+
+#: clientgui/AdvancedFrame.cpp:649
+msgid "&Tools"
+msgstr "&Orodja"
+
+#: clientgui/AdvancedFrame.cpp:653
+msgid "&Activity"
+msgstr "&Aktivnost"
+
+#: clientgui/AdvancedFrame.cpp:657
+msgid "A&dvanced"
+msgstr "Nap&redno"
+
+#: clientgui/AdvancedFrame.cpp:661
+msgid "&Help"
+msgstr "Po&moč"
+
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr "Pripenjam se na projekt ali upravitelja računov..."
+
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
+msgid "%s - Detach from %s"
+msgstr "%s - Odpni se od %s"
+
+#: clientgui/AdvancedFrame.cpp:1126
+#, 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 ""
+"ÄŒe nehate uporabljati %s,\n"
+"boste obdržali vse trenutne projekte,\n"
+"vendar jih boste morali upravljati ročno.\n"
+"\n"
+"Ali želite prenehati uporabljati %s?"
+
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
+msgid "%s - Language Selection"
+msgstr "%s - Izbira jezika"
+
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
+msgid ""
+"The %s's default language has been changed, in order for this change to take "
+"affect you must restart the %s."
+msgstr ""
+"Privzeti jezik za %s je bil spremenjen, da to začne veljati morate ponovno "
+"zagnati %s."
+
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - Zaustavi trenutnega odjemalca"
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s bo zaustavil trenutno povezanega odjemalca,\n"
+"in vas vprašal po drugem gostitelju, na katerega naj se poveže.\n"
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Ponoven poskus komunikacije za projekt(e)..."
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
+msgid "%s"
+msgstr "%s"
+
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
+msgid "%s has successfully attached to %s"
+msgstr "%s se je uspešno pripel(-a) na %s"
+
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
+msgid "%s - (%s)"
+msgstr "%s - (%s)"
+
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
+msgid "Connecting to %s"
+msgstr "Povezujem se na %s"
+
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
+msgid "Connected to %s (%s)"
+msgstr "Povezan na %s (%s)"
+
+#: clientgui/AlreadyExistsPage.cpp:182
+msgid "Username already in use"
+msgstr "Uporabniško ime je že v uporabi"
+
+#: clientgui/AlreadyExistsPage.cpp:185
+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 ""
+"Račun s tem uporabniškim imenom že obstaja in ima\n"
+"drugačno geslo od tistega, ki ste ga vnesli.\n"
+"\n"
+"Prosim, obiščite spletno stran projekta in sledite tamkajšnjim navodilom."
+
+#: clientgui/AlreadyExistsPage.cpp:189
+msgid "Email address already in use"
+msgstr "Naslov elektronske pošte je že v uporabi"
+
+#: clientgui/AlreadyExistsPage.cpp:192
+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 ""
+"Račun s tem naslovom elektronske pošte že obstaja in ima\n"
+"drugačno geslo od tistega, ki ste ga vnesli.\n"
+"\n"
+"Prosim, obiščite spletno stran projekta in sledite tamkajšnjim navodilom."
+
+#: clientgui/AsyncRPC.cpp:1207
+msgid "Communicating with BOINC client.  Please wait ..."
+msgstr "Komuniciram z BOINC odjemalcem.  Prosim, počakajte ..."
+
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr "Za&pusti %s"
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr "Za&pusti %s"
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "Prekliči"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
+msgid "%s - Connection Error"
+msgstr "%s - Napaka pri povezavi"
+
+#: clientgui/BOINCBaseFrame.cpp:431
+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 ""
+"Trenutno nimate dovoljenja upravljati odjemalca.\n"
+"Prosim, kontaktirajte skrbnika sistema, da vas doda v uporabniško skupino "
+"'boinc_users'."
+
+#: clientgui/BOINCBaseFrame.cpp:440
+msgid ""
+"Authorization failed connecting to running client.\n"
+"Make sure you start this program in the same directory as the client."
+msgstr ""
+"Avtorizacija je bila neuspešna med povezovanje na delujoči odjemalec.\n"
+"Preverite, da poganjate ta program iz istega imenika kot odjemalca."
+
+#: clientgui/BOINCBaseFrame.cpp:442
+msgid "Authorization failed connecting to running client."
+msgstr "Avtorizacija je bila neuspešna med povezovanjem na delujoči odjemalec."
+
+#: clientgui/BOINCBaseFrame.cpp:450
+msgid "The password you have provided is incorrect, please try again."
+msgstr "Geslo, ki ste ga vnesli, ni pravilno. Prosim, poskusite znova."
+
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
+msgid "%s - Connection Failed"
+msgstr "%s - Povezava ni uspela"
+
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
+msgid ""
+"%s is not able to connect to a %s client.\n"
+"Would you like to try to connect again?"
+msgstr ""
+"%s se ni mogel povezati na odjemalca %s.\n"
+"Se želite poskusiti povezati znova?"
+
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
+msgid "%s - Daemon Start Failed"
+msgstr "%s - Zagon strežniškega procesa (daemon) ni uspel"
+
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
+"%s ni mogel zagnati odjemalca %s.\n"
+"Prosim, poženite Nadzorna plošča->Skrbniška orodja->Storitve in poženite "
+"BOINC storitev."
+
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
+msgid ""
+"%s is not able to start a %s client.\n"
+"Please start the daemon and try again."
+msgstr ""
+"%s ne more zagnati odjemalca %s.\n"
+"Prosim, poženite strežniki proces (daemon) in poskusite znova."
+
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
+msgid "%s - Connection Status"
+msgstr "%s - Status povezave"
+
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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 ""
+"%s trenutno ni povezan na odjemalca %s.\n"
+"Prosim, uporabite 'Napredno/Izberi računalnik'  izbiro menuja, da se "
+"povežete na odjemalca %s.\n"
+"Za povezavo na lokalni računalnik, prosim, uporabite 'localhost' kot ime "
+"gostitelja."
+
+#: clientgui/BOINCBaseView.cpp:723
+msgid "Web sites"
+msgstr "Spletne strani"
+
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
+msgid "%s - Network Status"
+msgstr "%s - status omrežja"
+
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
+msgid "%s needs to connect to the Internet.  Please click to open %s."
+msgstr "%s se mora povezati na internet.  Prosim kliknite, da odprete %s."
+
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
+msgid ""
+"%s is unable to communicate with a project and needs an Internet "
+"connection.\n"
+"Please connect to the Internet, then select the 'Do network communications' "
+"item from the Advanced menu."
+msgstr ""
+"%s ne more komunicirati s projektom in potrebuje internetno povezavo.\n"
+"Prosim povežite se na internet in nato izberite 'Opravi komunikacijo po "
+"mreži' v menuju Napredno."
+
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
+msgid ""
+"%s needs to connect to the Internet.\n"
+"May it do so now?"
+msgstr ""
+"%s se mora povezati na internet.\n"
+"Ali lahko to stori zdaj?"
+
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
+msgid "%s is connecting to the Internet."
+msgstr "%s se povezuje na internet."
+
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
+msgid ""
+"%s couldn't do Internet communication, and no default connection is "
+"selected.\n"
+"Please connect to the Internet, or select a default connection\n"
+"using Advanced/Options/Connections."
+msgstr ""
+"%s ni mogel opraviti komunikacije po internetu, privzeta povezava pa ni "
+"nastavljena.\n"
+"Prosim, povežite se na internet ali izberite privzeto povezavo\n"
+"z uporabo Napredno/Možnosti/Povezave."
+
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
+msgid "%s has successfully connected to the Internet."
+msgstr "%s se je uspešno povezal na internet."
+
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
+msgid "%s failed to connect to the Internet."
+msgstr "%s se ni uspel povezati na internet."
+
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
+msgid ""
+"%s has detected it is now connected to the Internet.\n"
+"Updating all projects and retrying all transfers."
+msgstr ""
+"%s je ugotovil, da je zdaj povezan na internet.\n"
+"Posodobljajo se vsi projekti in ponovno se poskušajo izvesti vsi prenosi."
+
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
+msgid "%s has successfully disconnected from the Internet."
+msgstr "%s se je uspešno odklopil z interneta."
+
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
+msgid "%s failed to disconnected from the Internet."
+msgstr "%s se ni uspel odklopiti z interneta."
+
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+"Trenutno nimate dovoljenja za upravljanje odjemalca.\n"
+"\n"
+"Da poganjate BOINC kot ta uporabnik, prosim:\n"
+"  - ponovno namestite BOINC in odgovorite z \"Da\" na vprašanje o\n"
+"     ne-administrativnih uporabnikih\n"
+" ali\n"
+"  - kontaktirajte vašega sistemskega skrbnika, da vas doda v\n"
+"      uporabniško skupino \"boinc_master\"."
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall "
+"BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"Lastništvo BOINC ali pravice niso prav nastavljene; prosim, ponovno "
+"namestite BOINC.\n"
+"(Koda napake %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
+msgid ""
+"A reboot is required in order for BOINC to run properly.\n"
+"Please reboot your computer and try again."
+msgstr ""
+"Ponovni zagon je potreben, da bo lahko BOINC pravilno tekel.\n"
+"Prosim, ponovno zaženite vaš računalnik in poskusite znova."
+
+#: clientgui/BOINCGUIApp.cpp:379
+msgid "BOINC Manager"
+msgstr "BOINC Upravitelj"
+
+#: clientgui/BOINCGUIApp.cpp:526
+msgid "BOINC Manager was started by the operating system automatically"
+msgstr ""
+"BOINC Upravitelj je bil samodejno pognan s strani operacijskega sistema"
+
+#: clientgui/BOINCGUIApp.cpp:528
+msgid "Startup BOINC so only the system tray icon is visible"
+msgstr ""
+"Poženi BOINC ob zagonu, tako da je vidna samo ikona v sistemskem pladnju."
+
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr "Imenik, ki vsebuje program BOINC Odjemalec."
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr "BOINC podatkovni imenik"
+
+#: clientgui/BOINCGUIApp.cpp:533
+msgid "Startup BOINC with these optional arguments"
+msgstr "Ob zagonu poženi BOINC s temi opcijskimi argumenti."
+
+#: clientgui/BOINCGUIApp.cpp:534
+msgid "disable BOINC security users and permissions"
+msgstr "onemogoči BOINC varnostne uporabnike in dovoljenja"
+
+#: clientgui/BOINCGUIApp.cpp:535
+msgid "set skin debugging mode to enable skin manager error messages"
+msgstr ""
+"nastavi razhroščevalni način preobleke, da omogočite sporočila o napakah "
+"upravitelja preoblek"
+
+#: clientgui/BOINCGUIApp.cpp:725
+msgid "(Automatic Detection)"
+msgstr "(samodejna prepoznava)"
+
+#: clientgui/BOINCGUIApp.cpp:726
+msgid "(Unknown)"
+msgstr "(neznano)"
+
+#: clientgui/BOINCGUIApp.cpp:727
+msgid "(User Defined)"
+msgstr "(določeno s strani uporabnika)"
+
+#: clientgui/BOINCTaskBar.cpp:348
+msgid "Computation is suspended."
+msgstr "Računanje je na čakanju."
+
+#: clientgui/BOINCTaskBar.cpp:356
+msgid "Network activity is suspended."
+msgstr "Mrežna aktivnost je na čakanju."
+
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
+msgid "%s: %.2f%% completed."
+msgstr "%s: %.2f%% dokončano."
+
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
+msgid "%d tasks running."
+msgstr "Poteka %d opravil."
+
+#: clientgui/BOINCTaskBar.cpp:412
+msgid "Reconnecting to client."
+msgstr "Ponovno se povezujem na odjemalca."
+
+#: clientgui/BOINCTaskBar.cpp:418
+msgid "Not connected to a client."
+msgstr "Nisem povezan na odjemalca."
+
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
+msgid "Open %s Web..."
+msgstr "Odpri spletno stran %s..."
+
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
+msgid "Open %s..."
+msgstr "Odpri %s..."
+
+#: clientgui/BOINCTaskBar.cpp:623
+msgid "Snooze"
+msgstr "Dremež"
+
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
+msgid "Failed to attach to project"
+msgstr "Nisem se uspel pripeti na projekt"
+
+#: clientgui/CompletionErrorPage.cpp:204
+msgid "Failed to update account manager"
+msgstr "Nisem uspel posodobiti upravitelja računov"
+
+#: clientgui/CompletionErrorPage.cpp:208
+msgid "Failed to remove account manager"
+msgstr "Nisem uspel odstraniti upravitelja računov"
+
+#: clientgui/CompletionErrorPage.cpp:212
+msgid "Failed to attach to account manager"
+msgstr "Nisem se uspel pripeti na upravitelja računov"
+
+#: clientgui/CompletionErrorPage.cpp:221
+msgid ""
+"An error has occurred;\n"
+"check Messages for details.\n"
+"\n"
+"Click Finish to close."
+msgstr ""
+"Pripetila se je napaka;\n"
+"za podrobnosti preveri Sporočila.\n"
+"\n"
+"Kliknite Končaj, da zaprete."
+
+#: clientgui/CompletionErrorPage.cpp:225 clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246 clientgui/CompletionPage.cpp:295
+msgid "Click Finish to close."
+msgstr "Kliknite Končaj, da zaprete."
+
+#: clientgui/CompletionErrorPage.cpp:234
+msgid "Messages from server:"
+msgstr "Sporočila strežnika:"
+
+#: clientgui/CompletionPage.cpp:208
+msgid "Attached to project"
+msgstr "Pripet na projekt"
+
+#: clientgui/CompletionPage.cpp:214
+msgid "You are now successfully attached to this project."
+msgstr "Zdaj ste se uspešno pripeli na ta projekt."
+
+#: clientgui/CompletionPage.cpp:219
+msgid ""
+"When you click Finish, your web browser will go to a page where\n"
+"you can set your account name and preferences."
+msgstr ""
+"Ko kliknete Končaj, bo vaš spletni brskalnik šel na stran, kjer\n"
+"lahko nastavite vaše uporabniško ime in nastavitve."
+
+#: clientgui/CompletionPage.cpp:236
+#, c-format
+msgid "Update from %s completed."
+msgstr "Posodobitev iz %s je dokončana."
+
+#: clientgui/CompletionPage.cpp:240
+msgid "Update completed."
+msgstr "Posodobitev je dokončana."
+
+#: clientgui/CompletionPage.cpp:257
+#, c-format
+msgid "Attached to %s"
+msgstr "Pripet na %s"
+
+#: clientgui/CompletionPage.cpp:261
+msgid "Attached to account manager"
+msgstr "Pripet na upravitelja računov"
+
+#: clientgui/CompletionPage.cpp:271
+#, c-format
+msgid "Welcome to %s!"
+msgstr "Dobrodošli pri %s!"
+
+#: clientgui/CompletionPage.cpp:285
+#, c-format
+msgid "You are now successfully attached to the %s system."
+msgstr "Zdaj ste uspešno pripeti na sistem %s."
+
+#: clientgui/CompletionPage.cpp:289
+msgid "You are now successfully attached to this account manager."
+msgstr "Zdaj ste uspešno pripeti na ta upravitelj računov."
+
+#: clientgui/DlgAbout.cpp:98
+#, c-format
+msgid "About %s"
+msgstr "O %s"
+
+#: clientgui/DlgAbout.cpp:155
+msgid "Version:"
+msgstr "Različica:"
+
+#: clientgui/DlgAbout.cpp:163
+msgid "wxWidgets Version:"
+msgstr "wxWidgets različica:"
+
+#: clientgui/DlgAbout.cpp:171
+msgid "Copyright:"
+msgstr "Avtorske pravice:"
+
+#: clientgui/DlgAbout.cpp:175
+#, fuzzy
+msgid ""
+"(C) 2003-2010 University of California, Berkeley.\n"
+"All Rights Reserved."
+msgstr ""
+"(C) 2003-2008 University of California, Berkeley.\n"
+"Vse pravice pridržane."
+
+#: clientgui/DlgAbout.cpp:179 clientgui/DlgAbout.cpp:183
+msgid "Berkeley Open Infrastructure for Network Computing"
+msgstr "Berkeleyeva odprta infrastruktura za mrežno računanje"
+
+#: clientgui/DlgAbout.cpp:195 clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120 clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
+msgid "&OK"
+msgstr "&V redu"
+
+#: clientgui/DlgAdvPreferences.cpp:485
+msgid "invalid float"
+msgstr "napačno število s plavajočo vejico"
+
+#: clientgui/DlgAdvPreferences.cpp:486
+msgid "invalid time, format is HH:MM"
+msgstr "napačen čas, format je HH:MM"
+
+#: clientgui/DlgAdvPreferences.cpp:487
+msgid "invalid time interval, format is HH:MM-HH:MM"
+msgstr "napačen časovni interval, format je HH:MM-HH:MM"
+
+#: clientgui/DlgAdvPreferences.cpp:601
+msgid "invalid input value detected"
+msgstr "zaznana je bila napačna vhodna vrednost"
+
+#: clientgui/DlgAdvPreferences.cpp:603
+msgid "Validation Error"
+msgstr "Napaka pri validaciji"
+
+#: clientgui/DlgAdvPreferences.cpp:747
+msgid "Do you really want to clear all local preferences ?"
+msgstr "Res želite počistiti vse lokalne nastavitve?"
+
+#: clientgui/DlgAdvPreferences.cpp:748
+msgid "Confirmation"
+msgstr "Potrditev"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
+msgid "%s - Preferences"
+msgstr "%s - Nastavitve"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:49
+msgid ""
+"This dialog controls preferences for this computer only.\n"
+"Click OK to set preferences.\n"
+"Click Clear to restore web-based settings."
+msgstr ""
+"Ta dialog nadzoruje nastavitve samo za ta računalnik.\n"
+"Kliknite V redu, da nastavite nastavitve.\n"
+"Kliknite Počisti, da obnovite nastavitve temelječe na spletu."
+
+#: clientgui/DlgAdvPreferencesBase.cpp:52
+msgid "Clear"
+msgstr "Počisti"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:53
+msgid "clear all local preferences and close the dialog"
+msgstr "počisti vse lokalne nastavitve in zapri ta dialog"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:76
+msgid "Computing allowed"
+msgstr "Računanje dovoljeno"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:80
+msgid " While computer is on batteries"
+msgstr " Med tem, ko računalnik deluje na baterije"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:83
+msgid ""
+"check this if you want this computer to do work while it runs on batteries"
+msgstr ""
+"obkljukajte to, če želite, da računalnik opravlja delo med tem ko deluje na "
+"baterije"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:89
+msgid " While computer is in use"
+msgstr " Medtem, ko je računalnik v uporabi"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:92
+msgid ""
+"check this if you want this computer to do work even when you're using it"
+msgstr ""
+"obkljukajte to, če želite, da računalnik opravlja delo tudi, ko ga "
+"uporabljate vi"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:98
+msgid " Use GPU while computer is in use"
+msgstr " Uporabi grafični procesor, ko je računalnik v uporabi"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:101
+msgid ""
+"check this if you want your GPU to do work even when you're using the "
+"computer"
+msgstr ""
+"obkljukajte to, če želite uporabiti vaš grafični procesor za delo tudi, ko "
+"računalnik uporabljate vi"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:113
+msgid "Only after computer has been idle for"
+msgstr "Samo, ko je računalnik bil nedejeven že"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:123
+msgid ""
+"do work only after you haven't used the computer for this number of minutes"
+msgstr ""
+"opravljaj delo samo, kadar niste uporabljali računalnik že toliko minut"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
+msgid "minutes"
+msgstr "minut"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+#, fuzzy
+msgid "While processor usage is less than"
+msgstr "uporaba procesorja"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
+msgid "Every day between hours of"
+msgstr "Vsak dan med urami"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:181
+msgid "start work at this time"
+msgstr "prični z delom ob tem času"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
+msgid "and"
+msgstr "in"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:189
+msgid "stop work at this time"
+msgstr "zaključi z delom ob tem času"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
+msgid "(no restriction if equal)"
+msgstr "(če sta enaka, ni omejitve)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
+msgid "Day-of-week override:"
+msgstr "Dan-v-tednu povozi nastavitve:"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
+msgid "check box to specify hours for this day of week"
+msgstr "kliknite tu, da podate ure za ta dan v tednu"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
+msgid "Monday"
+msgstr "ponedeljek"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
+msgid "Tuesday"
+msgstr "torek"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
+msgid "Wednesday"
+msgstr "sreda"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
+msgid "Thursday"
+msgstr "četrtek"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
+msgid "Friday"
+msgstr "petek"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
+msgid "Saturday"
+msgstr "sobota"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
+msgid "Sunday"
+msgstr "nedelja"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:272
+msgid "Other options"
+msgstr "Druge možnosti"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+#, fuzzy
+msgid "Switch between applications every"
+msgstr "Preklopi med aplikacijami vsakih"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:289
+msgid "On multiprocessor systems, use at most"
+msgstr "Na večprocesorskih sistemih uporabi največ"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
+msgid "% of the processors"
+msgstr "% procesorjev"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
+msgid "Use at most"
+msgstr "Uporabi največ"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
+msgid "% CPU time"
+msgstr "% procesorskega časa"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:316
+msgid "processor usage"
+msgstr "uporaba procesorja"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:324
+msgid "General options"
+msgstr "Splošne možnosti"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:331
+msgid "Maximum download rate"
+msgstr "Največja hitrost prejemanja"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
+msgid "KBytes/sec."
+msgstr "KBajtov/sekundo"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:340
+msgid "Maximum upload rate"
+msgstr "Največja hitrost pošiljanja"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:349
+msgid "Connect about every"
+msgstr "Poveži se približno vsakih"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:353
+msgid ""
+"this computer is connected to the Internet about every X days\n"
+"(0 if it's always connected)"
+msgstr ""
+"ta računalnik je povezan na internet približno vsakih X dni\n"
+"(0, če je zmeraj povezan)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:357
+msgid "days"
+msgstr "dni"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:360
+msgid "Additional work buffer"
+msgstr "Dodatni delovni medpomnilnik"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:366
+msgid "days (max. 10)"
+msgstr "dni (največ 10)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:369
+msgid " Skip image file verification"
+msgstr " Preskoči verifikacijo slikovne datoteke"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:371
+msgid "check this if your Internet provider modifies image files"
+msgstr "obkljukajte to, če vaš ponudnik interneta spreminja slikovne datoteke"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:380
+msgid "Connect options"
+msgstr "Možnosti povezave"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:382
+msgid "Confirm before connecting to internet"
+msgstr "Zahtevaj potrditev pred povezavo na internet"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:384
+msgid ""
+"if checked, a confirmation dialog will be displayed before trying to connect "
+"to the Internet"
+msgstr ""
+"če je obkljukano, bo prikazan potrditveni dialog pred poskusom povezave na "
+"internet"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:388
+msgid "Disconnect when done"
+msgstr "Odklopi, ko je končano"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:390
+msgid ""
+"if checked, BOINC hangs up when network usage is done\n"
+"(only relevant for dialup-connection)"
+msgstr ""
+"če je obkljukano, bo BOINC prekinil mrežno povezavo, ko bo pošiljanje "
+"končano\n"
+"(smiselno le za klicne povezave)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:397
+msgid "Network usage allowed"
+msgstr "Dovoljena uporaba mreže"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:406
+msgid "network usage start hour"
+msgstr "začetna ura uporabe mreže"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:414
+msgid "network usage stop hour"
+msgstr "končna ura uporabe mreže"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:499
+msgid "network usage"
+msgstr "uporaba mreže"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:507 clientgui/DlgItemProperties.cpp:213
+msgid "Disk usage"
+msgstr "Poraba diska"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:519
+msgid "the maximum disk space used by BOINC (in Gigabytes)"
+msgstr "največji dovoljeni prostor za uporabo s strani BOINC (v gigabajtih)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:523
+msgid "Gigabytes disk space"
+msgstr "Prostor na disku v gigabajtih"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:526
+msgid "Leave at least"
+msgstr "Pusti vsaj"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:530
+msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
+msgstr "BOINC naj pusti prosto vsaj to količino diska (v gigabajtih)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:534
+msgid "Gigabytes disk space free"
+msgstr "Gigabajtov prostega prostora na disku"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:541
+msgid "BOINC uses at most this percentage of total disk space"
+msgstr "BOINC naj uporablja največ ta odstotek prostora na disku"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
+msgid "% of total disk space"
+msgstr "% skupnega prostora na disku"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr "Opravila nastavijo kontrolno točko na disk največ na vsakih"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:555
+msgid "seconds"
+msgstr "sekund"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
+msgid "% of page file (swap space)"
+msgstr "% izmenjevalne datoteke (navidezni pomnilnik)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:573
+msgid "Memory usage"
+msgstr "Poraba pomnilnika"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
+msgid "% when computer is in use"
+msgstr "%, ko je računalnik v uporabi"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
+msgid "% when computer is idle"
+msgstr "%, ko je računalnik nedejaven"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:603
+msgid " Leave applications in memory while suspended"
+msgstr "Pusti aplikacije v pomnilniku med tem, ko so na čakanju."
+
+#: clientgui/DlgAdvPreferencesBase.cpp:605
+msgid "if checked, suspended work units are left in memory"
+msgstr "če je obkljukano, bodo delovne enote na čakanju ostale v pomnilniku"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:614
+msgid "disk and memory usage"
+msgstr "poraba diska in pomnilnika"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:627
+msgid "OK"
+msgstr "V redu"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:628
+msgid "save all values and close the dialog"
+msgstr "shrani vse vrednosti in zapri dialog"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:633
+msgid "close the dialog without saving"
+msgstr "zapri ta dialog brez shranjevanja"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:637 clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121 clientgui/Localization.cpp:139
+msgid "Help"
+msgstr "Pomoč"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:638
+msgid "shows the preferences web page"
+msgstr "prikaže spletno stran z nastavitvami"
+
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
+msgid "%s - Exit Confirmation"
+msgstr "%s - Potrditev pred izhodom"
+
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
+msgid ""
+"You have requested to exit the %s,\n"
+"which allows you to view and manage\n"
+"the science applications running on your computer.\n"
+"\n"
+"If you also want to stop running the science applications when you\n"
+"exit the Manager, then choose from the following options:"
+msgstr ""
+"Zahtevali ste izhod iz %s,\n"
+"ki vam omogoča videti in upravljati\n"
+"znanstvene aplikacije, ki tečejo na vašem računalniku.\n"
+"\n"
+"Če želite tudi ustaviti delujoče znanstvene aplikacije, ko\n"
+"zapuščate Upravljalca, potem izberite sledeče možnosti:"
+
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
+msgid ""
+"This will shut down %s and its tasks entirely until either the\n"
+"%s application 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 ""
+"To bo v celoti zaustavilo %s in njegova opravila, dokler ali\n"
+"%s aplikacija ali %s ohranjevalnik zaslona spet ne tečeta.\n"
+"\n"
+"V večini primerov je bolje samo zapreti okno %s,\n"
+"namesto izhoda iz aplikacije; to bo omogočalo %s, da poganja\n"
+"svoja opravila ob časih, ki ste jih izbrali v nastavitvah."
+
+#: clientgui/DlgExitMessage.cpp:153
+msgid "Stop running science applications when exiting the Manager"
+msgstr "Zaustavi delujoče znanstvene aplikacije ob izhodu iz Upravitelja"
+
+#: clientgui/DlgExitMessage.cpp:164
+msgid "Remember this decision and do not show this dialog."
+msgstr "Zapomni si to odločitev in ne prikaži tega dialoga."
+
+#: clientgui/DlgExitMessage.cpp:177 clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388 clientgui/DlgSelectComputer.cpp:152
+msgid "&Cancel"
+msgstr "&Prekliči"
+
+#: clientgui/DlgGenericMessage.cpp:112
+msgid "Don't show this dialog again."
+msgstr "Ne prikaži znova tega dialoga."
+
+#: clientgui/DlgItemProperties.cpp:63
+msgid "&Close"
+msgstr "&Zapri"
+
+#: clientgui/DlgItemProperties.cpp:195
+msgid "Properties of project "
+msgstr "Lastnosti projekta"
+
+#: clientgui/DlgItemProperties.cpp:199 clientgui/DlgOptions.cpp:205
+msgid "General"
+msgstr "Splošno"
+
+#: clientgui/DlgItemProperties.cpp:200
+msgid "Master URL"
+msgstr "Glavni URL"
+
+#: clientgui/DlgItemProperties.cpp:201
+msgid "User name"
+msgstr "Uporabniško ime"
+
+#: clientgui/DlgItemProperties.cpp:202
+msgid "Team name"
+msgstr "Ime ekipe"
+
+#: clientgui/DlgItemProperties.cpp:203
+msgid "Resource share"
+msgstr "Delitev sredstev"
+
+#: clientgui/DlgItemProperties.cpp:205
+msgid "Scheduler RPC deferred for"
+msgstr "RPC razvrščevalnika odložena za"
+
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr "Prejemanje datotek odloženo za"
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr "Nalaganje datotek odloženo za"
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr "ID računalnika"
+
+#: clientgui/DlgItemProperties.cpp:215
+msgid "Non CPU intensive"
+msgstr "Ne procesorsko intenzivno"
+
+#: clientgui/DlgItemProperties.cpp:215 clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217 clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219 clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "yes"
+msgstr "da"
+
+#: clientgui/DlgItemProperties.cpp:215 clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217 clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219 clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "no"
+msgstr "ne"
+
+#: clientgui/DlgItemProperties.cpp:216
+msgid "Suspended via GUI"
+msgstr "Dano na čakanje prek grafičnega uporabniškega vmesnika"
+
+#: clientgui/DlgItemProperties.cpp:217
+msgid "Don't request more work"
+msgstr "Ne zahtevaj več dela"
+
+#: clientgui/DlgItemProperties.cpp:218
+msgid "Scheduler call in progress"
+msgstr "Poteka klic razvrščevalnika"
+
+#: clientgui/DlgItemProperties.cpp:219
+msgid "Attached via account manager"
+msgstr "Pripet prek upravitelja računov"
+
+#: clientgui/DlgItemProperties.cpp:220
+msgid "Detach when done"
+msgstr "Odpni se, ko je opravljeno"
+
+#: clientgui/DlgItemProperties.cpp:221
+msgid "Ended"
+msgstr "Končano"
+
+#: clientgui/DlgItemProperties.cpp:222
+msgid "Credit"
+msgstr "Točke"
+
+#: clientgui/DlgItemProperties.cpp:223
+msgid "User"
+msgstr "Uporabnik"
+
+#: clientgui/DlgItemProperties.cpp:230
+msgid "Host"
+msgstr "Gostitelj"
+
+#: clientgui/DlgItemProperties.cpp:239
+msgid "Scheduling"
+msgstr "Razvrščanje"
+
+#: clientgui/DlgItemProperties.cpp:240
+msgid "CPU scheduling priority"
+msgstr "Prioriteta razvrščanja procesorja"
+
+#: clientgui/DlgItemProperties.cpp:241
+msgid "CPU work fetch priority"
+msgstr "Prioriteta prevzemanja dela za procesor"
+
+#: clientgui/DlgItemProperties.cpp:244
+msgid "CPU work fetch deferred for"
+msgstr "Prevzemanje dela za procesor odloženo za"
+
+#: clientgui/DlgItemProperties.cpp:245
+msgid "CPU work fetch deferral interval"
+msgstr "Odložitveni interval prevzemanja dela za procesor"
+
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
+msgid "NVIDIA GPU work fetch priority"
+msgstr "Prioriteta prevzemanja dela za NVIDIA grafični procesor"
+
+#: clientgui/DlgItemProperties.cpp:251
+msgid "NVIDIA GPU work fetch deferred for"
+msgstr "Prevzemanje dela za NVIDIA grafični procesor odloženo za"
+
+#: clientgui/DlgItemProperties.cpp:252
+msgid "NVIDIA GPU work fetch deferral interval"
+msgstr "Odložitveni interval prevzemanja dela za NVIDIA grafični procesor"
+
+#: clientgui/DlgItemProperties.cpp:255
+#, fuzzy
+msgid "ATI GPU scheduling priority"
+msgstr "Prioriteta razvrščanja procesorja"
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr "Prioriteta prevzemanje dela za ATI grafični procesor"
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr "Prevzemanje dela za ATI grafični procesor odloženo za"
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr "Odložitveni interval prevzemanja dela za ATI grafični procesor"
+
+#: clientgui/DlgItemProperties.cpp:262
+msgid "Duration correction factor"
+msgstr "Korekcijski faktor trajanja"
+
+#: clientgui/DlgItemProperties.cpp:272
+msgid "Properties of task "
+msgstr "Lastnosti opravila"
+
+#: clientgui/DlgItemProperties.cpp:276
+msgid "Application"
+msgstr "Aplikacija"
+
+#: clientgui/DlgItemProperties.cpp:277
+msgid "Workunit name"
+msgstr "Ime delovne enote"
+
+#: clientgui/DlgItemProperties.cpp:278
+msgid "State"
+msgstr "Stanje"
+
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr "Prejeto"
+
+#: clientgui/DlgItemProperties.cpp:284
+msgid "Report deadline"
+msgstr "Rok za poročilo"
+
+#: clientgui/DlgItemProperties.cpp:286
+msgid "Resources"
+msgstr "Viri"
+
+#: clientgui/DlgItemProperties.cpp:289
+msgid "CPU time at last checkpoint"
+msgstr "Procesorski čas ob zadnji kontrolni točki"
+
+#: clientgui/DlgItemProperties.cpp:290 clientgui/DlgItemProperties.cpp:305
+msgid "CPU time"
+msgstr "Procesorski čas"
+
+#: clientgui/DlgItemProperties.cpp:292 clientgui/DlgItemProperties.cpp:306
+msgid "Elapsed time"
+msgstr "Pretečeni čas"
+
+#: clientgui/DlgItemProperties.cpp:294
+msgid "Estimated time remaining"
+msgstr "Ocena preostalega časa"
+
+#: clientgui/DlgItemProperties.cpp:295
+msgid "Fraction done"
+msgstr "Opravljeni del"
+
+#: clientgui/DlgItemProperties.cpp:296
+msgid "Virtual memory size"
+msgstr "Velikost navideznega pomnilnika"
+
+#: clientgui/DlgItemProperties.cpp:297
+msgid "Working set size"
+msgstr "Velikost delovne množice"
+
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr "Imenik"
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:400
+msgid "New"
+msgstr "Novo"
+
+#: clientgui/DlgItemProperties.cpp:404
+msgid "Download failed"
+msgstr "Prejemanje ni uspelo"
+
+#: clientgui/DlgItemProperties.cpp:406
+msgid "Downloading"
+msgstr "Prejemam"
+
+#: clientgui/DlgItemProperties.cpp:411
+msgid "Project suspended by user"
+msgstr "Uporabnik je dal projekt na čakanje"
+
+#: clientgui/DlgItemProperties.cpp:413
+msgid "Task suspended by user"
+msgstr "Uporabnik je dal opravilo na čakanje"
+
+#: clientgui/DlgItemProperties.cpp:415
+msgid "Suspended"
+msgstr "Na čakanju"
+
+#: clientgui/DlgItemProperties.cpp:417
+msgid " - on batteries"
+msgstr " - na baterijah"
+
+#: clientgui/DlgItemProperties.cpp:420
+msgid " - user active"
+msgstr " - uporabnik aktiven"
+
+#: clientgui/DlgItemProperties.cpp:423
+msgid " - computation suspended"
+msgstr " - računanje na čakanju"
+
+#: clientgui/DlgItemProperties.cpp:426
+msgid " - time of day"
+msgstr " - čas dneva"
+
+#: clientgui/DlgItemProperties.cpp:429
+msgid " - CPU benchmarks"
+msgstr " - meritve hitrosti procesorja"
+
+#: clientgui/DlgItemProperties.cpp:432
+msgid " - need disk space"
+msgstr " - potrebuje prostor na disku"
+
+#: clientgui/DlgItemProperties.cpp:436
+msgid "Waiting for memory"
+msgstr "ÄŒaka na pomnilnik"
+
+#: clientgui/DlgItemProperties.cpp:438
+msgid "Waiting for shared memory"
+msgstr "ÄŒaka na deljeni pomnilnik"
+
+#: clientgui/DlgItemProperties.cpp:441
+msgid "Running, high priority"
+msgstr "Se izvaja, visoka prioriteta"
+
+#: clientgui/DlgItemProperties.cpp:443
+msgid "Running"
+msgstr "Se izvaja"
+
+#: clientgui/DlgItemProperties.cpp:446
+msgid "Waiting to run"
+msgstr "ÄŒaka na izvajanje"
+
+#: clientgui/DlgItemProperties.cpp:448 clientgui/DlgItemProperties.cpp:451
+msgid "Ready to start"
+msgstr "Pripravljen na pričetek"
+
+#: clientgui/DlgItemProperties.cpp:455
+msgid "Computation error"
+msgstr "Napaka pri računanju"
+
+#: clientgui/DlgItemProperties.cpp:459
+msgid "Upload failed"
+msgstr "Pošiljanje ni uspelo"
+
+#: clientgui/DlgItemProperties.cpp:461
+msgid "Uploading"
+msgstr "Pošilja se"
+
+#: clientgui/DlgItemProperties.cpp:467
+msgid "Aborted by user"
+msgstr "Opuščeno s strani uporabnika"
+
+#: clientgui/DlgItemProperties.cpp:470
+msgid "Aborted by project"
+msgstr "Opuščeno s strani projekta"
+
+#: clientgui/DlgItemProperties.cpp:473
+msgid "Aborted"
+msgstr "Opuščeno"
+
+#: clientgui/DlgItemProperties.cpp:478
+msgid "Acknowledged"
+msgstr "Potrjeno"
+
+#: clientgui/DlgItemProperties.cpp:480
+msgid "Ready to report"
+msgstr "Pripravljen na poročanje"
+
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
+msgid "Error: invalid state '%d'"
+msgstr "Napaka: neveljavno stanje '%d'"
+
+#: clientgui/DlgOptions.cpp:119
+#, c-format
+msgid "%s - Options"
+msgstr "%s - Možnosti"
+
+#: clientgui/DlgOptions.cpp:157
+msgid "Language:"
+msgstr "Jezik:"
+
+#: clientgui/DlgOptions.cpp:164
+msgid "What language should the manager use?"
+msgstr "Kateri jezik naj uporablja upravitelj?"
+
+#: clientgui/DlgOptions.cpp:168
+msgid ""
+"Network reminder interval:\n"
+"(minutes)"
+msgstr ""
+"Interval opomnika mreže:\n"
+"(minute)"
+
+#: clientgui/DlgOptions.cpp:180
+msgid ""
+"How often should the Manager remind you when a network connection is needed?"
+msgstr ""
+"Kako pogosto naj vas Upravitelj opominja, kadar je potrebna mrežna povezava?"
+
+#: clientgui/DlgOptions.cpp:185
+msgid "Run Manager at login?"
+msgstr "Poženi Upravitelja ob prijavi?"
+
+#: clientgui/DlgOptions.cpp:191
+msgid "Run the BOINC Manager when you log on."
+msgstr "Požene BOINC Upravitelja, ko se prijavite."
+
+#: clientgui/DlgOptions.cpp:196
+msgid "Enable Manager exit dialog?"
+msgstr "Omogoči izhodni dialog Upravitelja?"
+
+#: clientgui/DlgOptions.cpp:202
+msgid "Display the exit dialog when shutting down the Manager."
+msgstr "Prikaži izhodni dialog ob zaustavljanju Upravitelja."
+
+#: clientgui/DlgOptions.cpp:213
+msgid "Dial-up and Virtual Private Network settings"
+msgstr "Nastavitve klicnega dostopa in navideznega privatnega omrežja (VPN)"
+
+#: clientgui/DlgOptions.cpp:227
+msgid "&Set Default"
+msgstr "&Nastavi privzeto"
+
+#: clientgui/DlgOptions.cpp:232
+msgid "&Clear Default"
+msgstr "&Počisti privzeto"
+
+#: clientgui/DlgOptions.cpp:239
+msgid "Default Connection:"
+msgstr "Privzeta povezava:"
+
+#: clientgui/DlgOptions.cpp:246
+msgid "Connections"
+msgstr "Povezave"
+
+#: clientgui/DlgOptions.cpp:255
+msgid "Connect via HTTP proxy server"
+msgstr "Poveži se preko HTTP posredniškega strežnika (proxy)"
+
+#: clientgui/DlgOptions.cpp:259
+msgid "HTTP Proxy Server Configuration"
+msgstr "Nastavitve HTTP posredniškega strežnika"
+
+#: clientgui/DlgOptions.cpp:267 clientgui/DlgOptions.cpp:331
+msgid "Address:"
+msgstr "Naslov:"
+
+#: clientgui/DlgOptions.cpp:275 clientgui/DlgOptions.cpp:339
+msgid "Port:"
+msgstr "Vrata:"
+
+#: clientgui/DlgOptions.cpp:283 clientgui/DlgOptions.cpp:347
+msgid "Don't use proxy for:"
+msgstr "Ne uporabljaj posrednika za:"
+
+#: clientgui/DlgOptions.cpp:290 clientgui/DlgOptions.cpp:354
+msgid "Leave these blank if not needed"
+msgstr "Pusti prazno, če ni potrebno"
+
+#: clientgui/DlgOptions.cpp:296 clientgui/DlgOptions.cpp:360
+msgid "User Name:"
+msgstr "Uporabniško ime:"
+
+#: clientgui/DlgOptions.cpp:304 clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
+msgid "Password:"
+msgstr "Geslo:"
+
+#: clientgui/DlgOptions.cpp:311
+msgid "HTTP Proxy"
+msgstr "HTTP posrednik:"
+
+#: clientgui/DlgOptions.cpp:319
+msgid "Connect via SOCKS proxy server"
+msgstr "Poveži se preko SOCKS posredniškega strežnika (proxy)"
+
+#: clientgui/DlgOptions.cpp:323
+msgid "SOCKS Proxy Server Configuration"
+msgstr "Nastavitve SOCKS posredniškega strežnika"
+
+#: clientgui/DlgOptions.cpp:375
+msgid "SOCKS Proxy"
+msgstr "SOCKS posrednik"
+
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
+msgid "%s - Select Computer"
+msgstr "%s - Izberi računalnik"
+
+#: clientgui/DlgSelectComputer.cpp:127
+msgid "Host name:"
+msgstr "Ime gostitelja:"
+
+#: clientgui/hyperlink.cpp:181
+#, c-format
+msgid "%s - Can't find web browser"
+msgstr "%s - Ne najdem spletnega brskalnika"
+
+#: clientgui/hyperlink.cpp:192
+#, c-format
+msgid ""
+"%s tried to display the web page\n"
+"\t%s\n"
+"but couldn't find a web browser.\n"
+"To fix this, set the environment variable\n"
+"BROWSER to the path of your web browser,\n"
+"then restart the %s."
+msgstr ""
+"%s je poskusil prikazati spletno stran\n"
+"\t%s\n"
+"a ni mogel najti spletnega brskalnika.\n"
+"Da to popravite, nastavite spremenljivko okolja\n"
+"BROWSER na pot do vašega spletnega brskalnika,\n"
+"nato pa ponovno zaženite %s."
+
+#: clientgui/Localization.cpp:31 clientgui/Localization.cpp:69
+msgid "Message boards"
+msgstr "Razpravljalnice"
+
+#: clientgui/Localization.cpp:33
+msgid "Correspond with other users on the SETI at home message boards"
+msgstr "Dopisuj si z drugimi uporabniki na SETI at home razpravljalnicah."
+
+#: clientgui/Localization.cpp:37
+msgid "Ask questions and report problems"
+msgstr "Postavi vprašanja in prijavi probleme"
+
+#: clientgui/Localization.cpp:39 clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111 clientgui/Localization.cpp:129
+msgid "Your account"
+msgstr "Vaš račun"
+
+#: clientgui/Localization.cpp:41 clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
+msgid "View your account information and credit totals"
+msgstr "Poglej informacije vašega računa in skupno točk"
+
+#: clientgui/Localization.cpp:43
+msgid "Your preferences"
+msgstr "Vaše nastavitve"
+
+#: clientgui/Localization.cpp:45
+msgid "View and modify your SETI at home account profile and preferences"
+msgstr "Poglej in spremeni vaš SETI at home uporabniški profil in nastavitve"
+
+#: clientgui/Localization.cpp:47 clientgui/Localization.cpp:89
+msgid "Your results"
+msgstr "Vaši rezultati"
+
+#: clientgui/Localization.cpp:49 clientgui/Localization.cpp:91
+msgid "View your last week (or more) of computational results and work"
+msgstr "Poglej zadnji teden (ali dlje) rezultatov računanja in dela"
+
+#: clientgui/Localization.cpp:51 clientgui/Localization.cpp:93
+msgid "Your computers"
+msgstr "Vaši računalniki"
+
+#: clientgui/Localization.cpp:53
+msgid "View a listing of all the computers on which you are running SETI at Home"
+msgstr "Poglej seznam vseh računalnikov, na katerih poganjate SETI at home"
+
+#: clientgui/Localization.cpp:55 clientgui/Localization.cpp:97
+msgid "Your team"
+msgstr "Vaša ekipa"
+
+#: clientgui/Localization.cpp:57 clientgui/Localization.cpp:99
+msgid "View information about your team"
+msgstr "Poglej informacije o vaši ekipi"
+
+#: clientgui/Localization.cpp:61
+msgid "Common questions"
+msgstr "Pogosta vprašanja"
+
+#: clientgui/Localization.cpp:63
+msgid "Read the Einstein at Home Frequently Asked Question list"
+msgstr "Preberi Einstein at Home seznam pogosto zastavljenih vprašanj"
+
+#: clientgui/Localization.cpp:65
+msgid "Screensaver info"
+msgstr "Informacija o ohranjevalniku zaslona"
+
+#: clientgui/Localization.cpp:67
+msgid "Read a detailed description of the Einstein at Home screensaver"
+msgstr "Preberi podrobno razlago Einstein at Home ohranjevalnika zaslona"
+
+#: clientgui/Localization.cpp:71
+msgid ""
+"Correspond with admins and other users on the Einstein at Home message boards"
+msgstr ""
+"Dopisuj si z administratorji in drugimi uporabniki na Einstein at Home forumu"
+
+#: clientgui/Localization.cpp:73
+msgid "Einstein status"
+msgstr "Einsteinov status"
+
+#: clientgui/Localization.cpp:75
+msgid "Current status of the Einstein at Home server"
+msgstr "Trenutni status Einstein at Home strežnika"
+
+#: clientgui/Localization.cpp:77
+msgid "Report problems"
+msgstr "Sporoči probleme"
+
+#: clientgui/Localization.cpp:79
+msgid "A link to the Einstein at Home problems and bug reports message board"
+msgstr "Povezava na Einstein at Home razpravljalnico problemi in sporočanje napak"
+
+#: clientgui/Localization.cpp:83
+msgid "View and modify your Einstein at Home account profile and preferences"
+msgstr "Poglej in spremeni vaš Einstein at Home uporabniški profil in nastavitve"
+
+#: clientgui/Localization.cpp:85
+msgid "Account summary"
+msgstr "Povzetek o računu"
+
+#: clientgui/Localization.cpp:95
+msgid ""
+"View a listing of all the computers on which you are running Einstein at Home"
+msgstr "Poglej seznam vseh računalnikov, na katerih poganjate Einstein at Home"
+
+#: clientgui/Localization.cpp:101
+msgid "LIGO project"
+msgstr "Projekt LIGO"
+
+#: clientgui/Localization.cpp:103
+msgid ""
+"The home page of the Laser Interferometer Gravitational-wave Observatory "
+"(LIGO) project"
+msgstr ""
+"Domača stran Laser Interferometer Gravitational-wave Observatory (LIGO)"
+
+#: clientgui/Localization.cpp:105
+msgid "GEO-600 project"
+msgstr "Projekt GEO-600"
+
+#: clientgui/Localization.cpp:107
+msgid "The home page of the GEO-600 project"
+msgstr "Domača stran projekta GEO-600"
+
+#: clientgui/Localization.cpp:115 clientgui/Localization.cpp:133
+msgid "Team"
+msgstr "Ekipa"
+
+#: clientgui/Localization.cpp:117
+msgid "Info about your Team"
+msgstr "Informacije o vaši ekipi"
+
+#: clientgui/Localization.cpp:123
+msgid "Get help for climateprediction.net"
+msgstr "Dobi pomoč za climateprediction.net"
+
+#: clientgui/Localization.cpp:125
+msgid "News"
+msgstr "Novice"
+
+#: clientgui/Localization.cpp:127
+msgid "climateprediction.net News"
+msgstr "Novice climateprediction.net"
+
+#: clientgui/Localization.cpp:131
+msgid "View your account information, credits, and trickles"
+msgstr "Poglej informacije o vašem računu, zaslugah in korakih"
+
+#: clientgui/Localization.cpp:135
+msgid "Info about your team"
+msgstr "Informacije o vaši ekipi"
+
+#: clientgui/Localization.cpp:141
+msgid "Search for help in our help system"
+msgstr "Poišči pomoč v našem sistemu pomoči"
+
+#: clientgui/Localization.cpp:143
+msgid "Global Statistics"
+msgstr "Globalna statistika"
+
+#: clientgui/Localization.cpp:145
+msgid "Summary statistics for World Community Grid"
+msgstr "Povzetek statistike za World Community Grid"
+
+#: clientgui/Localization.cpp:147
+msgid "My Grid"
+msgstr "Moja mreža"
+
+#: clientgui/Localization.cpp:149
+msgid "Your statistics and settings"
+msgstr "Vaša statistika in nastavitve"
+
+#: clientgui/Localization.cpp:151
+msgid "Device Profiles"
+msgstr "Profili naprav"
+
+#: clientgui/Localization.cpp:153
+msgid "Update your device settings"
+msgstr "Posodobite vaše nastavitve naprav"
+
+#: clientgui/Localization.cpp:155
+msgid "Research"
+msgstr "Raziskave"
+
+#: clientgui/Localization.cpp:157
+msgid "Learn about the projects hosted at World Community Grid"
+msgstr "Izvejte o projektih, ki gostujejo na World Community Grid"
+
+#: clientgui/MainDocument.cpp:536
+msgid "Starting client services; please wait..."
+msgstr "Zaganjam storitve odjemalca; prosim, počakajte..."
+
+#: clientgui/MainDocument.cpp:1073
+msgid "Retrieving system state; please wait..."
+msgstr "Pridobivam stanje sistema; prosim, počakajte..."
+
+#: clientgui/MainDocument.cpp:1082
+msgid "Retrieving host information; please wait..."
+msgstr "Pridobivam informacije o gostitelju; prosim počakajte..."
+
+#: clientgui/NoInternetConnectionPage.cpp:179
+msgid "No Internet connection"
+msgstr "Ni povezave na internet"
+
+#: clientgui/NoInternetConnectionPage.cpp:182
+msgid "Please connect to the Internet and try again."
+msgstr "Prosim, povežite se na internet in poskusite znova."
+
+#: clientgui/NotDetectedPage.cpp:181
+msgid "Project not found"
+msgstr "Projekt ni bil najden"
+
+#: clientgui/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 ""
+"URL, ki ste ga podali, ni od projekta, temelječega na BOINC.\n"
+"\n"
+"Prosim, preverite URL in poskusite znova."
+
+#: clientgui/NotDetectedPage.cpp:188
+msgid "Account manager not found"
+msgstr "Upravitelj računov ni bil najden"
+
+#: clientgui/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 ""
+"URL, ki ste ga podali, ni od na BOINC temelječega upravitelja\n"
+"računov.\n"
+"\n"
+"Prosim, preverite URL in poskusite znova."
+
+#: clientgui/NotFoundPage.cpp:181
+msgid "Login Failed."
+msgstr "Prijava ni uspela."
+
+#: clientgui/NotFoundPage.cpp:185
+msgid "Check the username and password, and try again."
+msgstr "Preverite uporabniško ime in geslo ter poskusite znova."
+
+#: clientgui/NotFoundPage.cpp:189
+msgid "Check the email address and password, and try again."
+msgstr "Preverite naslov elektronske pošte in geslo ter poskusite znova."
+
+#: clientgui/ProjectInfoPage.cpp:259
+msgid "Choose a project"
+msgstr "Izberite projekt"
+
+#: clientgui/ProjectInfoPage.cpp:262
+msgid "To choose a project, click its name or type its URL below."
+msgstr ""
+"Da izberete projekt, kliknite na njegovo ime ali spodaj napišite njegov URL."
+
+#: clientgui/ProjectInfoPage.cpp:265
+msgid "Project &URL:"
+msgstr "&URL projekta:"
+
+#: clientgui/ProjectInfoPage.cpp:393
+msgid ""
+"This project may not have work for your type of computer. Are you sure you "
+"wish to continue?"
+msgstr ""
+"Ta projekt morda nima dela za vaš tip računalnika. Ali ste prepričani, da "
+"želite nadaljevati?"
+
+#: clientgui/ProjectInfoPage.cpp:417
+msgid ""
+"You are already attached to this project. Please choose a different project."
+msgstr "Na ta projekt ste že pripeti. Prosim, izberite drug projekt."
+
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr "Kliknite"
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
+msgid ""
+"Communicating with project\n"
+"Please wait..."
+msgstr ""
+"Komuniciram s projektom\n"
+"Prosim, počakajte..."
+
+#: clientgui/ProjectProcessingPage.cpp:498
+msgid ""
+"Required wizard file(s) are missing from the target server.\n"
+"(lookup_account.php/create_account.php)\n"
+msgstr ""
+"Zahtevane datoteke čarovnika manjkajo na ciljnem strežniku.\n"
+"(lookup_account.php/create_account.php)\n"
+
+#: clientgui/ProxyInfoPage.cpp:195
+msgid "Network communication failure"
+msgstr "Napaka pri komunikaciji po mreži"
+
+#: clientgui/ProxyInfoPage.cpp:199
+#, fuzzy
+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"
+"hen click Back to try again.\n"
+"\n"
+"3) You are using a proxy server.\n"
+"Click Next to configure BOINC's proxy settings."
+msgstr ""
+"World Community Grid - BOINC programska oprema ni uspel komunicirati\n"
+"po internetu. Najbolj verjetni razlogi so:\n"
+"\n"
+"1) Problem pri povezavi.  Preverite vašo mrežno ali modemsko povezavo\n"
+"in nato kliknite Nazaj, da poskusite znova.\n"
+"\n"
+"2) Programska oprema požarnega zidu blokira World Community\n"
+"Grid - BOINC programsko opremo.  Nastavite požarni zid, da dovoli\n"
+"BOINC in BOINC Upravitelju komunicirati na vratih 80 in 443,\n"
+"nato kliknite Nazaj, da poskusite znova.\n"
+"\n"
+"3) Uporabljate posredniški strežnik\n"
+"Kliknite Naprej, da nastavite BOINC nastavitve posredniškega strežnika."
+
+#: clientgui/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 ""
+"BOINC ni uspel komunicirati po internetu.\n"
+"Najbolj verjetni razlogi so:\n"
+"\n"
+"1) Problem pri povezavi. Preverite vašo mrežno ali modemsko povezavo\n"
+"in nato kliknite Nazaj, da poskusite znova.\n"
+"\n"
+"2) Programska oprema požarnega zidu blokira BOINC.\n"
+"Nastavite požarni zid, da dovoli BOINC\n"
+"in BOINC Upravitelju komunicirati na vratih 80,\n"
+"nato kliknite Nazaj, da poskusite znova.\n"
+"\n"
+"3) Uporabljate posredniški strežnik\n"
+"Kliknite Naprej, da nastavite BOINC nastavitve posredniškega strežnika."
+
+#: clientgui/ProxyPage.cpp:331
+msgid "Proxy configuration"
+msgstr "Nastavitve posredniškega strežnika"
+
+#: clientgui/ProxyPage.cpp:334
+msgid "HTTP proxy"
+msgstr "HTTP posrednik"
+
+#: clientgui/ProxyPage.cpp:337 clientgui/ProxyPage.cpp:357
+msgid "Server:"
+msgstr "Strežnik:"
+
+#: clientgui/ProxyPage.cpp:350
+msgid "Autodetect"
+msgstr "Samodejno prepoznaj"
+
+#: clientgui/ProxyPage.cpp:354
+msgid "SOCKS proxy"
+msgstr "SOCKS posrednik"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr "Napredni pogled...\\Ctrl+Shift+A"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr "Prikaži napredni (dostopen) grafični vmesnik."
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
+msgid "&%s"
+msgstr "&%s"
+
+#: clientgui/sg_ClientStateIndicator.cpp:288
+msgid "Retrieving current status."
+msgstr "Pridobivam trenutni status."
+
+#: clientgui/sg_ClientStateIndicator.cpp:291
+msgid "You don't have any projects.  Please Add a Project."
+msgstr "Nimate projektov.  Prosimo dodajte projekt."
+
+#: clientgui/sg_ClientStateIndicator.cpp:294
+msgid "Downloading work from the server."
+msgstr "Prejemam delo s strežnika."
+
+#: clientgui/sg_ClientStateIndicator.cpp:299
+msgid "Processing Suspended:  Running On Batteries."
+msgstr "Obdelava na čakanju:  Teče na baterijah."
+
+#: clientgui/sg_ClientStateIndicator.cpp:301
+msgid "Processing Suspended:  User Active."
+msgstr "Obdelava na čakanju:  Uporabnik aktiven."
+
+#: clientgui/sg_ClientStateIndicator.cpp:303
+msgid "Processing Suspended:  User paused processing."
+msgstr "Obdelava na čakanju:  Na željo uporabnika."
+
+#: clientgui/sg_ClientStateIndicator.cpp:305
+msgid "Processing Suspended:  Time of Day."
+msgstr "Obdelava na čakanju:  Čas dneva."
+
+#: clientgui/sg_ClientStateIndicator.cpp:307
+msgid "Processing Suspended:  Benchmarks Running."
+msgstr "Obdelava na čakanju:  Potekajo meritve hitrosti."
+
+#: clientgui/sg_ClientStateIndicator.cpp:309
+msgid "Processing Suspended."
+msgstr "Obdelava na čakanju."
+
+#: clientgui/sg_ClientStateIndicator.cpp:313
+msgid "Waiting to contact project servers."
+msgstr "Čakam, da kontaktiram strežnike projektov."
+
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
+msgid "Retrieving current status"
+msgstr "Pridobivam trenutni status"
+
+#: clientgui/sg_ClientStateIndicator.cpp:320
+msgid "No work available to process"
+msgstr "Na voljo ni dela za obdelati."
+
+#: clientgui/sg_ClientStateIndicator.cpp:322
+msgid "Unable to connect to the core client"
+msgstr "Ne morem se povezati na odjemalca jedra"
+
+#: clientgui/sg_DlgMessages.cpp:107
+msgid "Project"
+msgstr "Projekt"
+
+#: clientgui/sg_DlgMessages.cpp:108
+msgid "Time"
+msgstr "ÄŒas"
+
+#: clientgui/sg_DlgMessages.cpp:109
+msgid "Message"
+msgstr "Sporočilo"
+
+#: clientgui/sg_DlgMessages.cpp:177 clientgui/sg_DlgMessages.cpp:181
+msgid "Copy all the messages to the clipboard."
+msgstr "Kopiraj vsa sporočila na odložišče."
+
+#: clientgui/sg_DlgMessages.cpp:202 clientgui/sg_DlgMessages.cpp:210
+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 ""
+"Kopiraj označena sporočila na odložišče. Označite lahko več sporočil s tem, "
+"da držite pritisnjeno shift ali ctrl tipko med klikanjem na sporočila."
+
+#: clientgui/sg_DlgMessages.cpp:204 clientgui/sg_DlgMessages.cpp:212
+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 ""
+"Kopiraj označena sporočila na odložišče. Označite lahko več sporočil s tem, "
+"da držite pritisnjeno shift ali ctrl tipko med klikanjem na sporočila."
+
+#: clientgui/sg_DlgMessages.cpp:252 clientgui/sg_DlgPreferences.cpp:509
+msgid "Get help with BOINC"
+msgstr "Dobi pomoč za BOINC"
+
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
+msgid "%s - Messages"
+msgstr "%s - Sporočila"
+
+#: clientgui/sg_DlgPreferences.cpp:95
+msgid "100 MB"
+msgstr "100 MB"
+
+#: clientgui/sg_DlgPreferences.cpp:96
+msgid "200 MB"
+msgstr "200 MB"
+
+#: clientgui/sg_DlgPreferences.cpp:97
+msgid "500 MB"
+msgstr "500 MB"
+
+#: clientgui/sg_DlgPreferences.cpp:98
+msgid "1 GB"
+msgstr "1 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:99
+msgid "2 GB"
+msgstr "2 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:100
+msgid "5 GB"
+msgstr "5 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:101
+msgid "10 GB"
+msgstr "10 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:102
+msgid "20 GB"
+msgstr "20 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:103
+msgid "50 GB"
+msgstr "50 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:104
+msgid "100 GB"
+msgstr "100 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:135
+msgid "10%"
+msgstr "10%"
+
+#: clientgui/sg_DlgPreferences.cpp:136
+msgid "20%"
+msgstr "20%"
+
+#: clientgui/sg_DlgPreferences.cpp:137
+msgid "30%"
+msgstr "30%"
+
+#: clientgui/sg_DlgPreferences.cpp:138
+msgid "40%"
+msgstr "40%"
+
+#: clientgui/sg_DlgPreferences.cpp:139
+msgid "50%"
+msgstr "50%"
+
+#: clientgui/sg_DlgPreferences.cpp:140
+msgid "60%"
+msgstr "60%"
+
+#: clientgui/sg_DlgPreferences.cpp:141
+msgid "70%"
+msgstr "70%"
+
+#: clientgui/sg_DlgPreferences.cpp:142
+msgid "80%"
+msgstr "80%"
+
+#: clientgui/sg_DlgPreferences.cpp:143
+msgid "90%"
+msgstr "90%"
+
+#: clientgui/sg_DlgPreferences.cpp:144
+msgid "100%"
+msgstr "100%"
+
+#: clientgui/sg_DlgPreferences.cpp:169
+msgid "1"
+msgstr "1"
+
+#: clientgui/sg_DlgPreferences.cpp:170
+msgid "3"
+msgstr "3"
+
+#: clientgui/sg_DlgPreferences.cpp:171
+msgid "5"
+msgstr "5"
+
+#: clientgui/sg_DlgPreferences.cpp:172
+msgid "10"
+msgstr "10"
+
+#: clientgui/sg_DlgPreferences.cpp:173
+msgid "15"
+msgstr "15"
+
+#: clientgui/sg_DlgPreferences.cpp:174
+msgid "30"
+msgstr "30"
+
+#: clientgui/sg_DlgPreferences.cpp:175
+msgid "60"
+msgstr "60"
+
+#: clientgui/sg_DlgPreferences.cpp:284
+msgid "Skin"
+msgstr "Preobleka"
+
+#: clientgui/sg_DlgPreferences.cpp:291
+msgid "Skin:"
+msgstr "Preobleka:"
+
+#: clientgui/sg_DlgPreferences.cpp:307
+msgid "Preferences"
+msgstr "Nastavitve"
+
+#: clientgui/sg_DlgPreferences.cpp:324
+msgid "I want to customize my preferences for this computer only."
+msgstr "Želim prikrojiti moje nastavitve samo za ta računalnik."
+
+#: clientgui/sg_DlgPreferences.cpp:333
+msgid "Customized Preferences"
+msgstr "Prikrojene nastavitve"
+
+#: clientgui/sg_DlgPreferences.cpp:349
+msgid "Do work only between:"
+msgstr "Opravljaj delo le med:"
+
+#: clientgui/sg_DlgPreferences.cpp:371
+msgid "Connect to internet only between:"
+msgstr "Poveži se na internet samo med:"
+
+#: clientgui/sg_DlgPreferences.cpp:393 clientgui/sg_DlgPreferences.cpp:410
+msgid "Use no more than:"
+msgstr "Ne uporabi več kot:"
+
+#: clientgui/sg_DlgPreferences.cpp:406
+msgid "of disk space"
+msgstr "prostora na disku"
+
+#: clientgui/sg_DlgPreferences.cpp:423
+msgid "of the processor"
+msgstr "procesorskega časa"
+
+#: clientgui/sg_DlgPreferences.cpp:427
+msgid "Do work while on battery?"
+msgstr "Opravljati delo med delovanjem na baterije?"
+
+#: clientgui/sg_DlgPreferences.cpp:440
+msgid "Do work after idle for:"
+msgstr "Opravljati delo, ko je neaktiven že:"
+
+#: clientgui/sg_DlgPreferences.cpp:678 clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749 clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765 clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927 clientgui/sg_DlgPreferences.cpp:938
+msgid "Anytime"
+msgstr "Kdajkoli"
+
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
+msgid "%d MB"
+msgstr "%d MB"
+
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
+msgid "%4.2f GB"
+msgstr "%4.2f GB"
+
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
+msgid "%d%%"
+msgstr "%d%%"
+
+#: clientgui/sg_DlgPreferences.cpp:864
+msgid "0 (Run Always)"
+msgstr "0 (Vedno naj teče)"
+
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
+msgid "%d"
+msgstr "%d"
+
+#: clientgui/sg_ImageButton.cpp:90
+msgid "Paused: Other work running"
+msgstr "Na pavzi: teče drugo delo"
+
+#: clientgui/sg_ImageButton.cpp:92
+msgid "Paused: User initiatied.  Click 'Resume' to continue"
+msgstr "Na pavzi: na željo uporabnika.  Za nadaljevanje kliknite 'Nadaljuj'."
+
+#: clientgui/sg_ImageButton.cpp:94
+msgid "Paused: User active"
+msgstr "Na pavzi: uporabnik aktiven"
+
+#: clientgui/sg_ImageButton.cpp:96
+msgid "Paused: Computer on battery"
+msgstr "Na pavzi: računalnik dela na baterije"
+
+#: clientgui/sg_ImageButton.cpp:98
+msgid "Paused: Time of Day"
+msgstr "Na pavzi: čas dneva"
+
+#: clientgui/sg_ImageButton.cpp:100
+msgid "Paused: Benchmarks running"
+msgstr "Na pavzi: potekajo meritve hitrosti"
+
+#: clientgui/sg_ImageButton.cpp:102
+msgid "Paused"
+msgstr "Na pavzi"
+
+#: clientgui/sg_ImageButton.cpp:104
+msgid "Paused: Application start delayed"
+msgstr "Na pavzi: odložen pričetek aplikacije"
+
+#: clientgui/sg_ImageButton.cpp:132
+msgid "Click to show project graphics"
+msgstr "Kliknite za prikaz grafike projekta"
+
+#: clientgui/sg_ProjectsComponent.cpp:106
+msgid "Attach to an additional project"
+msgstr "Priklopite se na dodaten projekt"
+
+#: clientgui/sg_ProjectsComponent.cpp:123
+msgid "Synchronize projects with account manager system"
+msgstr "Sinhronizirajte projekte s sistemom upravljanja računov"
+
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
+msgid "Open a window to view messages"
+msgstr "Odprite okno za pregled sporočil"
+
+#: clientgui/sg_ProjectsComponent.cpp:223
+msgid "Stop all activity"
+msgstr "Ustavi vse aktivnosti"
+
+#: clientgui/sg_ProjectsComponent.cpp:235
+msgid "Resume activity"
+msgstr "Nadaljuj aktivnosti"
+
+#: clientgui/sg_ProjectsComponent.cpp:252
+msgid "Open a window to set your preferences"
+msgstr "Odprite okno, da nastavite svoje nastavitve"
+
+#: clientgui/sg_ProjectsComponent.cpp:269
+msgid "Switch to the BOINC advanced view"
+msgstr "Preklopite na BOINC napredni pogled"
+
+#: clientgui/sg_ProjectsComponent.cpp:296
+msgid "My Projects:"
+msgstr "Moji projekti:"
+
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
+msgid "%s. Work done by %s: %0.2f"
+msgstr "%s. Delo opravljeno s strani %s: %0.2f"
+
+#: clientgui/sg_StatImageLoader.cpp:154
+msgid "Remove Project"
+msgstr "Odstrani projekt"
+
+#: clientgui/sg_StatImageLoader.cpp:217 clientgui/ViewProjects.cpp:490
+#, c-format
+msgid "Are you sure you want to detach from project '%s'?"
+msgstr "Ali ste prepričani, da se želite odpeti od projekta '%s'?"
+
+#: clientgui/sg_StatImageLoader.cpp:223 clientgui/ViewProjects.cpp:496
+msgid "Detach from Project"
+msgstr "Odpni se od projekta"
+
+#: clientgui/sg_ViewTabPage.cpp:138 clientgui/sg_ViewTabPage.cpp:278
+#, c-format
+msgid "%.1lf"
+msgstr "%.1lf"
+
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
+msgid "%d hr %d min %d sec"
+msgstr "%d ur %d minut %d sekund"
+
+#: clientgui/sg_ViewTabPage.cpp:421
+msgid "Are you sure you want to display graphics on a remote machine?"
+msgstr ""
+"Ali ste prepričani, da želite prikazati grafiko na oddaljenem računalniku?"
+
+#: clientgui/sg_ViewTabPage.cpp:422
+msgid "Show graphics"
+msgstr "Prikaži grafiko"
+
+#: clientgui/sg_ViewTabPage.cpp:444
+msgid "Application: "
+msgstr "Aplikacija: "
+
+#: clientgui/sg_ViewTabPage.cpp:447 clientgui/sg_ViewTabPage.cpp:451
+msgid "Time Remaining: "
+msgstr "Preostali čas: "
+
+#: clientgui/sg_ViewTabPage.cpp:450
+msgid "Elapsed Time: "
+msgstr "Pretečeni čas: "
+
+#: clientgui/TermsOfUsePage.cpp:218
+msgid "Terms of Use"
+msgstr "Pogoji uporabe"
+
+#: clientgui/TermsOfUsePage.cpp:222
+msgid "Please read the following terms of use:"
+msgstr "Prosim, preberite sledeče pogoje uporabe:"
+
+#: clientgui/TermsOfUsePage.cpp:231
+msgid "I agree to the terms of use."
+msgstr "Strinjam se s pogoji uporabe."
+
+#: clientgui/TermsOfUsePage.cpp:237
+msgid "I do not agree with the terms of use."
+msgstr "Ne strinjam se s pogoji uporabe."
+
+#: clientgui/UnavailablePage.cpp:183
+msgid "Project temporarily unavailable"
+msgstr "Projekt začasno ni na voljo"
+
+#: clientgui/UnavailablePage.cpp:186
+msgid ""
+"The project is temporarily unavailable.\n"
+"\n"
+"Please try again later."
+msgstr ""
+"Projekt začasno ni na voljo.\n"
+"\n"
+"Prosim, poskusite kasneje."
+
+#: clientgui/UnavailablePage.cpp:190
+msgid "Account manager temporarily unavailable"
+msgstr "Upravitelj računov začasno ni na voljo"
+
+#: clientgui/UnavailablePage.cpp:193
+msgid ""
+"The account manager is temporarily unavailable.\n"
+"\n"
+"Please try again later."
+msgstr ""
+"Upravitelj računov začasno ni na voljo.\n"
+"\n"
+"Prosim, poskusite kasneje."
+
+#: clientgui/ValidateAccountKey.cpp:68
+msgid "Please specify an account key to continue."
+msgstr "Za nadaljevanje, prosim, podajte ključ računa. "
+
+#: clientgui/ValidateAccountKey.cpp:71
+msgid "Invalid Account Key; please enter a valid Account Key"
+msgstr "Napačen ključ računa; prosim vnesite veljaven ključ računa."
+
+#: clientgui/ValidateAccountKey.cpp:82 clientgui/ValidateEmailAddress.cpp:86
+msgid "Validation conflict"
+msgstr "Konflikt pri validaciji"
+
+#: clientgui/ValidateEmailAddress.cpp:72
+msgid "Please specify an email address"
+msgstr "Prosim, vnesite naslov elektronske pošte"
+
+#: clientgui/ValidateEmailAddress.cpp:75
+msgid "Invalid email address; please enter a valid email address"
+msgstr ""
+"Napačen naslov elektronske pošte; prosim vnesite pravilen naslov elektronske "
+"pošte"
+
+#: clientgui/ValidateURL.cpp:69
+msgid "Missing URL"
+msgstr "Manjkajoč URL"
+
+#: clientgui/ValidateURL.cpp:70
+msgid ""
+"Please specify a URL.\n"
+"For example:\n"
+"http://www.example.com/"
+msgstr ""
+"Prosim podajte URL.\n"
+"Na primer:\n"
+"http://www.primer.si/"
+
+#: clientgui/ValidateURL.cpp:83 clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91 clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107 clientgui/ValidateURL.cpp:110
+msgid "Invalid URL"
+msgstr "Napačen URL"
+
+#: clientgui/ValidateURL.cpp:84 clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
+msgid ""
+"Please specify a valid URL.\n"
+"For example:\n"
+"http://boincproject.example.com"
+msgstr ""
+"Prosim podajte veljaven URL.\n"
+"Na primer:\n"
+"http://www.primer.si/"
+
+#: clientgui/ValidateURL.cpp:104 clientgui/ValidateURL.cpp:108
+#, c-format
+msgid "'%s' does not contain a valid host name."
+msgstr "'%s' ne vsebuje veljavnega imena gostitelja."
+
+#: clientgui/ValidateURL.cpp:111
+#, c-format
+msgid "'%s' does not contain a valid path."
+msgstr "'%s' ne vsebuje veljavne poti."
+
+#: clientgui/ViewMessages.cpp:84 clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
+msgid "Commands"
+msgstr "Ukazi"
+
+#: clientgui/ViewMessages.cpp:88 clientgui/ViewMessagesGrid.cpp:101
+msgid "Copy all messages"
+msgstr "Kopiraj vsa sporočila"
+
+#: clientgui/ViewMessages.cpp:95 clientgui/ViewMessagesGrid.cpp:108
+msgid "Copy selected messages"
+msgstr "Kopiraj izbrana sporočila"
+
+#: clientgui/ViewMessages.cpp:106 clientgui/ViewMessages.cpp:502
+msgid "Show only this project"
+msgstr "Prikaži samo ta projekt"
+
+#: clientgui/ViewMessages.cpp:107 clientgui/ViewMessages.cpp:503
+msgid "Show only the messages for the selected project."
+msgstr "Prikaži samo sporočila za izbrani projekt."
+
+#: clientgui/ViewMessages.cpp:164 clientgui/ViewMessagesGrid.cpp:157
+msgid "Messages"
+msgstr "Sporočila"
+
+#: clientgui/ViewMessages.cpp:187 clientgui/ViewMessagesGrid.cpp:179
+msgid "Copying all messages to the clipboard..."
+msgstr "Kopiram vsa sporočila na odložišče..."
+
+#: clientgui/ViewMessages.cpp:223
+msgid "Copying selected messages to the clipboard..."
+msgstr "Kopiraj izbrana sporočila na odložišče..."
+
+#: clientgui/ViewMessages.cpp:286
+msgid "Filtering messages..."
+msgstr "Filtriram sporočila..."
+
+#: clientgui/ViewMessages.cpp:494
+msgid "Show all messages"
+msgstr "Prikaži vsa sporočila"
+
+#: clientgui/ViewMessages.cpp:495
+msgid "Show messages for all projects."
+msgstr "Prikaži sporočila za vse projekte."
+
+#: clientgui/ViewMessagesGrid.cpp:128
+msgid "ID"
+msgstr "ID"
+
+#: clientgui/ViewMessagesGrid.cpp:128
+msgid "Priority"
+msgstr "Prioriteta"
+
+#: clientgui/ViewMessagesGrid.cpp:151
+msgid "MessagesGrid"
+msgstr "Mreža sporočil"
+
+#: clientgui/ViewMessagesGrid.cpp:209
+msgid "Copying selected messages to Clipboard..."
+msgstr "Kopiram izbrana sporočila na odložišče..."
+
+#: clientgui/ViewMessagesGrid.cpp:396
+msgid "Info"
+msgstr "Informacije"
+
+#: clientgui/ViewMessagesGrid.cpp:399
+msgid "Warning"
+msgstr "Opozorilo"
+
+#: clientgui/ViewMessagesGrid.cpp:403
+msgid "Error"
+msgstr "Napaka"
+
+#: clientgui/ViewNews.cpp:76
+msgid "News Feeds"
+msgstr "Viri novic"
+
+#: clientgui/ViewNews.cpp:80
+msgid "BOINC"
+msgstr "BOINC"
+
+#: clientgui/ViewNews.cpp:81
+msgid "Display the latest news about BOINC"
+msgstr "Prikaži najnovejše novice o BOINC"
+
+#: clientgui/ViewNews.cpp:87
+msgid "BOINC Website"
+msgstr "BOINC spletna stran"
+
+#: clientgui/ViewNews.cpp:88
+msgid "Display the latest news about BOINC from the BOINC website"
+msgstr "Prikaži zadnje novice o BOINC s spletne strani BOINC"
+
+#: clientgui/ViewProjects.cpp:173
+msgid "Update"
+msgstr "Posodobi"
+
+#: clientgui/ViewProjects.cpp:174
+msgid ""
+"Report all completed tasks, get latest credit, get latest preferences, and "
+"possibly get more tasks."
+msgstr ""
+"Poročaj o vseh opravljenih opravilih, dobi najnovejše zasluge, dobi "
+"najnovejše nastavitve in morda dobi več opravil."
+
+#: clientgui/ViewProjects.cpp:180 clientgui/ViewProjects.cpp:707
+msgid "Suspend"
+msgstr "Daj na čakanje"
+
+#: clientgui/ViewProjects.cpp:181 clientgui/ViewProjects.cpp:707
+msgid "Suspend tasks for this project."
+msgstr "Daj opravila tega projekta na čakanje."
+
+#: clientgui/ViewProjects.cpp:187 clientgui/ViewProjects.cpp:726
+msgid "No new tasks"
+msgstr "Ni novih opravil"
+
+#: clientgui/ViewProjects.cpp:188
+msgid "Don't get new tasks for this project."
+msgstr "Ne dobi novih opravil za ta projekt."
+
+#: clientgui/ViewProjects.cpp:194
+msgid "Reset project"
+msgstr "Resetiraj projekt"
+
+#: clientgui/ViewProjects.cpp:195
+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 ""
+"Briše vse datoteke in opravila povezana s tem projektom in dobi nova "
+"opravila.  Lahko najprej posodobite projekt, da poročate o morebitnih "
+"opravljenih opravilih."
+
+#: clientgui/ViewProjects.cpp:201
+msgid "Detach"
+msgstr "Odpni"
+
+#: clientgui/ViewProjects.cpp:202
+msgid ""
+"Detach computer from this project.  Tasks in progress will be lost (use "
+"'Update' first to report any completed tasks)."
+msgstr ""
+"Odklopi računalnik s tega projekta.  Opravila, ki potekajo, bodo izgubljena "
+"(najprej uporabite 'Posodobi' za poročanje o morebitnih opravljenih "
+"opravilih)."
+
+#: clientgui/ViewProjects.cpp:208
+msgid "Properties"
+msgstr "Lastnosti"
+
+#: clientgui/ViewProjects.cpp:209
+msgid "Show project details."
+msgstr "Prikaži podrobnosti projekta."
+
+#: clientgui/ViewProjects.cpp:219
+msgid "Account"
+msgstr "Račun"
+
+#: clientgui/ViewProjects.cpp:221
+msgid "Work done"
+msgstr "Opravljeno delo"
+
+#: clientgui/ViewProjects.cpp:222
+msgid "Avg. work done"
+msgstr "Povprečje opravljenega dela"
+
+#: clientgui/ViewProjects.cpp:224
+msgid "Status"
+msgstr "Status"
+
+#: clientgui/ViewProjects.cpp:249
+msgid "Projects"
+msgstr "Projekti"
+
+#: clientgui/ViewProjects.cpp:296
+msgid "Updating project..."
+msgstr "Posodobljam projekt..."
+
+#: clientgui/ViewProjects.cpp:338
+msgid "Resuming project..."
+msgstr "Nadaljujem projekt..."
+
+#: clientgui/ViewProjects.cpp:342
+msgid "Suspending project..."
+msgstr "Dajem projekt na čakanje..."
+
+#: clientgui/ViewProjects.cpp:379
+msgid "Telling project to allow additional task downloads..."
+msgstr "Sporočam projektu, da je dovoljeno prejemanje dodatnih opravil..."
+
+#: clientgui/ViewProjects.cpp:383
+msgid "Telling project to not fetch any additional tasks..."
+msgstr "Sporočam projektu, naj ne pobira dodatnih opravil..."
+
+#: clientgui/ViewProjects.cpp:419
+msgid "Resetting project..."
+msgstr "Resetiram projekt..."
+
+#: clientgui/ViewProjects.cpp:432
+#, c-format
+msgid "Are you sure you want to reset project '%s'?"
+msgstr "Ali ste prepričani, da želite resetirati projekt '%s'?"
+
+#: clientgui/ViewProjects.cpp:438
+msgid "Reset Project"
+msgstr "Resetiraj projekt"
+
+#: clientgui/ViewProjects.cpp:477
+msgid "Detaching from project..."
+msgstr "Odpenjam se od projekta..."
+
+#: clientgui/ViewProjects.cpp:537
+msgid "Launching browser..."
+msgstr "Zaganjam brskalnik..."
+
+#: clientgui/ViewProjects.cpp:703
+msgid "Resume"
+msgstr "Nadaljuj"
+
+#: clientgui/ViewProjects.cpp:703
+msgid "Resume tasks for this project."
+msgstr "Nadaljuj opravila tega projekta."
+
+#: clientgui/ViewProjects.cpp:722
+msgid "Allow new tasks"
+msgstr "Dovoli nova opravila"
+
+#: clientgui/ViewProjects.cpp:722
+msgid "Allow fetching new tasks for this project."
+msgstr "Dovoli pobiranje novih opravil za ta projekt."
+
+#: clientgui/ViewProjects.cpp:726
+msgid "Don't fetch new tasks for this project."
+msgstr "Ne poberi novih opravil za ta projekt."
+
+#: clientgui/ViewProjects.cpp:1052
+msgid "Suspended by user"
+msgstr "Uporabnik dal na čakanje"
+
+#: clientgui/ViewProjects.cpp:1055
+msgid "Won't get new tasks"
+msgstr "Ne bom pridobil novih opravil"
+
+#: clientgui/ViewProjects.cpp:1058
+msgid "Project ended - OK to detach"
+msgstr "Projekt končan - lahko se odpne"
+
+#: clientgui/ViewProjects.cpp:1061
+msgid "Will detach when tasks done"
+msgstr "Odpel se bom, ko bodo opravila opravljena"
+
+#: clientgui/ViewProjects.cpp:1064
+msgid "Scheduler request pending"
+msgstr "Čakajoča zahteva razvrščevalnika"
+
+#: clientgui/ViewProjects.cpp:1068
+msgid "Scheduler request in progress"
+msgstr "Poteka zahteva razvrščevalnika"
+
+#: clientgui/ViewProjects.cpp:1074
+msgid "Communication deferred "
+msgstr "Komunikacija odložena "
+
+#: clientgui/ViewProjectsGrid.cpp:193
+msgid "ProjectsGrid"
+msgstr "Mreža projektov"
+
+#: clientgui/ViewResources.cpp:61
+msgid "Total disk usage"
+msgstr "Skupna poraba diska"
+
+#: clientgui/ViewResources.cpp:82
+msgid "Disk usage by BOINC projects"
+msgstr "Poraba diska s strani BOINC projektov"
+
+#: clientgui/ViewResources.cpp:117
+msgid "Disk"
+msgstr "Disk"
+
+#: clientgui/ViewResources.cpp:223
+msgid "not attached to any BOINC project: 0 bytes"
+msgstr "nisem priklopljen na noben BOINC projekt: 0 bajtov"
+
+#: clientgui/ViewResources.cpp:260
+msgid "used by BOINC: "
+msgstr "BOINC uporablja: "
+
+#: clientgui/ViewResources.cpp:270
+msgid "free, available to BOINC: "
+msgstr "prosto, na voljo za BOINC: "
+
+#: clientgui/ViewResources.cpp:280
+msgid "free, not available to BOINC: "
+msgstr "prosto, ni na voljo za BOINC: "
+
+#: clientgui/ViewResources.cpp:290
+msgid "free: "
+msgstr "prosto: "
+
+#: clientgui/ViewResources.cpp:300
+msgid "used by other programs: "
+msgstr "uporabljajo drugi programi: "
+
+#: clientgui/ViewStatistics.cpp:1142
+msgid "User Total"
+msgstr "Skupaj od uporabnika"
+
+#: clientgui/ViewStatistics.cpp:1143
+msgid "User Average"
+msgstr "Uporabnikovo povprečje"
+
+#: clientgui/ViewStatistics.cpp:1144
+msgid "Host Total"
+msgstr "Skupaj gostiteljev"
+
+#: clientgui/ViewStatistics.cpp:1145
+msgid "Host Average"
+msgstr "Gostiteljev v povprečju"
+
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
+msgid "Last update: %.0f days ago"
+msgstr "Zadnja posodobitev: pred %.0f dnevi"
+
+#: clientgui/ViewStatistics.cpp:1745
+msgid "Show user total"
+msgstr "Prikaži skupaj od uporabnika"
+
+#: clientgui/ViewStatistics.cpp:1746
+msgid "Show total credit for user"
+msgstr "Prikaži vse uporabnikove točke"
+
+#: clientgui/ViewStatistics.cpp:1752
+msgid "Show user average"
+msgstr "Prikaži povprečje za uporabnika"
+
+#: clientgui/ViewStatistics.cpp:1753
+msgid "Show average credit for user"
+msgstr "Prikaži povprečje točk za uporabnika"
+
+#: clientgui/ViewStatistics.cpp:1759
+msgid "Show host total"
+msgstr "Prikaži skupno za gostitelja"
+
+#: clientgui/ViewStatistics.cpp:1760
+msgid "Show total credit for host"
+msgstr "Prikaži skupno točk za gostitelja"
+
+#: clientgui/ViewStatistics.cpp:1766
+msgid "Show host average"
+msgstr "Prikaži povprečje gostitelja"
+
+#: clientgui/ViewStatistics.cpp:1767
+msgid "Show average credit for host"
+msgstr "Prikaži povprečje točk za gostitelja"
+
+#: clientgui/ViewStatistics.cpp:1776
+msgid "< &Previous project"
+msgstr "< &Predhodni projekt"
+
+#: clientgui/ViewStatistics.cpp:1777
+msgid "Show chart for previous project"
+msgstr "Prikaži graf za predhodni projekt"
+
+#: clientgui/ViewStatistics.cpp:1782
+msgid "&Next project >"
+msgstr "&Naslednji projekt >"
+
+#: clientgui/ViewStatistics.cpp:1783
+msgid "Show chart for next project"
+msgstr "Prikaži graf za naslednji projekt"
+
+#: clientgui/ViewStatistics.cpp:1788
+msgid "Mode view"
+msgstr "Način pogleda"
+
+#: clientgui/ViewStatistics.cpp:1791
+msgid "All projects"
+msgstr "Vsi projekti"
+
+#: clientgui/ViewStatistics.cpp:1792
+msgid "Show all projects, one chart per project"
+msgstr "Prikaži vse projekte, en graf na projekt"
+
+#: clientgui/ViewStatistics.cpp:1798
+msgid "One project"
+msgstr "En projekt"
+
+#: clientgui/ViewStatistics.cpp:1799
+msgid "Show one chart with selected project"
+msgstr "Prikaži en graf z izbranim projektom"
+
+#: clientgui/ViewStatistics.cpp:1805
+msgid "All projects(sum)"
+msgstr "Vsi projekti (vsota)"
+
+#: clientgui/ViewStatistics.cpp:1806
+msgid "Show one chart with all projects"
+msgstr "Prikaži en graf z vsemi projekti"
+
+#: clientgui/ViewStatistics.cpp:1833
+msgid "Statistics"
+msgstr "Statistika"
+
+#: clientgui/ViewStatistics.cpp:1853 clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895 clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938 clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980 clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
+msgid "Updating charts..."
+msgstr "Posodobljam grafe..."
+
+#: clientgui/ViewTransfers.cpp:163 clientgui/ViewTransfersGrid.cpp:106
+msgid "Retry Now"
+msgstr "Ponovno poskusi zdaj"
+
+#: clientgui/ViewTransfers.cpp:164 clientgui/ViewTransfersGrid.cpp:107
+msgid "Click 'Retry now' to transfer the file now"
+msgstr "Kliknite 'Ponovno poskusi zdaj', da zdaj prenesete datoteko"
+
+#: clientgui/ViewTransfers.cpp:170 clientgui/ViewTransfersGrid.cpp:113
+msgid "Abort Transfer"
+msgstr "Opusti prenos"
+
+#: clientgui/ViewTransfers.cpp:171 clientgui/ViewTransfersGrid.cpp:114
+msgid ""
+"Click 'Abort transfer' to delete the file from the transfer queue. This will "
+"prevent you from being granted credit for this result."
+msgstr ""
+"Kliknite 'Opusti prenos', da izbrišete datoteko iz čakalne vrste prenosov. "
+"To vam bo prepričilo, da bi bili nagrajeni z zaslugami za ta rezultat."
+
+#: clientgui/ViewTransfers.cpp:182 clientgui/ViewTransfersGrid.cpp:129
+msgid "File"
+msgstr "Datoteka"
+
+#: clientgui/ViewTransfers.cpp:183 clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226 clientgui/ViewWorkGrid.cpp:147
+msgid "Progress"
+msgstr "Napredek"
+
+#: clientgui/ViewTransfers.cpp:184 clientgui/ViewTransfersGrid.cpp:129
+msgid "Size"
+msgstr "Velikost"
+
+#: clientgui/ViewTransfers.cpp:185 clientgui/ViewTransfersGrid.cpp:130
+msgid "Elapsed Time"
+msgstr "Pretečeni čas"
+
+#: clientgui/ViewTransfers.cpp:186 clientgui/ViewTransfersGrid.cpp:130
+msgid "Speed"
+msgstr "Hitrost"
+
+#: clientgui/ViewTransfers.cpp:212 clientgui/ViewTransfersGrid.cpp:167
+msgid "Transfers"
+msgstr "Prenosi"
+
+#: clientgui/ViewTransfers.cpp:271 clientgui/ViewTransfersGrid.cpp:190
+msgid "Retrying transfer now..."
+msgstr "Zdaj ponovno poskušam prenesti..."
+
+#: clientgui/ViewTransfers.cpp:309
+msgid "Aborting transfer..."
+msgstr "Opuščam prenos..."
+
+#: clientgui/ViewTransfers.cpp:322
+#, 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 ""
+"Ali ste prepričani, da želite opustiti prenos datoteke '%s'?\n"
+"OPOMBA: Opustitev prenosa bo razveljavila opravilo in\n"
+"zanj ne boste dobili točk."
+
+#: clientgui/ViewTransfers.cpp:328
+msgid "Abort File Transfer"
+msgstr "Opusti prenos datoteke"
+
+#: clientgui/ViewTransfers.cpp:751 clientgui/ViewTransfersGrid.cpp:419
+msgid "Retry in "
+msgstr "Ponovno poskusi čez_"
+
+#: clientgui/ViewTransfers.cpp:763 clientgui/ViewTransfersGrid.cpp:431
+msgid "Upload pending"
+msgstr "Čakajoče pošiljanje"
+
+#: clientgui/ViewTransfers.cpp:763 clientgui/ViewTransfersGrid.cpp:431
+msgid "Download pending"
+msgstr "Čakajoče prejemanje"
+
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr " (projekt je odstopil: "
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ")"
+
+#: clientgui/ViewTransfersGrid.cpp:161
+msgid "TransfersGrid"
+msgstr "Mreža prenosov"
+
+#: clientgui/ViewTransfersGrid.cpp:228
+msgid "Aborting transfer(s)..."
+msgstr "Opuščam prenos(e)..."
+
+#: clientgui/ViewTransfersGrid.cpp:230
+msgid ""
+"Are you sure you want to abort this file(s) transfer ?\n"
+"NOTE: Aborting a transfer will invalidate a task and you\n"
+"will not receive credit for it."
+msgstr ""
+"Ali ste prepričani, da želite opustiti prenos te datoteke/datotek?\n"
+"OPOMBA: Opustitev prenosa bo razveljavila opravilo in zanj\n"
+"ne boste prejeli točk."
+
+#: clientgui/ViewTransfersGrid.cpp:231
+msgid "Abort File Transfer(s)"
+msgstr "Opusti prenos(e) datotek"
+
+#: clientgui/ViewWork.cpp:184 clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr "Prikaži aktivna opravila"
+
+#: clientgui/ViewWork.cpp:185 clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr "Prikaži samo aktivna opravila"
+
+#: clientgui/ViewWork.cpp:192 clientgui/ViewWorkGrid.cpp:115
+msgid "Show application graphics in a window."
+msgstr "V oknu prikaži grafiko aplikacije."
+
+#: clientgui/ViewWork.cpp:199 clientgui/ViewWorkGrid.cpp:122
+msgid "Suspend work for this result."
+msgstr "Delo za ta rezultat daj na čakanje."
+
+#: clientgui/ViewWork.cpp:205 clientgui/ViewWorkGrid.cpp:128
+msgid "Abort"
+msgstr "Opusti"
+
+#: clientgui/ViewWork.cpp:206 clientgui/ViewWorkGrid.cpp:129
+msgid "Abandon work on the result. You will get no credit for it."
+msgstr "Opusti delo na tem rezultatu. Zanj ne boste dobili točk."
+
+#: clientgui/ViewWork.cpp:213
+msgid "Show task details."
+msgstr "Prikaži podrobnosti opravila."
+
+#: clientgui/ViewWork.cpp:224 clientgui/ViewWorkGrid.cpp:146
+msgid "Name"
+msgstr "Ime"
+
+#: clientgui/ViewWork.cpp:225
+msgid "Elapsed"
+msgstr "Preteklo"
+
+#: clientgui/ViewWork.cpp:227 clientgui/ViewWorkGrid.cpp:147
+msgid "To completion"
+msgstr "Do zaključka"
+
+#: clientgui/ViewWork.cpp:254 clientgui/ViewWorkGrid.cpp:190
+msgid "Tasks"
+msgstr "Opravila"
+
+#: clientgui/ViewWork.cpp:342 clientgui/ViewWorkGrid.cpp:220
+msgid "Resuming task..."
+msgstr "Nadaljujem opravilo..."
+
+#: clientgui/ViewWork.cpp:345 clientgui/ViewWorkGrid.cpp:223
+msgid "Suspending task..."
+msgstr "Opravilo dajem na čakanje..."
+
+#: clientgui/ViewWork.cpp:373 clientgui/ViewWorkGrid.cpp:251
+msgid "Showing graphics for task..."
+msgstr "Prikazujem grafiko za to opravilo..."
+
+#: clientgui/ViewWork.cpp:426
+#, c-format
+msgid ""
+"Are you sure you want to abort this task '%s'?\n"
+"(Progress: %s, Status: %s)"
+msgstr ""
+"Ali ste prepričani, da želite opustiti to opravilo '%s'?\n"
+"(Napredek: %s, Status: %s)"
+
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "Ali ste prepričani, da želite opustiti teh %d opravil?"
+
+#: clientgui/ViewWork.cpp:437 clientgui/ViewWorkGrid.cpp:335
+msgid "Abort task"
+msgstr "Opusti opravilo"
+
+#: clientgui/ViewWork.cpp:446 clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Opuščam rezultat..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr "Prikaži vsa opravila"
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr "Prikaži vsa opravila."
+
+#: clientgui/ViewWork.cpp:728 clientgui/ViewWorkGrid.cpp:445
+msgid "Resume work for this task."
+msgstr "Nadaljuj z delom za to opravila."
+
+#: clientgui/ViewWork.cpp:734 clientgui/ViewWorkGrid.cpp:451
+msgid "Suspend work for this task."
+msgstr "Daj delo za to opravilo na čakanje."
+
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr "Manjka grafični procesor, "
+
+#: clientgui/ViewWork.cpp:1149
+msgid " - an exclusive app is running"
+msgstr " - teče eksluzivna aplikacija"
+
+#: clientgui/ViewWork.cpp:1168 clientgui/ViewWorkGrid.cpp:822
+msgid " (non-CPU-intensive)"
+msgstr " (ne-procesorsko-intenzitvno)"
+
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
+msgid "TasksGrid"
+msgstr "Mreža opravil"
+
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
+msgid ""
+"Are you sure you want to abort this task '%s'?\n"
+"(Progress: %s %%, Status: %s)"
+msgstr ""
+"Ali ste prepričani, da želite opustiti to opravilo '%s'?\n"
+"(Napredek: %s %%, Status: %s)"
+
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr "Priklopite se na projekt ali upravitelja računov"
+
+#: clientgui/WelcomePage.cpp:264
+#, 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 ""
+"Če je možno, dodajte projekte na\n"
+"%s spletni strani.\n"
+"Projekti dodani preko tega čarovnika ne bodo\n"
+"prikazani ali upravljani prek %s."
+
+#: clientgui/WelcomePage.cpp:277
+msgid ""
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
+"Vodili vas bomo skozi proces pripenjanja\n"
+"na projekt ali upravitelja računov."
+
+#: clientgui/WelcomePage.cpp:281
+msgid ""
+"You have selected to attach to a new BOINC project.  Attaching to a new\n"
+"project means that you will be connecting your computer to a new website\n"
+"and organization.  If this is what you wanted to do, then please click on\n"
+"the 'Next' button below.\n"
+"\n"
+"Some projects like World Community Grid run multiple research applications.\n"
+"If you want to change which research applications are sent to your computer\n"
+"to run, then you should visit the project's website and modify your\n"
+"preferences there.\n"
+"\n"
+"To change which research applications are sent to you from\n"
+"World Community Grid then please click on the following button:"
+msgstr ""
+"Izbrali ste pripenjanje na nov BOINC projekt.  Pripenjanje na nov projekt\n"
+"pomeni, da boste povezovali svoj računalnik na novo spletno stran\n"
+"in organizacijo.  Če je to, kar želite storiti, potem prosim kliknite na\n"
+"gumb 'Naslednje' spodaj.\n"
+"Nekateri projekti kot naprimer World Community Grid poganjanjo več\n"
+"raziskovalnih aplikacij. Če želite spremeniti katere raziskovalne aplikacije "
+"so\n"
+"poslane na vaš računalnik v izvajanje, morate obiskat spletno stran "
+"projekta\n"
+"in tam spremeniti vaše nastavitve.\n"
+"Da spremenite katere raziskovalne aplikacije so poslane vam iz\n"
+"World Community Grid, prosim kliknite sledeči gumb:"
+
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr "Spremeni raziskovalne aplikacije na World Community Grid"
+
+#: clientgui/WelcomePage.cpp:301
+msgid "To continue, click Next."
+msgstr "Za nadaljevanje kliknite Naprej."
+
+#: clientgui/WizardAttachProject.cpp:610
+msgid "Do you really want to cancel?"
+msgstr "Res želite preklicati?"
+
+#: clientgui/WizardAttachProject.cpp:611
+msgid "Question"
+msgstr "Vprašanje"
+
+#: clientgui/wizardex.cpp:377 clientgui/wizardex.cpp:553
+msgid "&Next >"
+msgstr "&Naprej >"
+
+#: clientgui/wizardex.cpp:383
+msgid "< &Back"
+msgstr "< Na&zaj"
+
+#: clientgui/wizardex.cpp:553
+msgid "&Finish"
+msgstr "&Končaj"
+
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
+msgid "New page inserted. Index = %i"
+msgstr "Nova stran vstavljena. Indeks = %i"
+
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
+msgid "New page appended. Index = %i"
+msgstr "Nova stran dopolnjena. Indeks = %i"
+
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
+msgid "Old Page Index = %i"
+msgstr "Stari indeks strani = %i"
+
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
+msgid "OnDropTarget: index by HitTest = %i"
+msgstr "OnDropTarget: indeks od HitTest = %i"
+
+#: clientgui/common/wxPieCtrl.cpp:66
+msgid "Pie Ctrl"
+msgstr "Pie Ctrl"
+
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid ""
+"for accessibility support, please select advanced from the view menu or type "
+"command shift a"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:528 clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
+msgid "specify work start and stop hours in format HH:MM-HH:MM"
+msgstr "podajte začetne in končne ure dela v formatu HH:MM-HH:MM"
+
+#: clientgui/DlgAdvPreferences.h:30
+msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
+msgstr "podajte začetne in končne ure uporabe mreže v formatu HH:MM-HH:MM"
+
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "&Zapri okno\tCtrl+W"
+
+#~ msgid "&News\tCtrl+Shift+N"
+#~ msgstr "&Novice\tCtrl+Shift+N"
+
+#~ msgid "Display news"
+#~ msgstr "Prikaži novice"
diff --git a/locale/sl/BOINC-Project-Generic.po b/locale/sl/BOINC-Project-Generic.po
new file mode 100644
index 0000000..152fb92
--- /dev/null
+++ b/locale/sl/BOINC-Project-Generic.po
@@ -0,0 +1,1455 @@
+# 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: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: BOINC translation team <translate at boinc.berkeley.edu>\n"
+"POT-Creation-Date: 2009-05-09 21:36 PDT\n"
+"PO-Revision-Date: 2009-12-15 04:59-0700\n"
+"Last-Translator: Miha P <miha at wolfey.si>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: sl\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
+"%100==4 ? 2 : 3);\n"
+"X-Generator: Pootle 1.2.1\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+msgid "Search for words in forum messages"
+msgstr "Išči besede v sporočilih foruma"
+
+msgid "Search forums"
+msgstr "Išči po forumih"
+
+msgid "Advanced search"
+msgstr "Napredno iskanje"
+
+msgid "Private messages"
+msgstr "Zasebna sporočila"
+
+msgid "Questions and Answers"
+msgstr "Vprašanja in odgovori"
+
+msgid "Message boards"
+msgstr "Razpravljalnice"
+
+msgid "%1 message board"
+msgstr "%1 razpravljalnica"
+
+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 ""
+"Da lahko ustvarite novo temo v %1, morate imeti določeno število točk. To "
+"preprečuje in ščiti pred zlorabo sistema."
+
+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 ""
+"Trenutno ne morete ustvariti novih tem. Prosim, malo počakajte, preden spet "
+"poskusite. Ta odlog je bil uveljavljen za zaščito pred zlorabo sistema."
+
+msgid "Thread"
+msgstr "Tema"
+
+msgid "Posts"
+msgstr "Objave"
+
+msgid "Author"
+msgstr "Avtor"
+
+msgid "Views"
+msgstr "Pogledi"
+
+msgid "Last post"
+msgstr "Zadnja objava"
+
+msgid "Mark all threads as read"
+msgstr "Označi vse teme kot prebrane"
+
+msgid "Mark all threads in all message boards as 'read'."
+msgstr "Označi vse teme na vseh oglasnih deskah kot 'prebrane'."
+
+msgid "Inbox"
+msgstr "Nabiralnik"
+
+msgid "Write"
+msgstr "Napiši"
+
+msgid "Send private message"
+msgstr "Pošlji zasebno sporočilo"
+
+msgid "Preview"
+msgstr "Predogled"
+
+msgid "To"
+msgstr "Za"
+
+msgid "User IDs or unique usernames, separated with commas"
+msgstr "IDji uporabnikov ali unikatna uporabniška imena, ločena z vejicami"
+
+msgid "Subject"
+msgstr "Zadeva"
+
+msgid "Message"
+msgstr "Sporočilo"
+
+msgid "Send message"
+msgstr "Pošlji sporočilo"
+
+msgid ""
+"You are not allowed to send privates messages so often. Please wait some "
+"time before sending more messages."
+msgstr ""
+"Ni vam dovoljeno tako pogosto pošiljati sporočil. Prosim, počakajte nekaj "
+"časa, preden pošljete nova."
+
+msgid "unread"
+msgstr "neprebrano"
+
+msgid "Edit your profile"
+msgstr "Uredite vaš profil"
+
+msgid "Your feedback on this profile"
+msgstr "Vaše povratne informacije o tem profilu"
+
+msgid "Recommend this profile for User of the Day:"
+msgstr "Predlagaj ta profil za Uporabnika dneva:"
+
+msgid "I %1like%2 this profile"
+msgstr "Ta profil mi je %1všeč%2"
+
+msgid "Alert administrators to an offensive profile:"
+msgstr "Opozori skrbnike na žaljiv profil:"
+
+msgid "I %1do not like%2 this profile"
+msgstr "Ta profil mi %1ni všeč%2"
+
+msgid "Search criteria (use one or more)"
+msgstr "Iskalni kriteriji (uporabite enega ali več)"
+
+msgid "Key words"
+msgstr "Ključne besede"
+
+msgid "Find teams with these words in their names or descriptions"
+msgstr "Poišči ekipe s temi besedami v njihovem imenu ali opisu"
+
+msgid "Country"
+msgstr "Država"
+
+msgid "Type of team"
+msgstr "Tip ekipe"
+
+msgid "Show only active teams"
+msgstr "Prikaži le aktivne ekipe"
+
+msgid "Search"
+msgstr "Išči"
+
+msgid "Requested by you, and founder response deadline has passed."
+msgstr "Zahtevali ste vi in rok za ustanoviteljev odgovor je potekel."
+
+msgid "Complete foundership transfer"
+msgstr "Dokončaj prenos ustanoviteljstva"
+
+msgid "Requested by you"
+msgstr "Zahtevali ste vi"
+
+msgid "founder response deadline is %1"
+msgstr "rok za ustanoviteljev odgovor je %1"
+
+msgid "None"
+msgstr "brez"
+
+msgid "Initiate request"
+msgstr "Prični zahtevo"
+
+msgid "Deferred"
+msgstr "Odloženo"
+
+msgid "Team info"
+msgstr "Informacije o ekipi"
+
+msgid "Description"
+msgstr "Opis"
+
+msgid "Web site"
+msgstr "Spletna stran"
+
+msgid "Total credit"
+msgstr "Skupaj točk"
+
+msgid "Recent average credit"
+msgstr "Povprečje točk v zadnjem času"
+
+msgid "Cross-project stats"
+msgstr "Medprojektna statistika"
+
+msgid "Type"
+msgstr "Tip"
+
+msgid "Message board"
+msgstr "Razpravljalnica"
+
+msgid "Threads"
+msgstr "Teme"
+
+msgid "Join this team"
+msgstr "Pridruži se tej ekipi"
+
+msgid ""
+"Note: if 'OK to email' is set in your project preferences, joining a team "
+"gives its founder access to your email address."
+msgstr ""
+"Opomba: če je 'Dovoljeno pošiljanje pošte' nastavljeno v nastavitvah vašega "
+"projekta, ob pridružitvi ekipi daje njenemu ustanovitelju dostop do naslova "
+"vaše elektronske pošte."
+
+msgid "Not accepting new members"
+msgstr "Ne sprejema novih članov"
+
+msgid "Foundership change requested"
+msgstr "Zahtevana sprememba ustanoviteljstva"
+
+msgid "Respond by %1"
+msgstr "Odgovori z %1"
+
+msgid "Team foundership change"
+msgstr "Sprememba ustanoviteljstva ekipe"
+
+msgid "Members"
+msgstr "ÄŒlani"
+
+msgid "Founder"
+msgstr "Ustanovitelj"
+
+msgid "Admins"
+msgstr "Skrbniki"
+
+msgid "New members in last day"
+msgstr "Novi člani v zadnjem dnevu"
+
+msgid "Total members"
+msgstr "Skupaj članov"
+
+msgid "view"
+msgstr "poglej"
+
+msgid "Active members"
+msgstr "Aktivni člani"
+
+msgid "Members with credit"
+msgstr "Člani s točkami"
+
+msgid "Name"
+msgstr "Ime"
+
+msgid "Admin"
+msgstr "Skrbnik"
+
+msgid "Last %1"
+msgstr "Zadnjih %1"
+
+msgid "Next %1"
+msgstr "Naslednjih %1"
+
+msgid "No such team."
+msgstr "Ekipa ne obstaja."
+
+msgid "This operation requires foundership."
+msgstr "Ta operacija zahteva ustanoviteljstvo."
+
+msgid "This operation requires team admin privileges"
+msgstr "Ta operacija zahteva skrbniške pravice za ekipo"
+
+msgid "Rank"
+msgstr "Uvrstitev"
+
+msgid ""
+"%1Privacy note%2: if you create a team, your project preferences (resource "
+"share, graphics preferences) will be visible to the public."
+msgstr ""
+"%1Opomba o zasebnosti%2: če ustvarite ekipo, bodo vaše nastavitve projekta "
+"(delitev virov, grafične nastavitve) vidne javnosti."
+
+msgid "Team name, text version"
+msgstr "Ime ekipe, tekstovna različica"
+
+msgid "Don't use HTML tags."
+msgstr "Ne uporabljajte HTML oznak."
+
+msgid "Team name, HTML version"
+msgstr "Ime ekipe, HTML različica"
+
+msgid "You may use %1limited HTML tags%2."
+msgstr "Lahko uporabljajte %1omejen nabor HTML oznak%2."
+
+msgid "If you don't know HTML, leave this box blank."
+msgstr "ÄŒe ne znate HTML, pustite ta okvir prazen."
+
+msgid "URL of team web page, if any"
+msgstr "URL spletne strani ekipe, če obstaja"
+
+msgid "without \"http://\""
+msgstr "brez \"http://\""
+
+msgid "This URL will be linked to from the team's page on this site."
+msgstr "Na spletni strani ekipe bo povezava s tem URL."
+
+msgid "Description of team"
+msgstr "Opis ekipe"
+
+msgid "Projects in which you are participating"
+msgstr "Projekti, v katerih sodelujete"
+
+msgid "Projects in which %1 is participating"
+msgstr "Projekti, v katerih sodeluje %1"
+
+msgid "Project"
+msgstr "Projekt"
+
+msgid "Click for user page"
+msgstr "Kliknite za spletno stran uporabnika"
+
+msgid "Average credit"
+msgstr "Točk v povprečju"
+
+msgid "Since"
+msgstr "Od"
+
+msgid "Computing and credit"
+msgstr "Računanje in točke"
+
+msgid "Pending credit"
+msgstr "Čakajoče točke"
+
+msgid "View"
+msgstr "Pogled"
+
+msgid "Computers on this account"
+msgstr "Računalniki tega računa"
+
+msgid "Tasks"
+msgstr "Opravila"
+
+msgid "Cross-project ID"
+msgstr "Medprojektni ID"
+
+msgid "Cross-project statistics"
+msgstr "Medprojektna statistika"
+
+msgid "Certificate"
+msgstr "Certifikat"
+
+msgid "Stats on your cell phone"
+msgstr "Statistika na vašem mobilnem telefonu"
+
+msgid "Account information"
+msgstr "Informacije o računu"
+
+msgid "Email address"
+msgstr "Naslov elektronske pošte"
+
+msgid "URL"
+msgstr "URL"
+
+msgid "Postal code"
+msgstr "Poštna številka"
+
+msgid "%1 member since"
+msgstr "%1 član od"
+
+msgid "Change"
+msgstr "Spremeni"
+
+msgid "email address"
+msgstr "naslov elektronske pošte"
+
+msgid "password"
+msgstr "geslo"
+
+msgid "other account info"
+msgstr "druge informacije o računu"
+
+msgid "Log out"
+msgstr "Odjava"
+
+msgid "User ID"
+msgstr "ID uporabnika"
+
+msgid "Used in community functions"
+msgstr "Uporabljeno v funkcijah skupnosti"
+
+msgid "Account key"
+msgstr "Ključ računa"
+
+msgid "Provides full access to your account"
+msgstr "Priskrbi poln dostop do vašega računa"
+
+msgid "Weak account key"
+msgstr "Šibki ključ računa"
+
+msgid "Provides %1limited access%2 to your account"
+msgstr "Priskrbi %1omejen dostop%2 do vašega računa"
+
+msgid "Preferences"
+msgstr "Nastavitve"
+
+msgid "When and how BOINC uses your computer"
+msgstr "Kdaj in kako BOINC uporablja vaš računalnik"
+
+msgid "Computing preferences"
+msgstr "Nastavitve računanja"
+
+msgid "Message boards and private messages"
+msgstr "Razpravljalnice in zasebna sporočila"
+
+msgid "Community preferences"
+msgstr "Nastavitve skupnosti"
+
+msgid "Resource share and graphics"
+msgstr "Delitev virov in grafika"
+
+msgid "%1 preferences"
+msgstr "%1 nastavitve"
+
+msgid "Community"
+msgstr "Skupnost"
+
+msgid "Delete"
+msgstr "Briši"
+
+msgid "Create"
+msgstr "Ustvari"
+
+msgid "Profile"
+msgstr "Profil"
+
+msgid "%1 posts"
+msgstr "Objave %1"
+
+msgid "Notifications"
+msgstr "Obvestila"
+
+msgid "Quit team"
+msgstr "Zapusti ekipo"
+
+msgid "Administer"
+msgstr "Administriraj"
+
+msgid "(foundership change request pending)"
+msgstr "(čakajoča zahteva po spremembi ustanoviteljstva)"
+
+msgid "Member of team"
+msgstr "ÄŒlan ekipe"
+
+msgid "Team"
+msgstr "Ekipa"
+
+msgid "find a team"
+msgstr "poišči ekipo"
+
+msgid "Founder but not member of"
+msgstr "Ustanovitelj, vendar ne član"
+
+msgid "Find friends"
+msgstr "Poišči prijatelje"
+
+msgid "Friends"
+msgstr "Prijatelji"
+
+msgid "Computers"
+msgstr "Računalniki"
+
+msgid "hidden"
+msgstr "skrito"
+
+msgid "Donor"
+msgstr "Donator"
+
+msgid "Contact"
+msgstr "Kontakt"
+
+msgid "This person is a friend"
+msgstr "Ta oseba je prijatelj"
+
+msgid "Cancel friendship"
+msgstr "Prekliči prijateljstvo"
+
+msgid "Request pending"
+msgstr "Čakajoča prošnja"
+
+msgid "Add as friend"
+msgstr "Dodaj kot prijatelja"
+
+msgid "CHARSET"
+msgstr "nabor znakov"
+
+msgid "Use BBCode tags to format your text"
+msgstr "Uporabite BBCode oznake za oblikovanje vašega besedila"
+
+msgid "Identifies you on our web site. Use your real name or a nickname."
+msgstr ""
+"Identificira vas na naši spletni strani. Uporabite vaše pravo ime ali "
+"vzdevek."
+
+msgid "Select the country you want to represent, if any."
+msgstr "Če želite, izberite državo, ki jo želite predstavljati."
+
+msgid "Postal or ZIP Code"
+msgstr "Poštna številka ali oznaka"
+
+msgid "Optional"
+msgstr "Opcijsko"
+
+msgid "Applications"
+msgstr "Aplikacije"
+
+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 ""
+"% ima trenutno sledeče aplikacije. Ko sodelujete v %1, bo vašemu računalniku "
+"dodeljeno delo za eno ali več teh aplikacij. Trenutna različica aplikacije "
+"bo naložena na vaš računalnik. To se zgodi samodejno, ni vam streba storiti "
+"ničesar."
+
+msgid "Platform"
+msgstr "Platforma"
+
+msgid "Version"
+msgstr "Različica"
+
+msgid "Installation time"
+msgstr "ÄŒas namestitve"
+
+msgid "You must supply an invitation code to create an account."
+msgstr "Podati morate kodo vabila, da ustvarite račun."
+
+msgid "The invitation code you gave is not valid."
+msgstr "Koda vabila, ki ste jo podali, ni veljavna."
+
+msgid "Create an account"
+msgstr "Ustvarite račun"
+
+msgid "Account creation is disabled"
+msgstr "Ustvarjanje računov je onemogočeno"
+
+msgid "Account creation is currently disabled. Please try again later."
+msgstr ""
+"Ustvarjanje računov je trenutno onemogočeno. Prosim, poskusite kasneje."
+
+msgid ""
+"NOTE: If you use BOINC version 5.2+ with the BOINC Manager, don't use this "
+"form. Just run BOINC, select Attach Project, and enter an email address and "
+"password."
+msgstr ""
+"OPOMBA: Če uporabljate BOINC različico 5.2 ali novejšo z BOINC Upraviteljem, "
+"ne uporabljajte tega obrazca. Samo poženite BOINC, izberite Pripni projet in "
+"vnesi naslov elektronske pošte in geslo."
+
+msgid ""
+"This account will belong to the team %1 and will have the project "
+"preferences of its founder."
+msgstr ""
+"Ta račun bo pripadal ekipi %1 in bo imel nastavitve projekta njenega "
+"ustanovitelja."
+
+msgid "Invitation Code"
+msgstr "Koda vabila"
+
+msgid "A valid invitation code is required to create an account."
+msgstr "Da ustvarite račun, je potrebna veljavna koda vabila."
+
+msgid "Email Address"
+msgstr "Naslov elektronske pošte"
+
+msgid "Must be a valid address of the form 'name at domain'."
+msgstr "Mora biti veljaven naslov v obliki 'ime at domena'."
+
+msgid "Password"
+msgstr "Geslo"
+
+msgid "Must be at least %1 characters"
+msgstr "Biti mora vsaj %1 znakov"
+
+msgid "Confirm password"
+msgstr "Potrdi geslo"
+
+msgid "Create account"
+msgstr "Ustvari račun"
+
+msgid "ERROR: %1 does not exist!  Cannot create combo box.<br>"
+msgstr "NAPAKA: %1 ne obstaja!  Ne morem ustvariti kombo izbirnika.<br>"
+
+msgid "Picture"
+msgstr "Slika"
+
+msgid "%1 Your profile picture is shown to the left."
+msgstr "%1 Vaša slika profila je prikazana na levi."
+
+msgid ""
+"To replace it, click the \"Browse\" button and select a JPEG or PNG file (%1 "
+"or less)."
+msgstr ""
+"Da jo zamenjate, kliknite gumb \"Brskaj\" in izberite JPEG ali PNG datoteko "
+"(%1 ali manjšo)."
+
+msgid "To remove it from your profile, check this box:"
+msgstr "Da odstranite sliko z vašega profila, kliknite ta okvir:"
+
+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 ""
+"Če bi k vašemu profilu radi vključili sliko, kliknite gumb \"Brskaj\" in "
+"izberite JPEG ali PNG datoteko. Prosim, izberite slike dolžine %1 ali manj."
+
+msgid "Language"
+msgstr "Jezik"
+
+msgid "Select the language in which your profile is written:"
+msgstr "Izberite jezik v katerem naj bo napisan vaš profil:"
+
+msgid "Submit profile"
+msgstr "Vnesi profil"
+
+msgid ""
+"To protect the project's webpages from spam, we kindly ask you to type in "
+"the two words shown in the image:<br>\n"
+msgstr ""
+"Za zaščito spletne strani projekta pred smetjem, vas vljudno prosimo, da "
+"napišete besedi, prikazani na sliki:<br>\n"
+
+msgid "Create/edit profile"
+msgstr "Ustvari/uredi profil"
+
+msgid "The format of your uploaded image is not supported."
+msgstr ""
+"Format slike, ki ste jo naložili, ni podprt.Format vaše naložene slike ni "
+"podprt."
+
+msgid ""
+"Your %1profile%2 lets you share your opinions and background with the %3 "
+"community."
+msgstr ""
+"Vaš %1profil%2 vam omogoča deliti vaša mnenja in ozadje s skupnostjo %3."
+
+msgid "Your ReCaptcha response was not correct.  Please try again."
+msgstr ""
+"Vaš \"Recaptcha\" odgovor na vsebino slike ni bil pravilen.  Prosim, "
+"poskusite znova."
+
+msgid ""
+"Your first response was flagged as spam by the Akismet anti-spam system.  "
+"Please modify your text and try again."
+msgstr ""
+"Vaš prvi odgovor je bil označen kot smetje s strani Akismet proti-smetnega "
+"sistema.  Prosim, spremenite vaše besedilo in poskusite znova."
+
+msgid ""
+"Your second response was flagged as spam by the Akismet anti-spam system.  "
+"Please modify your text and try again."
+msgstr ""
+"Vaš drugi odgovor je bil označen kot smetje s strani Akismet proti-smetnega "
+"sistema.  Prosim, spremenite vaše besedilo in poskusite znova."
+
+msgid "Your profile submission was empty."
+msgstr "Vnesli ste prazen profil."
+
+msgid "Could not update the profile: database error"
+msgstr "Ne morem posodobiti profila: napaka v podatkovni bazi"
+
+msgid "Could not create the profile: database error"
+msgstr "Ne morem ustvariti profila: napaka v podatkovni bazi"
+
+msgid "Profile saved"
+msgstr "Profil shranjen"
+
+msgid ""
+"Congratulations! Your profile was successfully entered into our database."
+msgstr "Čestitke! Vaš profil je bil uspešno vnesen v našo podatkovno bazo."
+
+msgid "%1View your profile%2"
+msgstr "%1Poglejte vaš profil%2"
+
+msgid "Create a profile"
+msgstr "Ustvarite profil"
+
+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 ""
+"Za preprečitev smetja, je za ustvarjanje ali urejanje profila zahtevano "
+"povprečje točk %1 ali več.  Za to nevšečnost se vam opravičujemo."
+
+msgid "Download BOINC add-on software"
+msgstr "Naloži dodatno programsko opremo BOINC"
+
+msgid "You can download applications in several categories."
+msgstr "Naložite lahko aplikacije iz večih kategorij."
+
+msgid ""
+"These applications are not endorsed by %1 and you use them at your own risk."
+msgstr ""
+"Te aplikacije %1 ne podpira. Lahko jo uporabljate na lastno odgvornost."
+
+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 ""
+"Ne ponujamo navodil za namestitev teh aplikacij.\n"
+"Kakorkoli, avtor je morda priskrbel kaj pomoči o namestitvi ali "
+"odstranjevanju\n"
+"aplikacije.\n"
+"ÄŒe za vas to ni dovolj, bi morali kontaktirati avtorja.Ne ponujamo navodil "
+"za namestitev teh aplikacij.\n"
+"Kakorkoli, avtor je morda priskrbel kaj pomoči o namestitvi ali "
+"odstranjeanju\n"
+"aplikacije.\n"
+"ÄŒe za vas to ni dovolj, bi morali kontaktirati avtorja."
+
+msgid "Instructions for installing and running BOINC are %1here%2."
+msgstr "Navodila za namestitev in poganjanje BOINC so %1tukaj%2."
+
+msgid "This list is managed centrally at %1the BOINC website%2."
+msgstr "Ta seznam je centralno upravljan na %1spletni strani BOINC%2."
+
+msgid "fll"
+msgstr "fll"
+
+msgid "Title"
+msgstr "Naslov"
+
+msgid "Add my signature to this post"
+msgstr "Dodaj moj podpis k tej objavi"
+
+msgid "%1 Message boards"
+msgstr "%1 razpravljalnice"
+
+msgid ""
+"If you have a question or problem, please use the %1Questions & Answers%2 "
+"section of the message boards."
+msgstr ""
+"Če imate vprašanje ali problem, prosim uporabite odsek %1Vprašanja in "
+"odgovori%2 razpravljalnic."
+
+msgid "Topic"
+msgstr "Tema"
+
+msgid "Create a new thread"
+msgstr "Ustvari novo temo"
+
+msgid "Post to thread"
+msgstr "Objavi k temi"
+
+msgid "Forum search"
+msgstr "Iskanje po forumu"
+
+msgid "Forum search results"
+msgstr "Rezultati iskanja po forumu"
+
+msgid "No thread with id %1. Please check the link and try again."
+msgstr ""
+"Tema s tem ID %1 ne obstaja. Prosim, preverite povezavo in poskusite znova."
+
+msgid "This forum is not visible to you."
+msgstr "Ta forum za vas ni viden."
+
+msgid "This thread has been hidden for administrative purposes"
+msgstr "Ta tema je bila skrita zaradi skrbniških razlogov"
+
+msgid "My question was answered"
+msgstr "Na moje vprašanje je bilo odgovorjeno"
+
+msgid ""
+"If your question has been adequately answered please click here to close it!"
+msgstr ""
+"Če je bilo na vaše vprašanje zadovoljivo odgovorjeno, prosim kliknite tu, da "
+"ga zaprete!"
+
+msgid "I've also got this question"
+msgstr "Imam tudi to vprašanje"
+
+msgid "Add a new message to this thread"
+msgstr "Dodaj novo sporočilo k tej temi"
+
+msgid "Unsubscribe"
+msgstr "Odjavi naročilo"
+
+msgid "You are subscribed to this thread.  Click here to unsubscribe."
+msgstr "Naročeni ste na to temo.  Kliknite tu, da odjavite naročilo."
+
+msgid "Subscribe"
+msgstr "Naroči se"
+
+msgid "Click to get email when there are new posts in this thread"
+msgstr ""
+"Kliknite tu, da dobite elektronsko pošto, kadar so v tej temi nove objave."
+
+msgid "Unhide"
+msgstr "Naredi vidno"
+
+msgid "Unhide this thread"
+msgstr "Naredi temo vidno"
+
+msgid "Hide"
+msgstr "Skrij"
+
+msgid "Hide this thread"
+msgstr "Skrij to temo"
+
+msgid "Make unsticky"
+msgstr "Odstrani lepljivost"
+
+msgid "Make this thread not sticky"
+msgstr "Odstrani lepljivost te teme"
+
+msgid "Make sticky"
+msgstr "Naredi lepljivo"
+
+msgid "Make this thread sticky"
+msgstr "Naredi to temo lepljivo"
+
+msgid "Unlock"
+msgstr "Odkleni"
+
+msgid "Unlock this thread"
+msgstr "Odkleni to temo"
+
+msgid "Lock"
+msgstr "Zakleni"
+
+msgid "Lock this thread"
+msgstr "Zakleni to temo"
+
+msgid "Move"
+msgstr "Premakni"
+
+msgid "Move this thread to a different forum"
+msgstr "Premakni to temo v drug forum"
+
+msgid "Edit title"
+msgstr "Uredi naslov"
+
+msgid "Edit thread title"
+msgstr "Uredi naslov teme"
+
+msgid "Sort"
+msgstr "Uredi"
+
+msgid "Already friends"
+msgstr "Že prijatelja"
+
+msgid "You requested friendship with %1 on %2."
+msgstr "Zahtevali ste prijateljstvo z %1 na %2."
+
+msgid "This request is still pending confirmation."
+msgstr "Ta zahteva še vedno čaka na potrditev."
+
+msgid "%1 is not accepting friendship requests from you"
+msgstr "%1 ne sprejema vaših zahtev po prijateljstvu"
+
+msgid "You can't be friends with yourself"
+msgstr "Ne morete biti prijatelj samemu sebi"
+
+msgid "No such user"
+msgstr "Uporabnik ne obstaja"
+
+msgid "Add friend"
+msgstr "Dodaj prijatelja"
+
+msgid ""
+"You have asked to add %1 as a friend. We will notify %2 and will ask him/her "
+"to confirm that you are friends."
+msgstr ""
+"Prosili ste, da bi dodali %1 kot prijatelja. Obvestili bomo %2 in ga/jo "
+"vprašali za potrditev, da sta prijatelja/prijateljici."
+
+msgid "Add an optional message here:"
+msgstr "Tu lahko dodate sporočilo:"
+
+msgid "Database error"
+msgstr "Napaka v podatkovni bazi"
+
+msgid "Friend request sent"
+msgstr "Prošnja za prijateljstvo je poslana"
+
+msgid "We have notified %1 of your request."
+msgstr "O vaši prošnji smo obvestili %1."
+
+msgid "Request not found"
+msgstr "Prošnja ni najdena"
+
+msgid "Friend request"
+msgstr "Prošnja za prijateljstvo"
+
+msgid "%1 has added you as a friend."
+msgstr "%1 vas je dodal(-a) kot prijatelja."
+
+msgid "%1 says: %2"
+msgstr "%1 pravi: %2"
+
+msgid "Accept friendship"
+msgstr "Sprejmi prijateljstvo"
+
+msgid "Click accept if %1 is in fact a friend"
+msgstr "Klknite sprejmi, če je %1 zares vaš prijatelj(-ica)"
+
+msgid "Decline"
+msgstr "Odkloni"
+
+msgid "Click decline if %1 is not a friend"
+msgstr "Kliknite odkloni, če %1 ni vaš prijatelj(-ica)"
+
+msgid "No request"
+msgstr "Ni prošnje"
+
+msgid "Friendship confirmed"
+msgstr "Prijateljstvo potrjeno"
+
+msgid "Your friendship with %1 has been confirmed."
+msgstr "Vaše prijateljstvo z %1 je bilo potrjeno."
+
+msgid "Friendship declined"
+msgstr "Prijateljstvo odklonjeno"
+
+msgid "You have declined friendship with %1"
+msgstr "Odklonili ste prijateljstvo z %1"
+
+msgid "Notification not found"
+msgstr "Obvestilo ni najdeno"
+
+msgid "Friend confirmed"
+msgstr "Prijatelj(-ica) potrjen(-a)"
+
+msgid "You are now friends with %1."
+msgstr "Zdaj sta s/z %1 prijatelja."
+
+msgid "Cancel friendship?"
+msgstr "Preklic prijateljstva?"
+
+msgid "Are you sure you want to cancel your friendship with %1?"
+msgstr ""
+"Ali ste prepričani, da želite preklicati prijateljstvo s/z %1?Ali ste "
+"prepričani, da želite preklicati prijateljstvo z %1?"
+
+msgid "Yes"
+msgstr "Da"
+
+msgid "No"
+msgstr "Ne"
+
+msgid "Stay friends"
+msgstr "Ostani prijatelj"
+
+msgid "Friendship cancelled"
+msgstr "Prijateljstvo preklicano"
+
+msgid "Your friendship with %1 has been cancelled."
+msgstr "Vaše prijateljstvo s/z %1 je bilo preklicano."
+
+msgid "Unknown action"
+msgstr "Neznano dejanje"
+
+msgid "Welcome to %1"
+msgstr "Dobrodošli k %1"
+
+msgid "View and edit your account preferences using the links below."
+msgstr "Poglejte in uredite nastavitve vašega računa s spodnjimi povezavami."
+
+msgid "Your account"
+msgstr "Vaš račun"
+
+msgid "Read our rules and policies"
+msgstr "Preberite naša pravila in politiko"
+
+msgid "Run %1 only on authorized computers"
+msgstr "Poganjajte %1 le na dovoljenih računalnikih"
+
+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 ""
+"Poganjajte %1 le na računalnikih, katerih lastnik ste ali za katere ste "
+"pridobili dovoljenje lastnika. Nekatera podjetja in Å¡ole imajo pravila, ki "
+"prepovedujejo uporabo njihovih računalnikov za projekte, kot je %1."
+
+msgid "How %1 will use your computer"
+msgstr "Kako bo %1 uporabljal vaš računalnik"
+
+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 ""
+"Med tem ko poganjate %1 na vašem računalniku, bo ta uporabljal del "
+"procesorske moči vašega računalnika, prostora na disku in pasovne širine "
+"mreže. Nastavite lahko koliko teh virov uporablja %1 in kdaj ."
+
+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 ""
+"Delo, ki ga opravi vaš računalnik, pripomore k ciljem %1, kot so opisani na "
+"njihovi spletni strani. Ta aplikacija se od časa do časa lahko spremeni."
+
+msgid "Privacy policy"
+msgstr "Politika zasebnosti"
+
+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 ""
+"Vaš račun na %1 je identificiran z imenom, ki ga izberete. To ime je lahko "
+"prikazano na spletni strani %1, skupaj s povzetkom dela, ki ga je vaš "
+"računalnik opravil za %1. Če želite biti anonimni, izberite ime, ki ne "
+"odkriva vaše identitete."
+
+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 ""
+"Če sodelujete v %1, bo %1 zabeležil informacije o vašem računalniku (kot "
+"naprimer tip procesorja, količina pomnilnika in podobno)  in to bo "
+"uporabljeno pri odločanju, kakšen tip dela je dodeljen vašemu računalniku. "
+"Ta informacija bo tudi prikazana na spletni strani %1. Nič, kar odkriva "
+"lokacijo vašega računalnika (kot ime domene ali mrežni naslov), ne bo "
+"prikazano."
+
+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 ""
+"Za sodelovanje v %1 morate podati naslov, na katerega prejemate elektronsko "
+"pošto. Ta naslov ne bo prikazan na spletni strani %1 ali deljen z "
+"organizacijami. %1 vam morda pošlje periodične novice, kdajkoli se lahko od "
+"njih tudi odjavite."
+
+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 ""
+"Zasebna sporočila poslana na spletno stran %1 so vidna le pošiljatelju in "
+"prejemniku.  %1 ne pregleduje ali cenzurira vsebino teh sporočil.  Če ste "
+"prejeli neželjena zasebna sporočila od drugega uporabnika %1, jih lahko "
+"dodate k vašemu %2filtru sporočil%3.  To bo preprečilo, da bi videli "
+"katerokoli javno ali zasebno sporočilo tega uporabnika."
+
+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 ""
+"Če uporabljate forume na naši spletni strani, morate slediti %2pravilom "
+"objavljanja%3. Sporočila objavljen na %1 forumih so vidna vsem, vključno "
+"nečlanom.  Z objavo na forum dajete trajno pravico vsakomur, da bere in "
+"kopira vaše objave."
+
+msgid "Is it safe to run %1?"
+msgstr "Je varno poganjati %1?"
+
+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 ""
+"Vsakič, ko snamete program z interneta, tvegate: program ima morda nevarne "
+"napake ali pa so vdrli v strežnik. %1 se je potrudila, da čimbolj omeji ta "
+"tveganja. Našo aplikacijo smo natančno stestirali. Naši strežniki so za "
+"požarnim zidom in nastavljeni so za visoko varnost. Za zagotovitev "
+"integritete prenosov, so vse izvedljive datoteke digitalno podpisane na "
+"varnem računalniku, ki ni priključen na internet."
+
+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 ""
+"Aplikacije, ki jih poganja %1 lahko povzročijo, da se nekateri računalniki "
+"pregrejejo. Če se to zgodi, prenehajte poganjati %1 ali uporabite %2pomožni "
+"program%3, ki omeji uporabo procesorja."
+
+msgid ""
+"%1 was developed by %2. BOINC was developed at the University of California."
+msgstr "%1 so razvili pri %2. BOINC je bil razvit na University of California."
+
+msgid "Liability"
+msgstr "Pravna odgovornost"
+
+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 ""
+"%1 ne prevzema nikakeršne pravne odgovornosti za škodo na vašem računalniku, "
+"izgubo podatkov ali kateregakoli dogodka ali stanja, ki se lahko pripeti kot "
+"rezultat sodelovanja v %1."
+
+msgid "Other BOINC projects"
+msgstr "Drugi BOINC projekti"
+
+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 ""
+"Drugi projekti uporabljajo isto platformo, BOINC, kot %1. Morda želite "
+"premisliti o sodelovanju v enem ali več teh projektih. S tem, da to storite, "
+"bo vaš računalnik opravljal uporabno delo tudi, kadar %1 zanj nima na voljo "
+"dela."
+
+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 ""
+"Ti projekti niso povezani s/z %1 in ne moremo jamčiti za njihovo varnostno "
+"prakso ali narave njihovih raziskav.  Uporabljajte jih na lastno odgovornost."
+
+msgid "LANG_NAME_INTERNATIONAL"
+msgstr "Slovenian"
+
+msgid "LANG_NAME_NATIVE"
+msgstr "Slovenščina"
+
+msgid "Your message has been sent."
+msgstr "Vaše sporočilo je bilo poslano."
+
+msgid "You have no private messages."
+msgstr "Nimate zasebnih sporočil."
+
+msgid "Sender and date"
+msgstr "Pošiljatelj in datum"
+
+msgid "Reply"
+msgstr "Odgovor"
+
+msgid "Delete selected messages"
+msgstr "Briši izbrana sporočila"
+
+msgid "Sender"
+msgstr "Pošiljatelj"
+
+msgid "Date"
+msgstr "Datum"
+
+msgid "You need to fill all fields to send a private message"
+msgstr "Da pošljete zasebno sporočilo, morate izpolniti vsa polja"
+
+msgid "Could not find user with id %1"
+msgstr "Ne najdem uporabnika z id %1"
+
+msgid "Could not find user with username %1"
+msgstr "Ne najdem uporabnika z uporabniškim imenom %1"
+
+msgid "%1 is not a unique username; you will have to use user ID"
+msgstr "%1 ni unikatno uporabniško ime; uporabiti boste morali ID uporabnika"
+
+msgid "User %1 (ID: %2) is not accepting private messages from you."
+msgstr "Uporabnik %1 (ID: %2) ne sprejema vaših zasebnih sporočil."
+
+msgid "Really block %1?"
+msgstr "Zares blokirati %1?"
+
+msgid ""
+"Are you really sure you want to block user %1 from sending you private "
+"messages?"
+msgstr ""
+"Ali ste res prepričani, da želite prepričiti uporabniku %1, da bi vam poslal "
+"zasebna sporočila?"
+
+msgid "Please note that you can only block a limited amount of users."
+msgstr ""
+"Prosim, imejte v mislih, da lahko blokirate le omejeno Å¡tevilo uporabnikov."
+
+msgid ""
+"Once the user has been blocked you can unblock it using forum preferences "
+"page."
+msgstr ""
+"Ko enkrat blokirate uporabnika, ga lahko odblokirate z uporabo strani z "
+"nastavitvami foruma."
+
+msgid "Add user to filter"
+msgstr "Dodaj uporabnika v filter"
+
+msgid "No, cancel"
+msgstr "Ne, prekliči"
+
+msgid "User %1 blocked"
+msgstr "Uporabnik %1 blokiran"
+
+msgid "User %1 has been blocked from sending you private messages."
+msgstr "Uporabniku %1 je preprečeno vam pošiljati zasebna sporočila."
+
+msgid "To unblock, visit %1message board preferences%2"
+msgstr "Da odblokirate, obiščite %1nastavitve razpravljalnice%2"
+
+msgid "Profiles"
+msgstr "Profili"
+
+msgid ""
+"%1Profiles%2 let individuals share backgrounds and opinions with the %3 "
+"community."
+msgstr ""
+"%1Profili%2 omogočajo posameznikom, da delijo svoje ozadje in mnenja s "
+"skupnostjo %3."
+
+msgid ""
+"Explore the diversity of your fellow volunteers, and contribute your own "
+"views for others to enjoy."
+msgstr ""
+"Raziščite raznolikost vaših kolegov in kolegic prostovoljcev in prispevajte "
+"vaše lastne poglede drugim v veselje."
+
+msgid ""
+"If you haven't already, you can %1create your own user profile%2 for others "
+"to see!"
+msgstr ""
+"Če še niste, lahko %1ustvarite vaš lasten uporabniški profil%2, da ga drugi "
+"vidijo!"
+
+msgid "User of the Day"
+msgstr "Uporabnik dneva"
+
+msgid "User Profile Explorer"
+msgstr "Raziskovalec uporabniških profilov"
+
+msgid "View the %1User Picture Gallery%2."
+msgstr "Poglejte %1Galerijo slik uporabnikov%2."
+
+msgid "Browse profiles %1by country%2."
+msgstr "Brskajte profile %1po državi%2."
+
+msgid ""
+"Browse profiles %1at random%2, %3at random with pictures%2, or %4at random "
+"without pictures%2."
+msgstr ""
+"Brskajte profile %1naključno%2, %3naključno s slikami%2 ali %4naključno brez "
+"slik%2."
+
+msgid "Alphabetical profile listings:"
+msgstr "Seznam profilov po abecedi:"
+
+msgid "Search profile text"
+msgstr "Iščite po besedilu profilov"
+
+msgid "No profiles"
+msgstr "Ni profilov"
+
+msgid "No profiles matched your query."
+msgstr "Ni profilov, ki bi se ujemali z vašim povpraševanjem."
+
+msgid "Invalid vote type:"
+msgstr "Neveljaven tip glasovnice:"
+
+msgid "Vote Recorded"
+msgstr "Glasovanje zabeleženo"
+
+msgid "Thank you"
+msgstr "Hvala"
+
+msgid "Your recommendation has been recorded."
+msgstr "Vaše priporočilo je bilo zabeleženo."
+
+msgid "Your vote to reject this profile has been recorded."
+msgstr "Vaš glas za zavrnitev tega profila je bil zabeležen."
+
+msgid "Return to profile."
+msgstr "Vrnite se na profil."
+
+msgid "This feature is turned off temporarily"
+msgstr "Ta možnost je začasno izklopljena"
+
+msgid "No computer with ID %1 found"
+msgstr "Ni bil najden računalnik z ID %1"
+
+msgid "Tasks for computer %1"
+msgstr "Opravila za računalnik %1"
+
+msgid "No access"
+msgstr "Ni dostopa"
+
+msgid "Missing user ID or host ID"
+msgstr "Manjka ID uporabnika ali ID gostitelja"
+
+msgid "User of the day"
+msgstr "Uporabnik dneva"
+
+msgid "Account data for %1"
+msgstr "Podatki o računu za %1"
+
+msgid "Statistics and leaderboards"
+msgstr "Statistika in lestvice"
+
+msgid "Statistics for %1"
+msgstr "Statistika za %1"
+
+msgid "Top participants"
+msgstr "Najboljši udeleženci"
+
+msgid "Top computers"
+msgstr "Najboljši računalniki"
+
+msgid "Top teams"
+msgstr "Najboljše ekipe"
+
+msgid ""
+"More detailed statistics for %1 and other BOINC-based projects are available "
+"at several web sites:"
+msgstr ""
+"Več podrobnejše statistike za %1 in druge na BOINC temelječe projekte je na "
+"voljo na večih spletnih straneh:"
+
+msgid ""
+"You can also get your current statistics in the form of a \"signature image"
+"\":"
+msgstr ""
+"Vaše trenutne statistike lahko dobite tudi v obliki \"slikovni podpis\":"
+
+msgid ""
+"Additionally you can get your individual statistics summed across all BOINC "
+"projects from several sites; see your %1home page%2."
+msgstr ""
+"Dodatno lahko dobite vaše osebne statistike seštete po vseh BOINC projektih "
+"na večih straneh; glejte vašo %1domačo stran%2."
+
+msgid "%1 participants may form %2teams%3"
+msgstr "%1 udeležencev lahko ustvari %2ekipo%3"
+
+msgid ""
+"You may belong to only one team. You can join or quit a team at any time."
+msgstr ""
+"Pripadate lahko le eni ekipi. Kdajkoli se lahko pridružite k ekipi ali jo "
+"zapustite."
+
+msgid "Each team has a %1founder%2 who may:"
+msgstr "Vsaka ekipa ima %1ustanovitelja%2, ki lahko:"
+
+msgid "access team members' email addresses"
+msgstr "dostopa do naslovov elektronske pošte članov ekipe"
+
+msgid "edit the team's name and description"
+msgstr "ureja ime ekipe in njen opis"
+
+msgid "remove members from the team"
+msgstr "odstrani člane iz ekipe"
+
+msgid "disband a team if it has no members"
+msgstr "razpusti ekipo, če ta nima članov"
+
+msgid "To join a team, visit its team page and click %1Join this team%2."
+msgstr ""
+"Da se pridružite ekipi, obiščite spletno stran ekipe in kliknite %1Pridruži "
+"se tej ekipi%2."
+
+msgid "Find a team"
+msgstr "Poiščite ekipo"
+
+msgid "All teams"
+msgstr "Vse ekipe"
+
+msgid "%1 teams"
+msgstr "Ekipe %1"
+
+msgid "Create a new team"
+msgstr "Ustvari novo ekipo"
+
+msgid ""
+"If you cannot find a team that is right for you, you can %1create a team%2."
+msgstr "Če ne najdete ekipe, pravšnje za vas, lahko %1ustvarite ekipo%2."
+
+msgid "You must choose a non-blank team name"
+msgstr "Izbrati morate ime ekipe, ki ni prazno"
+
+msgid "A team named %1 already exists - try another name"
+msgstr "Ekipa, imenovana %1, že obstaja - poskusite drugo ime"
+
+msgid "Could not create team - please try later."
+msgstr "Ekipe ni možno ustvariti - prosim, poskusite kasneje."
+
+msgid "Create a team"
+msgstr "Ustvari ekipo"
+
+msgid ""
+"You belong to %1. You must %2quit this team%3 before creating a new one."
+msgstr "Pripadate k %1. Preden ustvarite novo, morate %2zapustiti to ekipo%3."
+
+msgid "Top hosts"
+msgstr "Najboljši gostitelji"
+
+msgid "Top %1 teams"
+msgstr "Najboljših %1 ekip"
+
+msgid "Participant since"
+msgstr "Udeleženec od"
+
+msgid "This user has no profile"
+msgstr "Ta uporabnik nima profila"
+
+msgid "Account data"
+msgstr "Podatki računa"
+
+msgid ""
+"Your 'weak account key' lets you attach computers to your account on this "
+"project, without giving the ability to log in to your account or to change "
+"it in any way."
+msgstr ""
+"Vaš 'šibki ključ računa' vam dovoli pripeti računalnike na vaš račun pri tem "
+"projektu, brez da bi se bilo možno prijaviti v račun ali ga kakorkoli "
+"spremeniti."
+
+msgid ""
+"This mechanism works only with projects that have upgraded their server "
+"software 7 Dec 2007 or later."
+msgstr ""
+"Ta mehanizem deluje le pri projektih, ki so posodobili programsko opremo na "
+"svojem strežniku na različico z datumom 7. december 2007 ali novejšo."
+
+msgid "Your weak account key for this project is:"
+msgstr "Vaš šibki uporabniški ključ za ta projekt je:"
+
+msgid ""
+"To use your weak account key on a given host, find or create the 'account "
+"file' for this project. This file has a name of the form "
+"<b>account_PROJECT_URL.xml</b>. The account file for %1 is <b>%2</b>."
+msgstr ""
+"Da na danem gostitelju uporabite vaš šibki ključ računa, poiščite ali "
+"ustvarite 'datoteko računov' za ta projekt. Ta datoteka ima obliko "
+"<b>račun_URL_PROJEKTA.xml</b>.Datoteka računov za %1 je <b>%2</b>."
+
+msgid "Create this file if needed. Set its contents to:"
+msgstr "ÄŒe je potrebno, ustvarite to datoteko. Njeno vsebino nastavite na:"
+
+msgid ""
+"Your weak account key is a function of your password. If you change your "
+"password, your weak account key changes, and your previous weak account key "
+"becomes invalid."
+msgstr ""
+"Vaš šibki ključ računa je funkcija vašega gesla. Če spremenite vaše geslo, "
+"se vaš šibki ključ računa spremeni in vaš prejšnji šibki ključ računa "
+"postane neveljaven."
diff --git a/locale/sl/BOINC-Web.po b/locale/sl/BOINC-Web.po
new file mode 100644
index 0000000..4abefa8
--- /dev/null
+++ b/locale/sl/BOINC-Web.po
@@ -0,0 +1,688 @@
+# 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: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
+"PO-Revision-Date: 2009-12-15 11:54-0700\n"
+"Last-Translator: Miha P <miha at wolfey.si>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: sl\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
+"%100==4 ? 2 : 3);\n"
+"X-Generator: Pootle 1.2.1\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+#: poll.inc:18
+msgid "[check all that apply]"
+msgstr "[obkljukajte vse, kar velja]"
+
+#: poll.inc:47
+msgid "Other:"
+msgstr "Drugo:"
+
+#: poll_data.inc:19
+msgid "Yes - I have been running BOINC on my computer for..."
+msgstr "Da - poganjam BOINC na mojem računalniku že..."
+
+#: poll_data.inc:22
+msgid "less than a week"
+msgstr "manj kot teden"
+
+#: poll_data.inc:23
+msgid "less than a month"
+msgstr "manj kot mesec"
+
+#: poll_data.inc:24
+msgid "less than a year"
+msgstr "manj kot leto"
+
+#: poll_data.inc:25
+msgid "more than a year"
+msgstr "več kot leto"
+
+#: poll_data.inc:31
+msgid "No - I used to run BOINC, but..."
+msgstr "Ne - poganjal(-a) sem BOINC, vendar..."
+
+#: poll_data.inc:34
+msgid "I lost interest"
+msgstr "sem izgubil(-a) interes"
+
+#: poll_data.inc:35
+msgid "it was too complicated"
+msgstr "je bilo preveč komplicirano"
+
+#: poll_data.inc:36
+msgid "I stopped it and forgot to start again"
+msgstr "prenehal sem in pozabil spet pričeti"
+
+#: poll_data.inc:37
+msgid "it caused problems on my computer"
+msgstr "je na mojem računalniku povzročal probleme"
+
+#: poll_data.inc:38
+msgid "it used too much electricity"
+msgstr "je porabljal preveč elektrike"
+
+#: poll_data.inc:39
+msgid "I switched to a non-BOINC computing project"
+msgstr "Preklopil sem na na računski projekt, ki ni BOINC"
+
+#: poll_data.inc:45
+msgid "No - I tried running BOINC, but..."
+msgstr "Ne - poskusil(-a) sem pognati BOINC, vendar..."
+
+#: poll_data.inc:48
+msgid "the software didn't install correctly"
+msgstr "se programska oprema ni pravilno namestila"
+
+#: poll_data.inc:49
+msgid "I couldn't figure out how to use the software"
+msgstr "nisem mogel/mogla ugotoviti, kako uporabljati to programsko opremo"
+
+#: poll_data.inc:50
+msgid "I had network communication problems"
+msgstr "sem imel(-a) probleme s komunikacijo po mreži"
+
+#: poll_data.inc:51
+msgid "I couldn't attach to a project"
+msgstr "se nisem mogel/mogla pripeti na projekt"
+
+#: poll_data.inc:52
+msgid "I attached to a project, but never got any work"
+msgstr ""
+"nisem dobil(-a) nobenega dela, kljub temu, da sem se pripel(-a) na projekt"
+
+#: poll_data.inc:58
+msgid "No - I never tried running BOINC, because..."
+msgstr "Ne - nikoli nisem poskusil(-a) pognati BOINC, ker..."
+
+#: poll_data.inc:61
+msgid "I was concerned about security"
+msgstr "me je skrbelo za varnost"
+
+#: poll_data.inc:62
+msgid "I wasn't interested in any of the projects"
+msgstr "me nobeden izmed projektov ni zanimal"
+
+#: poll_data.inc:63
+msgid "I don't have permission to run it on my computer"
+msgstr "ga nimam pravice poganjati na mojem računalniku"
+
+#: poll_data.inc:64
+msgid "No version was available for my computer"
+msgstr "za moj računalnik ni bilo na voljo različice"
+
+#: poll_data.inc:75
+msgid "What kind of computers do you have running BOINC?"
+msgstr "Na kakšnih računalnikih poganjate BOINC?"
+
+#: poll_data.inc:85
+msgid "Where are they?"
+msgstr "Kje so?"
+
+#: poll_data.inc:87
+msgid "Home"
+msgstr "Doma"
+
+#: poll_data.inc:88
+msgid "Work"
+msgstr "Služba"
+
+#: poll_data.inc:89
+msgid "School"
+msgstr "Å ola"
+
+#: poll_data.inc:96
+msgid "How many computers?"
+msgstr "Koliko računalnikov?"
+
+#: poll_data.inc:107
+msgid "On average, how many hours per day are they powered on?"
+msgstr "Koliko ur na dan so v povprečju prižgani?"
+
+#: poll_data.inc:119
+msgid "Age"
+msgstr "Starost"
+
+#: poll_data.inc:129
+msgid "Sex"
+msgstr "Spol"
+
+#: poll_data.inc:131
+msgid "Male"
+msgstr "moški"
+
+#: poll_data.inc:132
+msgid "Female"
+msgstr "ženska"
+
+#: poll_data.inc:137
+msgid "Your level of computer expertise"
+msgstr "Nivo vašega računalniškega znanja"
+
+#: poll_data.inc:139
+msgid "Beginner"
+msgstr "začetniško"
+
+#: poll_data.inc:140
+msgid "Intermediate"
+msgstr "srednje"
+
+#: poll_data.inc:141
+msgid "Advanced"
+msgstr "napredno"
+
+#: poll_data.inc:149
+msgid "Where did you learn about BOINC projects?"
+msgstr "Kje ste izvedeli o BOINC projektih?"
+
+#: poll_data.inc:151
+msgid "TV/radio/newspaper"
+msgstr "TV/radio/časopis"
+
+#: poll_data.inc:152
+msgid "From friends, relatives, or coworkers"
+msgstr "od prijateljev, sorodnikov ali sodelavcev"
+
+#: poll_data.inc:153
+msgid "Team message boards or web sites"
+msgstr "razpravljalnica ali spletna stran ekipe"
+
+#: poll_data.inc:154 poll_data.inc:210
+msgid "The BOINC web site"
+msgstr "Na spletni strani BOINC"
+
+#: poll_data.inc:155
+msgid "Other web sites"
+msgstr "Na drugih spletnih straneh"
+
+#: poll_data.inc:161
+msgid ""
+"Which are the most important factors when you decide whether to participate "
+"in a BOINC project?"
+msgstr ""
+"Kateri so najpomembnejši faktorji, ko se odločate, ali bi sodelovali v BOINC "
+"projektu?"
+
+#: poll_data.inc:163
+msgid "Nice-looking screensaver graphics"
+msgstr "dobra grafična podoba ohranjevalnika zaslona"
+
+#: poll_data.inc:164
+msgid "Fair and quick granting of credit for work done"
+msgstr "pošteno in hitro dodeljavanje točk za opravljeno delo"
+
+#: poll_data.inc:165
+msgid "Getting more credit from this project than from others"
+msgstr "od tega projekt dobim več točk kot od drugih"
+
+#: poll_data.inc:166
+msgid "Helpful and friendly message boards"
+msgstr "razpravljalnice so prijazne in v pomoč"
+
+#: poll_data.inc:167
+msgid "Participation by project staff on the message boards"
+msgstr "sodelovanje osebja projekta na razpravljalnicah"
+
+#: poll_data.inc:168
+msgid "Informative project web site"
+msgstr "informativna spletna stran"
+
+#: poll_data.inc:169
+msgid "The science is important and beneficial"
+msgstr "znanost je pomembna in koristna"
+
+#: poll_data.inc:170
+msgid "Non-profit, and results are public"
+msgstr "neprofitno in rezultati so javni"
+
+#: poll_data.inc:171
+msgid "Personal recognition if my computer finds something"
+msgstr "osebno priznanje, če moj računalnik nekaj najde"
+
+#: poll_data.inc:172
+msgid "Publication by the project in scientific journals"
+msgstr "publikacije projekta v znanstvenih revijah"
+
+#: poll_data.inc:173
+msgid "Periodic email newsletters from the project"
+msgstr "periodične novice projekta po elektronski pošti"
+
+#: poll_data.inc:180
+msgid "How many BOINC projects do you participate in?"
+msgstr "V koliko BOINC projektih sodelujete?"
+
+#: poll_data.inc:190
+msgid "Do you run BOINC as a screensaver?"
+msgstr "Ali uporabljate BOINC kot ohranjevalnik zaslona?"
+
+#: poll_data.inc:192
+msgid "Yes"
+msgstr "Da"
+
+#: poll_data.inc:193
+msgid "No"
+msgstr "Ne"
+
+#: poll_data.inc:198
+msgid "Your usage of project messages boards:"
+msgstr "Vaša uporaba razpravljalnic projekta:"
+
+#: poll_data.inc:200
+msgid "to read information"
+msgstr "za branje informacije"
+
+#: poll_data.inc:201
+msgid "to read and post information"
+msgstr "za branje in objavo informacij"
+
+#: poll_data.inc:202
+msgid "None"
+msgstr "brez"
+
+#: poll_data.inc:206
+msgid ""
+"Where do you get information to help resolve problems with BOINC and/or "
+"BOINC projects?"
+msgstr ""
+"Kje dobite informacije, ki vam pomagajo razrešiti težave z BOINC in/ali "
+"BOINC projekti?"
+
+#: poll_data.inc:208
+msgid "The project message boards"
+msgstr "Razpravljalnice projekta"
+
+#: poll_data.inc:209
+msgid "The BOINC message boards"
+msgstr "Razpravljalnice BOINC"
+
+#: poll_data.inc:211
+msgid "BOINC mailing lists"
+msgstr "BOINC poštni seznam"
+
+#: poll_data.inc:212
+msgid "The Unofficial BOINC Wiki"
+msgstr "Neuradni BOINC Wiki"
+
+#: poll_data.inc:213
+msgid "Team web sites"
+msgstr "Spletne strani ekip"
+
+#: poll_data.inc:214
+msgid "Google or other search engines"
+msgstr "Google ali drugi iskalniki"
+
+#: download.php:40
+msgid "Download BOINC"
+msgstr "Naloži BOINC"
+
+#: download.php:42
+#, php-format
+msgid "%s for %s (%s MB)"
+msgstr "%s za %s (%s MB)"
+
+#: download.php:89
+msgid ""
+"BOINC is a program that lets you donate your idle computer time to science "
+"projects like SETI at home, Climateprediction.net, Rosetta at home, World "
+"Community Grid, and many others. <p> After installing BOINC on your "
+"computer, you can connect it to as many of these projects as you like."
+msgstr ""
+"BOINC je program, ki vam omogoča podariti čas mirovanja računalnika "
+"znanstvenim projektom, kot so SETI at home, Climateprediction.net, "
+"Rosetta at home, World Community Grid in mnogi drugi. <p>Po namestitvi BOINC na "
+"vaš računalnik se lahko povežete na toliko projektov, kot želite."
+
+#: download.php:114
+#, php-format
+msgid ""
+"Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
+"(GPU), you may be able to %suse it to compute faster%s"
+msgstr ""
+"Opomba: če je vaš računalnik opremeljen z NVIDIA grafičnim procesorjem, ga "
+"morda lahko %suporabite, da računate hitreje%s"
+
+#: download.php:120
+msgid "System requirements"
+msgstr "Sistemske zahteve"
+
+#: download.php:121
+msgid "Release notes"
+msgstr "Opombe ob izdaji"
+
+#: download.php:122 index.php:89
+msgid "Help"
+msgstr "Pomoč"
+
+#: download.php:123
+msgid "All versions"
+msgstr "Vse različice"
+
+#: download.php:141
+msgid "BOINC: compute for science"
+msgstr "BOINC: računajte za znanost"
+
+#: 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 ""
+"BOINC pomoč na internetu vam omogoča govoriti ena-na-ena z izkušenimi "
+"uporabniki BOINC, ki lahko: %sodgovorijo na vprašanja o BOINC in "
+"prostovoljnem računanju; %s vas vodijo skozi proces namestitve in uporabe "
+"BOINC; %s odpravljajo morebitne probleme."
+
+#: 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 ""
+"BOINC pomoč na internetu temelji na %sSkype%s, telefonskem sistemu na "
+"internetu. Skype je zastonj (tako programska oprema kot klici).  ÄŒe Å¡e "
+"nimate Skype, ga %snaložite in namestite zdaj%s.  Ko boste končali, se "
+"vrnite na to stran."
+
+#: 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 ""
+"Najboljši način, da dobite pomoč je glasovno, za kar rabite ali vdelan "
+"mikrofon in zvočnike ali zunanji komplet slušalk in mikrofona za vaš "
+"računalnik.  Lahko tudi uporabite Skypov tekstovni klepet ali navadno pošto "
+"(če nimate Skype) za komunikacijo s prostovoljci za pomoč."
+
+#: help.php:31
+msgid ""
+"Volunteers speaking several languages are available. Please select a "
+"language:"
+msgstr ""
+"Na voljo so prostovoljci, ki govorijo več jezikov. Prosim, izberite jezik:"
+
+#: help.php:47
+msgid "Be a Help Volunteer"
+msgstr "Bodi prostovoljec za pomoč."
+
+#: 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 ""
+"Če ste izkušen uporabnik BOINC, vas spodbujamo, da %spostanete prostovoljec "
+"za pomoč%s.  To je krasen način, da pomagate znastvenim raziskavam in "
+"prostovoljnem računanju - in zabavno je!"
+
+#: help.php:56
+#, php-format
+msgid ""
+"If you're already a Help Volunteer: to edit your settings, %sclick here%s."
+msgstr ""
+"Če ste že prostovoljec za pomoč: da uredite vaše nastavitve, %skliknite tu%s."
+
+#: index.php:23
+msgid "Computing power"
+msgstr "Računska moč"
+
+#: index.php:25
+msgid "Top 100 volunteers"
+msgstr "Najboljših 100 prostovoljcev"
+
+#: index.php:26
+msgid "Statistics"
+msgstr "Statistika"
+
+#: index.php:53
+msgid "Active:"
+msgstr "Aktivnih:"
+
+#: index.php:53
+msgid "volunteers,"
+msgstr "prostovoljcev,"
+
+#: index.php:53
+msgid "computers.\n"
+msgstr "računalnikov.\n"
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr "24-urno povprečje:"
+
+#: index.php:54
+msgid "TeraFLOPS."
+msgstr "TeraFLOPS"
+
+#: index.php:66
+msgid "News"
+msgstr "Novice"
+
+#: index.php:72
+msgid "... more"
+msgstr ".. več"
+
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr "Novice so na voljo na %sRSS viru%s"
+
+#: index.php:86
+msgid "Volunteer"
+msgstr "Bodi prostovoljec"
+
+#: index.php:88
+msgid "Download"
+msgstr "Prenesi"
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr "Dokumentacija"
+
+#: index.php:96
+#, php-format
+msgid ""
+" Use the idle time on your computer (Windows, Mac, or Linux) to cure "
+"diseases, study global warming, discover pulsars, and do many other types of "
+"scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %"
+"sDownload%s and run BOINC software  %sEnter%s an email address and password. "
+msgstr ""
+" Uporabite čas mirovanja vašega računalnika (Windows, Mac ali Linux) za "
+"zdravljenje bolezni, preučevanje globalnega segrevanja, odkrivanje pulzarjev "
+"in mnogo drugih tipov znanstvenih raziskav.  Je varno, zaščiteno in "
+"preprosto:  %sIzberite%s projekte  %sNaložite%s in poženite BOINC programsko "
+"opremo  %sVnesite%s naslov elektronske pošte in geslo."
+
+#: index.php:107
+#, php-format
+msgid ""
+"Or, if you run several projects, try an %saccount manager%s such as %"
+"sGridRepublic%s or %sBAM!%s. "
+msgstr ""
+"Ali, če poganjate več projektov, poskusite %supravitelja računov% kot je %"
+"sGridRepublic%s ali %sBAM!%s"
+
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr "Računajte z BOINC"
+
+#: index.php:126
+msgid "Software updates"
+msgstr "Posodobitve programske opreme"
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr "Projekt BOINC"
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr "Potrebujemo pomoč!"
+
+#: index.php:160
+msgid "Programming"
+msgstr "Programiranje"
+
+#: index.php:161
+msgid "Translation"
+msgstr "Prevajanje"
+
+#: index.php:162
+msgid "Testing"
+msgstr "Testiranje"
+
+#: index.php:165
+msgid "Software development"
+msgstr "Razvoj programske opreme"
+
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr "programski vmesniki (API) za dodatno programsko opremo"
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr "Osebje in ljudje, ki so prispevali"
+
+#: index.php:168
+msgid "Message boards"
+msgstr "Razpravljalnice"
+
+#: index.php:169
+msgid "Email lists"
+msgstr "Poštni seznami"
+
+#: index.php:170
+msgid "Events"
+msgstr "Dogodki"
+
+#: index.php:171
+msgid "Conferences"
+msgstr "Konference"
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr "ÄŒlanki in govori"
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr "Logotipi in grafika"
+
+#: index.php:206
+msgid "Browser default"
+msgstr "Privzeto v brskalniku"
+
+#: index.php:250
+#, php-format
+msgid ""
+"Open-source software for %svolunteer computing%s and %sgrid computing%s."
+msgstr ""
+"Odprtnokodna programska oprema za %sprostovoljno računanje%s and %smrežno "
+"računanje%s."
+
+#: poll.php:9
+msgid "BOINC user survey"
+msgstr "BOINC uporabniška anketa"
+
+#: poll.php:19
+msgid ""
+"Several volunteer computing projects, including Climateprediction.net, "
+"Einstein at home, and SETI at home, use software called BOINC.  If you participate "
+"in projects like this, we request that you answer the following questions.  "
+"This will help BOINC-based projects increase participation and achieve "
+"greater scientific results. <p> Please answer as many questions as you want, "
+"then go to the bottom and click OK. If you previously completed the survey "
+"but your answers have changed, please complete it again - your new answers "
+"will replace the old ones. <p> The current results of the survey are <a "
+"href=poll_results.php>here</a>. "
+msgstr ""
+"Več projektov prostovoljnega računanja, vključno s Climateprediction.net, "
+"Einstein at home in SETI at home, uporablja programsko opremo imenovano BOINC.  ÄŒe "
+"sodelujete v projektu, kot je ta, od vas želimo, da odgovorite na sledeča "
+"vprašanja. To bo pomagalo na BOINC temelječim projektom, da povečajo "
+"udeležbo in dosežejo večje znanstvene rezultate. <p> Prosim odgovorite na "
+"toliko vprašanj, kot želite, nato pojdite na dno in kliknite \"V redu\".  Če "
+"ste anketo že izpolnili, pa so se vaši odgovori vmes spremenili, jo prosim "
+"spet izpolnite - vaši novi odgovori bodo zamenjali stare. <p> Trenutni "
+"rezultati ankete so <a href=poll_results.php>tukaj</a>. "
+
+#: poll.php:25
+msgid "Do you run BOINC?"
+msgstr "Ali poganjate BOINC?"
+
+#: poll.php:30
+msgid "Your participation"
+msgstr "Vaša udeležba"
+
+#: poll.php:32
+msgid "Your computers"
+msgstr "Vaši računalniki"
+
+#: poll.php:34
+msgid "You"
+msgstr "Vi"
+
+#: poll.php:39
+msgid "Nationality"
+msgstr "Narodnost"
+
+#: poll.php:44
+msgid "Comments"
+msgstr "Pripombe"
+
+#: poll.php:46
+msgid ""
+"Please suggest ways that BOINC, and the projects that use it, could be "
+"improved:"
+msgstr ""
+"Prosim predlagajte na katere načine bi BOINC in projekti, ki ga uporabljajo, "
+"lahko bili izboljšani:"
+
+#: poll.php:50
+msgid "When done click:"
+msgstr "Ko zaključite, kliknite:"
+
+#: poll_action.php:9
+msgid "Error - results not recorded"
+msgstr "Napaka - rezultati niso zabeleženi"
+
+#: poll_action.php:10
+msgid ""
+"An internal error has prevented us from recording your survey response.  "
+"Please try again later."
+msgstr ""
+"Interna napaka nam je preprečila zabeležiti rezultate vaše ankete.  Prosimo, "
+"poskusite znova kasneje."
+
+#: poll_action.php:32
+msgid "Survey response recorded"
+msgstr "Odgovori na anketo zabeleženi"
+
+#: poll_action.php:33
+msgid "Thank you for completing the BOINC user survey."
+msgstr "Hvala, da ste izpolnili BOINC uporabniško anketo."
+
+#: poll_results.php:195
+msgid "Survey results"
+msgstr "Rezultati ankete"
+
+#: poll_results.php:196
+msgid ""
+"These are the current results of the <a href=poll.php>BOINC user survey</"
+"a>.  This page is updated every hour."
+msgstr ""
+"To so trenutni rezultati <a href=poll.php>BOINC uporabniške ankete</a>.  Ta "
+"stran je posodobljena vsako uro."
diff --git a/locale/sl/pootle-boincclient610-sl.prefs b/locale/sl/pootle-boincclient610-sl.prefs
new file mode 100644
index 0000000..b57be68
--- /dev/null
+++ b/locale/sl/pootle-boincclient610-sl.prefs
@@ -0,0 +1,8 @@
+# Pootle preferences for project boincclient610, language sl
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  MihaP = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/sv_SE/BOINC-Manager.mo b/locale/sv_SE/BOINC-Manager.mo
new file mode 100644
index 0000000..c5de9f0
Binary files /dev/null and b/locale/sv_SE/BOINC-Manager.mo differ
diff --git a/locale/sv_SE/BOINC-Manager.po b/locale/sv_SE/BOINC-Manager.po
index 80f6cff..96d1d8d 100644
--- a/locale/sv_SE/BOINC-Manager.po
+++ b/locale/sv_SE/BOINC-Manager.po
@@ -2,8 +2,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -11,427 +11,490 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Translate Toolkit 1.2.1\n"
+"X-Poedit-SearchPath-0: clientgui\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:425 clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432 clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
-msgid "The minimum password length for this project is %d. Please enter a different password."
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
+msgid ""
+"The minimum password length for this project is %d. Please enter a different "
+"password."
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
-msgid "The minimum password length for this account manager is %d. Please enter a different password."
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
+msgid ""
+"The minimum password length for this account manager is %d. Please enter a "
+"different password."
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:506
-msgid "The password and confirmation password do not match. Please type them again."
+#: clientgui/AccountInfoPage.cpp:560
+msgid ""
+"The password and confirmation password do not match. Please type them again."
 msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
 msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
 msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324 clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
 msgid "Connect to another computer running %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
 msgid "Show information about %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
 msgid "Show information about BOINC and %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628 clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -440,55 +503,64 @@ msgid ""
 "Do you want to stop using %s?"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
+msgid "%s - Language Selection"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
+msgid ""
+"The %s's default language has been changed, in order for this change to take "
+"affect you must restart the %s."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
-msgid "%s - Language Selection"
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
-msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
 msgid "Connected to %s (%s)"
 msgstr ""
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr ""
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -496,11 +568,11 @@ msgid ""
 "Please visit the project's web site and follow the instructions there."
 msgstr ""
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr ""
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -508,249 +580,298 @@ msgid ""
 "Please visit the project's web site and follow the instructions there."
 msgstr ""
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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."
+"Please contact your administrator to add you to the 'boinc_users' local user "
+"group."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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."
+"Please launch the Control Panel->Administative Tools->Services applet and "
+"start the BOINC service."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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"
+"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 ""
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
 msgid ""
-"%s is unable to communicate with a project and needs an Internet connection.\n"
-"Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
+"%s is unable to communicate with a project and needs an Internet "
+"connection.\n"
+"Please connect to the Internet, then select the 'Do network communications' "
+"item from the Advanced menu."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
 msgid "%s is connecting to the Internet."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
-"%s couldn't do Internet communication, and no default connection is selected.\n"
+"%s couldn't do Internet communication, and no default connection is "
+"selected.\n"
 "Please connect to the Internet, or select a default connection\n"
 "using Advanced/Options/Connections."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
 msgid "%s failed to connect to the Internet."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr ""
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall "
+"BOINC.\n"
+"(Error code %d)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
 msgid "%s: %.2f%% completed."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -758,497 +879,490 @@ msgid ""
 "Click Finish to close."
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225 clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246 clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr ""
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr ""
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
+#, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179 clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195 clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120 clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
 "Click Clear to restore web-based settings."
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
-msgid "check this if you want this computer to do work while it runs on batteries"
+#: clientgui/DlgAdvPreferencesBase.cpp:83
+msgid ""
+"check this if you want this computer to do work while it runs on batteries"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
-msgid "check this if you want this computer to do work even when you're using it"
+#: clientgui/DlgAdvPreferencesBase.cpp:92
+msgid ""
+"check this if you want this computer to do work even when you're using it"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
-msgid "check this if you want your GPU to do work even when you're using the computer"
+#: clientgui/DlgAdvPreferencesBase.cpp:101
+msgid ""
+"check this if you want your GPU to do work even when you're using the "
+"computer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
-msgid "do work only after you haven't used the computer for this number of minutes"
+#: clientgui/DlgAdvPreferencesBase.cpp:123
+msgid ""
+"do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
 msgid "% of the processors"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
 msgid "% CPU time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
-msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
+#: clientgui/DlgAdvPreferencesBase.cpp:384
+msgid ""
+"if checked, a confirmation dialog will be displayed before trying to connect "
+"to the Internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507 clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr ""
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637 clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121 clientgui/Localization.cpp:139
 msgid "Help"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1258,8 +1372,8 @@ msgid ""
 "exit the Manager, then choose from the following options:"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1269,534 +1383,475 @@ msgid ""
 "tasks at the times you selected in your preferences."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177 clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388 clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr ""
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199 clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215 clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217 clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219 clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215 clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217 clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219 clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290 clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292 clientgui/DlgItemProperties.cpp:306
 msgid "Elapsed time"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448 clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:180
-msgid "How often should the Manager remind you when a network connection is needed?"
+#: clientgui/DlgOptions.cpp:180
+msgid ""
+"How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267 clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275 clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283 clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290 clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296 clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304 clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr ""
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
 msgid "%s - Select Computer"
 msgstr ""
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr ""
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
 msgstr ""
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
+#, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1806,239 +1861,228 @@ msgid ""
 "then restart the %s."
 msgstr ""
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31 clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr ""
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr ""
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr ""
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39 clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111 clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr ""
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41 clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr ""
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr ""
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr ""
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47 clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr ""
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49 clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr ""
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51 clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr ""
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr ""
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55 clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr ""
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57 clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr ""
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr ""
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr ""
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr ""
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr ""
 
-#: clientgui/Localization.cpp:71
-msgid "Correspond with admins and other users on the Einstein at Home message boards"
+#: clientgui/Localization.cpp:71
+msgid ""
+"Correspond with admins and other users on the Einstein at Home message boards"
 msgstr ""
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr ""
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr ""
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr ""
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr ""
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr ""
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr ""
 
-#: clientgui/Localization.cpp:95
-msgid "View a listing of all the computers on which you are running Einstein at Home"
+#: clientgui/Localization.cpp:95
+msgid ""
+"View a listing of all the computers on which you are running Einstein at Home"
 msgstr ""
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr ""
 
-#: clientgui/Localization.cpp:103
-msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
+#: clientgui/Localization.cpp:103
+msgid ""
+"The home page of the Laser Interferometer Gravitational-wave Observatory "
+"(LIGO) project"
 msgstr ""
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr ""
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr ""
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115 clientgui/Localization.cpp:133
 msgid "Team"
 msgstr ""
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr ""
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr ""
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr ""
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr ""
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr ""
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr ""
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr ""
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr ""
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr ""
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr ""
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr ""
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr ""
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr ""
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr ""
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr ""
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr ""
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr ""
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr ""
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr ""
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr ""
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr ""
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/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 ""
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr ""
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2046,65 +2090,79 @@ msgid ""
 "Please check the URL and try again."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:320
-msgid "You are already attached to this project. Please choose a different project."
+#: clientgui/ProjectInfoPage.cpp:393
+msgid ""
+"This project may not have work for your type of computer. Are you sure you "
+"wish to continue?"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:417
+msgid ""
+"You are already attached to this project. Please choose a different project."
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:321
-msgid "Already Attached to Project"
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
 msgstr ""
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
 msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
 msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
 msgstr ""
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr ""
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2115,13 +2173,13 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2138,1297 +2196,1158 @@ msgid ""
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337 clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr ""
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr ""
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177 clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
-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."
+#: clientgui/sg_DlgMessages.cpp:202 clientgui/sg_DlgMessages.cpp:210
+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 ""
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
-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."
+#: clientgui/sg_DlgMessages.cpp:204 clientgui/sg_DlgMessages.cpp:212
+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 ""
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252 clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr ""
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393 clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678 clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749 clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765 clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927 clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr ""
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr ""
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217 clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr ""
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223 clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138 clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447 clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr ""
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
 "Please try again later."
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
 "Please try again later."
 msgstr ""
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr ""
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr ""
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82 clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr ""
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr ""
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
 "http://www.example.com/"
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83 clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91 clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107 clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84 clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
 "http://boincproject.example.com"
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104 clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr ""
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84 clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88 clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95 clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106 clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107 clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164 clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187 clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 msgid "Copying selected messages to the clipboard..."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 msgid "Show all messages"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
-msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
+#: clientgui/ViewProjects.cpp:174
+msgid ""
+"Report all completed tasks, get latest credit, get latest preferences, and "
+"possibly get more tasks."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180 clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181 clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187 clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
-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."
+#: clientgui/ViewProjects.cpp:195
+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 ""
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
-msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
+#: clientgui/ViewProjects.cpp:202
+msgid ""
+"Detach computer from this project.  Tasks in progress will be lost (use "
+"'Update' first to report any completed tasks)."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr ""
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr ""
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853 clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895 clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938 clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980 clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163 clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164 clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170 clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
-msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
+#: clientgui/ViewTransfers.cpp:171 clientgui/ViewTransfersGrid.cpp:114
+msgid ""
+"Click 'Abort transfer' to delete the file from the transfer queue. This will "
+"prevent you from being granted credit for this result."
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182 clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183 clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226 clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184 clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185 clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186 clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212 clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271 clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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 ""
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751 clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763 clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763 clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 msgid "Aborting transfer(s)..."
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
 "will not receive credit for it."
 msgstr ""
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 msgid "Abort File Transfer(s)"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184 clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185 clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192 clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199 clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205 clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206 clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224 clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227 clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254 clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342 clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345 clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373 clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr ""
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:437 clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446 clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728 clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734 clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168 clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr ""
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3437,13 +3356,13 @@ msgid ""
 "listed on or managed via %s."
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3459,130 +3378,138 @@ msgid ""
 "World Community Grid then please click on the following button:"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
+#: clientgui/WelcomePage.cpp:301
+msgid "To continue, click Next."
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
+#: clientgui/WizardAttachProject.cpp:610
+msgid "Do you really want to cancel?"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
+#: clientgui/WizardAttachProject.cpp:611
+msgid "Question"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
+#: clientgui/wizardex.cpp:377 clientgui/wizardex.cpp:553
+msgid "&Next >"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
+#: clientgui/wizardex.cpp:383
+msgid "< &Back"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
+#: clientgui/wizardex.cpp:553
+msgid "&Finish"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
+msgid "New page inserted. Index = %i"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
+msgid "New page appended. Index = %i"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
+msgid "Old Page Index = %i"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
+msgid "OnDropTarget: index by HitTest = %i"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
+#: clientgui/common/wxPieCtrl.cpp:66
+msgid "Pie Ctrl"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid ""
+"for accessibility support, please select advanced from the view menu or type "
+"command shift a"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
+#: clientgui/mac/MacAccessiblity.cpp:528 clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:427
-msgid "To continue, click Next."
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
 msgstr ""
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
-msgid "Do you really want to cancel?"
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
 msgstr ""
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
-msgid "Question"
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
 msgstr ""
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
-msgid "&Next >"
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
 msgstr ""
 
-#: clientgui/wizardex.cpp:408
-msgid "< &Back"
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
 msgstr ""
 
-#: clientgui/wizardex.cpp:604
-msgid "&Finish"
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
-msgid "New page inserted. Index = %i"
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
-msgid "New page appended. Index = %i"
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
-msgid "Old Page Index = %i"
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
 msgstr ""
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
-msgid "OnDropTarget: index by HitTest = %i"
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
 msgstr ""
 
-#: clientgui/common/wxPieCtrl.cpp:66
-msgid "Pie Ctrl"
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr ""
diff --git a/locale/sv_SE/BOINC-Web.po b/locale/sv_SE/BOINC-Web.po
index 9b0134c..6d9ecaa 100644
--- a/locale/sv_SE/BOINC-Web.po
+++ b/locale/sv_SE/BOINC-Web.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -18,386 +18,312 @@ msgstr ""
 "X-Poedit-Country: UNITED STATES\n"
 "X-Poedit-KeywordsList: tra\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
 msgstr ""
 
-"
-
+#: poll.inc:47
 msgid "Other:"
 msgstr ""
 
-"
-
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
 msgstr ""
 
-"
-
+#: poll_data.inc:22
 msgid "less than a week"
 msgstr ""
 
-"
-
+#: poll_data.inc:23
 msgid "less than a month"
 msgstr ""
 
-"
-
+#: poll_data.inc:24
 msgid "less than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:25
 msgid "more than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:34
 msgid "I lost interest"
 msgstr ""
 
-"
-
+#: poll_data.inc:35
 msgid "it was too complicated"
 msgstr ""
 
-"
-
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
 msgstr ""
 
-"
-
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:38
 msgid "it used too much electricity"
 msgstr ""
 
-"
-
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr ""
 
-"
-
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
 msgstr ""
 
-"
-
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
 msgstr ""
 
-"
-
+#: poll_data.inc:50
 msgid "I had network communication problems"
 msgstr ""
 
-"
-
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
 msgstr ""
 
-"
-
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr ""
 
-"
-
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
 msgstr ""
 
-"
-
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr ""
 
-"
-
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr ""
 
-"
-
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr ""
 
-"
-
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr ""
 
-"
-
+#: poll_data.inc:87
 msgid "Home"
 msgstr ""
 
-"
-
+#: poll_data.inc:88
 msgid "Work"
 msgstr ""
 
-"
-
+#: poll_data.inc:89
 msgid "School"
 msgstr ""
 
-"
-
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr ""
 
-"
-
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr ""
 
-"
-
+#: poll_data.inc:119
 msgid "Age"
 msgstr ""
 
-"
-
+#: poll_data.inc:129
 msgid "Sex"
 msgstr ""
 
-"
-
+#: poll_data.inc:131
 msgid "Male"
 msgstr ""
 
-"
-
+#: poll_data.inc:132
 msgid "Female"
 msgstr ""
 
-"
-
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr ""
 
-"
-
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr ""
 
-"
-
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr ""
 
-"
-
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr ""
 
-"
-
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr ""
 
-"
-
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr ""
 
-"
-
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
 msgstr ""
 
-"
-
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr ""
 
-"
-
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr ""
 
-"
-
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr ""
 
-"
-
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr ""
 
-"
-
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr ""
 
-"
-
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr ""
 
-"
-
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr ""
 
-"
-
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr ""
 
-"
-
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr ""
 
-"
-
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr ""
 
-"
-
+#: poll_data.inc:192
 msgid "Yes"
 msgstr ""
 
-"
-
+#: poll_data.inc:193
 msgid "No"
 msgstr ""
 
-"
-
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr ""
 
-"
-
+#: poll_data.inc:200
 msgid "to read information"
 msgstr ""
 
-"
-
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr ""
 
-"
-
+#: poll_data.inc:202
 msgid "None"
 msgstr ""
 
-"
-
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr ""
 
-"
-
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr ""
 
-"
-
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr ""
 
-"
-
+#: download.php:40
 msgid "Download BOINC"
 msgstr ""
 
-"
-
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr ""
 
-"
-
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -405,41 +331,34 @@ msgid ""
 "computer, you can connect it to as many of these projects as you like."
 msgstr ""
 
-"
-
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
 "(GPU), you may be able to %suse it to compute faster%s"
 msgstr ""
 
-"
-
+#: download.php:120
 msgid "System requirements"
 msgstr ""
 
-"
-
+#: download.php:121
 msgid "Release notes"
 msgstr ""
 
-"
-
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr ""
 
-"
-
+#: download.php:123
 msgid "All versions"
 msgstr ""
 
-"
-
+#: download.php:141
 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 "
@@ -448,8 +367,7 @@ msgid ""
 "problems you might have."
 msgstr ""
 
-"
-
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -458,8 +376,7 @@ msgid ""
 "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 "
@@ -467,20 +384,17 @@ msgid ""
 "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 "
@@ -488,30 +402,70 @@ msgid ""
 "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 ""
 
-"
+#: index.php:23
+msgid "Computing power"
+msgstr ""
 
-msgid "Volunteer"
+#: index.php:25
+msgid "Top 100 volunteers"
 msgstr ""
 
-"
+#: index.php:26
+msgid "Statistics"
+msgstr ""
 
-msgid "Download"
+#: index.php:53
+msgid "Active:"
 msgstr ""
 
-"
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
 
-msgid "Documentation"
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
 msgstr ""
 
-"
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
 
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -520,28 +474,92 @@ msgid ""
 "sDownload%s and run BOINC software  %sEnter%s an email address and password. "
 msgstr ""
 
-"
-
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
 "sGridRepublic%s or %sBAM!%s. "
 msgstr ""
 
-"
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
 
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
 
-"
-
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr ""
 
-"
-
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -554,84 +572,68 @@ msgid ""
 "href=poll_results.php>here</a>. "
 msgstr ""
 
-"
-
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr ""
 
-"
-
+#: poll.php:30
 msgid "Your participation"
 msgstr ""
 
-"
-
+#: poll.php:32
 msgid "Your computers"
 msgstr ""
 
-"
-
+#: poll.php:34
 msgid "You"
 msgstr ""
 
-"
-
+#: poll.php:39
 msgid "Nationality"
 msgstr ""
 
-"
-
+#: poll.php:44
 msgid "Comments"
 msgstr ""
 
-"
-
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
 msgstr ""
 
-"
-
+#: poll.php:50
 msgid "When done click:"
 msgstr ""
 
-"
-
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
 msgstr ""
 
-"
-
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr ""
 
-"
-
+#: poll_results.php:195
 msgid "Survey results"
 msgstr ""
 
-"
-
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
 msgstr ""
 
-"
-
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 #~ msgid "CHARSET"
 #~ msgstr "UTF-8"
diff --git a/locale/sv_SE/pootle-boincclient610-sv_SE.prefs b/locale/sv_SE/pootle-boincclient610-sv_SE.prefs
new file mode 100644
index 0000000..f9a786b
--- /dev/null
+++ b/locale/sv_SE/pootle-boincclient610-sv_SE.prefs
@@ -0,0 +1,7 @@
+# Pootle preferences for project boinctrunk, language sv_SE
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/sv_SE/pootle-boinctrunk-sv_SE.prefs b/locale/sv_SE/pootle-boinctrunk-sv_SE.prefs
deleted file mode 100644
index 5a50e48..0000000
--- a/locale/sv_SE/pootle-boinctrunk-sv_SE.prefs
+++ /dev/null
@@ -1,2 +0,0 @@
-# Pootle preferences for project boinctrunk, language sv_SE
-
diff --git a/locale/templates/BOINC-Manager.pot b/locale/templates/BOINC-Manager.pot
index ceb7dec..0687744 100644
--- a/locale/templates/BOINC-Manager.pot
+++ b/locale/templates/BOINC-Manager.pot
@@ -2,8 +2,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 6.10.x\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-08-18 12:42-0500\n"
-"PO-Revision-Date: 2009-08-18 12:43-0500\n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2010-03-09 17:54-0500\n"
 "Last-Translator: Rom Walton <rwalton at ssl.berkeley.edu>\n"
 "Language-Team: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
 "MIME-Version: 1.0\n"
@@ -13,35 +13,35 @@ msgstr ""
 "X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-Poedit-SearchPath-0: clientgui\n"
 
-#: clientgui/AccountInfoPage.cpp:370
+#: clientgui/AccountInfoPage.cpp:376
 msgid "Identify your account "
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:376
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:380
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:388
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:391
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:396
+#: clientgui/AccountInfoPage.cpp:402
 msgid ""
 "We were not able to set up your account information\n"
 "automatically.\n"
@@ -51,389 +51,446 @@ msgid ""
 "password fields."
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:399
+#: clientgui/AccountInfoPage.cpp:405
 msgid "Find logon information"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:419
-#: clientgui/AccountInfoPage.cpp:585
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:426
-#: clientgui/AccountInfoPage.cpp:600
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:429
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:436
+#: clientgui/AccountInfoPage.cpp:442
 #, c-format
 msgid "Are you already running %s?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:453
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:467
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:475
+#: clientgui/AccountInfoPage.cpp:481
 #, c-format
 msgid "minimum length %d"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:482
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:489
+#: clientgui/AccountInfoPage.cpp:495
 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 ""
 
-#: clientgui/AccountInfoPage.cpp:492
+#: clientgui/AccountInfoPage.cpp:498
 msgid "Account manager website"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:524
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:526
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:528
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:543
 #, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:543
+#: clientgui/AccountInfoPage.cpp:549
 #, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:554
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:243
+#: clientgui/AccountManagerInfoPage.cpp:249
 msgid "Choose an account manager"
 msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:246
+#: clientgui/AccountManagerInfoPage.cpp:252
 msgid ""
 "To choose an account manager, click its name or \n"
 "type its URL below."
 msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:249
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:196
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
 #, c-format
 msgid "Communicating with %s."
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:203
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:208
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr ""
 
-#: clientgui/AccountManagerProcessingPage.cpp:326
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:94
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:102
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:296
-msgid "&Close Window\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:297
-msgid "Close BOINC Manager Window."
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:303
+#: clientgui/AdvancedFrame.cpp:319
 #, c-format
-msgid "Exit the %s"
+msgid "Exit %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:308
-#: clientgui/BOINCTaskBar.cpp:626
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:317
-msgid "&Advanced View\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:318
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:323
-msgid "&Simple View...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "Display the simple BOINC graphical interface."
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:338
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:392
 msgid "Attach to &project or account manager..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:339
-msgid "Attach to a project or account manager"
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:343
+#: clientgui/AdvancedFrame.cpp:397
 #, c-format
 msgid "&Synchronize with %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:347
+#: clientgui/AdvancedFrame.cpp:401
 #, c-format
 msgid "Get current settings from %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:362
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:363
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:367
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:368
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:372
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:373
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:396
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:397
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:401
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:402
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:406
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:407
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:415
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:420
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:533
 #, c-format
 msgid "Connect to another computer running %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:436
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:437
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:441
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:442
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:446
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:447
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:451
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:452
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:456
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:457
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:461
-#, c-format
-msgid "&Stop using %s..."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:467
-msgid "Remove client from account manager control."
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:471
-msgid "Attach to &project"
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:472
-msgid "Attach to a project to begin processing work"
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:483
+#: clientgui/AdvancedFrame.cpp:574
 #, c-format
 msgid "%s &help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:489
+#: clientgui/AdvancedFrame.cpp:580
 #, c-format
 msgid "Show information about %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:501
+#: clientgui/AdvancedFrame.cpp:592
 #, c-format
 msgid "&%s help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:507
+#: clientgui/AdvancedFrame.cpp:598
 #, c-format
 msgid "Show information about the %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:519
+#: clientgui/AdvancedFrame.cpp:610
 #, c-format
 msgid "%s &website"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:525
+#: clientgui/AdvancedFrame.cpp:616
 #, c-format
 msgid "Show information about BOINC and %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:541
-#: clientgui/BOINCTaskBar.cpp:616
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
 #, c-format
 msgid "&About %s..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:547
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:554
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:558
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:562
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:566
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1071
-#, c-format
-msgid "%s - Shutdown the current client..."
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1080
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-
-#: clientgui/AdvancedFrame.cpp:1190
+#: clientgui/AdvancedFrame.cpp:1121
 #, c-format
 msgid "%s - Detach from %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1195
+#: clientgui/AdvancedFrame.cpp:1126
 #, c-format
 msgid ""
 "If you stop using %s,\n"
@@ -443,54 +500,62 @@ msgid ""
 "Do you want to stop using %s?"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1242
-msgid "Attaching to project..."
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
+msgid "%s - Language Selection"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1281
-msgid "Retrying communications for project(s)..."
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
+msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1372
+#: clientgui/AdvancedFrame.cpp:1473
 #, c-format
-msgid "%s - Language Selection"
+msgid "%s - Shutdown the current client..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1379
+#: clientgui/AdvancedFrame.cpp:1482
 #, c-format
-msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1594
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1725
 #, c-format
 msgid "%s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1603
+#: clientgui/AdvancedFrame.cpp:1734
 #, c-format
 msgid "%s has successfully attached to %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1725
+#: clientgui/AdvancedFrame.cpp:1865
 #, c-format
 msgid "%s - (%s)"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1728
+#: clientgui/AdvancedFrame.cpp:1868
 #, c-format
 msgid "Connecting to %s"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1731
+#: clientgui/AdvancedFrame.cpp:1871
 #, c-format
 msgid "Connected to %s (%s)"
 msgstr ""
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr ""
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -498,11 +563,11 @@ msgid ""
 "Please visit the project's web site and follow the instructions there."
 msgstr ""
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr ""
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -510,86 +575,86 @@ msgid ""
 "Please visit the project's web site and follow the instructions there."
 msgstr ""
 
-#: clientgui/AsyncRPC.cpp:1197
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr ""
 
-#: clientgui/AsyncRPC.cpp:1200
+#: clientgui/AsyncRPC.cpp:1210
 #, c-format
 msgid "&Quit %s"
 msgstr ""
 
-#: clientgui/AsyncRPC.cpp:1202
+#: clientgui/AsyncRPC.cpp:1212
 #, c-format
 msgid "E&xit %s"
 msgstr ""
 
-#: clientgui/AsyncRPC.cpp:1219
+#: clientgui/AsyncRPC.cpp:1229
 msgid "Cancel"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:421
+#: clientgui/BOINCBaseFrame.cpp:422
 #, c-format
 msgid "%s - Connection Error"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:488
+#: clientgui/BOINCBaseFrame.cpp:489
 #, c-format
 msgid "%s - Connection Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:497
+#: clientgui/BOINCBaseFrame.cpp:498
 #, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:533
+#: clientgui/BOINCBaseFrame.cpp:534
 #, c-format
 msgid "%s - Daemon Start Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:543
+#: clientgui/BOINCBaseFrame.cpp:544
 #, 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:549
+#: clientgui/BOINCBaseFrame.cpp:550
 #, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:595
+#: clientgui/BOINCBaseFrame.cpp:596
 #, c-format
 msgid "%s - Connection Status"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:606
+#: clientgui/BOINCBaseFrame.cpp:607
 #, c-format
 msgid ""
 "%s is not currently connected to a %s client.\n"
@@ -597,7 +662,7 @@ msgid ""
 "To connect up to your local computer please use 'localhost' as the host name."
 msgstr ""
 
-#: clientgui/BOINCBaseView.cpp:748
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr ""
 
@@ -665,105 +730,136 @@ msgstr ""
 msgid "%s failed to disconnected from the Internet."
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:384
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:385
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:532
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:534
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:536
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:537
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:538
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:710
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:711
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:712
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:378
+#: clientgui/BOINCTaskBar.cpp:390
 #, c-format
 msgid "%s: %.2f%% completed."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:391
+#: clientgui/BOINCTaskBar.cpp:403
 #, c-format
 msgid "%d tasks running."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:597
+#: clientgui/BOINCTaskBar.cpp:609
 #, c-format
 msgid "Open %s Web..."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:604
+#: clientgui/BOINCTaskBar.cpp:616
 #, c-format
 msgid "Open %s..."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -771,60 +867,60 @@ msgid ""
 "Click Finish to close."
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:217
-#: clientgui/CompletionPage.cpp:240
-#: clientgui/CompletionPage.cpp:289
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr ""
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:202
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:208
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:213
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:230
+#: clientgui/CompletionPage.cpp:236
 #, c-format
 msgid "Update from %s completed."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:234
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:251
+#: clientgui/CompletionPage.cpp:257
 #, c-format
 msgid "Attached to %s"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:255
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:265
+#: clientgui/CompletionPage.cpp:271
 #, c-format
 msgid "Welcome to %s!"
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:285
 #, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr ""
 
-#: clientgui/CompletionPage.cpp:283
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr ""
 
@@ -847,7 +943,7 @@ msgstr ""
 
 #: clientgui/DlgAbout.cpp:175
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
 
@@ -864,31 +960,31 @@ msgstr ""
 msgid "&OK"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr ""
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr ""
 
@@ -940,300 +1036,312 @@ msgstr ""
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
+#: clientgui/DlgAdvPreferencesBase.cpp:296
 #, no-c-format
 msgid "% of the processors"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
+#: clientgui/DlgAdvPreferencesBase.cpp:306
 #, no-c-format
 msgid "% CPU time"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
+#: clientgui/DlgAdvPreferencesBase.cpp:546
 #, no-c-format
 msgid "% of total disk space"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
+#: clientgui/DlgAdvPreferencesBase.cpp:565
 #, no-c-format
 msgid "% of page file (swap space)"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
+#: clientgui/DlgAdvPreferencesBase.cpp:588
 #, no-c-format
 msgid "% when computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
+#: clientgui/DlgAdvPreferencesBase.cpp:598
 #, no-c-format
 msgid "% when computer is idle"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
+#: clientgui/DlgAdvPreferencesBase.cpp:637
 #: clientgui/Localization.cpp:35
 #: clientgui/Localization.cpp:121
 #: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr ""
 
@@ -1283,327 +1391,339 @@ msgstr ""
 msgid "Don't show this dialog again."
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:105
+#: clientgui/DlgItemProperties.cpp:199
 #: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:109
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
 msgid "File downloads deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:211
 msgid "File uploads deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:214
 msgid "Computer ID"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:121
-#: clientgui/DlgItemProperties.cpp:122
-#: clientgui/DlgItemProperties.cpp:123
-#: clientgui/DlgItemProperties.cpp:124
-#: clientgui/DlgItemProperties.cpp:125
-#: clientgui/DlgItemProperties.cpp:126
-#: clientgui/DlgItemProperties.cpp:127
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:121
-#: clientgui/DlgItemProperties.cpp:122
-#: clientgui/DlgItemProperties.cpp:123
-#: clientgui/DlgItemProperties.cpp:124
-#: clientgui/DlgItemProperties.cpp:125
-#: clientgui/DlgItemProperties.cpp:126
-#: clientgui/DlgItemProperties.cpp:127
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:123
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:124
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:125
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:126
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:127
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:128
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:136
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:145
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:147
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:151
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:153
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:156
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:157
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:160
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
 msgid "ATI GPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:163
+#: clientgui/DlgItemProperties.cpp:259
 msgid "ATI GPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:164
+#: clientgui/DlgItemProperties.cpp:260
 msgid "ATI GPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:166
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:176
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:185
+#: clientgui/DlgItemProperties.cpp:281
 msgid "Received"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:188
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:190
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:193
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:194
-#: clientgui/DlgItemProperties.cpp:206
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:196
-#: clientgui/DlgItemProperties.cpp:207
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 msgid "Elapsed time"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:198
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:200
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:201
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:203
-msgid "Slot"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:301
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:305
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:307
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:312
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:314
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:316
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:318
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:321
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:324
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:327
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:330
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:333
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:337
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:339
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:342
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:344
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:347
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:349
-#: clientgui/DlgItemProperties.cpp:352
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:356
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:360
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:362
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:368
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:371
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:374
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:379
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:381
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:383
+#: clientgui/DlgItemProperties.cpp:482
 #, c-format
 msgid "Error: invalid state '%d'"
 msgstr ""
@@ -1939,42 +2059,42 @@ msgstr ""
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr ""
 
-#: clientgui/MainDocument.cpp:530
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr ""
 
-#: clientgui/MainDocument.cpp:1053
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr ""
 
-#: clientgui/MainDocument.cpp:1062
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr ""
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr ""
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr ""
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr ""
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/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 ""
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr ""
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -1982,60 +2102,76 @@ msgid ""
 "Please check the URL and try again."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr ""
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:249
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:252
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:255
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:339
+#: clientgui/ProjectInfoPage.cpp:393
 msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:363
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr ""
 
-#: clientgui/ProjectListCtrl.cpp:230
+#: clientgui/ProjectListCtrl.cpp:276
 msgid "Click"
 msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:336
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
 msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:499
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
 msgstr ""
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr ""
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2046,13 +2182,13 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2069,28 +2205,36 @@ msgid ""
 "Click Next to configure BOINC's proxy settings."
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr ""
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr ""
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
 #, c-format
 msgid "&%s"
 msgstr ""
@@ -2498,38 +2642,38 @@ msgstr ""
 msgid "Elapsed Time: "
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:219
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:223
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:238
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
 "Please try again later."
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2706,17 +2850,17 @@ msgid "Report all completed tasks, get latest credit, get latest preferences, an
 msgstr ""
 
 #: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr ""
 
 #: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr ""
 
 #: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr ""
 
@@ -2809,51 +2953,51 @@ msgstr ""
 msgid "Launching browser..."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:702
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:702
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:721
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:721
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:725
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1051
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1054
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1057
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1060
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1063
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1067
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:1073
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr ""
 
@@ -2994,19 +3138,19 @@ msgstr ""
 msgid "Show one chart with all projects"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr ""
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr ""
 
@@ -3083,26 +3227,26 @@ msgstr ""
 msgid "Abort File Transfer"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:750
+#: clientgui/ViewTransfers.cpp:751
 #: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:762
+#: clientgui/ViewTransfers.cpp:763
 #: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:762
+#: clientgui/ViewTransfers.cpp:763
 #: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:769
+#: clientgui/ViewTransfers.cpp:770
 msgid " (project backoff: "
 msgstr ""
 
-#: clientgui/ViewTransfers.cpp:769
+#: clientgui/ViewTransfers.cpp:770
 msgid ")"
 msgstr ""
 
@@ -3126,12 +3270,12 @@ msgid "Abort File Transfer(s)"
 msgstr ""
 
 #: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWork.cpp:699
+#: clientgui/ViewWork.cpp:709
 msgid "Show active tasks"
 msgstr ""
 
 #: clientgui/ViewWork.cpp:185
-#: clientgui/ViewWork.cpp:700
+#: clientgui/ViewWork.cpp:710
 msgid "Show only active tasks."
 msgstr ""
 
@@ -3193,50 +3337,63 @@ msgstr ""
 msgid "Showing graphics for task..."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:417
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr ""
-
-#: clientgui/ViewWork.cpp:430
+#: clientgui/ViewWork.cpp:426
 #, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:438
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:437
 #: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:693
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:703
 msgid "Show all tasks"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:694
+#: clientgui/ViewWork.cpp:704
 msgid "Show all tasks."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:718
+#: clientgui/ViewWork.cpp:728
 #: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:724
+#: clientgui/ViewWork.cpp:734
 #: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:1141
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:1160
+#: clientgui/ViewWork.cpp:1168
 #: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr ""
 
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
 #: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr ""
@@ -3248,11 +3405,11 @@ msgid ""
 "(Progress: %s %%, Status: %s)"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:250
+#: clientgui/WelcomePage.cpp:256
 msgid "Attach to project or account manager"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:258
+#: clientgui/WelcomePage.cpp:264
 #, c-format
 msgid ""
 "If possible, add projects at the\n"
@@ -3262,13 +3419,13 @@ msgid ""
 "listed on or managed via %s."
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:271
+#: clientgui/WelcomePage.cpp:277
 msgid ""
 "We'll guide you through the process of attaching\n"
 "to a project or account manager."
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:275
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3284,32 +3441,32 @@ msgid ""
 "World Community Grid then please click on the following button:"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:278
+#: clientgui/WelcomePage.cpp:284
 msgid "Change Research Applications at World Community Grid"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:295
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr ""
 
-#: clientgui/WizardAttachProject.cpp:616
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr ""
 
-#: clientgui/WizardAttachProject.cpp:617
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr ""
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr ""
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr ""
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr ""
 
@@ -3337,6 +3494,81 @@ msgstr ""
 msgid "Pie Ctrl"
 msgstr ""
 
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
 #: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr ""
diff --git a/locale/tr/BOINC-Manager.mo b/locale/tr/BOINC-Manager.mo
new file mode 100644
index 0000000..f01a515
Binary files /dev/null and b/locale/tr/BOINC-Manager.mo differ
diff --git a/locale/tr/BOINC-Manager.po b/locale/tr/BOINC-Manager.po
index 5c8c902..7a1b46b 100644
--- a/locale/tr/BOINC-Manager.po
+++ b/locale/tr/BOINC-Manager.po
@@ -1,3922 +1,3785 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: BOINC Manager 6.8x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
-"PO-Revision-Date: 2009-07-07 17:49+0200\n"
-"Last-Translator: Aycan Demirel <aycandemirel at hotmail.com>\n"
-"Language-Team: Donanım Haber <bilgi at donanimhaber.com>\n"
-"Language: tr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Virtaal 0.3.1\n"
-"X-Poedit-SourceCharset: UTF-8\n"
-"X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
-
-#: clientgui/AccountInfoPage.cpp:336
-msgid "User information"
-msgstr "Kullanıcı bilgisi"
-
-#: clientgui/AccountInfoPage.cpp:342
-msgid ""
-"Please enter your account information\n"
-"(to create an account, visit the project's web site)"
-msgstr ""
-"Lütfen hesap bilgilerinizi girin\n"
-"(bir hesap yaratmak için, projenin\n"
-"sitesini ziyaret edin)"
-
-#: clientgui/AccountInfoPage.cpp:346
-msgid ""
-"This project is not currently accepting new accounts.\n"
-"You can attach only if you already have an account."
-msgstr ""
-"Bu proje şu anda yeni hesapları kabul etmiyor.\n"
-"Yalnızca, mevcut bir hesabınız varsa projeye\n"
-"katılabilirsiniz."
-
-#: clientgui/AccountInfoPage.cpp:350
-msgid "Are you already running this project?"
-msgstr "Bu projeye daha önce üye oldunuz mu?"
-
-#: clientgui/AccountInfoPage.cpp:354
-msgid "&No, new user"
-msgstr "&Hayır, yeni kullanıcıyım"
-
-#: clientgui/AccountInfoPage.cpp:357
-msgid "&Yes, existing user"
-msgstr "&Evet, bilgilerimi gireceÄŸim"
-
-#: clientgui/AccountInfoPage.cpp:373
-#: clientgui/AccountInfoPage.cpp:529
-msgid "&Password:"
-msgstr "&Parola:"
-
-#: clientgui/AccountInfoPage.cpp:380
-#: clientgui/AccountInfoPage.cpp:544
-msgid "Choose a &password:"
-msgstr "Bir &parola seçin:"
-
-#: clientgui/AccountInfoPage.cpp:383
-msgid "C&onfirm password:"
-msgstr "Parolayı &doğrulayın:"
-
-#: clientgui/AccountInfoPage.cpp:390
-#, c-format
-msgid "Are you already running %s?"
-msgstr "%s projesini zaten çalıştırmıyor musunuz?"
-
-#: clientgui/AccountInfoPage.cpp:407
-msgid "&Username:"
-msgstr "&Kullanıcı adı:"
-
-#: clientgui/AccountInfoPage.cpp:421
-msgid "&Email address:"
-msgstr "&E-posta adresi:"
-
-#: clientgui/AccountInfoPage.cpp:429
-#, c-format
-msgid "minimum length %d"
-msgstr "en az %d karakter"
-
-#: clientgui/AccountInfoPage.cpp:434
-msgid "Forgot your password?"
-msgstr "Parolanızı mı unuttunuz?"
-
-#: clientgui/AccountInfoPage.cpp:468
-#: clientgui/WelcomePage.cpp:350
-#: clientgui/WelcomePage.cpp:370
-#: clientgui/WelcomePage.cpp:386
-msgid "Attach to project"
-msgstr "Projeye katıl"
-
-#: clientgui/AccountInfoPage.cpp:470
-msgid "Update account manager"
-msgstr "Hesap yöneticisini güncelle"
-
-#: clientgui/AccountInfoPage.cpp:472
-#: clientgui/WelcomePage.cpp:356
-msgid "Attach to account manager"
-msgstr "Hesap yöneticisine bağlan"
-
-#: clientgui/AccountInfoPage.cpp:481
-#, c-format
-msgid "The minimum password length for this project is %d. Please enter a different password."
-msgstr "Bu proje için en az parola uzunluğu %d karakter. Lütfen farklı bir parola girin."
-
-#: clientgui/AccountInfoPage.cpp:487
-#, c-format
-msgid "The minimum password length for this account manager is %d. Please enter a different password."
-msgstr "Bu hesap yöneticisi için en az parola uzunluğu %d karakter. Lütfen farklı bir parola girin."
-
-#: clientgui/AccountInfoPage.cpp:498
-msgid "The password and confirmation password do not match. Please type them again."
-msgstr "Parola ve doğrulama parolası birbirini tutmuyor. Lütfen tekrar yazın."
-
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "Hesap yöneticisi adresi"
-
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "Hesap yöneticisini listeden seçin ya da aşağıya adresini girin."
-
-#: clientgui/AccountManagerInfoPage.cpp:186
-msgid "Account Manager &URL:"
-msgstr "Hesap yöneticisi &adresi:"
-
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:193
-#, c-format
-msgid "Communicating with %s."
-msgstr "%s ile bağlantı kuruluyor."
-
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:200
-msgid "Communicating with server."
-msgstr "Sunucu ile bağlantı kuruluyor."
-
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:205
-msgid "Please wait..."
-msgstr "Lütfen bekleyin..."
-
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
-msgid "An internal server error has occurred.\n"
-msgstr "Bir dahili sunucu hatası meydana geldi.\n"
-
-#: clientgui/AdvancedFrame.cpp:100
-msgid "Connected"
-msgstr "Bağlandı"
-
-#: clientgui/AdvancedFrame.cpp:108
-msgid "Disconnected"
-msgstr "Bağlantı kesildi"
-
-#: clientgui/AdvancedFrame.cpp:302
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "&Pencereyi Kapat\tCTRL+W"
-
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "BOINC Manager penceresini kapatır."
-
-#: clientgui/AdvancedFrame.cpp:309
-#, c-format
-msgid "Exit the %s"
-msgstr "%s'dan çıkar."
-
-#: clientgui/AdvancedFrame.cpp:314
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
-msgid "E&xit"
-msgstr "&Çık"
-
-#: clientgui/AdvancedFrame.cpp:323
-msgid "&Advanced View\tCTRL+SHIFT+A"
-msgstr "&Gelişmiş Görünüm\tCTRL+SHIFT+A"
-
-#: clientgui/AdvancedFrame.cpp:324
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
-msgstr "Gelişmiş görünüm, çeşitli sütunları sıralamanızı ve grafiksel ilerleme çubuklarını görmenizi sağlar."
-
-#: clientgui/AdvancedFrame.cpp:329
-msgid "&Simple View...\tCTRL+SHIFT+S"
-msgstr "&Basit Görünüm...\tCTRL+SHIFT+S"
-
-#: clientgui/AdvancedFrame.cpp:330
-msgid "Display the simple BOINC graphical interface."
-msgstr "Basit BOINC grafiksel arayüzünü görüntüler."
-
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "&Projeye katıl..."
-
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "Bir projeye katılmanızı sağlayacak sihirbazı açar."
-
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "&Hesap yöneticisine bağlan..."
-
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "Bir hesap yöneticisine bağlanmanızı sağlayacak sihirbazı açar."
-
-#: clientgui/AdvancedFrame.cpp:349
-#, c-format
-msgid "&Synchronize with %s"
-msgstr "%s ile &eÅŸitle"
-
-#: clientgui/AdvancedFrame.cpp:353
-#, c-format
-msgid "Get current settings from %s"
-msgstr "Güncel ayarları %s'den alır."
-
-#: clientgui/AdvancedFrame.cpp:368
-msgid "&Run always"
-msgstr "&Daima çalış"
-
-#: clientgui/AdvancedFrame.cpp:369
-msgid "Allow work regardless of preferences"
-msgstr "Ayarları göz önüne almadan işin çalışmasına izin verir."
-
-#: clientgui/AdvancedFrame.cpp:373
-msgid "Run based on &preferences"
-msgstr "&Tercihlere göre çalış"
-
-#: clientgui/AdvancedFrame.cpp:374
-msgid "Allow work according to your preferences"
-msgstr "İşin tercihlerinizdeki ayarlara uygun olarak çalışmasını sağlar."
-
-#: clientgui/AdvancedFrame.cpp:378
-msgid "&Suspend"
-msgstr "&Durdur"
-
-#: clientgui/AdvancedFrame.cpp:379
-msgid "Stop work regardless of preferences"
-msgstr "Ayarları göz önüne almadan işin çalışmasını durdurur."
-
-#: clientgui/AdvancedFrame.cpp:402
-msgid "&Network activity always available"
-msgstr "&Ağ iletişimi daima mümkün"
-
-#: clientgui/AdvancedFrame.cpp:403
-msgid "Allow network activity regardless of preferences"
-msgstr "Ayarları göz önüne almadan ağ iletişimine izin verir."
-
-#: clientgui/AdvancedFrame.cpp:407
-msgid "Network activity based on &preferences"
-msgstr "&Tercihlere göre ağ iletişimi"
-
-#: clientgui/AdvancedFrame.cpp:408
-msgid "Allow network activity according to your preferences"
-msgstr "Tercihlerdeki ayarlara göre ağ iletişimi yapar."
-
-#: clientgui/AdvancedFrame.cpp:412
-msgid "&Network activity suspended"
-msgstr "AÄŸ iletiÅŸimini &durdur"
-
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Stop BOINC network activity"
-msgstr "BOINC'in tüm ağ iletişimini durdurur."
-
-#: clientgui/AdvancedFrame.cpp:420
-msgid "&Options..."
-msgstr "&Seçenekler..."
-
-#: clientgui/AdvancedFrame.cpp:421
-msgid "Configure GUI options and proxy settings"
-msgstr "BOINC Manager'in arayüz seçeneklerini ve vekil sunucu ayarlarını yapılandırabileceğiniz pencereyi açar."
-
-#: clientgui/AdvancedFrame.cpp:425
-msgid "&Preferences..."
-msgstr "&Tercihler..."
-
-#: clientgui/AdvancedFrame.cpp:426
-msgid "Configure local preferences"
-msgstr "İşlerin çalışmasıyla ilgili bu bilgisayara ait tercihleri ayarlayabileceğiniz pencereyi açar."
-
-#: clientgui/AdvancedFrame.cpp:432
-#, c-format
-msgid "Connect to another computer running %s"
-msgstr "%s çalıştıran başka bir bilgisayarı seçip bağlanmayı sağlar."
-
-#: clientgui/AdvancedFrame.cpp:437
-msgid "Select computer..."
-msgstr "Bilgisayar seç ve bağlan..."
-
-#: clientgui/AdvancedFrame.cpp:442
-msgid "Shut down connected client..."
-msgstr "Bağlı olan istemciyi kapat..."
-
-#: clientgui/AdvancedFrame.cpp:443
-msgid "Shut down the currently connected core client"
-msgstr "Şu anda bağlı olan çekirdek istemciyi kapatır."
-
-#: clientgui/AdvancedFrame.cpp:447
-msgid "Run CPU &benchmarks"
-msgstr "&CPU testlerini çalıştır"
-
-#: clientgui/AdvancedFrame.cpp:448
-msgid "Runs BOINC CPU benchmarks"
-msgstr "BOINC'in CPU (işlemci) testlerini çalıştırır."
-
-#: clientgui/AdvancedFrame.cpp:452
-msgid "Do network &communication"
-msgstr "&Ağ iletişimi gerçekleştir"
-
-#: clientgui/AdvancedFrame.cpp:453
-msgid "Do all pending network communication."
-msgstr "Bekleyen tüm ağ iletişimini hemen gerçekleştirir."
-
-#: clientgui/AdvancedFrame.cpp:457
-msgid "Read config file"
-msgstr "Ayar dosyasını oku"
-
-#: clientgui/AdvancedFrame.cpp:458
-msgid "Read configuration info from cc_config.xml."
-msgstr "Ayar bilgilerini cc_config.xml dosyasından okur."
-
-#: clientgui/AdvancedFrame.cpp:462
-msgid "Read local prefs file"
-msgstr "Yerel tercih dosyasını oku"
-
-#: clientgui/AdvancedFrame.cpp:463
-msgid "Read preferences from global_prefs_override.xml."
-msgstr "Yerel tercihleri global_prefs_override.xml dosyasından okur."
-
-#: clientgui/AdvancedFrame.cpp:467
-#, c-format
-msgid "&Stop using %s..."
-msgstr "%s kullanmayı durdur..."
-
-#: clientgui/AdvancedFrame.cpp:473
-msgid "Remove client from account manager control."
-msgstr "İstemciyi hesap yöneticisi kontrolünden çıkarır."
-
-#: clientgui/AdvancedFrame.cpp:477
-msgid "Attach to &project"
-msgstr "Projeye &katıl"
-
-#: clientgui/AdvancedFrame.cpp:478
-msgid "Attach to a project to begin processing work"
-msgstr "İşleri çalıştırmaya başlamak için bir projeye katılmayı sağlar."
-
-#: clientgui/AdvancedFrame.cpp:489
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
-msgid "%s &help"
-msgstr "%s &yardım"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
-msgid "Show information about %s"
-msgstr "Gönüllü kullanıcılardan %s hakkında yardım almanızı sağlar."
-
-#: clientgui/AdvancedFrame.cpp:507
-#, c-format
-msgid "&%s help"
-msgstr "&%s yardım"
-
-#: clientgui/AdvancedFrame.cpp:513
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
-msgid "Show information about the %s"
-msgstr "%s yardım sitesini açar."
-
-#: clientgui/AdvancedFrame.cpp:525
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
-msgid "%s &website"
-msgstr "%s internet sitesi"
-
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
-msgid "Show information about BOINC and %s"
-msgstr "BOINC ve %s resmi internet sitesini açar."
-
-#: clientgui/AdvancedFrame.cpp:547
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
-msgid "&About %s..."
-msgstr "&%s hakkında..."
-
-#: clientgui/AdvancedFrame.cpp:553
-msgid "Licensing and copyright information."
-msgstr "Sürüm, lisans, telif hakkı ve çeviri bilgisini gösterir."
-
-#: clientgui/AdvancedFrame.cpp:560
-#: clientgui/sg_BoincSimpleGUI.cpp:175
-msgid "&File"
-msgstr "&Dosya"
-
-#: clientgui/AdvancedFrame.cpp:564
-msgid "&View"
-msgstr "&Görünüm"
-
-#: clientgui/AdvancedFrame.cpp:568
-msgid "&Tools"
-msgstr "&Araçlar"
-
-#: clientgui/AdvancedFrame.cpp:572
-msgid "&Activity"
-msgstr "&Çalışma"
-
-#: clientgui/AdvancedFrame.cpp:576
-msgid "A&dvanced"
-msgstr "&GeliÅŸmiÅŸ"
-
-#: clientgui/AdvancedFrame.cpp:580
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
-msgid "&Help"
-msgstr "&Yardım"
-
-#: clientgui/AdvancedFrame.cpp:1077
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr "%s - Bağlı istemciyi kapat..."
-
-#: clientgui/AdvancedFrame.cpp:1086
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-"%s şu anda bağlı olan istemciyi kapatacak ve\n"
-"sizi başka birine bağlanmanız için uyaracak.\n"
-
-#: clientgui/AdvancedFrame.cpp:1196
-#, c-format
-msgid "%s - Detach from %s"
-msgstr "%s - %s'den ayrıl"
-
-#: clientgui/AdvancedFrame.cpp:1201
-#, 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 ""
-"Eğer %s kullanmayı durdurursanız,\n"
-"mevcut tüm projeleriniz korunacak fakat,\n"
-"projeleri elle yönetmeniz gerekecek.\n"
-"\n"
-"%s kullanmayı durdurmak istiyor musunuz?"
-
-#: clientgui/AdvancedFrame.cpp:1248
-msgid "Attaching to project..."
-msgstr "Projeye katılıyorsunuz..."
-
-#: clientgui/AdvancedFrame.cpp:1287
-msgid "Retrying communications for project(s)..."
-msgstr "Proje(ler) için yeniden bağlantı kurulmaya çalışılıyor..."
-
-#: clientgui/AdvancedFrame.cpp:1378
-#, c-format
-msgid "%s - Language Selection"
-msgstr "%s - Dil Seçimi"
-
-#: clientgui/AdvancedFrame.cpp:1385
-#, c-format
-msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
-msgstr ""
-"%s'ın varsayılan dili değişti.\n"
-"Değişikliğin etkili olması için %s yeniden başlatılmalı."
-
-#: clientgui/AdvancedFrame.cpp:1595
-#: clientgui/DlgAbout.cpp:104
-#, c-format
-msgid "%s"
-msgstr "%s"
-
-#: clientgui/AdvancedFrame.cpp:1604
-#, c-format
-msgid "%s has successfully attached to %s"
-msgstr "%s başarıyla %s'e katıldı."
-
-#: clientgui/AdvancedFrame.cpp:1726
-#, c-format
-msgid "%s - (%s)"
-msgstr "%s - (%s)"
-
-#: clientgui/AdvancedFrame.cpp:1729
-#, c-format
-msgid "Connecting to %s"
-msgstr "%s'a bağlanılıyor"
-
-#: clientgui/AdvancedFrame.cpp:1732
-#, c-format
-msgid "Connected to %s (%s)"
-msgstr "%s'a bağlanıldı (%s)"
-
-#: clientgui/AlreadyExistsPage.cpp:183
-msgid "Username already in use"
-msgstr "Kullanıcı adı zaten kullanımda"
-
-#: clientgui/AlreadyExistsPage.cpp:186
-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 ""
-"Bu kullanıcı adıyla bir hesap var ve\n"
-"girdiğinizden farklı bir parolaya sahip.\n"
-"\n"
-"Lütfen projenin sitesini ziyaret edip, yönergeleri izleyin."
-
-#: clientgui/AlreadyExistsPage.cpp:190
-msgid "Email address already in use"
-msgstr "E-posta adresi zaten kullanımda"
-
-#: clientgui/AlreadyExistsPage.cpp:193
-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 ""
-"Bu e-posta adresiyle bir hesap var ve\n"
-"girdiğinizden farklı bir parolaya sahip.\n"
-"\n"
-"Lütfen projenin sitesini ziyaret edip, yönergeleri izleyin."
-
-#: clientgui/AsyncRPC.cpp:975
-msgid "Communicating with BOINC client.  Please wait ..."
-msgstr "BOINC istemcisine bağlanılıyor.  Lütfen bekleyin..."
-
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
-msgid "%s - Connection Error"
-msgstr "%s - Bağlantı Hatası"
-
-#: clientgui/BOINCBaseFrame.cpp:430
-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 ""
-"Şu anda istemciyi yönetmek için yetkilendirilmemişsiniz.\n"
-"Lüfen 'boinc_users' yerel kullanıcı grubuna dahil olmak için yöneticinizle temasa geçin."
-
-#: clientgui/BOINCBaseFrame.cpp:439
-msgid ""
-"Authorization failed connecting to running client.\n"
-"Make sure you start this program in the same directory as the client."
-msgstr ""
-"Çalışan istemciye bağlanmak için yetkilendirilme başarısız.\n"
-"Bu programın istemciyle aynı klasörde çalıştırıldığından emin olun."
-
-#: clientgui/BOINCBaseFrame.cpp:441
-msgid "Authorization failed connecting to running client."
-msgstr "Çalışan istemciye bağlanmak için yetkilendirilme başarısız."
-
-#: clientgui/BOINCBaseFrame.cpp:449
-msgid "The password you have provided is incorrect, please try again."
-msgstr "Belirttiğiniz parola hatalı, lütfen tekrar deneyin."
-
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
-msgid "%s - Connection Failed"
-msgstr "%s - Bağlantı Başarısız"
-
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
-msgid ""
-"%s is not able to connect to a %s client.\n"
-"Would you like to try to connect again?"
-msgstr ""
-"%s, %s istemcisine bağlanamıyor.\n"
-"Bağlanmayı yeniden denemek ister misiniz?"
-
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
-msgid "%s - Daemon Start Failed"
-msgstr "%s - Hizmet İşlemi Başlatılamadı"
-
-#: clientgui/BOINCBaseFrame.cpp:543
-#, 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 ""
-"%s, %s istemcisini başlatamıyor.\n"
-"Lütfen Denetim Masası->Yentimsel Araçlar->Hizmetler bölümüne gidip, BOINC servisini başlatın."
-
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
-msgid ""
-"%s is not able to start a %s client.\n"
-"Please start the daemon and try again."
-msgstr ""
-"%s, %s istemcisini başlatamıyor.\n"
-"Lütfen BOINC Hizmetini başlatıp yeniden deneyin."
-
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
-msgid "%s - Connection Status"
-msgstr "%s - Bağlantı Durumu"
-
-#: clientgui/BOINCBaseFrame.cpp:606
-#, 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 ""
-"%s şu anda bir %s istemcisine bağlı değil.\n"
-"Lütfen 'Gelişmiş\\Bilgisayar seç...' menü seçeneğinden bir %s istemcisine bağlanın.\n"
-"Bu bilgisayara bağlanmak için lütfen bigisayar adı olarak 'localhost' kullanın."
-
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
-msgid "Web sites"
-msgstr "Ä°nternet siteleri"
-
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
-msgid "%s - Network Status"
-msgstr "%s - AÄŸ Durumu"
-
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
-msgid "%s needs to connect to the Internet.  Please click to open %s."
-msgstr "%s internete bağlanmak istiyor. Lütfen %s programını açmak için tıklayın."
-
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
-msgid ""
-"%s is unable to communicate with a project and needs an Internet connection.\n"
-"Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
-msgstr ""
-"%s bir projeyle iletişim kuramadı ve İnternet bağlantısına ihtiyaç duyuyor.\n"
-"Lütfen internete bağlanın, sonra Gelişmiş menüsünden\n"
-"'Ağ iletişimi gerçekleştir' öğesini seçin."
-
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
-msgid ""
-"%s needs to connect to the Internet.\n"
-"May it do so now?"
-msgstr ""
-"%s İnternete bağlanmaya ihtiyaç duyuyor.\n"
-"Bunu ÅŸimdi yapabilir mi?"
-
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
-msgid "%s is connecting to the Internet."
-msgstr "%s İnternete bağlanıyor."
-
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
-msgid ""
-"%s couldn't do Internet communication, and no default connection is selected.\n"
-"Please connect to the Internet, or select a default connection\n"
-"using Advanced/Options/Connections."
-msgstr ""
-"%s İnternet bağlantısı kuramadı ve varsayılan İnternet bağlantısı da seçili değil.\n"
-"Lütfen İnternete bağlanın ya da Gelişmiş/Seçenekler/Bağlantılar menüsünden\n"
-"varsayılan bir bağlantı seçin."
-
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
-msgid "%s has successfully connected to the Internet."
-msgstr "%s başarıyla İnternete bağlandı."
-
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
-msgid "%s failed to connect to the Internet."
-msgstr "%s İnternete bağlanırken başarısız oldu."
-
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
-msgid ""
-"%s has detected it is now connected to the Internet.\n"
-"Updating all projects and retrying all transfers."
-msgstr ""
-"%s şimdi İnternete bağlanıldığını belirledi.\n"
-"Tüm projeler güncelleniyor ve aktarımlar gerçekleştiriliyor."
-
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
-msgid "%s has successfully disconnected from the Internet."
-msgstr "%s başarıyla İnternet bağlantısını kesti."
-
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
-msgid "%s failed to disconnected from the Internet."
-msgstr "%s internet bağlantısını keserken başarısız oldu."
-
-#: clientgui/BOINCGUIApp.cpp:372
-msgid ""
-"A reboot is required in order for BOINC to run properly.\n"
-"Please reboot your computer and try again."
-msgstr ""
-"BOINC'in doğru çalışması için yeniden başlatma gerekiyor.\n"
-"Bilgisayarınızı yeniden başlatın ve yeniden deneyin."
-
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
-msgid "BOINC Manager"
-msgstr "BOINC Manager"
-
-#: clientgui/BOINCGUIApp.cpp:523
-msgid "BOINC Manager was started by the operating system automatically"
-msgstr "BOINC Manager işletim sistemi tarafından otomatik başlatılacak"
-
-#: clientgui/BOINCGUIApp.cpp:525
-msgid "Startup BOINC so only the system tray icon is visible"
-msgstr "BOINC'i sadece sistem tepsisi simgesi görünecek şekilde başlat"
-
-#: clientgui/BOINCGUIApp.cpp:527
-msgid "Startup BOINC with these optional arguments"
-msgstr "BOINC'i bu isteğe bağlı parametrelerle çalıştır"
-
-#: clientgui/BOINCGUIApp.cpp:528
-msgid "disable BOINC security users and permissions"
-msgstr "BOINC güvenlik kullanıcıları ve izinlerini devre dışı bırak"
-
-#: clientgui/BOINCGUIApp.cpp:529
-msgid "set skin debugging mode to enable skin manager error messages"
-msgstr "kaplama yöneticisi hata mesajları için, kaplama hata ayıklama moduna geçin"
-
-#: clientgui/BOINCGUIApp.cpp:689
-msgid "(Automatic Detection)"
-msgstr "(Otomatik Belirleme)"
-
-#: clientgui/BOINCGUIApp.cpp:690
-msgid "(Unknown)"
-msgstr "(Bilinmeyen)"
-
-#: clientgui/BOINCGUIApp.cpp:691
-msgid "(User Defined)"
-msgstr "(Kullanıcı Tanımlı)"
-
-#: clientgui/BOINCTaskBar.cpp:336
-msgid "Computation is suspended."
-msgstr "Hesaplama durduruldu."
-
-#: clientgui/BOINCTaskBar.cpp:344
-msgid "Network activity is suspended."
-msgstr "AÄŸ aktivitesi durduruldu."
-
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
-msgid "%s: %.2f%% completed."
-msgstr "%s: %%%.2f tamamlandı."
-
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
-msgid "%d tasks running."
-msgstr "%d görev çalışıyor."
-
-#: clientgui/BOINCTaskBar.cpp:400
-msgid "Reconnecting to client."
-msgstr "İstemciye yeniden bağlanılıyor."
-
-#: clientgui/BOINCTaskBar.cpp:406
-msgid "Not connected to a client."
-msgstr "Bir istemciye bağlanmadı."
-
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
-msgid "Open %s Web..."
-msgstr "%s Sitesini Aç..."
-
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
-msgid "Open %s..."
-msgstr "%s'ı Aç..."
-
-#: clientgui/BOINCTaskBar.cpp:611
-msgid "Snooze"
-msgstr "Duraklat"
-
-#: clientgui/CompletionErrorPage.cpp:200
-msgid "Failed to attach to project"
-msgstr "Projeye katılılım başarısız oldu"
-
-#: clientgui/CompletionErrorPage.cpp:205
-msgid "Failed to update account manager"
-msgstr "Hesap yöneticisini güncelleme başarısız oldu"
-
-#: clientgui/CompletionErrorPage.cpp:209
-msgid "Failed to remove account manager"
-msgstr "Hesap yöneticisinden ayrılma başarısız oldu"
-
-#: clientgui/CompletionErrorPage.cpp:213
-msgid "Failed to attach to account manager"
-msgstr "Hesap yöneticisine bağlanma başarısız oldu"
-
-#: clientgui/CompletionErrorPage.cpp:222
-msgid ""
-"An error has occurred;\n"
-"check Messages for details.\n"
-"\n"
-"Click Finish to close."
-msgstr ""
-"Bir hata meydana geldi;\n"
-"detaylar için Mesajlar'ı kontrol edin.\n"
-"\n"
-"Kapatmak için Son'u tıklayın."
-
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
-msgid "Click Finish to close."
-msgstr "Kapatmak için Son'u tıklayın"
-
-#: clientgui/CompletionErrorPage.cpp:235
-msgid "Messages from server:"
-msgstr "Sunucudan mesajlar:"
-
-#: clientgui/CompletionPage.cpp:205
-msgid "Attached to project"
-msgstr "Projeye katıldınız"
-
-#: clientgui/CompletionPage.cpp:211
-msgid "You are now successfully attached to this project."
-msgstr "Bu projeye başarıyla katıldınız."
-
-#: clientgui/CompletionPage.cpp:216
-msgid ""
-"When you click Finish, your web browser will go to a page where\n"
-"you can set your account name and preferences."
-msgstr ""
-"Son'u tıkladığınızda, internet tarayıcınız kullanıcı adı ve\n"
-"tercihlerinizi belirleyebileceğiniz siteyi açacak."
-
-#: clientgui/CompletionPage.cpp:233
-#, c-format
-msgid "Update from %s completed."
-msgstr "%s'den güncelleme tamamlandı."
-
-#: clientgui/CompletionPage.cpp:237
-msgid "Update completed."
-msgstr "Güncelleme tamamlandı."
-
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr "%s'den kaldırma tamamlandı."
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "Kaldırma başarılı!"
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
-msgid "Attached to %s"
-msgstr "%s'e katıldınız"
-
-#: clientgui/CompletionPage.cpp:279
-msgid "Attached to account manager"
-msgstr "Hesap yöneticisine bağlandınız"
-
-#: clientgui/CompletionPage.cpp:289
-#, c-format
-msgid "Welcome to %s!"
-msgstr "%s'e hoÅŸ geldiniz!"
-
-#: clientgui/CompletionPage.cpp:303
-#, c-format
-msgid "You are now successfully attached to the %s system."
-msgstr "Şu anda %s sistemine başarıyla katıldınız."
-
-#: clientgui/CompletionPage.cpp:307
-msgid "You are now successfully attached to this account manager."
-msgstr "Şu anda bu hesap yöneticisine başarıyla bağlandınız."
-
-#: clientgui/DlgAbout.cpp:98
-#, c-format
-msgid "About %s"
-msgstr "%s Hakkında"
-
-#: clientgui/DlgAbout.cpp:155
-msgid "Version:"
-msgstr "Sürüm:"
-
-#: clientgui/DlgAbout.cpp:163
-msgid "wxWidgets Version:"
-msgstr "wxWidgets Sürümü:"
-
-#: clientgui/DlgAbout.cpp:171
-msgid "Copyright:"
-msgstr "Telif Hakkı:"
-
-#: clientgui/DlgAbout.cpp:175
-msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
-"All Rights Reserved."
-msgstr ""
-"(C) 2003-2008 California Ãœniversitesi, Berkeley.\n"
-"Tüm Hakları Saklıdır."
-
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
-msgid "Berkeley Open Infrastructure for Network Computing"
-msgstr ""
-"              Türkçe Çeviri: Aycan Demirel\n"
-"\n"
-"\n"
-"Berkeley Open Infrastructure for Network Computing"
-
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
-msgid "&OK"
-msgstr "&Tamam"
-
-#: clientgui/DlgAdvPreferences.cpp:480
-msgid "invalid float"
-msgstr "geçersiz değer"
-
-#: clientgui/DlgAdvPreferences.cpp:481
-msgid "invalid time, format is HH:MM"
-msgstr "geçersiz saat, format SS:DD şeklinde olmalı"
-
-#: clientgui/DlgAdvPreferences.cpp:482
-msgid "invalid time interval, format is HH:MM-HH:MM"
-msgstr "geçersiz saat aralığı, format SS:DD-SS:DD şeklinde olmalı"
-
-#: clientgui/DlgAdvPreferences.cpp:591
-msgid "invalid input value detected"
-msgstr "geçersiz giriş değeri belirlendi"
-
-#: clientgui/DlgAdvPreferences.cpp:593
-msgid "Validation Error"
-msgstr "Doğrulama Hatası"
-
-#: clientgui/DlgAdvPreferences.cpp:736
-msgid "Do you really want to clear all local preferences ?"
-msgstr "Tüm yerel tercihleri kaldırmak istediğinize emin misiniz?"
-
-#: clientgui/DlgAdvPreferences.cpp:737
-msgid "Confirmation"
-msgstr "Onaylama"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
-msgid "%s - Preferences"
-msgstr "%s - Tercihler"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:49
-msgid ""
-"This dialog controls preferences for this computer only.\n"
-"Click OK to set preferences.\n"
-"Click Clear to restore web-based settings."
-msgstr ""
-"Bu pencere, sadece bu bilgisayar için olan tercihleri ayarlar.\n"
-"Tercihleri ayarlamak için Tamam'a basın.\n"
-"İnternet-tabanlı tercihlere dönmek için Temizle'yi tıklayın."
-
-#: clientgui/DlgAdvPreferencesBase.cpp:52
-msgid "Clear"
-msgstr "Temizle"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:53
-msgid "clear all local preferences and close the dialog"
-msgstr "tüm yerel tercihleri temizle ve pencereyi kapat"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:76
-msgid "Computing allowed"
-msgstr "Hesaplama izinleri"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:80
-msgid " While computer is on batteries"
-msgstr "Bilgisayar pil gücünde olduğunda"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:83
-msgid "check this if you want this computer to do work while it runs on batteries"
-msgstr "bilgisayar pille çalışırken hesaplama işinin çalışmasını istiyorsanız bunu işaretleyin"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:89
-msgid " While computer is in use"
-msgstr "Bilgisayar kullanımda olduğunda"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:92
-msgid "check this if you want this computer to do work even when you're using it"
-msgstr "bilgisayarınızı kullandığınız sırada hesaplama işinin çalışmasını istiyorsanız bunu işaretleyin"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:98
-msgid " Use GPU while computer is in use"
-msgstr " Bilgisayar kullanımda olduğunda GPU'yu kullan"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:101
-msgid "check this if you want your GPU to do work even when you're using the computer"
-msgstr "bilgisayarınızı kullandığınız sırada GPU'nuzun hesaplama için çalışmasını istiyorsanız bunu işaretleyin"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:111
-msgid "Only after computer has been idle for"
-msgstr "Yalnızca bilgisayar bu süre kadar boşta kaldığında:"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:115
-msgid "do work only after you haven't used the computer for this number of minutes"
-msgstr "bilgisayarınızı kaç dakika kullanılmadığınızda hesaplama işinin başlamasını istediğinizi ayarlayın"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
-msgid "minutes"
-msgstr "dakika"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
-msgid "Every day between hours of"
-msgstr "Her gün bu saatler arasında:"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:134
-msgid "start work at this time"
-msgstr "bu saatte işi çalıştır"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
-msgid "and"
-msgstr "ve"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:142
-msgid "stop work at this time"
-msgstr "bu saatte iÅŸi durdur"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
-msgid "(no restriction if equal)"
-msgstr "(birbirine eşitse, sınırlama yok)"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
-msgid "Day-of-week override:"
-msgstr "Haftanın günü sınırlamaları:"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
-msgid "check box to specify hours for this day of week"
-msgstr "haftanın belli günlerindeki çalışma saatlerini belirlemek için kutuları işaretleyin"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
-msgid "Monday"
-msgstr "Pazartesi"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
-msgid "Tuesday"
-msgstr "Salı"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
-msgid "Wednesday"
-msgstr "Çarşamba"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
-msgid "Thursday"
-msgstr "PerÅŸembe"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
-msgid "Friday"
-msgstr "Cuma"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
-msgid "Saturday"
-msgstr "Cumartesi"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
-msgid "Sunday"
-msgstr "Pazar"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:225
-msgid "Other options"
-msgstr "Diğer seçenekler"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
-msgstr "Bu kadar sürede bir, çalışan uygulamayı değiştir:"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:242
-msgid "On multiprocessor systems, use at most"
-msgstr "Çok işlemcili (CPU'lu) sistemlerde işlemcilerin %"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
-msgid "% of the processors"
-msgstr "kadarını kullan"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
-msgid "Use at most"
-msgstr "Yaklaşık %"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
-msgid "% CPU time"
-msgstr "kadar işlemci gücü kullan"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:269
-msgid "processor usage"
-msgstr "işlemci kullanımı"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:277
-msgid "General options"
-msgstr "Genel seçenekler"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:284
-msgid "Maximum download rate"
-msgstr "En yüksek indirme hızı:"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
-msgid "KBytes/sec."
-msgstr "KBayt/sn"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:293
-msgid "Maximum upload rate"
-msgstr "En yüksek gönderme hızı:"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:302
-msgid "Connect about every"
-msgstr "Bağlantı gerçekleştirme:"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:306
-msgid ""
-"this computer is connected to the Internet about every X days\n"
-"(0 if it's always connected)"
-msgstr ""
-"bu bilgisayar internete yaklaşık her X günde bir bağlanır\n"
-"(eğer sürekli bağlıysa 0 yazın)"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:310
-msgid "days"
-msgstr "günde bir"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:313
-msgid "Additional work buffer"
-msgstr "Depolanacak iş miktarı:"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:319
-msgid "days (max. 10)"
-msgstr "günlük (en çok 10)"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:322
-msgid " Skip image file verification"
-msgstr "Resim dosyasıyla doğrulamayı atla"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:324
-msgid "check this if your Internet provider modifies image files"
-msgstr "internet sağlayıcınız resim dosyalarını değiştiriyorsa bunu işaretleyin"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:333
-msgid "Connect options"
-msgstr "Bağlantı seçenekleri"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:335
-msgid "Confirm before connecting to internet"
-msgstr "Internete bağlanmadan önce onay iste"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:337
-msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
-msgstr "işaretlerseniz, internet bağlantısı kurulmaya çalışılmadan önce sizden onay isteyen bir mesaj belirir"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:341
-msgid "Disconnect when done"
-msgstr "Tamamlandığında bağlantıyı kes"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:343
-msgid ""
-"if checked, BOINC hangs up when network usage is done\n"
-"(only relevant for dialup-connection)"
-msgstr ""
-"işaretlenirse, ağ kullanımı tamamlandığında BOINC hattı kapatır\n"
-"(yalnızca uygun çevirmeli bağlantılar için)"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:350
-msgid "Network usage allowed"
-msgstr "Ağ kullanım izinleri"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:359
-msgid "network usage start hour"
-msgstr "ağ kullanımı başlangıç saati"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:367
-msgid "network usage stop hour"
-msgstr "ağ kullanımı bitiş saati"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:452
-msgid "network usage"
-msgstr "ağ kullanımı"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
-msgid "Disk usage"
-msgstr "Disk kullanımı"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:472
-msgid "the maximum disk space used by BOINC (in Gigabytes)"
-msgstr "BOINC tarafından kullanılacak en fazla disk alanı (Gigabayt olarak)"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:476
-msgid "Gigabytes disk space"
-msgstr "Gigabayt disk alanı kullan"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:479
-msgid "Leave at least"
-msgstr "En az"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:483
-msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
-msgstr "BOINC en az bu miktar kadar disk alanını serbest bırakacak"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:487
-msgid "Gigabytes disk space free"
-msgstr "Gigabayt disk alanı boş kalsın"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:494
-msgid "BOINC uses at most this percentage of total disk space"
-msgstr "BOINC yüzde olarak en çok bu miktarda disk alanını kullanacak"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
-msgid "% of total disk space"
-msgstr "kadar disk alanı kullan (en çok)"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
-msgstr "Diske her"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:508
-msgid "seconds"
-msgstr "saniyede bir veri yaz"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
-msgid "% of page file (swap space)"
-msgstr "kadar sayfa dosyası (swap alanı) kullan"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:526
-msgid "Memory usage"
-msgstr "Bellek kullanımı"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
-msgid "% when computer is in use"
-msgstr "kadar bellek kullan (bilgisayar kullanımdayken, en çok)"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
-msgid "% when computer is idle"
-msgstr "kadar bellek kullan (bilgisayar boştayken, en çok)"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:556
-msgid " Leave applications in memory while suspended"
-msgstr "Durdurulduğunda uygulamaları bellekte tut"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:558
-msgid "if checked, suspended work units are left in memory"
-msgstr "işaretlenirse, durdurulmuş işler kapatılmaz ve bellekte kalmayı sürdürür"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:567
-msgid "disk and memory usage"
-msgstr "disk ve bellek kullanımı"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:580
-msgid "OK"
-msgstr "Tamam"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:581
-msgid "save all values and close the dialog"
-msgstr "tüm değerleri kaydet ve pencereyi kapat"
-
-#: clientgui/AsyncRPC.cpp:996
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr "Ä°ptal"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
-msgid "close the dialog without saving"
-msgstr "deÄŸerleri kaydetmeden pencereyi kapat"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
-msgid "Help"
-msgstr "Yardım"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:591
-msgid "shows the preferences web page"
-msgstr "Tercihler internet sayfasını görüntüler"
-
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
-msgid "%s - Exit Confirmation"
-msgstr "%s - Çıkış Onaylama"
-
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
-msgid ""
-"You have requested to exit the %s,\n"
-"which allows you to view and manage\n"
-"the science applications running on your computer.\n"
-"\n"
-"If you also want to stop running the science applications when you\n"
-"exit the Manager, then choose from the following options:"
-msgstr ""
-"%s'dan çıkmak istediniz.\n"
-"Bu program, bilgisayarınızda çalışan bilimsel\n"
-"uygulamaları görmenizi ve yönetmenizi sağlar.\n"
-"\n"
-"Manager'dan çıktığınızda bilimsel uygulamaların da\n"
-"kapanmasını istiyorsanız, aşağıdaki seçenekleri işaretleyin:"
-
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
-msgid ""
-"This will shut down %s and its tasks entirely until either the\n"
-"%s application 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 ""
-"Bu işlem, %s'ı ve işlerini kapatır ve %s uygulaması\n"
-"ya da %s ekran koruyucu tekrar çalışana kadar kapalı kalır.\n"
-"\n"
-"Bir çok durumda sadece %s penceresini kapatmak,\n"
-"uygulamayı kapatmaktan iyidir. Böylece %s,\n"
-"görevleri tercihlerinizde belirlediğiniz zamanlarda\n"
-"çalıştırabilir."
-
-#: clientgui/DlgExitMessage.cpp:153
-msgid "Stop running science applications when exiting the Manager"
-msgstr "Manager'dan çıkarken, çalışan bilimsel uygulamaları da durdur."
-
-#: clientgui/DlgExitMessage.cpp:164
-msgid "Remember this decision and do not show this dialog."
-msgstr "Seçimimi hatırla ve tekrar sorma."
-
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
-msgid "&Cancel"
-msgstr "&Ä°ptal"
-
-#: clientgui/DlgGenericMessage.cpp:112
-msgid "Don't show this dialog again."
-msgstr "Bu pencereyi tekrar gösterme."
-
-#: clientgui/DlgItemProperties.cpp:57
-msgid "&Close"
-msgstr "&Kapat"
-
-#: clientgui/DlgItemProperties.cpp:101
-msgid "Properties of project "
-msgstr "Projenin özellikleri:"
-
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
-msgid "General"
-msgstr "Genel"
-
-#: clientgui/DlgItemProperties.cpp:106
-msgid "Master URL"
-msgstr "Ana URL"
-
-#: clientgui/DlgItemProperties.cpp:107
-msgid "User name"
-msgstr "Kullanıcı adı"
-
-#: clientgui/DlgItemProperties.cpp:108
-msgid "Team name"
-msgstr "Takım adı"
-
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
-msgid "Resource share"
-msgstr "Kaynak paylaşımı"
-
-#: clientgui/DlgItemProperties.cpp:111
-msgid "Scheduler RPC deferred for"
-msgstr "Zamanlanmış RPC ertelendi"
-
-#: clientgui/DlgItemProperties.cpp:114
-msgid "Non CPU intensive"
-msgstr "CPU-yoÄŸun deÄŸil"
-
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
-msgid "yes"
-msgstr "evet"
-
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
-msgid "no"
-msgstr "hayır"
-
-#: clientgui/DlgItemProperties.cpp:115
-msgid "Suspended via GUI"
-msgstr "Grafik arabirimi (GUI) ile durduruldu"
-
-#: clientgui/DlgItemProperties.cpp:116
-msgid "Don't request more work"
-msgstr "Daha fazla iÅŸ isteme"
-
-#: clientgui/DlgItemProperties.cpp:117
-msgid "Scheduler call in progress"
-msgstr "Zamanlanmış çağrı sürmekte"
-
-#: clientgui/DlgItemProperties.cpp:118
-msgid "Attached via account manager"
-msgstr "Hesap yöneticisi aracılığıyla katıldınız"
-
-#: clientgui/DlgItemProperties.cpp:119
-msgid "Detach when done"
-msgstr "Tamamlandığında ayrıl"
-
-#: clientgui/DlgItemProperties.cpp:120
-msgid "Ended"
-msgstr "Sonlandı"
-
-#: clientgui/DlgItemProperties.cpp:121
-msgid "Credit"
-msgstr "Kredi"
-
-#: clientgui/DlgItemProperties.cpp:122
-msgid "User"
-msgstr "Kullanıcı"
-
-#: clientgui/DlgItemProperties.cpp:129
-msgid "Host"
-msgstr "Bilgisayar"
-
-#: clientgui/DlgItemProperties.cpp:138
-msgid "Scheduling"
-msgstr "Zamanlama"
-
-#: clientgui/DlgItemProperties.cpp:139
-msgid "CPU scheduling priority"
-msgstr "CPU zamanlama önceliği"
-
-#: clientgui/DlgItemProperties.cpp:140
-msgid "CPU work fetch priority"
-msgstr "CPU iş alma önceliği"
-
-#: clientgui/DlgItemProperties.cpp:143
-msgid "CPU work fetch deferred for"
-msgstr "CPU iÅŸ alma ertelendi"
-
-#: clientgui/DlgItemProperties.cpp:144
-msgid "CPU work fetch deferral interval"
-msgstr "CPU iş alma erteleme aralığı"
-
-#: clientgui/DlgItemProperties.cpp:146
-msgid "NVIDIA GPU work fetch priority"
-msgstr "NVIDIA GPU iş alma önceliği"
-
-#: clientgui/DlgItemProperties.cpp:149
-msgid "NVIDIA GPU work fetch deferred for"
-msgstr "NVIDIA GPU iÅŸ alma ertelendi"
-
-#: clientgui/DlgItemProperties.cpp:150
-msgid "NVIDIA GPU work fetch deferral interval"
-msgstr "NVIDIA GPU iş alma aralığı"
-
-#: clientgui/DlgItemProperties.cpp:152
-msgid "Duration correction factor"
-msgstr "Devamlılık düzeltme faktörü"
-
-#: clientgui/DlgItemProperties.cpp:162
-msgid "Properties of task "
-msgstr "İşin özellikleri: "
-
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
-msgid "Application"
-msgstr "Uygulama"
-
-#: clientgui/DlgItemProperties.cpp:167
-msgid "Workunit name"
-msgstr "Ä°ÅŸ birimi ismi"
-
-#: clientgui/DlgItemProperties.cpp:168
-msgid "State"
-msgstr "Durum"
-
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
-msgid "Report deadline"
-msgstr "Son teslim tarihi"
-
-#: clientgui/DlgItemProperties.cpp:172
-msgid "Resources"
-msgstr "Kaynaklar"
-
-#: clientgui/DlgItemProperties.cpp:175
-msgid "CPU time at last checkpoint"
-msgstr "Son kontrol noktasındaki CPU zamanı"
-
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
-msgid "CPU time"
-msgstr "CPU zamanı"
-
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
-msgid "Elapsed time"
-msgstr "Geçen süre"
-
-#: clientgui/DlgItemProperties.cpp:180
-msgid "Estimated time remaining"
-msgstr "Tahmini kalan süre"
-
-#: clientgui/DlgItemProperties.cpp:181
-msgid "Fraction done"
-msgstr "Tamamlanan bölüm"
-
-#: clientgui/DlgItemProperties.cpp:182
-msgid "Virtual memory size"
-msgstr "Sanal bellek kullanımı"
-
-#: clientgui/DlgItemProperties.cpp:183
-msgid "Working set size"
-msgstr "Bellek kullanımı"
-
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
-msgstr "Yuva"
-
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
-msgid "New"
-msgstr "Yeni"
-
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
-msgid "Download failed"
-msgstr "İndirme başarısız"
-
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
-msgid "Downloading"
-msgstr "Ä°ndiriliyor"
-
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
-msgid "Project suspended by user"
-msgstr "Kullanıcı projeyi durdurdu"
-
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
-msgid "Task suspended by user"
-msgstr "Kullanıcı işi durdurdu"
-
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
-msgid "Suspended"
-msgstr "Durdu"
-
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
-msgid " - on batteries"
-msgstr " - pil gücünde"
-
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
-msgid " - user active"
-msgstr " - kullanıcı faal"
-
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
-msgid " - computation suspended"
-msgstr " - hesaplama durduruldu"
-
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
-msgid " - time of day"
-msgstr " - günlük zamanlama"
-
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
-msgid " - CPU benchmarks"
-msgstr " - CPU testleri"
-
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
-msgid " - need disk space"
-msgstr " - disk alanı gerekiyor"
-
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
-msgid "Waiting for memory"
-msgstr "Bellek için bekleniyor"
-
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
-msgid "Waiting for shared memory"
-msgstr "Paylaşılan bellek için bekleniyor"
-
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
-msgid "Running, high priority"
-msgstr "Çalışıyor, yüksek öncelikli"
-
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
-msgid "Running"
-msgstr "Çalışıyor"
-
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
-msgid "Waiting to run"
-msgstr "Çalışmayı bekliyor"
-
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
-msgid "Ready to start"
-msgstr "Başlamaya hazır"
-
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
-msgid "Computation error"
-msgstr "Hesaplama hatası"
-
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
-msgid "Upload failed"
-msgstr "Gönderme başarısız"
-
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
-msgid "Uploading"
-msgstr "Gönderiliyor"
-
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
-msgid "Aborted by user"
-msgstr "Kullanıcı tarafından iptal edildi"
-
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
-msgid "Aborted by project"
-msgstr "Proje tarafından iptal edildi"
-
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
-msgid "Aborted"
-msgstr "Ä°ptal edildi"
-
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
-msgid "Acknowledged"
-msgstr "Kabul edildi"
-
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
-msgid "Ready to report"
-msgstr "Raporlanmaya hazır"
-
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
-msgid "Error: invalid state '%d'"
-msgstr "Hata: Geçersiz durum '%d'"
-
-#: clientgui/DlgOptions.cpp:119
-#, c-format
-msgid "%s - Options"
-msgstr "%s - Seçenekler"
-
-#: clientgui/DlgOptions.cpp:157
-msgid "Language:"
-msgstr "Dil:"
-
-#: clientgui/DlgOptions.cpp:164
-msgid "What language should the manager use?"
-msgstr "Manager'ı hangi dilde kullanmak istediğinizi seçin."
-
-#: clientgui/DlgOptions.cpp:168
-msgid ""
-"Network reminder interval:\n"
-"(minutes)"
-msgstr ""
-"Ağ hatırlatma aralığı\n"
-"(dakika)"
-
-#: clientgui/DlgOptions.cpp:180
-msgid "How often should the Manager remind you when a network connection is needed?"
-msgstr "Manager'ın ne kadar dakika aralıklarla ağ bağlantısı gerektiğini size hatırlatmasını istediğinizi belirleyin."
-
-#: clientgui/DlgOptions.cpp:185
-msgid "Run Manager at login?"
-msgstr "Oturum açıldığında Manager'ı çalıştır"
-
-#: clientgui/DlgOptions.cpp:191
-msgid "Run the BOINC Manager when you log on."
-msgstr "İşaretlerseniz, oturum açtığınızda BOINC Manager otomatik olarak çalışır."
-
-#: clientgui/DlgOptions.cpp:196
-msgid "Enable Manager exit dialog?"
-msgstr "Manager'dan çıkarken sor"
-
-#: clientgui/DlgOptions.cpp:202
-msgid "Display the exit dialog when shutting down the Manager."
-msgstr "İşaretlerseniz, Manager'ı kapatırken bunu onaylamanızı isteyen bir pencere belirir."
-
-#: clientgui/DlgOptions.cpp:213
-msgid "Dial-up and Virtual Private Network settings"
-msgstr "Çevirmeli bağlantı ve Sanal Özel Ağ (VPN) ayarları"
-
-#: clientgui/DlgOptions.cpp:227
-msgid "&Set Default"
-msgstr "&Varsayılan Yap"
-
-#: clientgui/DlgOptions.cpp:232
-msgid "&Clear Default"
-msgstr "&Varsayılanı Kaldır"
-
-#: clientgui/DlgOptions.cpp:239
-msgid "Default Connection:"
-msgstr "Varsayılan Bağlantı:"
-
-#: clientgui/DlgOptions.cpp:246
-msgid "Connections"
-msgstr "Bağlantılar"
-
-#: clientgui/DlgOptions.cpp:255
-msgid "Connect via HTTP proxy server"
-msgstr "HTTP vekil sunucu (proxy) aracılığıyla bağlan"
-
-#: clientgui/DlgOptions.cpp:259
-msgid "HTTP Proxy Server Configuration"
-msgstr "HTTP Vekil Sunucu Yapılandırması"
-
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
-msgid "Address:"
-msgstr "Adres:"
-
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
-msgid "Port:"
-msgstr "Bağlantı noktası:"
-
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
-msgid "Don't use proxy for:"
-msgstr "Burası için vekil sunucu kullanma:"
-
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
-msgid "Leave these blank if not needed"
-msgstr "Gerekli değilse bu bölümü boş bırakın"
-
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
-msgid "User Name:"
-msgstr "Kullanıcı adı:"
-
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
-msgid "Password:"
-msgstr "Parola:"
-
-#: clientgui/DlgOptions.cpp:311
-msgid "HTTP Proxy"
-msgstr "HTTP Proxy"
-
-#: clientgui/DlgOptions.cpp:319
-msgid "Connect via SOCKS proxy server"
-msgstr "SOCKS vekil sunucu (proxy) aracılığıyla bağlan"
-
-#: clientgui/DlgOptions.cpp:323
-msgid "SOCKS Proxy Server Configuration"
-msgstr "SOCKS Vekil Sunucu Yapılandırması"
-
-#: clientgui/DlgOptions.cpp:375
-msgid "SOCKS Proxy"
-msgstr "SOCKS Proxy"
-
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
-msgid "%s - Select Computer"
-msgstr "%s - Bilgisayar Seç ve Bağlan"
-
-#: clientgui/DlgSelectComputer.cpp:127
-msgid "Host name:"
-msgstr "Sunucu adı:"
-
-#: clientgui/hyperlink.cpp:181
-#, c-format
-msgid "%s - Can't find web browser"
-msgstr "%s - İnternet tarayıcı bulunamadı"
-
-#: clientgui/hyperlink.cpp:192
-#, c-format
-msgid ""
-"%s tried to display the web page\n"
-"\t%s\n"
-"but couldn't find a web browser.\n"
-"To fix this, set the environment variable\n"
-"BROWSER to the path of your web browser,\n"
-"then restart the %s."
-msgstr ""
-"%s bir internet sayfasını görüntelemeyi deniyor\n"
-"\t%s\n"
-"fakat bir internet tarayıcı bulamıyor.\n"
-"Bunu çözmek için BROWSER ortam değişkenini,\n"
-"tarayıcınızın bulunduğu dizine ayarlayın ve\n"
-"%s'ı yeniden başlatın."
-
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
-msgid "Message boards"
-msgstr "Forum sayfaları"
-
-#: clientgui/Localization.cpp:33
-msgid "Correspond with other users on the SETI at home message boards"
-msgstr "Diğer kullanıcılarla SETI at home forum sayfaları aracılığıyla iletişim kurun"
-
-#: clientgui/Localization.cpp:37
-msgid "Ask questions and report problems"
-msgstr "Sorular sorun ve problemleri bildirin"
-
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
-msgid "Your account"
-msgstr "Hesabınız"
-
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
-msgid "View your account information and credit totals"
-msgstr "Hesap bilgilerinizi ve toplam kredinizi görüntüleyin"
-
-#: clientgui/Localization.cpp:43
-msgid "Your preferences"
-msgstr "Tercihleriniz"
-
-#: clientgui/Localization.cpp:45
-msgid "View and modify your SETI at home account profile and preferences"
-msgstr "SETI at home hesap profili ve tercihlerini görüp değiştirin"
-
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
-msgid "Your results"
-msgstr "Sonuçlarınız"
-
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
-msgid "View your last week (or more) of computational results and work"
-msgstr "Son haftaya ait (ya da daha eski) hesaplama sonuçlarınızı ve işlerinizi görüntüleyin"
-
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
-msgid "Your computers"
-msgstr "Bilgisayarlarınız"
-
-#: clientgui/Localization.cpp:53
-msgid "View a listing of all the computers on which you are running SETI at Home"
-msgstr "SETI at Home çalıştırdığınız tüm bilgisayarların listesini görün"
-
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
-msgid "Your team"
-msgstr "Takımınız"
-
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
-msgid "View information about your team"
-msgstr "Takımınız hakkındaki bilgileri görüntüleyin"
-
-#: clientgui/Localization.cpp:61
-msgid "Common questions"
-msgstr "Çeşitli sorular"
-
-#: clientgui/Localization.cpp:63
-msgid "Read the Einstein at Home Frequently Asked Question list"
-msgstr "Einstein at Home Sık Sorulan Sorular listesini okuyun"
-
-#: clientgui/Localization.cpp:65
-msgid "Screensaver info"
-msgstr "Ekran koruyucu bilgisi"
-
-#: clientgui/Localization.cpp:67
-msgid "Read a detailed description of the Einstein at Home screensaver"
-msgstr "Einstein at Home ekran koruyucusunun detaylı açıklamalarını okuyun"
-
-#: clientgui/Localization.cpp:71
-msgid "Correspond with admins and other users on the Einstein at Home message boards"
-msgstr "Yöneticiler ve başka kullanıcılarla Einstein at Home forumlarında mesajlaşın."
-
-#: clientgui/Localization.cpp:73
-msgid "Einstein status"
-msgstr "Einstein durumu"
-
-#: clientgui/Localization.cpp:75
-msgid "Current status of the Einstein at Home server"
-msgstr "Einstein at Home sunucusunun ÅŸu anki durumu"
-
-#: clientgui/Localization.cpp:77
-msgid "Report problems"
-msgstr "Sorunları bildir"
-
-#: clientgui/Localization.cpp:79
-msgid "A link to the Einstein at Home problems and bug reports message board"
-msgstr "Einstein at Home problemleri ve hata raporları forumuna kısa yol"
-
-#: clientgui/Localization.cpp:83
-msgid "View and modify your Einstein at Home account profile and preferences"
-msgstr "Einstein at Home hesap profilinizi ve tercihlerinizi görün ve değiştirin"
-
-#: clientgui/Localization.cpp:85
-msgid "Account summary"
-msgstr "Hesap özeti"
-
-#: clientgui/Localization.cpp:95
-msgid "View a listing of all the computers on which you are running Einstein at Home"
-msgstr "Einstein at Home çalıştırdığınız tüm bilgisayarların bir listesini görün"
-
-#: clientgui/Localization.cpp:101
-msgid "LIGO project"
-msgstr "LIGO projesi"
-
-#: clientgui/Localization.cpp:103
-msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
-msgstr "Laser Interferometer Gravitational-wave Observatory (LIGO) projesinin ana sayfası"
-
-#: clientgui/Localization.cpp:105
-msgid "GEO-600 project"
-msgstr "GEO-600 projesi"
-
-#: clientgui/Localization.cpp:107
-msgid "The home page of the GEO-600 project"
-msgstr "GEO-600 projesinin ana sayfası"
-
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
-msgid "Team"
-msgstr "Takım"
-
-#: clientgui/Localization.cpp:117
-msgid "Info about your Team"
-msgstr "Takımınız hakkında bilgi"
-
-#: clientgui/Localization.cpp:123
-msgid "Get help for climateprediction.net"
-msgstr "climateprediction.net için yardım al"
-
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
-msgid "News"
-msgstr "Haberler"
-
-#: clientgui/Localization.cpp:127
-msgid "climateprediction.net News"
-msgstr "climateprediction.net Haberleri"
-
-#: clientgui/Localization.cpp:131
-msgid "View your account information, credits, and trickles"
-msgstr "Hesap bilgilerinizi, kredilerinizi ve trickle'ları görün"
-
-#: clientgui/Localization.cpp:135
-msgid "Info about your team"
-msgstr "Takımınız hakkında bilgi"
-
-#: clientgui/Localization.cpp:141
-msgid "Search for help in our help system"
-msgstr "Yardım sistemimizde arama yapın"
-
-#: clientgui/Localization.cpp:143
-msgid "Global Statistics"
-msgstr "Global Ä°statistikler"
-
-#: clientgui/Localization.cpp:145
-msgid "Summary statistics for World Community Grid"
-msgstr "World Community Grid için genel istatistikler"
-
-#: clientgui/Localization.cpp:147
-msgid "My Grid"
-msgstr "Grid'im"
-
-#: clientgui/Localization.cpp:149
-msgid "Your statistics and settings"
-msgstr "İstatistikleriniz ve ayarlarınız"
-
-#: clientgui/Localization.cpp:151
-msgid "Device Profiles"
-msgstr "Aygıt Profilleri"
-
-#: clientgui/Localization.cpp:153
-msgid "Update your device settings"
-msgstr "Bilgisayarlarınız için tercihleri inceleyin ve düzenleyin"
-
-#: clientgui/Localization.cpp:155
-msgid "Research"
-msgstr "Araştırma"
-
-#: clientgui/Localization.cpp:157
-msgid "Learn about the projects hosted at World Community Grid"
-msgstr "World Community Grid tarafından barındırılan projeler hakkında bilgi edinin"
-
-#: clientgui/MainDocument.cpp:522
-msgid "Starting client services; please wait..."
-msgstr "İstemci servisleri başlatılıyor; lütfen bekleyin..."
-
-#: clientgui/MainDocument.cpp:1031
-msgid "Retrieving system state; please wait..."
-msgstr "Sistem durum bilgisi alınıyor; lütfen bekleyin"
-
-#: clientgui/MainDocument.cpp:1040
-msgid "Retrieving host information; please wait..."
-msgstr "Bilgisayar bilgisi alınıyor; lütfen bekleyin..."
-
-#: clientgui/NoInternetConnectionPage.cpp:180
-msgid "No Internet connection"
-msgstr "İnternet bağlantısı yok"
-
-#: clientgui/NoInternetConnectionPage.cpp:183
-msgid "Please connect to the Internet and try again."
-msgstr "Lütfen internete bağlanıp, tekrar deneyin."
-
-#: clientgui/NotDetectedPage.cpp:182
-msgid "Project not found"
-msgstr "Proje bulunamadı"
-
-#: clientgui/NotDetectedPage.cpp:185
-msgid ""
-"The URL you supplied is not that of a BOINC-based project.\n"
-"\n"
-"Please check the URL and try again."
-msgstr ""
-"BelirttiÄŸiniz adreste bir BOINC projesi bulunmuyor.\n"
-"\n"
-"Adresi kontrol edip tekrar deneyin."
-
-#: clientgui/NotDetectedPage.cpp:189
-msgid "Account manager not found"
-msgstr "Hesap yöneticisi bulunamadı"
-
-#: clientgui/NotDetectedPage.cpp:192
-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 ""
-"Belirttiğiniz adreste bir BOINC hesap yöneticisi bulunmuyor.\n"
-"\n"
-"Adresi kontrol edip tekrar deneyin."
-
-#: clientgui/NotFoundPage.cpp:182
-msgid "Login Failed."
-msgstr "Giriş başarısız."
-
-#: clientgui/NotFoundPage.cpp:186
-msgid "Check the username and password, and try again."
-msgstr "Kullanıcı adı ve parolayı kontrol edip, tekrar deneyin."
-
-#: clientgui/NotFoundPage.cpp:190
-msgid "Check the email address and password, and try again."
-msgstr "E-posta, kullanıcı adı ve parolayı kontrol edip, tekrar deneyin."
-
-#: clientgui/ProjectInfoPage.cpp:245
-msgid "Choose a project"
-msgstr "Bir proje seçin"
-
-#: clientgui/ProjectInfoPage.cpp:248
-msgid "To choose a project, click its name or type its URL below."
-msgstr "Bir proje seçmek için, ismine tıklayın ya da aşağıya adresini girin."
-
-#: clientgui/ProjectInfoPage.cpp:251
-msgid "Project &URL:"
-msgstr "Proje &adresi:"
-
-#: clientgui/ProjectInfoPage.cpp:320
-msgid "You are already attached to this project. Please choose a different project."
-msgstr "Bu projeye zaten katılmış durumdasınız. Lütfen farklı bir proje seçin."
-
-#: clientgui/ProjectInfoPage.cpp:321
-msgid "Already Attached to Project"
-msgstr "Zaten Projeye Katılmışsınız"
-
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
-msgstr "Bu proje, bilgisayarınızın tipine uygun işe sahip olmayabilir."
-
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
-msgstr "%s internet sitesine gitmek için tıklayın."
-
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
-msgid ""
-"Communicating with project\n"
-"Please wait..."
-msgstr ""
-"Projeye bağlanılıyor\n"
-"Lütfen bekleyin..."
-
-#: clientgui/ProjectProcessingPage.cpp:491
-msgid ""
-"Required wizard file(s) are missing from the target server.\n"
-"(lookup_account.php/create_account.php)\n"
-msgstr ""
-"Hedef sunucuda gerekli sihirbaz dosya(ları) bulunamadı.\n"
-"(lookup_account.php/create_account.php)\n"
-
-#: clientgui/ProxyInfoPage.cpp:196
-msgid "Network communication failure"
-msgstr "Ağ bağlantısı başarısız"
-
-#: clientgui/ProxyInfoPage.cpp:200
-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 ""
-"The World Community Grid - BOINC yazılımı İnternet üzerinden\n"
-"bağlantı gerçekleştiremedi. Sıkça karşılaşılan sorunlar:\n"
-"\n"
-"1) Bağlantı problemi. Ağ ve modem bağlantılarınızı kontrol edin ve\n"
-"tekrar denemek için Geri'yi tıklayın.\n"
-"\n"
-"2) Kişisel güvenlik duvarı yazılımı World Community Grid - BOINC\n"
-"yazılımını engelliyor. Kişisel güvenlik duvarınızı, BOINC ve BOINC\n"
-"Manager'ın bağlantı noktaları 80 ve 443 üzerinden haberleşmesine izin\n"
-"verecek şekilde yapılandırın ve yeniden denemek için Geri'yi tıklayın.\n"
-"\n"
-"3) Bir vekil sunucu (proxy) kullanıyorsunuz.\n"
-"BOINC'in vekil sunucu ayarlarını yapmak için İleri'yi tıklayın."
-
-#: clientgui/ProxyInfoPage.cpp:217
-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 ""
-"BOINC yazılımı İnternet üzerinden bağlantı gerçekleştiremedi.\n"
-"Sıkça karşılaşılan sorunlar:\n"
-"\n"
-"1) Bağlantı problemi. Ağ ve modem bağlantılarınızı kontrol edin ve\n"
-"tekrar denemek için Geri'yi tıklayın.\n"
-"\n"
-"2) Kişisel güvenlik duvarı yazılımı BOINC'i engelliyor. Kişisel güvenlik\n"
-"duvarınızı, BOINC ve BOINC Manager'ın bağlantı noktaları 80 ve 443\n"
-"üzerinden haberleşmesine izin verecek şekilde yapılandırın ve yeniden\n"
-"denemek için Geri'yi tıklayın.\n"
-"\n"
-"3) Bir vekil sunucu (proxy) kullanıyorsunuz.\n"
-"BOINC'in vekil sunucu ayarlarını yapmak için İleri'yi tıklayın."
-
-#: clientgui/ProxyPage.cpp:332
-msgid "Proxy configuration"
-msgstr "Proxy yapılandırması"
-
-#: clientgui/ProxyPage.cpp:335
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
-msgid "Server:"
-msgstr "Sunucu:"
-
-#: clientgui/ProxyPage.cpp:351
-msgid "Autodetect"
-msgstr "Otomatik belirle"
-
-#: clientgui/ProxyPage.cpp:355
-msgid "SOCKS proxy"
-msgstr "SOCKS proxy"
-
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
-msgid "&%s"
-msgstr "&%s"
-
-#: clientgui/sg_ClientStateIndicator.cpp:288
-msgid "Retrieving current status."
-msgstr "Mevcut durum bilgisi alınıyor."
-
-#: clientgui/sg_ClientStateIndicator.cpp:291
-msgid "You don't have any projects.  Please Add a Project."
-msgstr "Katıldığınız bir proje bulunmuyor.  Lütfen bir proje ekleyin."
-
-#: clientgui/sg_ClientStateIndicator.cpp:294
-msgid "Downloading work from the server."
-msgstr "Ä°ÅŸ sunucudan indiriliyor"
-
-#: clientgui/sg_ClientStateIndicator.cpp:299
-msgid "Processing Suspended:  Running On Batteries."
-msgstr "Çalışma Durdu:  Pil Gücünde Çalışıyor."
-
-#: clientgui/sg_ClientStateIndicator.cpp:301
-msgid "Processing Suspended:  User Active."
-msgstr "Çalışma Durdu:  Kullanıcı Faal."
-
-#: clientgui/sg_ClientStateIndicator.cpp:303
-msgid "Processing Suspended:  User paused processing."
-msgstr "Çalışma Durdu:  Kullanıcı Çalışmayı Duraklattı."
-
-#: clientgui/sg_ClientStateIndicator.cpp:305
-msgid "Processing Suspended:  Time of Day."
-msgstr "Çalışma Durdu:  Günlük Zamanlama"
-
-#: clientgui/sg_ClientStateIndicator.cpp:307
-msgid "Processing Suspended:  Benchmarks Running."
-msgstr "Çalışma Durdu:  Testler Çalışıyor."
-
-#: clientgui/sg_ClientStateIndicator.cpp:309
-msgid "Processing Suspended."
-msgstr "Çalışma Durdu."
-
-#: clientgui/sg_ClientStateIndicator.cpp:313
-msgid "Waiting to contact project servers."
-msgstr "Proje sunucularına bağlanılması için bekleniyor."
-
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
-msgid "Retrieving current status"
-msgstr "Mevcut durum bilgisi alınıyor"
-
-#: clientgui/sg_ClientStateIndicator.cpp:320
-msgid "No work available to process"
-msgstr "Çalıştırılacak iş bulunmuyor"
-
-#: clientgui/sg_ClientStateIndicator.cpp:322
-msgid "Unable to connect to the core client"
-msgstr "Çekirdek istemciyle bağlantı kurulamadı"
-
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
-msgid "Project"
-msgstr "Proje"
-
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
-msgid "Time"
-msgstr "Zaman"
-
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
-msgid "Message"
-msgstr "Mesaj"
-
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
-msgid "Copy all the messages to the clipboard."
-msgstr "Tüm mesajları panoya kopyalar."
-
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
-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 ""
-"Seçili mesajları panoya kopyalar. Shift ya da komut düğmelerine basıp\n"
-"mesajların üzerine tıklayarak, çok sayıda mesajı seçebilirsiniz."
-
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
-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 ""
-"Seçili mesajları panoya kopyalar. Shift ya da Ctrl düğmelerine basıp\n"
-"mesajların üzerine tıklayarak, çok sayıda mesajı seçebilirsiniz."
-
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
-msgid "Get help with BOINC"
-msgstr "BOINC yardım sitesini açar"
-
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
-msgid "%s - Messages"
-msgstr "%s - Mesajlar"
-
-#: clientgui/sg_DlgPreferences.cpp:95
-msgid "100 MB"
-msgstr "100 MB"
-
-#: clientgui/sg_DlgPreferences.cpp:96
-msgid "200 MB"
-msgstr "200 MB"
-
-#: clientgui/sg_DlgPreferences.cpp:97
-msgid "500 MB"
-msgstr "500 MB"
-
-#: clientgui/sg_DlgPreferences.cpp:98
-msgid "1 GB"
-msgstr "1 GB"
-
-#: clientgui/sg_DlgPreferences.cpp:99
-msgid "2 GB"
-msgstr "2 GB"
-
-#: clientgui/sg_DlgPreferences.cpp:100
-msgid "5 GB"
-msgstr "5 GB"
-
-#: clientgui/sg_DlgPreferences.cpp:101
-msgid "10 GB"
-msgstr "10 GB"
-
-#: clientgui/sg_DlgPreferences.cpp:102
-msgid "20 GB"
-msgstr "20 GB"
-
-#: clientgui/sg_DlgPreferences.cpp:103
-msgid "50 GB"
-msgstr "50 GB"
-
-#: clientgui/sg_DlgPreferences.cpp:104
-msgid "100 GB"
-msgstr "100 GB"
-
-#: clientgui/sg_DlgPreferences.cpp:135
-msgid "10%"
-msgstr "%10"
-
-#: clientgui/sg_DlgPreferences.cpp:136
-msgid "20%"
-msgstr "%20"
-
-#: clientgui/sg_DlgPreferences.cpp:137
-msgid "30%"
-msgstr "%30"
-
-#: clientgui/sg_DlgPreferences.cpp:138
-msgid "40%"
-msgstr "%40"
-
-#: clientgui/sg_DlgPreferences.cpp:139
-msgid "50%"
-msgstr "%50"
-
-#: clientgui/sg_DlgPreferences.cpp:140
-msgid "60%"
-msgstr "% 60"
-
-#: clientgui/sg_DlgPreferences.cpp:141
-msgid "70%"
-msgstr "%70"
-
-#: clientgui/sg_DlgPreferences.cpp:142
-msgid "80%"
-msgstr "%80"
-
-#: clientgui/sg_DlgPreferences.cpp:143
-msgid "90%"
-msgstr "%90"
-
-#: clientgui/sg_DlgPreferences.cpp:144
-msgid "100%"
-msgstr "%100"
-
-#: clientgui/sg_DlgPreferences.cpp:169
-msgid "1"
-msgstr "1"
-
-#: clientgui/sg_DlgPreferences.cpp:170
-msgid "3"
-msgstr "3"
-
-#: clientgui/sg_DlgPreferences.cpp:171
-msgid "5"
-msgstr "5"
-
-#: clientgui/sg_DlgPreferences.cpp:172
-msgid "10"
-msgstr "10"
-
-#: clientgui/sg_DlgPreferences.cpp:173
-msgid "15"
-msgstr "15"
-
-#: clientgui/sg_DlgPreferences.cpp:174
-msgid "30"
-msgstr "30"
-
-#: clientgui/sg_DlgPreferences.cpp:175
-msgid "60"
-msgstr "60"
-
-#: clientgui/sg_DlgPreferences.cpp:284
-msgid "Skin"
-msgstr "Kaplama"
-
-#: clientgui/sg_DlgPreferences.cpp:291
-msgid "Skin:"
-msgstr "Kaplama:"
-
-#: clientgui/sg_DlgPreferences.cpp:307
-msgid "Preferences"
-msgstr "Tercihler"
-
-#: clientgui/sg_DlgPreferences.cpp:324
-msgid "I want to customize my preferences for this computer only."
-msgstr "Tercihlerimi yalnızca bu bilgisayar için özelleştirmek istiyorum."
-
-#: clientgui/sg_DlgPreferences.cpp:333
-msgid "Customized Preferences"
-msgstr "Özelleştirilmiş Tercihler"
-
-#: clientgui/sg_DlgPreferences.cpp:349
-msgid "Do work only between:"
-msgstr "Yalnızca bu saatler arasında çalıştır:"
-
-#: clientgui/sg_DlgPreferences.cpp:371
-msgid "Connect to internet only between:"
-msgstr "Bu saatler arasında internete bağlan:"
-
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
-msgid "Use no more than:"
-msgstr "Bundan fazlasını kullanma:"
-
-#: clientgui/sg_DlgPreferences.cpp:406
-msgid "of disk space"
-msgstr "disk alanı"
-
-#: clientgui/sg_DlgPreferences.cpp:423
-msgid "of the processor"
-msgstr "CPU (işlemci) gücü"
-
-#: clientgui/sg_DlgPreferences.cpp:427
-msgid "Do work while on battery?"
-msgstr "Pil gücündeyken işleri çalıştır?"
-
-#: clientgui/sg_DlgPreferences.cpp:440
-msgid "Do work after idle for:"
-msgstr "Bu kadar süre boşta kaldığında çalıştır:"
-
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
-msgid "Anytime"
-msgstr "Herhangi"
-
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
-msgid "%d MB"
-msgstr "%d MB"
-
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
-msgid "%4.2f GB"
-msgstr "%4.2f GB"
-
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
-msgid "%d%%"
-msgstr "%%%d"
-
-#: clientgui/sg_DlgPreferences.cpp:864
-msgid "0 (Run Always)"
-msgstr "0 (Daima Çalış)"
-
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
-msgid "%d"
-msgstr "%d"
-
-#: clientgui/sg_ImageButton.cpp:90
-msgid "Paused: Other work running"
-msgstr "Durakladı: Başka iş çalışıyor"
-
-#: clientgui/sg_ImageButton.cpp:92
-msgid "Paused: User initiatied.  Click 'Resume' to continue"
-msgstr "Durakladı: Kullanıcı Durdurdu.  Devam etmek için 'Devam'a tıklayın"
-
-#: clientgui/sg_ImageButton.cpp:94
-msgid "Paused: User active"
-msgstr "Durakladı: Kullanıcı faal"
-
-#: clientgui/sg_ImageButton.cpp:96
-msgid "Paused: Computer on battery"
-msgstr "Durakladı: Bilgisayar pil gücünde"
-
-#: clientgui/sg_ImageButton.cpp:98
-msgid "Paused: Time of Day"
-msgstr "Durakladı: Günlük zamanlama"
-
-#: clientgui/sg_ImageButton.cpp:100
-msgid "Paused: Benchmarks running"
-msgstr "Durakladı: Testler çalışıyor"
-
-#: clientgui/sg_ImageButton.cpp:102
-msgid "Paused"
-msgstr "Durakladı"
-
-#: clientgui/sg_ImageButton.cpp:104
-msgid "Paused: Application start delayed"
-msgstr "Durakladı: Uygulamanın başlaması ertelendi"
-
-#: clientgui/sg_ImageButton.cpp:132
-msgid "Click to show project graphics"
-msgstr "Proje grafiklerini görmek için tıklayın"
-
-#: clientgui/sg_ProjectsComponent.cpp:106
-msgid "Attach to an additional project"
-msgstr "Bir projeye katılmanız için sihirbazı açar"
-
-#: clientgui/sg_ProjectsComponent.cpp:123
-msgid "Synchronize projects with account manager system"
-msgstr "Projeleri hesap yöneticisi sistemiyle senkronize eder"
-
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
-msgid "Open a window to view messages"
-msgstr "BOINC faaliyet mesajları penceresini açar"
-
-#: clientgui/sg_ProjectsComponent.cpp:223
-msgid "Stop all activity"
-msgstr "Tüm çalışmayı durdurur"
-
-#: clientgui/sg_ProjectsComponent.cpp:235
-msgid "Resume activity"
-msgstr "Çalışmayı sürdürür"
-
-#: clientgui/sg_ProjectsComponent.cpp:252
-msgid "Open a window to set your preferences"
-msgstr "Tercihlerinizi ayarlayabileceğiniz pencereyi açar"
-
-#: clientgui/sg_ProjectsComponent.cpp:269
-msgid "Switch to the BOINC advanced view"
-msgstr "BOINC gelişmiş görünümüne geçiş yapar"
-
-#: clientgui/sg_ProjectsComponent.cpp:296
-msgid "My Projects:"
-msgstr "Projelerim:"
-
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
-msgid "%s. Work done by %s: %0.2f"
-msgstr "%s. %s tarafından elde edilen kredi: %0.2f"
-
-#: clientgui/sg_StatImageLoader.cpp:154
-msgid "Remove Project"
-msgstr "Projeyi Kaldır"
-
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
-msgid "Are you sure you want to detach from project '%s'?"
-msgstr "'%s' projesinden ayrılmak istediğinize emin misiniz?"
-
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
-msgid "Detach from Project"
-msgstr "Projeden ayrıl"
-
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
-msgid "%.1lf"
-msgstr "%.1lf"
-
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
-msgid "%d hr %d min %d sec"
-msgstr "%d s %d dk %d sn"
-
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
-msgid "Are you sure you want to display graphics on a remote machine?"
-msgstr "Uzak bilgisayardaki grafikleri görüntülemek istediğinize emin misiniz?"
-
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
-msgid "Show graphics"
-msgstr "Grafikleri göster"
-
-#: clientgui/sg_ViewTabPage.cpp:444
-msgid "Application: "
-msgstr "Uygulama: "
-
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
-msgid "Time Remaining: "
-msgstr "Kalan Süre: "
-
-#: clientgui/sg_ViewTabPage.cpp:450
-msgid "Elapsed Time: "
-msgstr "Geçen Süre: "
-
-#: clientgui/TermsOfUsePage.cpp:213
-msgid "Terms of Use"
-msgstr "Kullanım Koşulları"
-
-#: clientgui/TermsOfUsePage.cpp:217
-msgid "Please read the following terms of use:"
-msgstr "Lütfen aşağıdaki kullanım koşullarını okuyun:"
-
-#: clientgui/TermsOfUsePage.cpp:226
-msgid "I agree to the terms of use."
-msgstr "Kullanım koşullarını kabul ediyorum."
-
-#: clientgui/TermsOfUsePage.cpp:232
-msgid "I do not agree with the terms of use."
-msgstr "Kullanım koşullarını kabul etmiyorum."
-
-#: clientgui/UnavailablePage.cpp:184
-msgid "Project temporarily unavailable"
-msgstr "Proje geçiçi olarak kullanılamaz durumda"
-
-#: clientgui/UnavailablePage.cpp:187
-msgid ""
-"The project is temporarily unavailable.\n"
-"\n"
-"Please try again later."
-msgstr ""
-"Proje geçiçi olarak kullanılamaz durumda.\n"
-"\n"
-"Lütfen daha sonra tekrar deneyin."
-
-#: clientgui/UnavailablePage.cpp:191
-msgid "Account manager temporarily unavailable"
-msgstr "Hesap yöneticisi geçici olarak devre dışı."
-
-#: clientgui/UnavailablePage.cpp:194
-msgid ""
-"The account manager is temporarily unavailable.\n"
-"\n"
-"Please try again later."
-msgstr ""
-"Hesap yöneticisi geçici olarak devre dışı.\n"
-"\n"
-"Lütfen daha sonra tekrar deneyin."
-
-#: clientgui/ValidateAccountKey.cpp:68
-msgid "Please specify an account key to continue."
-msgstr "Lütfen devam etmek için bir hesap anahtarı belirtin."
-
-#: clientgui/ValidateAccountKey.cpp:71
-msgid "Invalid Account Key; please enter a valid Account Key"
-msgstr "Geçersiz hesap anahtarı; lütfen geçerli bir hesap anahtarı girin."
-
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
-msgid "Validation conflict"
-msgstr "DoÄŸrulama tutmuyor"
-
-#: clientgui/ValidateEmailAddress.cpp:72
-msgid "Please specify an email address"
-msgstr "Lütfen bir e-posta adresi belirtin."
-
-#: clientgui/ValidateEmailAddress.cpp:75
-msgid "Invalid email address; please enter a valid email address"
-msgstr "Geçersiz e-posta adresi; lütfen geçerli bir e-posta adresi girin."
-
-#: clientgui/ValidateURL.cpp:69
-msgid "Missing URL"
-msgstr "Eksik adres"
-
-#: clientgui/ValidateURL.cpp:70
-msgid ""
-"Please specify a URL.\n"
-"For example:\n"
-"http://www.example.com/"
-msgstr ""
-"Lütfen bir internet adresi belirtin.\n"
-"Örneğin:\n"
-"http://www.ornek.com/"
-
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
-msgid "Invalid URL"
-msgstr "Geçersiz adres"
-
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
-msgid ""
-"Please specify a valid URL.\n"
-"For example:\n"
-"http://boincproject.example.com"
-msgstr ""
-"Lütfen geçerli bir internet adresi belirtin.\n"
-"Örneğin:\n"
-"http:/boincproject.ornek.com"
-
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
-msgid "'%s' does not contain a valid host name."
-msgstr "'%s' geçerli bir bilgisayar adı içermiyor."
-
-#: clientgui/ValidateURL.cpp:111
-#, c-format
-msgid "'%s' does not contain a valid path."
-msgstr "'%s' geçerli bir yol içermiyor."
-
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
-msgid "Commands"
-msgstr "Komutlar"
-
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
-msgid "Copy all messages"
-msgstr "Tüm mesajları kopyala"
-
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
-msgid "Copy selected messages"
-msgstr "Seçili mesajları kopyala"
-
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
-msgid "Show only this project"
-msgstr "Yalnızca bu projeyi göster"
-
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
-msgid "Show only the messages for the selected project."
-msgstr "Yalnızca şu anda seçili projeye ait mesajları ve BOINC'in genel mesajlarını görüntüler."
-
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
-msgid "Messages"
-msgstr "Mesajlar"
-
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
-msgid "Copying all messages to the clipboard..."
-msgstr "Tüm mesajlar panoya kopyalanıyor..."
-
-#: clientgui/ViewMessages.cpp:223
-msgid "Copying selected messages to the clipboard..."
-msgstr "Seçili mesajlar panoya kopyalanıyor..."
-
-#: clientgui/ViewMessages.cpp:286
-msgid "Filtering messages..."
-msgstr "Mesajlar filtreleniyor...."
-
-#: clientgui/ViewMessages.cpp:494
-msgid "Show all messages"
-msgstr "Tüm mesajları göster"
-
-#: clientgui/ViewMessages.cpp:495
-msgid "Show messages for all projects."
-msgstr "Tüm projeler için mesajları gösterir."
-
-#: clientgui/ViewMessagesGrid.cpp:128
-msgid "ID"
-msgstr "ID"
-
-#: clientgui/ViewMessagesGrid.cpp:128
-msgid "Priority"
-msgstr "Öncelik"
-
-#: clientgui/ViewMessagesGrid.cpp:151
-msgid "MessagesGrid"
-msgstr "MessagesGrid"
-
-#: clientgui/ViewMessagesGrid.cpp:209
-msgid "Copying selected messages to Clipboard..."
-msgstr "Seçili mesajlar panoya kopyalanıyor..."
-
-#: clientgui/ViewMessagesGrid.cpp:396
-msgid "Info"
-msgstr "Bilgi"
-
-#: clientgui/ViewMessagesGrid.cpp:399
-msgid "Warning"
-msgstr "Uyarı"
-
-#: clientgui/ViewMessagesGrid.cpp:403
-msgid "Error"
-msgstr "Hata"
-
-#: clientgui/ViewNews.cpp:76
-msgid "News Feeds"
-msgstr "Haber Akışları"
-
-#: clientgui/ViewNews.cpp:80
-msgid "BOINC"
-msgstr "BOINC"
-
-#: clientgui/ViewNews.cpp:81
-msgid "Display the latest news about BOINC"
-msgstr "BOINC hakkındaki son haberleri görüntüler"
-
-#: clientgui/ViewNews.cpp:87
-msgid "BOINC Website"
-msgstr "BOINC Ä°nternet Sitesi"
-
-#: clientgui/ViewNews.cpp:88
-msgid "Display the latest news about BOINC from the BOINC website"
-msgstr "BOINC hakkındaki son haberleri BOINC internet sitesinden görüntüler"
-
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
-msgid "Update"
-msgstr "Güncelle"
-
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
-msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
-msgstr "Tamamlanan işleri raporla, güncel kredi bigilerini ve tercih ayarlarını al ve gerekiyorsa daha fazla iş indir."
-
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
-msgid "Suspend"
-msgstr "Durdur"
-
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
-msgid "Suspend tasks for this project."
-msgstr "Bu proje için görevleri durdur."
-
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
-msgid "No new tasks"
-msgstr "Yeni iÅŸ indirme"
-
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
-msgid "Don't get new tasks for this project."
-msgstr "Bu proje için yeni işler indirilmez."
-
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
-msgid "Reset project"
-msgstr "Projeyi sıfırla"
-
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
-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 "Bu projeye ilişkin tüm dosyalar ile işleri sil ve yeni işler al  (tamamlanmış işler varsa sonuçları raporlamak için önce projeyi güncelleyebilirsiniz)."
-
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
-msgid "Detach"
-msgstr "Ayrıl"
-
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
-msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
-msgstr "Bu bilgisayarda bu projeden ayrıl.  Süren işler kaybedilecek (tamamlanmış işlerin sonuçlarını göndermek için önce 'Güncelle' komutunu kullanın)."
-
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
-msgid "Properties"
-msgstr "Özellikler"
-
-#: clientgui/ViewProjects.cpp:209
-msgid "Show project details."
-msgstr "Proje detaylarını görüntüle."
-
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
-msgid "Account"
-msgstr "Hesap"
-
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
-msgid "Work done"
-msgstr "Biten iÅŸ"
-
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
-msgid "Avg. work done"
-msgstr "Ortalama biten iÅŸ"
-
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
-msgid "Status"
-msgstr "Durum"
-
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
-msgid "Projects"
-msgstr "Projeler"
-
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
-msgid "Updating project..."
-msgstr "Proje güncelleniyor..."
-
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
-msgid "Resuming project..."
-msgstr "Proje sürdürülüyor..."
-
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
-msgid "Suspending project..."
-msgstr "Proje durduruluyor..."
-
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
-msgid "Telling project to allow additional task downloads..."
-msgstr "Projeye yeni iş indirmeleri yapılabileceği bildiriliyor..."
-
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
-msgid "Telling project to not fetch any additional tasks..."
-msgstr "Projeye yeni iş indirmeleri yapılmayacağı bildiriliyor..."
-
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
-msgid "Resetting project..."
-msgstr "Proje sıfırlanıyor..."
-
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
-msgid "Are you sure you want to reset project '%s'?"
-msgstr "'%s' projesini sıfırlamak istediğinize emin misiniz?"
-
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
-msgid "Reset Project"
-msgstr "Projeyi Sıfırla"
-
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
-msgid "Detaching from project..."
-msgstr "Projeden ayrılıyorsunuz..."
-
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
-msgid "Launching browser..."
-msgstr "Tarayıcı çalıştırılıyor..."
-
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
-msgid "Resume"
-msgstr "Sürdür"
-
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-msgid "Resume tasks for this project."
-msgstr "Bu proje için işleri sürdür."
-
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
-msgid "Allow new tasks"
-msgstr "Yeni iÅŸler indir"
-
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
-msgid "Allow fetching new tasks for this project."
-msgstr "Bu proje için yeni işlerin indirilmesine izin ver."
-
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
-msgid "Don't fetch new tasks for this project."
-msgstr "Bu proje için yeni işler alma."
-
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
-msgid "Suspended by user"
-msgstr "Kullanıcı tarafından durduruldu"
-
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
-msgid "Won't get new tasks"
-msgstr "Yeni işler alınmayacak"
-
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
-msgid "Project ended - OK to detach"
-msgstr "Proje sona erdi - Ayrılmak için Tamam'a tıklayın"
-
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
-msgid "Will detach when tasks done"
-msgstr "İşler tamamlandığında ayrılacaksınız"
-
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
-msgid "Scheduler request pending"
-msgstr "Zamanlanmış istek kuyrukta"
-
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
-msgid "Scheduler request in progress"
-msgstr "Zamanlanmış istek gerçekleştiriliyor"
-
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
-msgid "Communication deferred "
-msgstr "HaberleÅŸme ertelendi "
-
-#: clientgui/ViewProjectsGrid.cpp:193
-msgid "ProjectsGrid"
-msgstr "ProjectsGrid"
-
-#: clientgui/ViewResources.cpp:61
-msgid "Total disk usage"
-msgstr "Toplam disk kullanımı"
-
-#: clientgui/ViewResources.cpp:82
-msgid "Disk usage by BOINC projects"
-msgstr "BOINC projelerinin disk kullanımı"
-
-#: clientgui/ViewResources.cpp:117
-msgid "Disk"
-msgstr "Disk"
-
-#: clientgui/ViewResources.cpp:223
-msgid "not attached to any BOINC project: 0 bytes"
-msgstr "herhangi bir BOINC projesine katılmadınız: 0 bayt"
-
-#: clientgui/ViewResources.cpp:260
-msgid "used by BOINC: "
-msgstr "BOINC tarafından kullanılan: "
-
-#: clientgui/ViewResources.cpp:270
-msgid "free, available to BOINC: "
-msgstr "boş ve BOINC tarafından kullanılabilir: "
-
-#: clientgui/ViewResources.cpp:280
-msgid "free, not available to BOINC: "
-msgstr "boş ancak BOINC tarafından kullanılamaz: "
-
-#: clientgui/ViewResources.cpp:290
-msgid "free: "
-msgstr "boÅŸ: "
-
-#: clientgui/ViewResources.cpp:300
-msgid "used by other programs: "
-msgstr "başka programlarca kullanılan: "
-
-#: clientgui/ViewStatistics.cpp:1142
-msgid "User Total"
-msgstr "Kullanıcı Toplamı"
-
-#: clientgui/ViewStatistics.cpp:1143
-msgid "User Average"
-msgstr "Kullanıcı Ortalaması"
-
-#: clientgui/ViewStatistics.cpp:1144
-msgid "Host Total"
-msgstr "Bilgisayar Toplamı"
-
-#: clientgui/ViewStatistics.cpp:1145
-msgid "Host Average"
-msgstr "Bilgisayar Ortalaması"
-
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
-msgid "Last update: %.0f days ago"
-msgstr "Son güncelleme: %.0f gün önce"
-
-#: clientgui/ViewStatistics.cpp:1745
-msgid "Show user total"
-msgstr "Kullanıcı toplamı"
-
-#: clientgui/ViewStatistics.cpp:1746
-msgid "Show total credit for user"
-msgstr "Kullanıcı toplam kredisi"
-
-#: clientgui/ViewStatistics.cpp:1752
-msgid "Show user average"
-msgstr "Kullanıcı ortalaması"
-
-#: clientgui/ViewStatistics.cpp:1753
-msgid "Show average credit for user"
-msgstr "Kullanıcı ortalama kredisi"
-
-#: clientgui/ViewStatistics.cpp:1759
-msgid "Show host total"
-msgstr "Bilgisayar toplamı"
-
-#: clientgui/ViewStatistics.cpp:1760
-msgid "Show total credit for host"
-msgstr "Bilgisayar için toplam kredi"
-
-#: clientgui/ViewStatistics.cpp:1766
-msgid "Show host average"
-msgstr "Bilgisayar ortalaması"
-
-#: clientgui/ViewStatistics.cpp:1767
-msgid "Show average credit for host"
-msgstr "Bilgisayar için ortalama kredi"
-
-#: clientgui/ViewStatistics.cpp:1776
-msgid "< &Previous project"
-msgstr "< &Önceki proje"
-
-#: clientgui/ViewStatistics.cpp:1777
-msgid "Show chart for previous project"
-msgstr "Önceki proje için çizelge"
-
-#: clientgui/ViewStatistics.cpp:1782
-msgid "&Next project >"
-msgstr "&Sonraki proje >"
-
-#: clientgui/ViewStatistics.cpp:1783
-msgid "Show chart for next project"
-msgstr "Sonraki proje için çizelge"
-
-#: clientgui/ViewStatistics.cpp:1788
-msgid "Mode view"
-msgstr "Görünüm kipi"
-
-#: clientgui/ViewStatistics.cpp:1791
-msgid "All projects"
-msgstr "Tüm projeler"
-
-#: clientgui/ViewStatistics.cpp:1792
-msgid "Show all projects, one chart per project"
-msgstr "Tüm projeleri göster, her projeye bir çizelge"
-
-#: clientgui/ViewStatistics.cpp:1798
-msgid "One project"
-msgstr "Tek proje"
-
-#: clientgui/ViewStatistics.cpp:1799
-msgid "Show one chart with selected project"
-msgstr "Seçili projeyle tek çizelge göster"
-
-#: clientgui/ViewStatistics.cpp:1805
-msgid "All projects(sum)"
-msgstr "Tüm projeler (özet)"
-
-#: clientgui/ViewStatistics.cpp:1806
-msgid "Show one chart with all projects"
-msgstr "Tüm projelerle tek çizelge göster"
-
-#: clientgui/ViewStatistics.cpp:1826
-msgid "Statistics"
-msgstr "Ä°statistikler"
-
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
-msgid "Updating charts..."
-msgstr "Çizelgeler güncelleniyor..."
-
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
-msgid "Retry Now"
-msgstr "Åžimdi Dene"
-
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
-msgid "Click 'Retry now' to transfer the file now"
-msgstr "Dosyayı hemen aktarmak için 'Şimdi Dene'yi tıklayın."
-
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
-msgid "Abort Transfer"
-msgstr "Aktarımı iptal et"
-
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
-msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
-msgstr ""
-"Dosyayı aktarım kuyruğundan çıkarmak için 'Aktarımı iptal et'e tıklayın.\n"
-"Bunu yapmak, sonuçtan kredi almanızı engelleyecektir."
-
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
-msgid "File"
-msgstr "Dosya"
-
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
-msgid "Progress"
-msgstr "Ä°lerleme"
-
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
-msgid "Size"
-msgstr "Boyut"
-
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
-msgid "Elapsed Time"
-msgstr "Geçen Süre"
-
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
-msgid "Speed"
-msgstr "Hız"
-
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
-msgid "Transfers"
-msgstr "Aktarımlar"
-
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
-msgid "Retrying transfer now..."
-msgstr "Aktarım yeniden deneniyor..."
-
-#: clientgui/ViewTransfers.cpp:309
-msgid "Aborting transfer..."
-msgstr "Aktarım iptal ediliyor..."
-
-#: clientgui/ViewTransfers.cpp:322
-#, 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 ""
-"'%s'\n"
-"adlı dosyayı aktarımı iptal etmek istediğinize emin misiniz?\n"
-"NOT: Bir aktarımı durdurmak, işi geçersiz kılar ve kredi alamazsınız."
-
-#: clientgui/ViewTransfers.cpp:328
-msgid "Abort File Transfer"
-msgstr "Dosya Aktarımını İptal Et"
-
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
-msgid "Retry in "
-msgstr "Yeniden denenecek "
-
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
-msgid "Upload pending"
-msgstr "Gönderme kuyrukta"
-
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
-msgid "Download pending"
-msgstr "Ä°ndirme kuyrukta"
-
-#: clientgui/ViewTransfersGrid.cpp:161
-msgid "TransfersGrid"
-msgstr "TransfersGrid"
-
-#: clientgui/ViewTransfersGrid.cpp:228
-msgid "Aborting transfer(s)..."
-msgstr "Aktarım(lar) iptal ediliyor..."
-
-#: clientgui/ViewTransfersGrid.cpp:230
-msgid ""
-"Are you sure you want to abort this file(s) transfer ?\n"
-"NOTE: Aborting a transfer will invalidate a task and you\n"
-"will not receive credit for it."
-msgstr ""
-"Bu dosya(ları) aktarımı iptal etmek istediğinize emin misiniz?\n"
-"NOT: Bir aktarımı iptal etmek, işi geçersiz kılar ve kredi alamazsınız."
-
-#: clientgui/ViewTransfersGrid.cpp:231
-msgid "Abort File Transfer(s)"
-msgstr "Dosya(ları) Aktarımı İptal Et"
-
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
-msgid "Show application graphics in a window."
-msgstr "Uygulama grafiklerini bir pencerede göster."
-
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
-msgid "Suspend work for this result."
-msgstr "Bu sonuç için çalışmayı durdur."
-
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
-msgid "Abort"
-msgstr "Ä°ptal"
-
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
-msgid "Abandon work on the result. You will get no credit for it."
-msgstr "Üzerinde çalışılan işi iptal et (işten kredi alamazsınız)."
-
-#: clientgui/ViewWork.cpp:205
-msgid "Show task details."
-msgstr "İş detaylarını göster."
-
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
-msgid "Name"
-msgstr "Ä°sim"
-
-#: clientgui/ViewWork.cpp:217
-msgid "Elapsed"
-msgstr "Geçen"
-
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
-msgid "To completion"
-msgstr "Tamamlanma"
-
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
-msgid "Tasks"
-msgstr "Ä°ÅŸler"
-
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
-msgid "Resuming task..."
-msgstr "İş sürdürülüyor.."
-
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
-msgid "Suspending task..."
-msgstr "Ä°ÅŸ durduruluyor..."
-
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
-msgid "Showing graphics for task..."
-msgstr "İşin grafikleri gösteriliyor..."
-
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "Sonuç iptal ediliyor..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
-msgid ""
-"Are you sure you want to abort this task '%s'?\n"
-"(Progress: %s, Status: %s)"
-msgstr ""
-"'%s'\n"
-"adlı işi iptal etmek istediğinize emin misiniz?\n"
-"(Ä°lerleme: %s, Durum: %s)"
-
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
-msgid "Abort task"
-msgstr "Ä°ÅŸi iptal et"
-
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
-msgid "Resume work for this task."
-msgstr "Bu iş için çalışmayı sürdür."
-
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
-msgid "Suspend work for this task."
-msgstr "Bu iş için çalışmayı durdur."
-
-#: clientgui/ViewWork.cpp:1041
-msgid " - an exclusive app is running"
-msgstr " - ayrıcalıklı bir uygulama çalışıyor"
-
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
-msgid " (non-CPU-intensive)"
-msgstr " (CPU-yoÄŸun-deÄŸil)"
-
-#: clientgui/ViewWorkGrid.cpp:184
-msgid "TasksGrid"
-msgstr "TasksGrid"
-
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
-msgid ""
-"Are you sure you want to abort this task '%s'?\n"
-"(Progress: %s %%, Status: %s)"
-msgstr ""
-"'%s'\n"
-"adlı işi iptal etmek istediğinize emin misiniz?\n"
-"(Ä°lerleme: %%%s, Durum: %s)"
-
-#: clientgui/WelcomePage.cpp:241
-msgid "Change Research Applications at World Community Grid"
-msgstr "World Community Grid'te Araştırma Uygulamalarını değiştirin"
-
-#: clientgui/WelcomePage.cpp:374
-#, 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 ""
-"Eğer mümkünse projeleri %s\n"
-"internet sitesinden ekleyin.\n"
-"\n"
-"Bu sihirbazla eklenen projeler, %s ile\n"
-"listelenemez ya da yönetilemez."
-
-#: clientgui/WelcomePage.cpp:390
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
-msgstr "Size bir projeye katılma işleminde rehberlik edeceğiz."
-
-#: clientgui/WelcomePage.cpp:394
-msgid ""
-"You have selected to attach to a new BOINC project.  Attaching to a new\n"
-"project means that you will be connecting your computer to a new website\n"
-"and organization.  If this is what you wanted to do, then please click on\n"
-"the 'Next' button below.\n"
-"\n"
-"Some projects like World Community Grid run multiple research applications.\n"
-"If you want to change which research applications are sent to your computer\n"
-"to run, then you should visit the project's website and modify your\n"
-"preferences there.\n"
-"\n"
-"To change which research applications are sent to you from\n"
-"World Community Grid then please click on the following button:"
-msgstr ""
-"Yeni bir BOINC projesine katılmayı seçtiniz. Bunun anlamı, bilgisayarınız bir\n"
-"internet sitesine ve organizasyonuna baÄŸlanacak. EÄŸer istediÄŸiniz buysa,\n"
-"aşağıdaki 'İleri' butonuna basın.\n"
-"\n"
-"World Community Grid gibi bazı projeler, birden fazla araştırma uygulamasına\n"
-"sahiptir. Eğer bilgisayarınıza gönderilen uygulamaları değiştirmek isterseniz,\n"
-"projenin Ä°nternet sitesini ziyaret etmeli ve buradaki tercihlerinizi deÄŸiÅŸtirmelisiniz.\n"
-"\n"
-"World Community Grid'den gönderilen araştırma uygulamalarını değiştirmek\n"
-"için lütfen aşağıdaki butona tıklayın:"
-
-#: clientgui/WelcomePage.cpp:403
-#, c-format
-msgid "&Stop using%s"
-msgstr "%s kullanmayı &durdur"
-
-#: clientgui/WelcomePage.cpp:410
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-"Şimdi bu bilgisayarı %s hesap yöneticisinden kaldıracağız. Bundan sonra\n"
-"projelere katılma ve ayrılma, direkt olarak bu bilgisayardan gerçekleştirilecek.\n"
-
-#: clientgui/WelcomePage.cpp:431
-msgid "Account manager"
-msgstr "Hesap yöneticisi"
-
-#: clientgui/WelcomePage.cpp:434
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"Size bir hesap yöneticisine bağlanma işleminde rehberlik edeceğiz.\n"
-"\n"
-"Tek bir projeye katılmak istiyorsanız, İptal'i tıklayın, sonra menüden\n"
-"'Projeye katıl' öğesini seçin."
-
-#: clientgui/WelcomePage.cpp:453
-msgid "Debug Flags"
-msgstr "Hata Ayıklama İşaretleri"
-
-#: clientgui/WelcomePage.cpp:456
-msgid "Project Properties Failure"
-msgstr "Proje Özellikleri Hatası"
-
-#: clientgui/WelcomePage.cpp:459
-msgid "Project Communication Failure"
-msgstr "Proje Bağlantısı Hatası"
-
-#: clientgui/WelcomePage.cpp:462
-msgid "Project Properties URL Failure"
-msgstr "Proje Özellikleri URL'si Hatası"
-
-#: clientgui/WelcomePage.cpp:465
-msgid "Account Creation Disabled"
-msgstr "Hesap Yaratma İşlevsiz Kılınmış"
-
-#: clientgui/WelcomePage.cpp:468
-msgid "Client Account Creation Disabled"
-msgstr "İstemci Hesap Yaratma İşlevsiz Kılınmış"
-
-#: clientgui/WelcomePage.cpp:471
-msgid "Account Already Exists"
-msgstr "Hesap Zaten Mevcut"
-
-#: clientgui/WelcomePage.cpp:474
-msgid "Project Already Attached"
-msgstr "Projeye Zaten Katılmışsınız"
-
-#: clientgui/WelcomePage.cpp:477
-msgid "Project Attach Failure"
-msgstr "Projeye Katılma Hatası"
-
-#: clientgui/WelcomePage.cpp:480
-msgid "Failure Communicating with Reference Site"
-msgstr "Referans Siteye Bağlantı Hatası"
-
-#: clientgui/WelcomePage.cpp:483
-msgid "Net Detection Failure"
-msgstr "Ağ Algılama Hatası"
-
-#: clientgui/WelcomePage.cpp:488
-msgid "To continue, click Next."
-msgstr "Devam etmek için, İleri'yi tıklayın."
-
-#: clientgui/WizardAttachProject.cpp:541
-msgid "Do you really want to cancel?"
-msgstr "Ä°ptal etmek istediÄŸinize emin misiniz?"
-
-#: clientgui/WizardAttachProject.cpp:542
-msgid "Question"
-msgstr "Soru"
-
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
-msgid "&Next >"
-msgstr "&Ä°leri >"
-
-#: clientgui/wizardex.cpp:408
-msgid "< &Back"
-msgstr "< &Geri"
-
-#: clientgui/wizardex.cpp:604
-msgid "&Finish"
-msgstr "&Son"
-
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
-msgid "New page inserted. Index = %i"
-msgstr "Yeni sayfa girildi. Ä°ndex = %i"
-
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
-msgid "New page appended. Index = %i"
-msgstr "New page eklendi. Ä°ndex = %i"
-
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
-msgid "Old Page Index = %i"
-msgstr "Eski Sayfa Ä°ndex'i= %i"
-
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
-msgid "OnDropTarget: index by HitTest = %i"
-msgstr "OnDropTarget: HitTest tarafından index = %i"
-
-#: clientgui/common/wxPieCtrl.cpp:66
-msgid "Pie Ctrl"
-msgstr "Pie Kontrol"
-
-#: clientgui/DlgAdvPreferences.h:29
-msgid "specify work start and stop hours in format HH:MM-HH:MM"
-msgstr "çalışma ve durma saatlerini SS:DD-SS:DD formatına göre belirleyin"
-
-#: clientgui/DlgAdvPreferences.h:30
-msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
-msgstr "ağ kullanım saatlerini SS:DD-SS:DD formatına göre belirleyin"
-
-#: clientgui/AdvancedFrame.cpp:344
-msgid "Attach to &project or account manager..."
-msgstr "&Projeye bağlan ya da hesap yöneticisine katıl..."
-
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to a project or account manager"
-msgstr "Bir projeye katılmanızı ya da hesap yöneticisine bağlanmanızı sağlayacak sihirbazı açar."
-
-#: clientgui/AsyncRPC.cpp:977
-msgid "&Quit BOINC"
-msgstr "BOINC'den &Ayrıl"
-
-#: clientgui/AsyncRPC.cpp:979
-msgid "E&xit BOINC"
-msgstr "BOINC'den &Çık"
-
-msgid "&Advanced View"
-msgstr "&Gelişmiş görünüm"
-
-msgid "&Simple View..."
-msgstr "&Basit görünüm..."
-
-msgid "Graphics Available"
-msgstr "Grafikler Mevcut"
-
-msgid "Donate"
-msgstr "Bağış"
-
-msgid "Donate to SETI at home"
-msgstr "SETI at home'a bağış yapın"
-
-# not work! (seti at home web command)
-# msgid "View information about your team: %s"
-# msgstr "Takımınız hakkındaki bilgileri görün: %s"
-msgid "Forums"
-msgstr "Forumlar"
-
-msgid "Visit the World Community Grid forums"
-msgstr "World Community Grid forumlarını ziyaret edin"
-
-msgid "Results Status"
-msgstr "Sonuç Durumları"
-
-msgid "View the status of your assigned work"
-msgstr "Size gönderilen işlerin durumunu görün"
-
-# not work! (basic view preferences)
-msgid "Default"
-msgstr "Varsayılan"
-
-# not work! (project properties dialog)
-msgid "%s total, %s average"
-msgstr "%s toplam, %s ortalama"
-
-# not work! (project status column)
-msgid "Requested by user"
-msgstr "Kullanıcı istedi"
-
-# msgid "60%"
-# msgstr "%60"
-#~ msgid ""
-#~ "You can copy and paste the URL from your browser's\n"
-#~ "address bar."
-#~ msgstr ""
-#~ "Sie können die URL aus der Adresszeile ihres Internetbrowsers mit \"Kopieren "
-#~ "und Einfügen\" übertragen."
-#~ msgid "For a list of account managers go to:"
-#~ msgstr "Für eine Liste von Kontoverwaltungen besuchen sie:"
-#~ msgid "You are already attached to this project."
-#~ msgstr "Dieses Projekt ist bereits angemeldet!"
-#~ msgid "Static text"
-#~ msgstr "Statischer Text"
-#~ msgid "Radiobutton"
-#~ msgstr "Radioknopf"
-#~ msgid "Short term debt"
-#~ msgstr "Kurzfristige Bewertung"
-#~ msgid "Long term debt"
-#~ msgstr "Langfristige Bewerung"
-#~ msgid "Test"
-#~ msgstr "Test"
-#~ msgid "Enter account key"
-#~ msgstr "Kontoschlüssel eingeben:"
-#~ msgid ""
-#~ "This project uses an \"account key\" to identify you.\n"
-#~ "\n"
-#~ "Go to the project's web site to create an account. Your account\n"
-#~ "key will be emailed to you."
-#~ msgstr ""
-#~ "Dieses Projekt benutzt einen \"Kontoschlüssel\" um Sie zu identifizieren. Besuchen sie die Projektwebseite um eine Teilnehmerkonto anzulegen.\n"
-#~ "Ihr Kontoschlüssel geht Ihnen per Mail zu."
-#~ msgid "An account key looks like:"
-#~ msgstr "Ein Kontoschlüssel sieht so aus:"
-#~ msgid "82412313ac88e9a3638f66ea82186948"
-#~ msgstr "82412313ac88e9a3638f66ea82186948"
-#~ msgid "Account key:"
-#~ msgstr "Kontoschlüssel:"
-#~ msgid "&Accessible View"
-#~ msgstr "&Barrierefreie Ansicht"
-#~ msgid "Accessible views are compatible with accessibility aids such as screen readers."
-#~ msgstr "Barrierefreie Ansichten sind kompatibel mit Zugangshilfen wie etwa Bildschirmleseprogrammen."
-#~ msgid "&Grid View"
-#~ msgstr "&Tabellenansicht"
-#~ msgid "Retry &communications"
-#~ msgstr "&Kommunikation wiederholen"
-#~ msgid "Retry all deferred network communication."
-#~ msgstr "Verzögerte Netzwerk-Kommunikation wiederholen."
-#, c-format
-#~ msgid ""
-#~ "%s is going to shutdown the core client it is currently connected to.\n"
-#~ "NOTE: Choosing 'OK' will cause the select new computer dialog to appear \n"
-#~ "so you can attach to a different core client."
-#~ msgstr ""
-#~ "%s wird den derzeit verbundenen Basis Client herunterfahren.\n"
-#~ "HINWEIS: Auswahl von 'OK' wird den Dialog zur Auswahl eines neuen Computers anzeigen,\n"
-#~ " so daß mit einem neuen Basis Client verbunden werden kann."
-
-#, c-format
-#~ msgid ""
-#~ "%s is unable to communicate with a project and needs an Internet connection.\n"
-#~ "Please connect to the Internet, then select the 'retry communications' item off the advanced menu."
-#~ msgstr ""
-#~ "%s kann nicht mit einem Projekt kommunizieren und benötigt eine Internetverbindung.\n"
-#~ "Bitte verbinden Sie sich mit dem Internet und wählen sie anschließend \"Kommunikation wiederholen\" im Menü \"Extras\"."
-
-#, c-format
-#~ msgid ""
-#~ "BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
-#~ "(Error code %d)"
-#~ msgstr ""
-#~ "BOINC Eigentümer- und/oder Zugriffsrechte sind nicht richtig gesetzt. Bitte BOINC neu installieren.\n"
-#~ "(Fehlercode: %d)"
-#~ msgid "processors"
-#~ msgstr "Prozessoren"
-#~ msgid "network usage restrictions"
-#~ msgstr "Einschränkungen der Nutzung des Netzwerks"
-#~ msgid "Click here to disable displaying this message in the future."
-#~ msgstr "Hier klicken um diese Meldung für die Zukunft zu unterdrücken."
-#~ msgid "Language Selection:"
-#~ msgstr "Sprachauswahl:"
-#~ msgid "What language should the manager display by default."
-#~ msgstr "Welche Sprache soll der Manager als Standardeinstellung anzeigen?"
-#~ msgid "Reminder Frequency:"
-#~ msgstr "Erinnerungshäufigkeit:"
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
-#~ msgstr "In welchen Abständen (in Minuten) soll der Manager Sie an mögliche Verbindungsereignisse erinnern?"
-#~ msgid "free disk space - "
-#~ msgstr "Freier Festplattenplatz - "
-#~ msgid "Project Comm Failure"
-#~ msgstr "Projekt Kommunikationsfehler"
-#~ msgid "Google Comm Failure"
-#~ msgstr "Google Kommunikationsfehler"
-
-#, c-format
-#~ msgid "Yahoo Comm Failure"
-#~ msgstr "Yahoo Kommunikationsfehler"
-
+msgid ""
+msgstr ""
+"Project-Id-Version: BOINC Manager 6.8x\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2010-03-20 13:14+0200\n"
+"Last-Translator: Aycan Demirel <aycandemirel at hotmail.com>\n"
+"Language-Team: Donanım Haber <bilgi at donanimhaber.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: tr\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Pootle 1.2.1\n"
+"X-Poedit-Bookmarks: -1,175,-1,-1,-1,-1,-1,-1,-1,-1\n"
+"X-Poedit-SourceCharset: UTF-8\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
+"X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
+"X-Poedit-Country: TURKEY\n"
+"X-Poedit-SearchPath-0: clientgui\n"
+
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr "Hesap bilgilerinizi girin"
+
+#: clientgui/AccountInfoPage.cpp:382
+msgid ""
+"Please enter your account information\n"
+"(to create an account, visit the project's web site)"
+msgstr ""
+"Lütfen hesap bilgilerinizi girin\n"
+"(bir hesap yaratmak için, projenin sitesini ziyaret edin)"
+
+#: clientgui/AccountInfoPage.cpp:386
+msgid ""
+"This project is not currently accepting new accounts.\n"
+"You can attach only if you already have an account."
+msgstr ""
+"Bu proje şu anda yeni hesapları kabul etmiyor.\n"
+"Yalnızca, mevcut bir hesabınız varsa projeye katılabilirsiniz."
+
+#: clientgui/AccountInfoPage.cpp:390
+msgid "Are you already running this project?"
+msgstr "Bu projeye daha önce üye oldunuz mu?"
+
+#: clientgui/AccountInfoPage.cpp:394
+msgid "&No, new user"
+msgstr "&Hayır, yeni kullanıcıyım"
+
+#: clientgui/AccountInfoPage.cpp:397
+msgid "&Yes, existing user"
+msgstr "&Evet, bilgilerimi gireceÄŸim"
+
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+"Hesap bilginizi otomatik olarak ayarlayamadık.\n"
+"\n"
+"Lütfen, e-posta adresi ve parola bölümlerine ne girilmesi\n"
+"gerektiğini bulmak için aşağıdaki 'Giriş bilgisini bul' \n"
+"bağlantısına tıklayın."
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr "GiriÅŸ bilgisini bul"
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
+msgid "&Password:"
+msgstr "&Parola:"
+
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
+msgid "Choose a &password:"
+msgstr "Bir &parola seçin:"
+
+#: clientgui/AccountInfoPage.cpp:435
+msgid "C&onfirm password:"
+msgstr "Parolayı &doğrulayın:"
+
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
+msgid "Are you already running %s?"
+msgstr "%s projesini zaten çalıştırmıyor musunuz?"
+
+#: clientgui/AccountInfoPage.cpp:459
+msgid "&Username:"
+msgstr "&Kullanıcı adı:"
+
+#: clientgui/AccountInfoPage.cpp:473
+msgid "&Email address:"
+msgstr "&E-posta adresi:"
+
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
+msgid "minimum length %d"
+msgstr "en az %d karakter"
+
+#: clientgui/AccountInfoPage.cpp:488
+msgid "Forgot your password?"
+msgstr "Parolanızı mı unuttunuz?"
+
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+"Eğer bu hesap yöneticisine henüz kayıtlı değilseniz, devam\n"
+"etmeden önce kaydolun.  Lütfen kaydolmak ya da unuttuğunuz\n"
+"parolayı bulmak için aşağıdaki bağlantıya tıklayın."
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr "Hesap yöneticisi sitesi"
+
+#: clientgui/AccountInfoPage.cpp:530
+msgid "Attach to project"
+msgstr "Projeye katıl"
+
+#: clientgui/AccountInfoPage.cpp:532
+msgid "Update account manager"
+msgstr "Hesap yöneticisini güncelle"
+
+#: clientgui/AccountInfoPage.cpp:534
+msgid "Attach to account manager"
+msgstr "Hesap yöneticisine bağlan"
+
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
+msgid "The minimum password length for this project is %d. Please enter a different password."
+msgstr "Bu proje için en az parola uzunluğu %d karakter. Lütfen farklı bir parola girin."
+
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
+msgid "The minimum password length for this account manager is %d. Please enter a different password."
+msgstr "Bu hesap yöneticisi için en az parola uzunluğu %d karakter. Lütfen farklı bir parola girin."
+
+#: clientgui/AccountInfoPage.cpp:560
+msgid "The password and confirmation password do not match. Please type them again."
+msgstr "Parola ve parola doğrulaması birbirini tutmuyor. Lütfen tekrar yazın."
+
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr "Bir hesap yöneticisi seçin"
+
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"Bir hesap yöneticisi seçmek için ismine tıklayın ya da\n"
+"aşağıya adresini girin."
+
+#: clientgui/AccountManagerInfoPage.cpp:255
+msgid "Account Manager &URL:"
+msgstr "Hesap yöneticisi &adresi:"
+
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
+msgid "Communicating with %s."
+msgstr "%s ile bağlantı kuruluyor."
+
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
+msgid "Communicating with server."
+msgstr "Sunucu ile bağlantı kuruluyor."
+
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
+msgid "Please wait..."
+msgstr "Lütfen bekleyin..."
+
+#: clientgui/AccountManagerProcessingPage.cpp:325
+msgid "An internal server error has occurred.\n"
+msgstr "Sunucuda dahili bir hata meydana geldi.\n"
+
+#: clientgui/AdvancedFrame.cpp:93
+msgid "Connected"
+msgstr "Bağlandı"
+
+#: clientgui/AdvancedFrame.cpp:101
+msgid "Disconnected"
+msgstr "Bağlantı kesildi"
+
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr "%s penceresini kapatır."
+
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr "&Pencereyi kapat"
+
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr "%s'dan çıkar."
+
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
+msgid "E&xit"
+msgstr "&Çık"
+
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr "&Projeler\tCtrl+Shift+P"
+
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr "Projeleri görüntüler."
+
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr "Ä°&ÅŸler\tCtrl+Shift+T"
+
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr "İşleri görüntüler."
+
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr "&Aktarımlar\tCtrl+Shift+X"
+
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr "Aktarımları görüntüler."
+
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr "&Mesajlar\tCtrl+Shift+M"
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr "Mesajları görüntüler."
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr "Ä°&statistikler\tCtrl+Shift+S"
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr "İstatistikleri görüntüler."
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr "&Disk kullanımı\tCtrl+Shift+D"
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr "Disk kullanımını görüntüler."
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "&Basit görünüm...\tCtrl+Shift+V"
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr "Basit grafiksel arayüzü görüntüler."
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr "&Projeye katıl ya da hesap yöneticisine bağlan..."
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr "İşleri çalıştırmak için bir projeye katılmanızı ya da hesap yöneticisine bağlanmanızı sağlar."
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
+msgid "&Synchronize with %s"
+msgstr "%s ile &eÅŸitle"
+
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
+msgid "Get current settings from %s"
+msgstr "Güncel ayarları %s hesap yöneticisinden alır."
+
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "&Projeye katıl..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "İşleri çalıştırmaya başlamak için bir projeye katılmayı sağlar."
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "%s kullanmayı durdur..."
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "İstemciyi hesap yöneticisi kontrolünden çıkarır."
+
+#: clientgui/AdvancedFrame.cpp:432
+msgid "&Run always"
+msgstr "&Daima çalış"
+
+#: clientgui/AdvancedFrame.cpp:433
+msgid "Allow work regardless of preferences"
+msgstr "Ayarları göz önüne almadan işleri sürekli çalıştırır."
+
+#: clientgui/AdvancedFrame.cpp:437
+msgid "Run based on &preferences"
+msgstr "&Tercihlere göre çalış"
+
+#: clientgui/AdvancedFrame.cpp:438
+msgid "Allow work according to your preferences"
+msgstr "İşleri tercihlerdeki ayarlarınıza göre çalıştırır."
+
+#: clientgui/AdvancedFrame.cpp:442
+msgid "&Suspend"
+msgstr "&Durdur"
+
+#: clientgui/AdvancedFrame.cpp:443
+msgid "Stop work regardless of preferences"
+msgstr "Ayarları göz önüne almadan işlerin çalışmasını durdurur."
+
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr "GPU'yu &daima kullan"
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr "Ayarları göz önüne almadan GPU'yu sürekli kullanır."
+
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr "&GPU'yu tercihlere göre kullan"
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr "GPU'yu tercihlerdeki ayarlarınıza göre kullanır."
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr "GPU kullanımını &durdur"
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr "Ayarları göz önüne almadan GPU'nun kullanımını durdurur."
+
+#: clientgui/AdvancedFrame.cpp:503
+msgid "&Network activity always available"
+msgstr "&Ağ iletişimi daima mümkün"
+
+#: clientgui/AdvancedFrame.cpp:504
+msgid "Allow network activity regardless of preferences"
+msgstr "Ayarları göz önüne almadan ağ iletişimine izin verir."
+
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
+msgstr "&Tercihlere göre ağ iletişimi"
+
+#: clientgui/AdvancedFrame.cpp:509
+msgid "Allow network activity according to your preferences"
+msgstr "Tercihlerdeki ayarlara göre ağ iletişimi yapar."
+
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
+msgstr "AÄŸ iletiÅŸimini &durdur"
+
+#: clientgui/AdvancedFrame.cpp:514
+msgid "Stop BOINC network activity"
+msgstr "BOINC'in tüm ağ iletişimini durdurur."
+
+#: clientgui/AdvancedFrame.cpp:521
+msgid "&Options..."
+msgstr "&Seçenekler..."
+
+#: clientgui/AdvancedFrame.cpp:522
+msgid "Configure GUI options and proxy settings"
+msgstr "BOINC Manager'ın arayüz seçeneklerini ve vekil sunucu ayarlarını yapılandırabileceğiniz pencereyi açar."
+
+#: clientgui/AdvancedFrame.cpp:526
+msgid "&Preferences..."
+msgstr "&Tercihler..."
+
+#: clientgui/AdvancedFrame.cpp:527
+msgid "Configure local preferences"
+msgstr "İşlerin çalışmasıyla ilgili bu bilgisayara ait tercihleri ayarlayabileceğiniz pencereyi açar."
+
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
+msgid "Connect to another computer running %s"
+msgstr "%s çalıştıran başka bir bilgisayarı seçip bağlanmayı sağlar."
+
+#: clientgui/AdvancedFrame.cpp:538
+msgid "Select computer..."
+msgstr "Bilgisayar seç ve bağlan..."
+
+#: clientgui/AdvancedFrame.cpp:543
+msgid "Shut down connected client..."
+msgstr "Bağlı olan istemciyi kapat..."
+
+#: clientgui/AdvancedFrame.cpp:544
+msgid "Shut down the currently connected core client"
+msgstr "Şu anda bağlı olan çekirdek istemciyi kapatır."
+
+#: clientgui/AdvancedFrame.cpp:548
+msgid "Run CPU &benchmarks"
+msgstr "&CPU testlerini çalıştır"
+
+#: clientgui/AdvancedFrame.cpp:549
+msgid "Runs BOINC CPU benchmarks"
+msgstr "BOINC'in CPU (işlemci) testlerini çalıştırır. Sonuçları Mesajlar'da görebilirsiniz."
+
+#: clientgui/AdvancedFrame.cpp:553
+msgid "Do network &communication"
+msgstr "&Ağ iletişimi gerçekleştir"
+
+#: clientgui/AdvancedFrame.cpp:554
+msgid "Do all pending network communication."
+msgstr "Beklemedeki tüm ağ iletişimini hemen gerçekleştirir."
+
+#: clientgui/AdvancedFrame.cpp:558
+msgid "Read config file"
+msgstr "Yapılandırma dosyasını oku"
+
+#: clientgui/AdvancedFrame.cpp:559
+msgid "Read configuration info from cc_config.xml."
+msgstr "Yapılandırma bilgisini cc_config.xml dosyasından okur."
+
+#: clientgui/AdvancedFrame.cpp:563
+msgid "Read local prefs file"
+msgstr "Yerel tercih dosyasını oku"
+
+#: clientgui/AdvancedFrame.cpp:564
+msgid "Read preferences from global_prefs_override.xml."
+msgstr "Yerel tercihleri global_prefs_override.xml dosyasından okur."
+
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
+msgid "%s &help"
+msgstr "%s &yardım"
+
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
+msgid "Show information about %s"
+msgstr "Gönüllü kullanıcılardan %s hakkında yardım almanızı sağlar."
+
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
+msgid "&%s help"
+msgstr "&%s yardım"
+
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
+msgid "Show information about the %s"
+msgstr "%s yardım sitesini açar."
+
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
+msgid "%s &website"
+msgstr "%s internet sitesi"
+
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
+msgid "Show information about BOINC and %s"
+msgstr "BOINC ve %s resmi internet sitesini açar."
+
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
+msgid "&About %s..."
+msgstr "&%s hakkında..."
+
+#: clientgui/AdvancedFrame.cpp:634
+msgid "Licensing and copyright information."
+msgstr "Sürüm, lisans, telif hakkı ve çeviri bilgisini görüntüler."
+
+#: clientgui/AdvancedFrame.cpp:641
+msgid "&File"
+msgstr "&Dosya"
+
+#: clientgui/AdvancedFrame.cpp:645
+msgid "&View"
+msgstr "&Görünüm"
+
+#: clientgui/AdvancedFrame.cpp:649
+msgid "&Tools"
+msgstr "&Araçlar"
+
+#: clientgui/AdvancedFrame.cpp:653
+msgid "&Activity"
+msgstr "&Çalışma"
+
+#: clientgui/AdvancedFrame.cpp:657
+msgid "A&dvanced"
+msgstr "&GeliÅŸmiÅŸ"
+
+#: clientgui/AdvancedFrame.cpp:661
+msgid "&Help"
+msgstr "&Yardım"
+
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr "Projeye katılıyor ya da hesap yöneticisine bağlanıyor..."
+
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
+msgid "%s - Detach from %s"
+msgstr "%s - %s'den ayrıl"
+
+#: clientgui/AdvancedFrame.cpp:1126
+#, 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 ""
+"Eğer %s kullanmayı durdurursanız,\n"
+"mevcut tüm projeleriniz korunacak fakat,\n"
+"projeleri elle yönetmeniz gerekecek.\n"
+"\n"
+"%s kullanmayı durdurmak istiyor musunuz?"
+
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
+msgid "%s - Language Selection"
+msgstr "%s - Dil Seçimi"
+
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
+msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
+msgstr ""
+"%s'ın varsayılan dili değişti.\n"
+"Değişikliğin etkili olması için %s yeniden başlatılmalı."
+
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - Bağlı istemciyi kapat..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s şu anda bağlı olan istemciyi kapatacak ve\n"
+"sizi başka birine bağlanmanız için uyaracak.\n"
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Proje(ler) için yeniden bağlantı kurulmaya çalışılıyor..."
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
+msgid "%s"
+msgstr "%s"
+
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
+msgid "%s has successfully attached to %s"
+msgstr "%s başarıyla %s'e katıldı."
+
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
+msgid "%s - (%s)"
+msgstr "%s - (%s)"
+
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
+msgid "Connecting to %s"
+msgstr "%s istemcisine bağlanıyor"
+
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
+msgid "Connected to %s (%s)"
+msgstr "%s istemcisine bağlı (%s)"
+
+#: clientgui/AlreadyExistsPage.cpp:182
+msgid "Username already in use"
+msgstr "Kullanıcı adı zaten kullanımda"
+
+#: clientgui/AlreadyExistsPage.cpp:185
+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 ""
+"Bu kullanıcı adıyla bir hesap var ve\n"
+"girdiğinizden farklı bir parolaya sahip.\n"
+"\n"
+"Lütfen projenin sitesini ziyaret edip, yönergeleri izleyin."
+
+#: clientgui/AlreadyExistsPage.cpp:189
+msgid "Email address already in use"
+msgstr "E-posta adresi zaten kullanımda"
+
+#: clientgui/AlreadyExistsPage.cpp:192
+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 ""
+"Bu e-posta adresiyle bir hesap var ve\n"
+"girdiğinizden farklı bir parolaya sahip.\n"
+"\n"
+"Lütfen projenin sitesini ziyaret edip, yönergeleri izleyin."
+
+#: clientgui/AsyncRPC.cpp:1207
+msgid "Communicating with BOINC client.  Please wait ..."
+msgstr "BOINC istemcisine bağlanılıyor.  Lütfen bekleyin..."
+
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr "%s'den &ayrıl"
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr "%s'den &çık"
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "Ä°ptal"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
+msgid "%s - Connection Error"
+msgstr "%s - Bağlantı Hatası"
+
+#: clientgui/BOINCBaseFrame.cpp:431
+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 ""
+"İstemciyi yönetmek için yetkili durumda değilsiniz.\n"
+"Lüfen 'boinc_users' yerel kullanıcı grubuna dahil olmak için yöneticinizle temasa geçin."
+
+#: clientgui/BOINCBaseFrame.cpp:440
+msgid ""
+"Authorization failed connecting to running client.\n"
+"Make sure you start this program in the same directory as the client."
+msgstr ""
+"Çalışan istemciye bağlanmak için yetkilendirilme başarısız.\n"
+"Bu programın istemciyle aynı klasörde çalıştırıldığından emin olun."
+
+#: clientgui/BOINCBaseFrame.cpp:442
+msgid "Authorization failed connecting to running client."
+msgstr "Çalışan istemciye bağlanmak için yetkilendirilme başarısız."
+
+#: clientgui/BOINCBaseFrame.cpp:450
+msgid "The password you have provided is incorrect, please try again."
+msgstr "Belirttiğiniz parola hatalı, lütfen tekrar deneyin."
+
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
+msgid "%s - Connection Failed"
+msgstr "%s - Bağlantı Başarısız"
+
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
+msgid ""
+"%s is not able to connect to a %s client.\n"
+"Would you like to try to connect again?"
+msgstr ""
+"%s, %s istemcisine bağlanamıyor.\n"
+"Bağlanmayı yeniden denemek ister misiniz?"
+
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
+msgid "%s - Daemon Start Failed"
+msgstr "%s - Hizmet İşlemi Başlatılamadı"
+
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
+"%s, %s istemcisini başlatamıyor.\n"
+"Lütfen Denetim Masası->Yentimsel Araçlar->Hizmetler bölümüne gidip, BOINC servisini başlatın."
+
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
+msgid ""
+"%s is not able to start a %s client.\n"
+"Please start the daemon and try again."
+msgstr ""
+"%s, %s istemcisini başlatamıyor.\n"
+"Lütfen BOINC Hizmetini başlatıp yeniden deneyin."
+
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
+msgid "%s - Connection Status"
+msgstr "%s - Bağlantı Durumu"
+
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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 ""
+"%s şu anda bir %s istemcisine bağlı değil.\n"
+"Lütfen 'Gelişmiş\\Bilgisayar seç ve bağlan...' menüsünden bir %s istemcisine bağlanın.\n"
+"Kendi bilgisayarınıza bağlanmak için lütfen bigisayar adı olarak 'localhost' yazın."
+
+#: clientgui/BOINCBaseView.cpp:723
+msgid "Web sites"
+msgstr "Ä°nternet siteleri"
+
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
+msgid "%s - Network Status"
+msgstr "%s - AÄŸ Durumu"
+
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
+msgid "%s needs to connect to the Internet.  Please click to open %s."
+msgstr "%s internete bağlanmak istiyor. Lütfen %s programını açmak için tıklayın."
+
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
+msgid ""
+"%s is unable to communicate with a project and needs an Internet connection.\n"
+"Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
+msgstr ""
+"%s bir projeyle iletişim kuramadı ve İnternet bağlantısına ihtiyaç duyuyor.\n"
+"Lütfen internete bağlanın, sonra Gelişmiş menüsünden\n"
+"'Ağ iletişimi gerçekleştir' komutunu seçin."
+
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
+msgid ""
+"%s needs to connect to the Internet.\n"
+"May it do so now?"
+msgstr ""
+"%s İnternete bağlanmaya ihtiyaç duyuyor.\n"
+"Bunu ÅŸimdi yapabilir mi?"
+
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
+msgid "%s is connecting to the Internet."
+msgstr "%s internete bağlanıyor."
+
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
+msgid ""
+"%s couldn't do Internet communication, and no default connection is selected.\n"
+"Please connect to the Internet, or select a default connection\n"
+"using Advanced/Options/Connections."
+msgstr ""
+"%s internet bağlantısı kuramadı ve varsayılan internet bağlantısı da seçili değil.\n"
+"Lütfen internete bağlanın ya da Gelişmiş/Seçenekler/Bağlantılar menüsünden\n"
+"varsayılan bir bağlantı seçin."
+
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
+msgid "%s has successfully connected to the Internet."
+msgstr "%s başarıyla internete bağlandı."
+
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
+msgid "%s failed to connect to the Internet."
+msgstr "%s internete bağlanırken başarısız oldu."
+
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
+msgid ""
+"%s has detected it is now connected to the Internet.\n"
+"Updating all projects and retrying all transfers."
+msgstr ""
+"%s şu anda internete bağlı olduğunuzu belirledi.\n"
+"Tüm projeler güncelleniyor ve aktarımlar gerçekleştiriliyor."
+
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
+msgid "%s has successfully disconnected from the Internet."
+msgstr "%s başarıyla internet bağlantısını kesti."
+
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
+msgid "%s failed to disconnected from the Internet."
+msgstr "%s internet bağlantısını keserken başarısız oldu."
+
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+"Bu istemciyi yönetmek için yetkilendirilmemişsiniz.\n"
+"\n"
+"BOINC'i bu kullanıcıyla çalıştırabilmek için, lütfen:\n"
+"- BOINC'ı, bilgisayar yöneticisi olmayan kullanıcıların da\n"
+"çalıştırabilmesi hakkındaki soruya \"Evet\" yanıtını vererek\n"
+"yeniden kurun\n"
+"ya da\n"
+"- sizi 'boinc_master' kullanıcı grubuna dahil etmesi için\n"
+"yöneticinizle temasa geçin."
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"BOINC sahipliği ya da izinleri doğru olarak ayarlanmamış; lütfen BOINC'i yeniden kurun.\n"
+"(Hata kodu %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
+msgid ""
+"A reboot is required in order for BOINC to run properly.\n"
+"Please reboot your computer and try again."
+msgstr ""
+"BOINC'in doğru çalışması için yeniden başlatma gerekiyor.\n"
+"Bilgisayarınızı yeniden başlatın ve yeniden deneyin."
+
+#: clientgui/BOINCGUIApp.cpp:379
+msgid "BOINC Manager"
+msgstr "BOINC Manager"
+
+#: clientgui/BOINCGUIApp.cpp:526
+msgid "BOINC Manager was started by the operating system automatically"
+msgstr "BOINC Manager işletim sistemi tarafından otomatik başlatılacak"
+
+#: clientgui/BOINCGUIApp.cpp:528
+msgid "Startup BOINC so only the system tray icon is visible"
+msgstr "BOINC'i sadece sistem tepsisi simgesi görünecek şekilde başlat"
+
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr "Klasör, BOINC İstemcisi çalıştırılabilir dosyalarını içerir"
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr "BOINC veri klasörü"
+
+#: clientgui/BOINCGUIApp.cpp:533
+msgid "Startup BOINC with these optional arguments"
+msgstr "BOINC'i bu isteğe bağlı parametrelerle çalıştır"
+
+#: clientgui/BOINCGUIApp.cpp:534
+msgid "disable BOINC security users and permissions"
+msgstr "BOINC güvenlik kullanıcılarını ve izinlerini devre dışı bırak"
+
+#: clientgui/BOINCGUIApp.cpp:535
+msgid "set skin debugging mode to enable skin manager error messages"
+msgstr "kaplama yöneticisi hata mesajları için, kaplama hata ayıklama moduna geçin"
+
+#: clientgui/BOINCGUIApp.cpp:725
+msgid "(Automatic Detection)"
+msgstr "(Otomatik Belirleme)"
+
+#: clientgui/BOINCGUIApp.cpp:726
+msgid "(Unknown)"
+msgstr "(Bilinmeyen)"
+
+#: clientgui/BOINCGUIApp.cpp:727
+msgid "(User Defined)"
+msgstr "(Kullanıcı Tanımlı)"
+
+#: clientgui/BOINCTaskBar.cpp:348
+msgid "Computation is suspended."
+msgstr "Hesaplama durduruldu."
+
+#: clientgui/BOINCTaskBar.cpp:356
+msgid "Network activity is suspended."
+msgstr "AÄŸ faaliyeti durduruldu."
+
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
+msgid "%s: %.2f%% completed."
+msgstr "%s: %%%.2f tamamlandı."
+
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
+msgid "%d tasks running."
+msgstr "%d iş çalışıyor."
+
+#: clientgui/BOINCTaskBar.cpp:412
+msgid "Reconnecting to client."
+msgstr "İstemciye yeniden bağlanılıyor."
+
+#: clientgui/BOINCTaskBar.cpp:418
+msgid "Not connected to a client."
+msgstr "Bir istemciye bağlanmadı."
+
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
+msgid "Open %s Web..."
+msgstr "%s Sitesini Aç..."
+
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
+msgid "Open %s..."
+msgstr "%s'ı Aç..."
+
+#: clientgui/BOINCTaskBar.cpp:623
+msgid "Snooze"
+msgstr "Duraklat"
+
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr "GPU'yu duraklat"
+
+#: clientgui/CompletionErrorPage.cpp:199
+msgid "Failed to attach to project"
+msgstr "Projeye katılılım başarısız oldu"
+
+#: clientgui/CompletionErrorPage.cpp:204
+msgid "Failed to update account manager"
+msgstr "Hesap yöneticisini güncelleme başarısız oldu"
+
+#: clientgui/CompletionErrorPage.cpp:208
+msgid "Failed to remove account manager"
+msgstr "Hesap yöneticisinden ayrılma başarısız oldu"
+
+#: clientgui/CompletionErrorPage.cpp:212
+msgid "Failed to attach to account manager"
+msgstr "Hesap yöneticisine bağlanma başarısız oldu"
+
+#: clientgui/CompletionErrorPage.cpp:221
+msgid ""
+"An error has occurred;\n"
+"check Messages for details.\n"
+"\n"
+"Click Finish to close."
+msgstr ""
+"Bir hata meydana geldi;\n"
+"detaylar için Mesajlar'ı kontrol edin.\n"
+"\n"
+"Kapatmak için Son'u tıklayın."
+
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
+msgid "Click Finish to close."
+msgstr "Kapatmak için Son'u tıklayın"
+
+#: clientgui/CompletionErrorPage.cpp:234
+msgid "Messages from server:"
+msgstr "Sunucudan mesajlar:"
+
+#: clientgui/CompletionPage.cpp:208
+msgid "Attached to project"
+msgstr "Projeye katıldınız"
+
+#: clientgui/CompletionPage.cpp:214
+msgid "You are now successfully attached to this project."
+msgstr "Bu projeye başarıyla katıldınız."
+
+#: clientgui/CompletionPage.cpp:219
+msgid ""
+"When you click Finish, your web browser will go to a page where\n"
+"you can set your account name and preferences."
+msgstr ""
+"Son'u tıkladığınızda, internet tarayıcınız kullanıcı adı ve\n"
+"tercihlerinizi belirleyebileceğiniz siteyi açacak."
+
+#: clientgui/CompletionPage.cpp:236
+#, c-format
+msgid "Update from %s completed."
+msgstr "%s'den güncelleme tamamlandı."
+
+#: clientgui/CompletionPage.cpp:240
+msgid "Update completed."
+msgstr "Güncelleme tamamlandı."
+
+#: clientgui/CompletionPage.cpp:257
+#, c-format
+msgid "Attached to %s"
+msgstr "%s'e katıldınız"
+
+#: clientgui/CompletionPage.cpp:261
+msgid "Attached to account manager"
+msgstr "Hesap yöneticisine bağlandınız"
+
+#: clientgui/CompletionPage.cpp:271
+#, c-format
+msgid "Welcome to %s!"
+msgstr "%s'e hoÅŸ geldiniz!"
+
+#: clientgui/CompletionPage.cpp:285
+#, c-format
+msgid "You are now successfully attached to the %s system."
+msgstr "Şu anda %s sistemine başarıyla katıldınız."
+
+#: clientgui/CompletionPage.cpp:289
+msgid "You are now successfully attached to this account manager."
+msgstr "Şu anda bu hesap yöneticisine başarıyla bağlandınız."
+
+#: clientgui/DlgAbout.cpp:98
+#, c-format
+msgid "About %s"
+msgstr "%s Hakkında"
+
+#: clientgui/DlgAbout.cpp:155
+msgid "Version:"
+msgstr "Sürüm:"
+
+#: clientgui/DlgAbout.cpp:163
+msgid "wxWidgets Version:"
+msgstr "wxWidgets sürümü:"
+
+#: clientgui/DlgAbout.cpp:171
+msgid "Copyright:"
+msgstr "Telif hakkı:"
+
+#: clientgui/DlgAbout.cpp:175
+msgid ""
+"(C) 2003-2010 University of California, Berkeley.\n"
+"All Rights Reserved."
+msgstr ""
+"(C) 2003-2010 California Ãœniversitesi, Berkeley.\n"
+"Tüm hakları saklıdır."
+
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
+msgid "Berkeley Open Infrastructure for Network Computing"
+msgstr ""
+"                 Türkçe çeviri: Aycan Demirel\n"
+"\n"
+"\n"
+"Berkeley Open Infrastructure for Network Computing"
+
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
+msgid "&OK"
+msgstr "&Tamam"
+
+#: clientgui/DlgAdvPreferences.cpp:485
+msgid "invalid float"
+msgstr "geçersiz değer"
+
+#: clientgui/DlgAdvPreferences.cpp:486
+msgid "invalid time, format is HH:MM"
+msgstr "geçersiz saat, format SS:DD şeklinde olmalı"
+
+#: clientgui/DlgAdvPreferences.cpp:487
+msgid "invalid time interval, format is HH:MM-HH:MM"
+msgstr "geçersiz saat aralığı, format SS:DD-SS:DD şeklinde olmalı"
+
+#: clientgui/DlgAdvPreferences.cpp:601
+msgid "invalid input value detected"
+msgstr "geçersiz giriş değeri belirlendi"
+
+#: clientgui/DlgAdvPreferences.cpp:603
+msgid "Validation Error"
+msgstr "Doğrulama Hatası"
+
+#: clientgui/DlgAdvPreferences.cpp:747
+msgid "Do you really want to clear all local preferences ?"
+msgstr "Tüm yerel tercihleri kaldırmak istediğinize emin misiniz?"
+
+#: clientgui/DlgAdvPreferences.cpp:748
+msgid "Confirmation"
+msgstr "Onaylama"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
+msgid "%s - Preferences"
+msgstr "%s - Tercihler"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:49
+msgid ""
+"This dialog controls preferences for this computer only.\n"
+"Click OK to set preferences.\n"
+"Click Clear to restore web-based settings."
+msgstr ""
+"Bu pencere, yalnızca bu bilgisayara ait tercihleri ayarlar.\n"
+"Tercihlerinizi kaydetmek için Tamam'ı tıklayın.\n"
+"İnternet tabanlı ayarlarınıza dönmek için Temizle'yi tıklayın."
+
+#: clientgui/DlgAdvPreferencesBase.cpp:52
+msgid "Clear"
+msgstr "Temizle"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:53
+msgid "clear all local preferences and close the dialog"
+msgstr "tüm yerel tercihleri temizler ve pencereyi kapatır"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:76
+msgid "Computing allowed"
+msgstr "Hesaplama izinleri"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:80
+msgid " While computer is on batteries"
+msgstr "Bilgisayar pil gücünde olduğunda"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:83
+msgid "check this if you want this computer to do work while it runs on batteries"
+msgstr "bilgisayar pille çalışırken hesaplama işinin çalışmasını istiyorsanız bunu işaretleyin"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:89
+msgid " While computer is in use"
+msgstr "Bilgisayar kullanımda olduğunda"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:92
+msgid "check this if you want this computer to do work even when you're using it"
+msgstr "bilgisayarınızı kullandığınız sırada hesaplama işinin çalışmasını istiyorsanız bunu işaretleyin"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:98
+msgid " Use GPU while computer is in use"
+msgstr "Bilgisayar kullanımda olduğunda GPU kullanılsın"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:101
+msgid "check this if you want your GPU to do work even when you're using the computer"
+msgstr "bilgisayarınızı kullandığınız sırada ekran kartınızın (GPU) hesaplama için çalışmasını istiyorsanız bunu işaretleyin (bazı bilgisayarlarda yavaşlama yaratabilir)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:113
+msgid "Only after computer has been idle for"
+msgstr "Yalnızca bilgisayar bu kadar süre boşta kaldığında:"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:123
+msgid "do work only after you haven't used the computer for this number of minutes"
+msgstr "bilgisayarınızı kaç dakika kullanılmadığınızda hesaplama işinin başlamasını istediğinizi ayarlayın"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
+msgid "minutes"
+msgstr "dakika"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr "İşlemci kullanımı bu orandan azsa:"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr "BOINC dışı işlemci kullanımı bu seviyeyi aşarsa, hesaplama duraklatılır"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr "% (sınırlamayı kaldırmak için 0 yazın)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
+msgid "Every day between hours of"
+msgstr "Her gün bu saatler arasında:"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:181
+msgid "start work at this time"
+msgstr "bu saatte işi çalıştır"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
+msgid "and"
+msgstr "ve"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:189
+msgid "stop work at this time"
+msgstr "bu saatte iÅŸi durdur"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
+msgid "(no restriction if equal)"
+msgstr "(birbirine eşitse, sınırlama yok)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
+msgid "Day-of-week override:"
+msgstr "Haftanın günü sınırlamaları:"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
+msgid "check box to specify hours for this day of week"
+msgstr "haftanın belli günlerindeki çalışma saatlerini belirlemek için kutuları işaretleyin"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
+msgid "Monday"
+msgstr "Pazartesi"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
+msgid "Tuesday"
+msgstr "Salı"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
+msgid "Wednesday"
+msgstr "Çarşamba"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
+msgid "Thursday"
+msgstr "PerÅŸembe"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
+msgid "Friday"
+msgstr "Cuma"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
+msgid "Saturday"
+msgstr "Cumartesi"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
+msgid "Sunday"
+msgstr "Pazar"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:272
+msgid "Other options"
+msgstr "Diğer seçenekler"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
+msgstr "Bu kadar sürede bir, çalışan uygulama değişsin:"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:289
+msgid "On multiprocessor systems, use at most"
+msgstr "Çok işlemcili sistemlerde işlemcilerin en fazla"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
+msgid "% of the processors"
+msgstr "% kadarı kullanılsın"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
+msgid "Use at most"
+msgstr "En fazla"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
+msgid "% CPU time"
+msgstr "% kadar CPU zamanı kullanılsın"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:316
+msgid "processor usage"
+msgstr "işlemci kullanımı"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:324
+msgid "General options"
+msgstr "Genel seçenekler"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:331
+msgid "Maximum download rate"
+msgstr "En yüksek indirme hızı:"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
+msgid "KBytes/sec."
+msgstr "KBayt/sn"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:340
+msgid "Maximum upload rate"
+msgstr "En yüksek gönderme hızı:"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:349
+msgid "Connect about every"
+msgstr "Bağlantı gerçekleştirme:"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:353
+msgid ""
+"this computer is connected to the Internet about every X days\n"
+"(0 if it's always connected)"
+msgstr ""
+"bu bilgisayarın internete kaç günde bir bağlandığını belirtin\n"
+"(sürekli bağlıysa 0 yazın)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:357
+msgid "days"
+msgstr "günde bir"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:360
+msgid "Additional work buffer"
+msgstr "Depolanacak ek iş miktarı:"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:366
+msgid "days (max. 10)"
+msgstr "günlük (en fazla 10)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:369
+msgid " Skip image file verification"
+msgstr "Resim dosyasıyla doğrulamayı atla"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:371
+msgid "check this if your Internet provider modifies image files"
+msgstr "internet sağlayıcınız resim dosyalarını değiştiriyorsa bunu işaretleyin"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:380
+msgid "Connect options"
+msgstr "Bağlanma seçenekleri"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:382
+msgid "Confirm before connecting to internet"
+msgstr "Internete bağlanmadan önce onay iste"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:384
+msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
+msgstr "işaretlerseniz, internet bağlantısı kurulmaya çalışılmadan önce sizden onay isteyen bir mesaj belirir"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:388
+msgid "Disconnect when done"
+msgstr "Tamamlandığında bağlantıyı kes"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:390
+msgid ""
+"if checked, BOINC hangs up when network usage is done\n"
+"(only relevant for dialup-connection)"
+msgstr ""
+"işaretlenirse, ağ kullanımı tamamlandığında BOINC hattı kapatır\n"
+"(yalnızca uygun çevirmeli bağlantılar için)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:397
+msgid "Network usage allowed"
+msgstr "Ağ kullanım izinleri"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:406
+msgid "network usage start hour"
+msgstr "ağ kullanımı başlangıç saati"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:414
+msgid "network usage stop hour"
+msgstr "ağ kullanımı bitiş saati"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:499
+msgid "network usage"
+msgstr "ağ kullanımı"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
+msgid "Disk usage"
+msgstr "Disk kullanımı"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:519
+msgid "the maximum disk space used by BOINC (in Gigabytes)"
+msgstr "BOINC tarafından kullanılacak en fazla disk alanı (Gigabayt olarak)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:523
+msgid "Gigabytes disk space"
+msgstr "Gigabayt disk alanı kullanılsın"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:526
+msgid "Leave at least"
+msgstr "En az"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:530
+msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
+msgstr "BOINC en az bu miktar kadar disk alanını serbest bırakacak"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:534
+msgid "Gigabytes disk space free"
+msgstr "Gigabayt disk alanı boş kalsın"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:541
+msgid "BOINC uses at most this percentage of total disk space"
+msgstr "BOINC disk alanının yüzde olarak en fazla bu kadarını kullanacak"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
+msgid "% of total disk space"
+msgstr "% kadar disk alanı kullanılsın"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr "İşler kontrol noktasını diske en fazla"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:555
+msgid "seconds"
+msgstr "saniyede bir kaydetsin"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
+msgid "% of page file (swap space)"
+msgstr "% kadar sayfa dosyası (swap alanı) kullanılsın"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:573
+msgid "Memory usage"
+msgstr "Bellek kullanımı"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
+msgid "% when computer is in use"
+msgstr "% kadar bellek kullan (bilgisayar kullanımdayken)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
+msgid "% when computer is idle"
+msgstr "% kadar bellek kullan (bilgisayar boÅŸtayken)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:603
+msgid " Leave applications in memory while suspended"
+msgstr "Durakladığında uygulamaları bellekte tut"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:605
+msgid "if checked, suspended work units are left in memory"
+msgstr "işaretlenirse, duraklamış işlerin uygulamaları kapatılmaz ve bellekte kalmayı sürdürür"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:614
+msgid "disk and memory usage"
+msgstr "disk ve bellek kullanımı"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:627
+msgid "OK"
+msgstr "Tamam"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:628
+msgid "save all values and close the dialog"
+msgstr "tüm değişiklikleri kaydeder ve pencereyi kapatır"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:633
+msgid "close the dialog without saving"
+msgstr "değişiklikleri kaydetmeden pencereyi kapatır"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
+msgid "Help"
+msgstr "Yardım"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:638
+msgid "shows the preferences web page"
+msgstr "Tercihler internet sayfasını görüntüler"
+
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
+msgid "%s - Exit Confirmation"
+msgstr "%s - Çıkış Onaylama"
+
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
+msgid ""
+"You have requested to exit the %s,\n"
+"which allows you to view and manage\n"
+"the science applications running on your computer.\n"
+"\n"
+"If you also want to stop running the science applications when you\n"
+"exit the Manager, then choose from the following options:"
+msgstr ""
+"%s'dan çıkmak istediniz.\n"
+"Bu program, bilgisayarınızda çalışan bilimsel\n"
+"uygulamaları görmenizi ve yönetmenizi sağlar.\n"
+"\n"
+"Manager'dan çıktığınızda bilimsel uygulamaların da\n"
+"kapanmasını istiyorsanız, aşağıdaki seçenekleri işaretleyin:"
+
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
+msgid ""
+"This will shut down %s and its tasks entirely until either the\n"
+"%s application 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 ""
+"Bu işlem, %s'ı ve işlerini kapatır ve %s uygulaması\n"
+"ya da %s ekran koruyucu tekrar çalışana kadar kapalı kalır.\n"
+"\n"
+"Bir çok durumda sadece %s penceresini kapatmak,\n"
+"uygulamayı kapatmaktan iyidir. Böylece %s,\n"
+"iÅŸleri tercihlerinizde belirlediÄŸiniz zamanlarda\n"
+"çalıştırabilir."
+
+#: clientgui/DlgExitMessage.cpp:153
+msgid "Stop running science applications when exiting the Manager"
+msgstr "Manager'dan çıkarken, çalışan bilimsel uygulamaları da durdur"
+
+#: clientgui/DlgExitMessage.cpp:164
+msgid "Remember this decision and do not show this dialog."
+msgstr "Seçimimi hatırla ve tekrar sorma"
+
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
+msgid "&Cancel"
+msgstr "&Ä°ptal"
+
+#: clientgui/DlgGenericMessage.cpp:112
+msgid "Don't show this dialog again."
+msgstr "Bu pencereyi tekrar gösterme."
+
+#: clientgui/DlgItemProperties.cpp:63
+msgid "&Close"
+msgstr "&Kapat"
+
+#: clientgui/DlgItemProperties.cpp:195
+msgid "Properties of project "
+msgstr "Projenin özellikleri:"
+
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
+msgid "General"
+msgstr "Genel"
+
+#: clientgui/DlgItemProperties.cpp:200
+msgid "Master URL"
+msgstr "Ana URL"
+
+#: clientgui/DlgItemProperties.cpp:201
+msgid "User name"
+msgstr "Kullanıcı adı"
+
+#: clientgui/DlgItemProperties.cpp:202
+msgid "Team name"
+msgstr "Takım adı"
+
+#: clientgui/DlgItemProperties.cpp:203
+msgid "Resource share"
+msgstr "Kaynak paylaşımı"
+
+#: clientgui/DlgItemProperties.cpp:205
+msgid "Scheduler RPC deferred for"
+msgstr "Zamanlanmış RPC ertelendi"
+
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr "Dosya indirmeler ertelendi"
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr "Dosya göndermeler ertelendi"
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr "Bilgisayar ID"
+
+#: clientgui/DlgItemProperties.cpp:215
+msgid "Non CPU intensive"
+msgstr "CPU-yoÄŸun deÄŸil"
+
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "yes"
+msgstr "evet"
+
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "no"
+msgstr "hayır"
+
+#: clientgui/DlgItemProperties.cpp:216
+msgid "Suspended via GUI"
+msgstr "Grafik arabirimi (GUI) ile durduruldu"
+
+#: clientgui/DlgItemProperties.cpp:217
+msgid "Don't request more work"
+msgstr "Daha fazla iÅŸ isteme"
+
+#: clientgui/DlgItemProperties.cpp:218
+msgid "Scheduler call in progress"
+msgstr "Zamanlanmış çağrı sürmekte"
+
+#: clientgui/DlgItemProperties.cpp:219
+msgid "Attached via account manager"
+msgstr "Hesap yöneticisi aracılığıyla katıldınız"
+
+#: clientgui/DlgItemProperties.cpp:220
+msgid "Detach when done"
+msgstr "Tamamlandığında ayrıl"
+
+#: clientgui/DlgItemProperties.cpp:221
+msgid "Ended"
+msgstr "Sonlandı"
+
+#: clientgui/DlgItemProperties.cpp:222
+msgid "Credit"
+msgstr "Kredi"
+
+#: clientgui/DlgItemProperties.cpp:223
+msgid "User"
+msgstr "Kullanıcı"
+
+#: clientgui/DlgItemProperties.cpp:230
+msgid "Host"
+msgstr "Bilgisayar"
+
+#: clientgui/DlgItemProperties.cpp:239
+msgid "Scheduling"
+msgstr "Zamanlama"
+
+#: clientgui/DlgItemProperties.cpp:240
+msgid "CPU scheduling priority"
+msgstr "CPU zamanlama önceliği"
+
+#: clientgui/DlgItemProperties.cpp:241
+msgid "CPU work fetch priority"
+msgstr "CPU iş alma önceliği"
+
+#: clientgui/DlgItemProperties.cpp:244
+msgid "CPU work fetch deferred for"
+msgstr "CPU iÅŸ alma ertelendi"
+
+#: clientgui/DlgItemProperties.cpp:245
+msgid "CPU work fetch deferral interval"
+msgstr "CPU iş alma erteleme aralığı"
+
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr "NVIDIA GPU zamanlama önceliği"
+
+#: clientgui/DlgItemProperties.cpp:248
+msgid "NVIDIA GPU work fetch priority"
+msgstr "NVIDIA GPU iş alma önceliği"
+
+#: clientgui/DlgItemProperties.cpp:251
+msgid "NVIDIA GPU work fetch deferred for"
+msgstr "NVIDIA GPU iÅŸ alma ertelendi"
+
+#: clientgui/DlgItemProperties.cpp:252
+msgid "NVIDIA GPU work fetch deferral interval"
+msgstr "NVIDIA GPU iş alma aralığı"
+
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr "ATI GPU zamanlama önceliği"
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr "ATI GPU iş alma önceliği"
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr "ATI GPU iÅŸ alma ertelendi"
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr "ATI GPU iş alma aralığı"
+
+#: clientgui/DlgItemProperties.cpp:262
+msgid "Duration correction factor"
+msgstr "Süre düzeltme faktörü"
+
+#: clientgui/DlgItemProperties.cpp:272
+msgid "Properties of task "
+msgstr "İşin özellikleri: "
+
+#: clientgui/DlgItemProperties.cpp:276
+msgid "Application"
+msgstr "Uygulama"
+
+#: clientgui/DlgItemProperties.cpp:277
+msgid "Workunit name"
+msgstr "Ä°ÅŸ birimi ismi"
+
+#: clientgui/DlgItemProperties.cpp:278
+msgid "State"
+msgstr "Durum"
+
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr "Alınma tarihi"
+
+#: clientgui/DlgItemProperties.cpp:284
+msgid "Report deadline"
+msgstr "Son teslim tarihi"
+
+#: clientgui/DlgItemProperties.cpp:286
+msgid "Resources"
+msgstr "Kullandığı kaynaklar"
+
+#: clientgui/DlgItemProperties.cpp:289
+msgid "CPU time at last checkpoint"
+msgstr "Kontrol noktasındaki CPU zamanı"
+
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
+msgid "CPU time"
+msgstr "CPU zamanı"
+
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
+msgid "Elapsed time"
+msgstr "Geçen süre"
+
+#: clientgui/DlgItemProperties.cpp:294
+msgid "Estimated time remaining"
+msgstr "Tahmini kalan süre"
+
+#: clientgui/DlgItemProperties.cpp:295
+msgid "Fraction done"
+msgstr "Tamamlanan bölüm"
+
+#: clientgui/DlgItemProperties.cpp:296
+msgid "Virtual memory size"
+msgstr "Sanal bellek kullanımı"
+
+#: clientgui/DlgItemProperties.cpp:297
+msgid "Working set size"
+msgstr "Fiziksel bellek kullanımı"
+
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr "Bulunduğu klasör"
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr "Ä°ÅŸlem ID"
+
+#: clientgui/DlgItemProperties.cpp:400
+msgid "New"
+msgstr "Yeni"
+
+#: clientgui/DlgItemProperties.cpp:404
+msgid "Download failed"
+msgstr "İndirme başarısız"
+
+#: clientgui/DlgItemProperties.cpp:406
+msgid "Downloading"
+msgstr "Ä°ndiriliyor"
+
+#: clientgui/DlgItemProperties.cpp:411
+msgid "Project suspended by user"
+msgstr "Kullanıcı projeyi durdurdu"
+
+#: clientgui/DlgItemProperties.cpp:413
+msgid "Task suspended by user"
+msgstr "Kullanıcı işi durdurdu"
+
+#: clientgui/DlgItemProperties.cpp:415
+msgid "Suspended"
+msgstr "Durdu"
+
+#: clientgui/DlgItemProperties.cpp:417
+msgid " - on batteries"
+msgstr " - pil gücünde"
+
+#: clientgui/DlgItemProperties.cpp:420
+msgid " - user active"
+msgstr " - kullanıcı faal"
+
+#: clientgui/DlgItemProperties.cpp:423
+msgid " - computation suspended"
+msgstr " - hesaplama durduruldu"
+
+#: clientgui/DlgItemProperties.cpp:426
+msgid " - time of day"
+msgstr " - günlük zamanlama"
+
+#: clientgui/DlgItemProperties.cpp:429
+msgid " - CPU benchmarks"
+msgstr " - CPU testleri"
+
+#: clientgui/DlgItemProperties.cpp:432
+msgid " - need disk space"
+msgstr " - disk alanı gerekiyor"
+
+#: clientgui/DlgItemProperties.cpp:436
+msgid "Waiting for memory"
+msgstr "Bellek için bekleniyor"
+
+#: clientgui/DlgItemProperties.cpp:438
+msgid "Waiting for shared memory"
+msgstr "Paylaşılan bellek için bekleniyor"
+
+#: clientgui/DlgItemProperties.cpp:441
+msgid "Running, high priority"
+msgstr "Çalışıyor, yüksek öncelikli"
+
+#: clientgui/DlgItemProperties.cpp:443
+msgid "Running"
+msgstr "Çalışıyor"
+
+#: clientgui/DlgItemProperties.cpp:446
+msgid "Waiting to run"
+msgstr "Çalışmayı bekliyor"
+
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
+msgid "Ready to start"
+msgstr "Başlamaya hazır"
+
+#: clientgui/DlgItemProperties.cpp:455
+msgid "Computation error"
+msgstr "Hesaplama hatası"
+
+#: clientgui/DlgItemProperties.cpp:459
+msgid "Upload failed"
+msgstr "Gönderme başarısız"
+
+#: clientgui/DlgItemProperties.cpp:461
+msgid "Uploading"
+msgstr "Gönderiliyor"
+
+#: clientgui/DlgItemProperties.cpp:467
+msgid "Aborted by user"
+msgstr "Kullanıcı tarafından iptal edildi"
+
+#: clientgui/DlgItemProperties.cpp:470
+msgid "Aborted by project"
+msgstr "Proje tarafından iptal edildi"
+
+#: clientgui/DlgItemProperties.cpp:473
+msgid "Aborted"
+msgstr "Ä°ptal edildi"
+
+#: clientgui/DlgItemProperties.cpp:478
+msgid "Acknowledged"
+msgstr "Kabul edildi"
+
+#: clientgui/DlgItemProperties.cpp:480
+msgid "Ready to report"
+msgstr "Raporlanmaya hazır"
+
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
+msgid "Error: invalid state '%d'"
+msgstr "Hata: Geçersiz durum '%d'"
+
+#: clientgui/DlgOptions.cpp:119
+#, c-format
+msgid "%s - Options"
+msgstr "%s - Seçenekler"
+
+#: clientgui/DlgOptions.cpp:157
+msgid "Language:"
+msgstr "Dil:"
+
+#: clientgui/DlgOptions.cpp:164
+msgid "What language should the manager use?"
+msgstr "Manager'ı hangi dilde kullanmak istediğinizi seçin."
+
+#: clientgui/DlgOptions.cpp:168
+msgid ""
+"Network reminder interval:\n"
+"(minutes)"
+msgstr ""
+"Ağ ihtiyacını hatırlatma sıklığı\n"
+"(dakika)"
+
+#: clientgui/DlgOptions.cpp:180
+msgid "How often should the Manager remind you when a network connection is needed?"
+msgstr "Manager'ın, ağ bağlantısına ihtiyacı olduğunu size kaç dakikada bir hatırlatmasını istediğinizi belirleyin."
+
+#: clientgui/DlgOptions.cpp:185
+msgid "Run Manager at login?"
+msgstr "Oturum açıldığında Manager'ı çalıştır"
+
+#: clientgui/DlgOptions.cpp:191
+msgid "Run the BOINC Manager when you log on."
+msgstr "İşaretlerseniz, oturum açtığınızda BOINC Manager otomatik olarak çalışır."
+
+#: clientgui/DlgOptions.cpp:196
+msgid "Enable Manager exit dialog?"
+msgstr "Manager'dan çıkarken sor"
+
+#: clientgui/DlgOptions.cpp:202
+msgid "Display the exit dialog when shutting down the Manager."
+msgstr "İşaretlerseniz, Manager'ı kapatırken bunu onaylamanızı isteyen bir pencere belirir."
+
+#: clientgui/DlgOptions.cpp:213
+msgid "Dial-up and Virtual Private Network settings"
+msgstr "Çevirmeli bağlantı ve Sanal Özel Ağ (VPN) ayarları"
+
+#: clientgui/DlgOptions.cpp:227
+msgid "&Set Default"
+msgstr "&Varsayılan Yap"
+
+#: clientgui/DlgOptions.cpp:232
+msgid "&Clear Default"
+msgstr "&Varsayılanı Kaldır"
+
+#: clientgui/DlgOptions.cpp:239
+msgid "Default Connection:"
+msgstr "Varsayılan Bağlantı:"
+
+#: clientgui/DlgOptions.cpp:246
+msgid "Connections"
+msgstr "Bağlantılar"
+
+#: clientgui/DlgOptions.cpp:255
+msgid "Connect via HTTP proxy server"
+msgstr "HTTP vekil sunucu (proxy) aracılığıyla bağlan"
+
+#: clientgui/DlgOptions.cpp:259
+msgid "HTTP Proxy Server Configuration"
+msgstr "HTTP Vekil Sunucu Yapılandırması"
+
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
+msgid "Address:"
+msgstr "Adres:"
+
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
+msgid "Port:"
+msgstr "Bağlantı noktası:"
+
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
+msgid "Don't use proxy for:"
+msgstr "Burası için vekil sunucu kullanma:"
+
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
+msgid "Leave these blank if not needed"
+msgstr "Gerekli değilse bu bölümü boş bırakın"
+
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
+msgid "User Name:"
+msgstr "Kullanıcı adı:"
+
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
+msgid "Password:"
+msgstr "Parola:"
+
+#: clientgui/DlgOptions.cpp:311
+msgid "HTTP Proxy"
+msgstr "HTTP Proxy"
+
+#: clientgui/DlgOptions.cpp:319
+msgid "Connect via SOCKS proxy server"
+msgstr "SOCKS vekil sunucu (proxy) aracılığıyla bağlan"
+
+#: clientgui/DlgOptions.cpp:323
+msgid "SOCKS Proxy Server Configuration"
+msgstr "SOCKS Vekil Sunucu Yapılandırması"
+
+#: clientgui/DlgOptions.cpp:375
+msgid "SOCKS Proxy"
+msgstr "SOCKS Proxy"
+
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
+msgid "%s - Select Computer"
+msgstr "%s - Bilgisayar Seç ve Bağlan"
+
+#: clientgui/DlgSelectComputer.cpp:127
+msgid "Host name:"
+msgstr "Sunucu adı:"
+
+#: clientgui/hyperlink.cpp:181
+#, c-format
+msgid "%s - Can't find web browser"
+msgstr "%s - İnternet tarayıcı bulunamadı"
+
+#: clientgui/hyperlink.cpp:192
+#, c-format
+msgid ""
+"%s tried to display the web page\n"
+"\t%s\n"
+"but couldn't find a web browser.\n"
+"To fix this, set the environment variable\n"
+"BROWSER to the path of your web browser,\n"
+"then restart the %s."
+msgstr ""
+"%s bir internet sayfasını görüntelemeyi deniyor\n"
+"\t%s\n"
+"fakat bir internet tarayıcı bulamıyor.\n"
+"Bunu çözmek için BROWSER ortam değişkenini,\n"
+"tarayıcınızın bulunduğu dizine ayarlayın ve\n"
+"%s'ı yeniden başlatın."
+
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
+msgid "Message boards"
+msgstr "Forum sayfaları"
+
+#: clientgui/Localization.cpp:33
+msgid "Correspond with other users on the SETI at home message boards"
+msgstr "Diğer kullanıcılarla SETI at home forum sayfaları aracılığıyla iletişim kurun"
+
+#: clientgui/Localization.cpp:37
+msgid "Ask questions and report problems"
+msgstr "Sorular sorun ve problemleri bildirin"
+
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
+msgid "Your account"
+msgstr "Hesabınız"
+
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
+msgid "View your account information and credit totals"
+msgstr "Hesap bilgilerinizi ve toplam kredinizi görüntüleyin"
+
+#: clientgui/Localization.cpp:43
+msgid "Your preferences"
+msgstr "Tercihleriniz"
+
+#: clientgui/Localization.cpp:45
+msgid "View and modify your SETI at home account profile and preferences"
+msgstr "SETI at home hesap profili ve tercihlerini görüp değiştirin"
+
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
+msgid "Your results"
+msgstr "Sonuçlarınız"
+
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
+msgid "View your last week (or more) of computational results and work"
+msgstr "Son haftaya ait (ya da daha eski) hesaplama sonuçlarınızı ve işlerinizi görüntüleyin"
+
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
+msgid "Your computers"
+msgstr "Bilgisayarlarınız"
+
+#: clientgui/Localization.cpp:53
+msgid "View a listing of all the computers on which you are running SETI at Home"
+msgstr "SETI at Home çalıştırdığınız tüm bilgisayarların listesini görün"
+
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
+msgid "Your team"
+msgstr "Takımınız"
+
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
+msgid "View information about your team"
+msgstr "Takımınız hakkındaki bilgileri görüntüleyin"
+
+#: clientgui/Localization.cpp:61
+msgid "Common questions"
+msgstr "Çeşitli sorular"
+
+#: clientgui/Localization.cpp:63
+msgid "Read the Einstein at Home Frequently Asked Question list"
+msgstr "Einstein at Home Sık Sorulan Sorular listesini okuyun"
+
+#: clientgui/Localization.cpp:65
+msgid "Screensaver info"
+msgstr "Ekran koruyucu bilgisi"
+
+#: clientgui/Localization.cpp:67
+msgid "Read a detailed description of the Einstein at Home screensaver"
+msgstr "Einstein at Home ekran koruyucusunun detaylı açıklamalarını okuyun"
+
+#: clientgui/Localization.cpp:71
+msgid "Correspond with admins and other users on the Einstein at Home message boards"
+msgstr "Yöneticiler ve başka kullanıcılarla Einstein at Home forumlarında mesajlaşın"
+
+#: clientgui/Localization.cpp:73
+msgid "Einstein status"
+msgstr "Einstein durumu"
+
+#: clientgui/Localization.cpp:75
+msgid "Current status of the Einstein at Home server"
+msgstr "Einstein at Home sunucusunun ÅŸu anki durumu"
+
+#: clientgui/Localization.cpp:77
+msgid "Report problems"
+msgstr "Sorunları bildir"
+
+#: clientgui/Localization.cpp:79
+msgid "A link to the Einstein at Home problems and bug reports message board"
+msgstr "Einstein at Home problemleri ve hata raporları forumuna kısa yol"
+
+#: clientgui/Localization.cpp:83
+msgid "View and modify your Einstein at Home account profile and preferences"
+msgstr "Einstein at Home hesap profilinizi ve tercihlerinizi görün ve değiştirin"
+
+#: clientgui/Localization.cpp:85
+msgid "Account summary"
+msgstr "Hesap özeti"
+
+#: clientgui/Localization.cpp:95
+msgid "View a listing of all the computers on which you are running Einstein at Home"
+msgstr "Einstein at Home çalıştırdığınız tüm bilgisayarların bir listesini görün"
+
+#: clientgui/Localization.cpp:101
+msgid "LIGO project"
+msgstr "LIGO projesi"
+
+#: clientgui/Localization.cpp:103
+msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
+msgstr "Laser Interferometer Gravitational-wave Observatory (LIGO) projesinin ana sayfası"
+
+#: clientgui/Localization.cpp:105
+msgid "GEO-600 project"
+msgstr "GEO-600 projesi"
+
+#: clientgui/Localization.cpp:107
+msgid "The home page of the GEO-600 project"
+msgstr "GEO-600 projesinin ana sayfası"
+
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
+msgid "Team"
+msgstr "Takım"
+
+#: clientgui/Localization.cpp:117
+msgid "Info about your Team"
+msgstr "Takımınız hakkında bilgi"
+
+#: clientgui/Localization.cpp:123
+msgid "Get help for climateprediction.net"
+msgstr "climateprediction.net için yardım al"
+
+#: clientgui/Localization.cpp:125
+msgid "News"
+msgstr "Haberler"
+
+#: clientgui/Localization.cpp:127
+msgid "climateprediction.net News"
+msgstr "climateprediction.net Haberleri"
+
+#: clientgui/Localization.cpp:131
+msgid "View your account information, credits, and trickles"
+msgstr "Hesap bilgilerinizi, kredilerinizi ve trickle'ları görün"
+
+#: clientgui/Localization.cpp:135
+msgid "Info about your team"
+msgstr "Takımınız hakkında bilgi"
+
+#: clientgui/Localization.cpp:141
+msgid "Search for help in our help system"
+msgstr "Yardım sistemimizde arama yapın"
+
+#: clientgui/Localization.cpp:143
+msgid "Global Statistics"
+msgstr "Global Ä°statistikler"
+
+#: clientgui/Localization.cpp:145
+msgid "Summary statistics for World Community Grid"
+msgstr "World Community Grid için genel istatistikler"
+
+#: clientgui/Localization.cpp:147
+msgid "My Grid"
+msgstr "Grid'im"
+
+#: clientgui/Localization.cpp:149
+msgid "Your statistics and settings"
+msgstr "İstatistikleriniz ve ayarlarınız"
+
+#: clientgui/Localization.cpp:151
+msgid "Device Profiles"
+msgstr "Aygıt Profilleri"
+
+#: clientgui/Localization.cpp:153
+msgid "Update your device settings"
+msgstr "Bilgisayarlarınız için tercihleri inceleyin ve düzenleyin"
+
+#: clientgui/Localization.cpp:155
+msgid "Research"
+msgstr "Araştırma"
+
+#: clientgui/Localization.cpp:157
+msgid "Learn about the projects hosted at World Community Grid"
+msgstr "World Community Grid tarafından barındırılan projeler hakkında bilgi edinin"
+
+#: clientgui/MainDocument.cpp:536
+msgid "Starting client services; please wait..."
+msgstr "İstemci servisleri başlatılıyor; lütfen bekleyin..."
+
+#: clientgui/MainDocument.cpp:1073
+msgid "Retrieving system state; please wait..."
+msgstr "Sistem durum bilgisi alınıyor; lütfen bekleyin"
+
+#: clientgui/MainDocument.cpp:1082
+msgid "Retrieving host information; please wait..."
+msgstr "Bilgisayar bilgisi alınıyor; lütfen bekleyin..."
+
+#: clientgui/NoInternetConnectionPage.cpp:179
+msgid "No Internet connection"
+msgstr "İnternet bağlantısı yok"
+
+#: clientgui/NoInternetConnectionPage.cpp:182
+msgid "Please connect to the Internet and try again."
+msgstr "Lütfen internete bağlanıp, tekrar deneyin."
+
+#: clientgui/NotDetectedPage.cpp:181
+msgid "Project not found"
+msgstr "Proje bulunamadı"
+
+#: clientgui/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 ""
+"BelirttiÄŸiniz adreste bir BOINC projesi bulunmuyor.\n"
+"\n"
+"Adresi kontrol edip tekrar deneyin."
+
+#: clientgui/NotDetectedPage.cpp:188
+msgid "Account manager not found"
+msgstr "Hesap yöneticisi bulunamadı"
+
+#: clientgui/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 ""
+"Belirttiğiniz adreste bir BOINC hesap yöneticisi bulunmuyor.\n"
+"\n"
+"Adresi kontrol edip tekrar deneyin."
+
+#: clientgui/NotFoundPage.cpp:181
+msgid "Login Failed."
+msgstr "Giriş başarısız."
+
+#: clientgui/NotFoundPage.cpp:185
+msgid "Check the username and password, and try again."
+msgstr "Kullanıcı adı ve parolayı kontrol edip, tekrar deneyin."
+
+#: clientgui/NotFoundPage.cpp:189
+msgid "Check the email address and password, and try again."
+msgstr "E-posta, kullanıcı adı ve parolayı kontrol edip, tekrar deneyin."
+
+#: clientgui/ProjectInfoPage.cpp:259
+msgid "Choose a project"
+msgstr "Bir proje seçin"
+
+#: clientgui/ProjectInfoPage.cpp:262
+msgid "To choose a project, click its name or type its URL below."
+msgstr "Bir proje seçmek için, ismine tıklayın ya da aşağıya adresini girin."
+
+#: clientgui/ProjectInfoPage.cpp:265
+msgid "Project &URL:"
+msgstr "Proje &adresi:"
+
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr "Bu proje bilgisayarınızın özelliklerine uygun işe sahip olmayabilir. Devam etmek istediğinize emin misiniz?"
+
+#: clientgui/ProjectInfoPage.cpp:417
+msgid "You are already attached to this project. Please choose a different project."
+msgstr "Bu projeye zaten katılmış durumdasınız. Lütfen farklı bir proje seçin."
+
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr "Tıkla"
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr "Çok çekirdekli CPU destekleniyor"
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr "NVIDIA GPU destekleniyor"
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr "ATI GPU destekleniyor"
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr "Proje internet sitesi"
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
+msgid ""
+"Communicating with project\n"
+"Please wait..."
+msgstr ""
+"Projeye bağlanılıyor\n"
+"Lütfen bekleyin..."
+
+#: clientgui/ProjectProcessingPage.cpp:498
+msgid ""
+"Required wizard file(s) are missing from the target server.\n"
+"(lookup_account.php/create_account.php)\n"
+msgstr ""
+"Hedef sunucuda gerekli sihirbaz dosya(ları) bulunamadı.\n"
+"(lookup_account.php/create_account.php)\n"
+
+#: clientgui/ProxyInfoPage.cpp:195
+msgid "Network communication failure"
+msgstr "Ağ bağlantısı başarısız"
+
+#: clientgui/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"
+"hen click Back to try again.\n"
+"\n"
+"3) You are using a proxy server.\n"
+"Click Next to configure BOINC's proxy settings."
+msgstr ""
+"The World Community Grid - BOINC yazılımı İnternet üzerinden\n"
+"bağlantı gerçekleştiremedi. Sıkça karşılaşılan sorunlar:\n"
+"\n"
+"1) Bağlantı problemi. Ağ ve modem bağlantılarınızı kontrol edin ve\n"
+"tekrar denemek için Geri'yi tıklayın.\n"
+"\n"
+"2) Kişisel güvenlik duvarı yazılımı World Community Grid - BOINC\n"
+"yazılımını engelliyor.  Kişisel güvenlik duvarınızı, BOINC ve BOINC\n"
+"Manager'ın bağlantı noktaları 80 ve 443 üzerinden haberleşmesine izin\n"
+"verecek şekilde yapılandırın ve yeniden denemek için Geri'yi tıklayın.\n"
+"\n"
+"3) Bir vekil sunucu (proxy) kullanıyorsunuz.\n"
+"BOINC'in vekil sunucu ayarlarını yapmak için İleri'yi tıklayın."
+
+#: clientgui/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 ""
+"BOINC yazılımı İnternet üzerinden bağlantı gerçekleştiremedi.\n"
+"Sıkça karşılaşılan sorunlar:\n"
+"\n"
+"1) Bağlantı problemi. Ağ ve modem bağlantılarınızı kontrol edin ve\n"
+"tekrar denemek için Geri'yi tıklayın.\n"
+"\n"
+"2) Kişisel güvenlik duvarı yazılımı BOINC'i engelliyor. Kişisel güvenlik\n"
+"duvarınızı, BOINC ve BOINC Manager'ın bağlantı noktaları 80 ve 443\n"
+"üzerinden haberleşmesine izin verecek şekilde yapılandırın ve yeniden\n"
+"denemek için Geri'yi tıklayın.\n"
+"\n"
+"3) Bir vekil sunucu (proxy) kullanıyorsunuz.\n"
+"BOINC'in vekil sunucu ayarlarını yapmak için İleri'yi tıklayın."
+
+#: clientgui/ProxyPage.cpp:331
+msgid "Proxy configuration"
+msgstr "Proxy yapılandırması"
+
+#: clientgui/ProxyPage.cpp:334
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
+
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
+msgid "Server:"
+msgstr "Sunucu:"
+
+#: clientgui/ProxyPage.cpp:350
+msgid "Autodetect"
+msgstr "Otomatik belirle"
+
+#: clientgui/ProxyPage.cpp:354
+msgid "SOCKS proxy"
+msgstr "SOCKS proxy"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr "Gelişmiş görünüm...\tCtrl+Shift+A"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr "Gelişmiş (erişilebilir) grafiksel arayüzü görüntüle."
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
+msgid "&%s"
+msgstr "&%s"
+
+#: clientgui/sg_ClientStateIndicator.cpp:288
+msgid "Retrieving current status."
+msgstr "Mevcut durum bilgisi alınıyor."
+
+#: clientgui/sg_ClientStateIndicator.cpp:291
+msgid "You don't have any projects.  Please Add a Project."
+msgstr "Katıldığınız bir proje bulunmuyor.  Lütfen bir proje ekleyin."
+
+#: clientgui/sg_ClientStateIndicator.cpp:294
+msgid "Downloading work from the server."
+msgstr "Ä°ÅŸ sunucudan indiriliyor"
+
+#: clientgui/sg_ClientStateIndicator.cpp:299
+msgid "Processing Suspended:  Running On Batteries."
+msgstr "Çalışma Durdu:  Pil Gücünde Çalışıyor."
+
+#: clientgui/sg_ClientStateIndicator.cpp:301
+msgid "Processing Suspended:  User Active."
+msgstr "Çalışma Durdu:  Kullanıcı Faal."
+
+#: clientgui/sg_ClientStateIndicator.cpp:303
+msgid "Processing Suspended:  User paused processing."
+msgstr "Çalışma Durdu:  Kullanıcı Çalışmayı Duraklattı."
+
+#: clientgui/sg_ClientStateIndicator.cpp:305
+msgid "Processing Suspended:  Time of Day."
+msgstr "Çalışma Durdu:  Günlük Zamanlama"
+
+#: clientgui/sg_ClientStateIndicator.cpp:307
+msgid "Processing Suspended:  Benchmarks Running."
+msgstr "Çalışma Durdu:  Testler Çalışıyor."
+
+#: clientgui/sg_ClientStateIndicator.cpp:309
+msgid "Processing Suspended."
+msgstr "Çalışma Durdu."
+
+#: clientgui/sg_ClientStateIndicator.cpp:313
+msgid "Waiting to contact project servers."
+msgstr "Proje sunucularına bağlanılması için bekleniyor."
+
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
+msgid "Retrieving current status"
+msgstr "Mevcut durum bilgisi alınıyor"
+
+#: clientgui/sg_ClientStateIndicator.cpp:320
+msgid "No work available to process"
+msgstr "Çalıştırılacak iş bulunmuyor"
+
+#: clientgui/sg_ClientStateIndicator.cpp:322
+msgid "Unable to connect to the core client"
+msgstr "Çekirdek istemciyle bağlantı kurulamadı"
+
+#: clientgui/sg_DlgMessages.cpp:107
+msgid "Project"
+msgstr "Proje"
+
+#: clientgui/sg_DlgMessages.cpp:108
+msgid "Time"
+msgstr "Zaman"
+
+#: clientgui/sg_DlgMessages.cpp:109
+msgid "Message"
+msgstr "Mesaj"
+
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
+msgid "Copy all the messages to the clipboard."
+msgstr "Tüm mesajları panoya kopyalar."
+
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
+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 ""
+"Seçili mesajları panoya kopyalar. Shift ya da komut düğmelerine basıp\n"
+"mesajların üzerine tıklayarak, çok sayıda mesajı seçebilirsiniz."
+
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
+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 ""
+"Seçili mesajları panoya kopyalar. Shift ya da Ctrl düğmelerine basıp\n"
+"mesajların üzerine tıklayarak, çok sayıda mesajı seçebilirsiniz."
+
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
+msgid "Get help with BOINC"
+msgstr "BOINC yardım sitesini açar"
+
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
+msgid "%s - Messages"
+msgstr "%s - Mesajlar"
+
+#: clientgui/sg_DlgPreferences.cpp:95
+msgid "100 MB"
+msgstr "100 MB"
+
+#: clientgui/sg_DlgPreferences.cpp:96
+msgid "200 MB"
+msgstr "200 MB"
+
+#: clientgui/sg_DlgPreferences.cpp:97
+msgid "500 MB"
+msgstr "500 MB"
+
+#: clientgui/sg_DlgPreferences.cpp:98
+msgid "1 GB"
+msgstr "1 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:99
+msgid "2 GB"
+msgstr "2 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:100
+msgid "5 GB"
+msgstr "5 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:101
+msgid "10 GB"
+msgstr "10 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:102
+msgid "20 GB"
+msgstr "20 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:103
+msgid "50 GB"
+msgstr "50 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:104
+msgid "100 GB"
+msgstr "100 GB"
+
+#: clientgui/sg_DlgPreferences.cpp:135
+msgid "10%"
+msgstr "%10"
+
+#: clientgui/sg_DlgPreferences.cpp:136
+msgid "20%"
+msgstr "%20"
+
+#: clientgui/sg_DlgPreferences.cpp:137
+msgid "30%"
+msgstr "%30"
+
+#: clientgui/sg_DlgPreferences.cpp:138
+msgid "40%"
+msgstr "%40"
+
+#: clientgui/sg_DlgPreferences.cpp:139
+msgid "50%"
+msgstr "%50"
+
+#: clientgui/sg_DlgPreferences.cpp:140
+msgid "60%"
+msgstr "% 60"
+
+#: clientgui/sg_DlgPreferences.cpp:141
+msgid "70%"
+msgstr "%70"
+
+#: clientgui/sg_DlgPreferences.cpp:142
+msgid "80%"
+msgstr "%80"
+
+#: clientgui/sg_DlgPreferences.cpp:143
+msgid "90%"
+msgstr "%90"
+
+#: clientgui/sg_DlgPreferences.cpp:144
+msgid "100%"
+msgstr "%100"
+
+#: clientgui/sg_DlgPreferences.cpp:169
+msgid "1"
+msgstr "1"
+
+#: clientgui/sg_DlgPreferences.cpp:170
+msgid "3"
+msgstr "3"
+
+#: clientgui/sg_DlgPreferences.cpp:171
+msgid "5"
+msgstr "5"
+
+#: clientgui/sg_DlgPreferences.cpp:172
+msgid "10"
+msgstr "10"
+
+#: clientgui/sg_DlgPreferences.cpp:173
+msgid "15"
+msgstr "15"
+
+#: clientgui/sg_DlgPreferences.cpp:174
+msgid "30"
+msgstr "30"
+
+#: clientgui/sg_DlgPreferences.cpp:175
+msgid "60"
+msgstr "60"
+
+#: clientgui/sg_DlgPreferences.cpp:284
+msgid "Skin"
+msgstr "Kaplama"
+
+#: clientgui/sg_DlgPreferences.cpp:291
+msgid "Skin:"
+msgstr "Kaplama:"
+
+#: clientgui/sg_DlgPreferences.cpp:307
+msgid "Preferences"
+msgstr "Tercihler"
+
+#: clientgui/sg_DlgPreferences.cpp:324
+msgid "I want to customize my preferences for this computer only."
+msgstr "Tercihlerimi yalnızca bu bilgisayar için özelleştirmek istiyorum."
+
+#: clientgui/sg_DlgPreferences.cpp:333
+msgid "Customized Preferences"
+msgstr "Özelleştirilmiş Tercihler"
+
+#: clientgui/sg_DlgPreferences.cpp:349
+msgid "Do work only between:"
+msgstr "Yalnızca bu saatler arasında çalıştır:"
+
+#: clientgui/sg_DlgPreferences.cpp:371
+msgid "Connect to internet only between:"
+msgstr "Bu saatler arasında internete bağlan:"
+
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
+msgid "Use no more than:"
+msgstr "Bundan fazlasını kullanma:"
+
+#: clientgui/sg_DlgPreferences.cpp:406
+msgid "of disk space"
+msgstr "disk alanı"
+
+#: clientgui/sg_DlgPreferences.cpp:423
+msgid "of the processor"
+msgstr "CPU (işlemci) gücü"
+
+#: clientgui/sg_DlgPreferences.cpp:427
+msgid "Do work while on battery?"
+msgstr "Pil gücündeyken işleri çalıştır?"
+
+#: clientgui/sg_DlgPreferences.cpp:440
+msgid "Do work after idle for:"
+msgstr "Bu kadar süre boşta kaldığında çalıştır:"
+
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
+msgid "Anytime"
+msgstr "Herhangi"
+
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
+msgid "%d MB"
+msgstr "%d MB"
+
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
+msgid "%4.2f GB"
+msgstr "%4.2f GB"
+
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
+msgid "%d%%"
+msgstr "%%%d"
+
+#: clientgui/sg_DlgPreferences.cpp:864
+msgid "0 (Run Always)"
+msgstr "0 (Daima Çalış)"
+
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
+msgid "%d"
+msgstr "%d"
+
+#: clientgui/sg_ImageButton.cpp:90
+msgid "Paused: Other work running"
+msgstr "Durakladı: Başka iş çalışıyor"
+
+#: clientgui/sg_ImageButton.cpp:92
+msgid "Paused: User initiatied.  Click 'Resume' to continue"
+msgstr "Durakladı: Kullanıcı Durdurdu.  Devam etmek için 'Devam'a tıklayın"
+
+#: clientgui/sg_ImageButton.cpp:94
+msgid "Paused: User active"
+msgstr "Durakladı: Kullanıcı faal"
+
+#: clientgui/sg_ImageButton.cpp:96
+msgid "Paused: Computer on battery"
+msgstr "Durakladı: Bilgisayar pil gücünde"
+
+#: clientgui/sg_ImageButton.cpp:98
+msgid "Paused: Time of Day"
+msgstr "Durakladı: Günlük zamanlama"
+
+#: clientgui/sg_ImageButton.cpp:100
+msgid "Paused: Benchmarks running"
+msgstr "Durakladı: Testler çalışıyor"
+
+#: clientgui/sg_ImageButton.cpp:102
+msgid "Paused"
+msgstr "Durakladı"
+
+#: clientgui/sg_ImageButton.cpp:104
+msgid "Paused: Application start delayed"
+msgstr "Durakladı: Uygulamanın başlaması ertelendi"
+
+#: clientgui/sg_ImageButton.cpp:132
+msgid "Click to show project graphics"
+msgstr "Proje grafiklerini görmek için tıklayın"
+
+#: clientgui/sg_ProjectsComponent.cpp:106
+msgid "Attach to an additional project"
+msgstr "Bir projeye katılmanız için sihirbazı açar"
+
+#: clientgui/sg_ProjectsComponent.cpp:123
+msgid "Synchronize projects with account manager system"
+msgstr "Projeleri hesap yöneticisi sistemiyle senkronize eder"
+
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
+msgid "Open a window to view messages"
+msgstr "BOINC faaliyet mesajları penceresini açar"
+
+#: clientgui/sg_ProjectsComponent.cpp:223
+msgid "Stop all activity"
+msgstr "Tüm çalışmayı durdurur"
+
+#: clientgui/sg_ProjectsComponent.cpp:235
+msgid "Resume activity"
+msgstr "Çalışmayı sürdürür"
+
+#: clientgui/sg_ProjectsComponent.cpp:252
+msgid "Open a window to set your preferences"
+msgstr "Tercihlerinizi ayarlayabileceğiniz pencereyi açar"
+
+#: clientgui/sg_ProjectsComponent.cpp:269
+msgid "Switch to the BOINC advanced view"
+msgstr "BOINC gelişmiş görünümüne geçiş yapar"
+
+#: clientgui/sg_ProjectsComponent.cpp:296
+msgid "My Projects:"
+msgstr "Projelerim:"
+
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
+msgid "%s. Work done by %s: %0.2f"
+msgstr "%s. %s tarafından elde edilen kredi: %0.2f"
+
+#: clientgui/sg_StatImageLoader.cpp:154
+msgid "Remove Project"
+msgstr "Projeyi Kaldır"
+
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
+msgid "Are you sure you want to detach from project '%s'?"
+msgstr "'%s' projesinden ayrılmak istediğinize emin misiniz?"
+
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
+msgid "Detach from Project"
+msgstr "Projeden ayrıl"
+
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
+msgid "%.1lf"
+msgstr "%.1lf"
+
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
+msgid "%d hr %d min %d sec"
+msgstr "%d s %d dk %d sn"
+
+#: clientgui/sg_ViewTabPage.cpp:421
+msgid "Are you sure you want to display graphics on a remote machine?"
+msgstr "Uzak bilgisayardaki grafikleri görüntülemek istediğinize emin misiniz?"
+
+#: clientgui/sg_ViewTabPage.cpp:422
+msgid "Show graphics"
+msgstr "Grafikleri göster"
+
+#: clientgui/sg_ViewTabPage.cpp:444
+msgid "Application: "
+msgstr "Uygulama: "
+
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
+msgid "Time Remaining: "
+msgstr "Kalan süre: "
+
+#: clientgui/sg_ViewTabPage.cpp:450
+msgid "Elapsed Time: "
+msgstr "Geçen süre: "
+
+#: clientgui/TermsOfUsePage.cpp:218
+msgid "Terms of Use"
+msgstr "Kullanım Koşulları"
+
+#: clientgui/TermsOfUsePage.cpp:222
+msgid "Please read the following terms of use:"
+msgstr "Lütfen aşağıdaki kullanım koşullarını okuyun:"
+
+#: clientgui/TermsOfUsePage.cpp:231
+msgid "I agree to the terms of use."
+msgstr "Kullanım koşullarını kabul ediyorum."
+
+#: clientgui/TermsOfUsePage.cpp:237
+msgid "I do not agree with the terms of use."
+msgstr "Kullanım koşullarını kabul etmiyorum."
+
+#: clientgui/UnavailablePage.cpp:183
+msgid "Project temporarily unavailable"
+msgstr "Proje geçiçi olarak kullanılamaz durumda"
+
+#: clientgui/UnavailablePage.cpp:186
+msgid ""
+"The project is temporarily unavailable.\n"
+"\n"
+"Please try again later."
+msgstr ""
+"Proje geçiçi olarak kullanılamaz durumda.\n"
+"\n"
+"Lütfen daha sonra tekrar deneyin."
+
+#: clientgui/UnavailablePage.cpp:190
+msgid "Account manager temporarily unavailable"
+msgstr "Hesap yöneticisi geçici olarak devre dışı."
+
+#: clientgui/UnavailablePage.cpp:193
+msgid ""
+"The account manager is temporarily unavailable.\n"
+"\n"
+"Please try again later."
+msgstr ""
+"Hesap yöneticisi geçici olarak devre dışı.\n"
+"\n"
+"Lütfen daha sonra tekrar deneyin."
+
+#: clientgui/ValidateAccountKey.cpp:68
+msgid "Please specify an account key to continue."
+msgstr "Lütfen devam etmek için bir hesap anahtarı belirtin."
+
+#: clientgui/ValidateAccountKey.cpp:71
+msgid "Invalid Account Key; please enter a valid Account Key"
+msgstr "Geçersiz hesap anahtarı; lütfen geçerli bir hesap anahtarı girin."
+
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
+msgid "Validation conflict"
+msgstr "DoÄŸrulama tutmuyor"
+
+#: clientgui/ValidateEmailAddress.cpp:72
+msgid "Please specify an email address"
+msgstr "Lütfen bir e-posta adresi belirtin."
+
+#: clientgui/ValidateEmailAddress.cpp:75
+msgid "Invalid email address; please enter a valid email address"
+msgstr "Geçersiz e-posta adresi; lütfen geçerli bir e-posta adresi girin."
+
+#: clientgui/ValidateURL.cpp:69
+msgid "Missing URL"
+msgstr "Eksik adres"
+
+#: clientgui/ValidateURL.cpp:70
+msgid ""
+"Please specify a URL.\n"
+"For example:\n"
+"http://www.example.com/"
+msgstr ""
+"Lütfen bir internet adresi belirtin.\n"
+"Örneğin:\n"
+"http://www.ornek.com/"
+
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
+msgid "Invalid URL"
+msgstr "Geçersiz adres"
+
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
+msgid ""
+"Please specify a valid URL.\n"
+"For example:\n"
+"http://boincproject.example.com"
+msgstr ""
+"Lütfen geçerli bir internet adresi belirtin.\n"
+"Örneğin:\n"
+"http:/boincproject.ornek.com"
+
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
+msgid "'%s' does not contain a valid host name."
+msgstr "'%s' geçerli bir bilgisayar adı içermiyor."
+
+#: clientgui/ValidateURL.cpp:111
+#, c-format
+msgid "'%s' does not contain a valid path."
+msgstr "'%s' geçerli bir yol içermiyor."
+
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
+msgid "Commands"
+msgstr "Komutlar"
+
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
+msgid "Copy all messages"
+msgstr "Tüm mesajları kopyala"
+
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
+msgid "Copy selected messages"
+msgstr "Seçili mesajları kopyala"
+
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
+msgid "Show only this project"
+msgstr "Yalnızca bu projeyi göster"
+
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
+msgid "Show only the messages for the selected project."
+msgstr "Yalnızca şu anda seçili projeye ait mesajları ve BOINC'in genel mesajlarını görüntüler."
+
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
+msgid "Messages"
+msgstr "Mesajlar"
+
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
+msgid "Copying all messages to the clipboard..."
+msgstr "Tüm mesajlar panoya kopyalanıyor..."
+
+#: clientgui/ViewMessages.cpp:223
+msgid "Copying selected messages to the clipboard..."
+msgstr "Seçili mesajlar panoya kopyalanıyor..."
+
+#: clientgui/ViewMessages.cpp:286
+msgid "Filtering messages..."
+msgstr "Mesajlar filtreleniyor...."
+
+#: clientgui/ViewMessages.cpp:494
+msgid "Show all messages"
+msgstr "Tüm mesajları göster"
+
+#: clientgui/ViewMessages.cpp:495
+msgid "Show messages for all projects."
+msgstr "Tüm projeler için mesajları gösterir."
+
+#: clientgui/ViewMessagesGrid.cpp:128
+msgid "ID"
+msgstr "ID"
+
+#: clientgui/ViewMessagesGrid.cpp:128
+msgid "Priority"
+msgstr "Öncelik"
+
+#: clientgui/ViewMessagesGrid.cpp:151
+msgid "MessagesGrid"
+msgstr "MessagesGrid"
+
+#: clientgui/ViewMessagesGrid.cpp:209
+msgid "Copying selected messages to Clipboard..."
+msgstr "Seçili mesajlar panoya kopyalanıyor..."
+
+#: clientgui/ViewMessagesGrid.cpp:396
+msgid "Info"
+msgstr "Bilgi"
+
+#: clientgui/ViewMessagesGrid.cpp:399
+msgid "Warning"
+msgstr "Uyarı"
+
+#: clientgui/ViewMessagesGrid.cpp:403
+msgid "Error"
+msgstr "Hata"
+
+#: clientgui/ViewNews.cpp:76
+msgid "News Feeds"
+msgstr "Haber Akışları"
+
+#: clientgui/ViewNews.cpp:80
+msgid "BOINC"
+msgstr "BOINC"
+
+#: clientgui/ViewNews.cpp:81
+msgid "Display the latest news about BOINC"
+msgstr "BOINC hakkındaki son haberleri görüntüler"
+
+#: clientgui/ViewNews.cpp:87
+msgid "BOINC Website"
+msgstr "BOINC Ä°nternet Sitesi"
+
+#: clientgui/ViewNews.cpp:88
+msgid "Display the latest news about BOINC from the BOINC website"
+msgstr "BOINC hakkındaki son haberleri BOINC internet sitesinden görüntüler."
+
+#: clientgui/ViewProjects.cpp:173
+msgid "Update"
+msgstr "Güncelle"
+
+#: clientgui/ViewProjects.cpp:174
+msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
+msgstr "Tamamlanan işleri raporlar, güncel kredi bigilerini ve tercih ayarlarını alır ve gerekiyorsa daha fazla iş indirir."
+
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
+msgid "Suspend"
+msgstr "Durdur"
+
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
+msgid "Suspend tasks for this project."
+msgstr "Bu projenin iÅŸlerini durdurur."
+
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
+msgid "No new tasks"
+msgstr "Yeni iÅŸ indirme"
+
+#: clientgui/ViewProjects.cpp:188
+msgid "Don't get new tasks for this project."
+msgstr "Bu projeye yeni iÅŸler indirilmez."
+
+#: clientgui/ViewProjects.cpp:194
+msgid "Reset project"
+msgstr "Projeyi sıfırla"
+
+#: clientgui/ViewProjects.cpp:195
+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 "Bu projeye ilişkin tüm dosyalar ile işleri siler ve yeni işler alır.  Tamamlanmış işler varsa sonuçları raporlamak için önce projeyi güncelleyebilirsiniz."
+
+#: clientgui/ViewProjects.cpp:201
+msgid "Detach"
+msgstr "Ayrıl"
+
+#: clientgui/ViewProjects.cpp:202
+msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
+msgstr "Bu bilgisayarda bu projeden ayrılmayı sağlar.  Sürmekte olan işler kaybedilir (tamamlanmış işlerin sonuçlarını göndermek için önce 'Güncelle' komutunu kullanın)."
+
+#: clientgui/ViewProjects.cpp:208
+msgid "Properties"
+msgstr "Özellikler"
+
+#: clientgui/ViewProjects.cpp:209
+msgid "Show project details."
+msgstr "Proje detaylarını görüntüler."
+
+#: clientgui/ViewProjects.cpp:219
+msgid "Account"
+msgstr "Hesap"
+
+#: clientgui/ViewProjects.cpp:221
+msgid "Work done"
+msgstr "Kredi"
+
+#: clientgui/ViewProjects.cpp:222
+msgid "Avg. work done"
+msgstr "Ortalama kredi"
+
+#: clientgui/ViewProjects.cpp:224
+msgid "Status"
+msgstr "Durum"
+
+#: clientgui/ViewProjects.cpp:249
+msgid "Projects"
+msgstr "Projeler"
+
+#: clientgui/ViewProjects.cpp:296
+msgid "Updating project..."
+msgstr "Proje güncelleniyor..."
+
+#: clientgui/ViewProjects.cpp:338
+msgid "Resuming project..."
+msgstr "Proje sürdürülüyor..."
+
+#: clientgui/ViewProjects.cpp:342
+msgid "Suspending project..."
+msgstr "Proje durduruluyor..."
+
+#: clientgui/ViewProjects.cpp:379
+msgid "Telling project to allow additional task downloads..."
+msgstr "Projeye yeni iş indirmeleri yapılabileceği bildiriliyor..."
+
+#: clientgui/ViewProjects.cpp:383
+msgid "Telling project to not fetch any additional tasks..."
+msgstr "Projeye yeni iş indirmeleri yapılmayacağı bildiriliyor..."
+
+#: clientgui/ViewProjects.cpp:419
+msgid "Resetting project..."
+msgstr "Proje sıfırlanıyor..."
+
+#: clientgui/ViewProjects.cpp:432
+#, c-format
+msgid "Are you sure you want to reset project '%s'?"
+msgstr "'%s' projesini sıfırlamak istediğinize emin misiniz?"
+
+#: clientgui/ViewProjects.cpp:438
+msgid "Reset Project"
+msgstr "Projeyi Sıfırla"
+
+#: clientgui/ViewProjects.cpp:477
+msgid "Detaching from project..."
+msgstr "Projeden ayrılıyorsunuz..."
+
+#: clientgui/ViewProjects.cpp:537
+msgid "Launching browser..."
+msgstr "Tarayıcı çalıştırılıyor..."
+
+#: clientgui/ViewProjects.cpp:703
+msgid "Resume"
+msgstr "Sürdür"
+
+#: clientgui/ViewProjects.cpp:703
+msgid "Resume tasks for this project."
+msgstr "Bu projenin işleri yeniden çalıştırılır."
+
+#: clientgui/ViewProjects.cpp:722
+msgid "Allow new tasks"
+msgstr "Yeni iÅŸler indir"
+
+#: clientgui/ViewProjects.cpp:722
+msgid "Allow fetching new tasks for this project."
+msgstr "Bu projenin yeni iÅŸler indirmesine izin verir."
+
+#: clientgui/ViewProjects.cpp:726
+msgid "Don't fetch new tasks for this project."
+msgstr "Bu projeye yeni iÅŸler indirilmez."
+
+#: clientgui/ViewProjects.cpp:1052
+msgid "Suspended by user"
+msgstr "Kullanıcı tarafından durduruldu"
+
+#: clientgui/ViewProjects.cpp:1055
+msgid "Won't get new tasks"
+msgstr "Yeni işler alınmayacak"
+
+#: clientgui/ViewProjects.cpp:1058
+msgid "Project ended - OK to detach"
+msgstr "Proje sona erdi - Ayrılmak için Tamam'a tıklayın"
+
+#: clientgui/ViewProjects.cpp:1061
+msgid "Will detach when tasks done"
+msgstr "İşler tamamlandığında ayrılacaksınız"
+
+#: clientgui/ViewProjects.cpp:1064
+msgid "Scheduler request pending"
+msgstr "Zamanlanmış istek kuyrukta"
+
+#: clientgui/ViewProjects.cpp:1068
+msgid "Scheduler request in progress"
+msgstr "Zamanlanmış istek gerçekleştiriliyor"
+
+#: clientgui/ViewProjects.cpp:1074
+msgid "Communication deferred "
+msgstr "HaberleÅŸme ertelendi "
+
+#: clientgui/ViewProjectsGrid.cpp:193
+msgid "ProjectsGrid"
+msgstr "ProjectsGrid"
+
+#: clientgui/ViewResources.cpp:61
+msgid "Total disk usage"
+msgstr "Toplam disk kullanımı"
+
+#: clientgui/ViewResources.cpp:82
+msgid "Disk usage by BOINC projects"
+msgstr "BOINC projelerinin disk kullanımı"
+
+#: clientgui/ViewResources.cpp:117
+msgid "Disk"
+msgstr "Disk"
+
+#: clientgui/ViewResources.cpp:223
+msgid "not attached to any BOINC project: 0 bytes"
+msgstr "herhangi bir BOINC projesine katılmadınız: 0 bayt"
+
+#: clientgui/ViewResources.cpp:260
+msgid "used by BOINC: "
+msgstr "BOINC tarafından kullanılan: "
+
+#: clientgui/ViewResources.cpp:270
+msgid "free, available to BOINC: "
+msgstr "boş ve BOINC tarafından kullanılabilir: "
+
+#: clientgui/ViewResources.cpp:280
+msgid "free, not available to BOINC: "
+msgstr "boş ancak BOINC tarafından kullanılamaz: "
+
+#: clientgui/ViewResources.cpp:290
+msgid "free: "
+msgstr "boÅŸ: "
+
+#: clientgui/ViewResources.cpp:300
+msgid "used by other programs: "
+msgstr "başka programlarca kullanılan: "
+
+#: clientgui/ViewStatistics.cpp:1142
+msgid "User Total"
+msgstr "Kullanıcı Toplamı"
+
+#: clientgui/ViewStatistics.cpp:1143
+msgid "User Average"
+msgstr "Kullanıcı Ortalaması"
+
+#: clientgui/ViewStatistics.cpp:1144
+msgid "Host Total"
+msgstr "Bilgisayar Toplamı"
+
+#: clientgui/ViewStatistics.cpp:1145
+msgid "Host Average"
+msgstr "Bilgisayar Ortalaması"
+
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
+msgid "Last update: %.0f days ago"
+msgstr "Son güncelleme: %.0f gün önce"
+
+#: clientgui/ViewStatistics.cpp:1745
+msgid "Show user total"
+msgstr "Kullanıcı toplamı"
+
+#: clientgui/ViewStatistics.cpp:1746
+msgid "Show total credit for user"
+msgstr "Kullanıcının toplam kredisi"
+
+#: clientgui/ViewStatistics.cpp:1752
+msgid "Show user average"
+msgstr "Kullanıcı ortalaması"
+
+#: clientgui/ViewStatistics.cpp:1753
+msgid "Show average credit for user"
+msgstr "Kullanıcının ortalama kredisi"
+
+#: clientgui/ViewStatistics.cpp:1759
+msgid "Show host total"
+msgstr "Bilgisayar toplamı"
+
+#: clientgui/ViewStatistics.cpp:1760
+msgid "Show total credit for host"
+msgstr "Bilgisayarın toplam kredisi"
+
+#: clientgui/ViewStatistics.cpp:1766
+msgid "Show host average"
+msgstr "Bilgisayar ortalaması"
+
+#: clientgui/ViewStatistics.cpp:1767
+msgid "Show average credit for host"
+msgstr "Bilgisayarın ortalama kredisi"
+
+#: clientgui/ViewStatistics.cpp:1776
+msgid "< &Previous project"
+msgstr "< &Önceki proje"
+
+#: clientgui/ViewStatistics.cpp:1777
+msgid "Show chart for previous project"
+msgstr "Önceki proje için çizelge"
+
+#: clientgui/ViewStatistics.cpp:1782
+msgid "&Next project >"
+msgstr "&Sonraki proje >"
+
+#: clientgui/ViewStatistics.cpp:1783
+msgid "Show chart for next project"
+msgstr "Sonraki proje için çizelge"
+
+#: clientgui/ViewStatistics.cpp:1788
+msgid "Mode view"
+msgstr "Görünüm kipi"
+
+#: clientgui/ViewStatistics.cpp:1791
+msgid "All projects"
+msgstr "Tüm projeler"
+
+#: clientgui/ViewStatistics.cpp:1792
+msgid "Show all projects, one chart per project"
+msgstr "Tüm projeleri, her birine ayrı bir çizelgeyle göster"
+
+#: clientgui/ViewStatistics.cpp:1798
+msgid "One project"
+msgstr "Tek proje"
+
+#: clientgui/ViewStatistics.cpp:1799
+msgid "Show one chart with selected project"
+msgstr "Seçilen projeyi tek çizelgede göster"
+
+#: clientgui/ViewStatistics.cpp:1805
+msgid "All projects(sum)"
+msgstr "Tüm projeler (özet)"
+
+#: clientgui/ViewStatistics.cpp:1806
+msgid "Show one chart with all projects"
+msgstr "Tüm projeleri tek çizelgede göster"
+
+#: clientgui/ViewStatistics.cpp:1833
+msgid "Statistics"
+msgstr "Ä°statistikler"
+
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
+msgid "Updating charts..."
+msgstr "Çizelgeler güncelleniyor..."
+
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
+msgid "Retry Now"
+msgstr "Åžimdi dene"
+
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
+msgid "Click 'Retry now' to transfer the file now"
+msgstr "Dosya aktarımını yeniden denemeyi sağlar."
+
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
+msgid "Abort Transfer"
+msgstr "Aktarımı iptal et"
+
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
+msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
+msgstr ""
+"Dosyayı aktarım kuyruğundan çıkarmayı sağlar.\n"
+"Bunu yapmak, sonuçtan kredi almanızı engelleyecektir."
+
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
+msgid "File"
+msgstr "Dosya"
+
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
+msgid "Progress"
+msgstr "Ä°lerleme"
+
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
+msgid "Size"
+msgstr "Boyut"
+
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
+msgid "Elapsed Time"
+msgstr "Geçen süre"
+
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
+msgid "Speed"
+msgstr "Hız"
+
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
+msgid "Transfers"
+msgstr "Aktarımlar"
+
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
+msgid "Retrying transfer now..."
+msgstr "Aktarım yeniden deneniyor..."
+
+#: clientgui/ViewTransfers.cpp:309
+msgid "Aborting transfer..."
+msgstr "Aktarım iptal ediliyor..."
+
+#: clientgui/ViewTransfers.cpp:322
+#, 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 ""
+"'%s'\n"
+"adlı dosyayı aktarımı iptal etmek istediğinize emin misiniz?\n"
+"NOT: Bir aktarımı durdurmak, işi geçersiz kılar ve kredi alamazsınız."
+
+#: clientgui/ViewTransfers.cpp:328
+msgid "Abort File Transfer"
+msgstr "Dosya Aktarımını İptal Et"
+
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
+msgid "Retry in "
+msgstr "Yeniden denenecek "
+
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
+msgid "Upload pending"
+msgstr "Gönderme kuyrukta"
+
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
+msgid "Download pending"
+msgstr "Ä°ndirme kuyrukta"
+
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr " (proje ertelendi: "
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ")"
+
+#: clientgui/ViewTransfersGrid.cpp:161
+msgid "TransfersGrid"
+msgstr "TransfersGrid"
+
+#: clientgui/ViewTransfersGrid.cpp:228
+msgid "Aborting transfer(s)..."
+msgstr "Aktarım(lar) iptal ediliyor..."
+
+#: clientgui/ViewTransfersGrid.cpp:230
+msgid ""
+"Are you sure you want to abort this file(s) transfer ?\n"
+"NOTE: Aborting a transfer will invalidate a task and you\n"
+"will not receive credit for it."
+msgstr ""
+"Bu dosya(ları) aktarımı iptal etmek istediğinize emin misiniz?\n"
+"NOT: Bir aktarımı iptal etmek, işi geçersiz kılar ve kredi alamazsınız."
+
+#: clientgui/ViewTransfersGrid.cpp:231
+msgid "Abort File Transfer(s)"
+msgstr "Dosya(ları) Aktarımı İptal Et"
+
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr "Faal işleri göster"
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr "Yalnızca çalışmakta olan işleri gösterir."
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
+msgid "Show application graphics in a window."
+msgstr "Uygulama grafiklerini bir pencerede gösterir."
+
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
+msgid "Suspend work for this result."
+msgstr "Seçili işlerin çalışmasını durdurur."
+
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
+msgid "Abort"
+msgstr "Ä°ptal"
+
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
+msgid "Abandon work on the result. You will get no credit for it."
+msgstr "Seçili işleri iptal eder (işten kredi alamazsınız)."
+
+#: clientgui/ViewWork.cpp:213
+msgid "Show task details."
+msgstr "Seçili işin detaylı bilgilerini gösterir."
+
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
+msgid "Name"
+msgstr "Ä°sim"
+
+#: clientgui/ViewWork.cpp:225
+msgid "Elapsed"
+msgstr "Geçen"
+
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
+msgid "To completion"
+msgstr "Kalan"
+
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
+msgid "Tasks"
+msgstr "Ä°ÅŸler"
+
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
+msgid "Resuming task..."
+msgstr "İş sürdürülüyor..."
+
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
+msgid "Suspending task..."
+msgstr "Ä°ÅŸ durduruluyor..."
+
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
+msgid "Showing graphics for task..."
+msgstr "İşin grafikleri gösteriliyor..."
+
+#: clientgui/ViewWork.cpp:426
+#, c-format
+msgid ""
+"Are you sure you want to abort this task '%s'?\n"
+"(Progress: %s, Status: %s)"
+msgstr ""
+"'%s'\n"
+"adlı işi iptal etmek istediğinize emin misiniz?\n"
+"(Ä°lerleme: %s, Durum: %s)"
+
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "Bu %d iÅŸi iptal etmek istediÄŸinize emin miziniz?"
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
+msgid "Abort task"
+msgstr "Ä°ÅŸi iptal et"
+
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "Sonuç iptal ediliyor..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr "Tüm işleri göster"
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr "Çalışan, bekleyen ve durdurulmuş tüm işleri gösterir."
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
+msgid "Resume work for this task."
+msgstr "Seçili işlerin çalışmasını sürdürür."
+
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
+msgid "Suspend work for this task."
+msgstr "Seçili işlerin çalışmasını durdurur."
+
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr "GPU mevcut deÄŸil, "
+
+#: clientgui/ViewWork.cpp:1149
+msgid " - an exclusive app is running"
+msgstr " - ayrıcalıklı bir uygulama çalışıyor"
+
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
+msgid " (non-CPU-intensive)"
+msgstr " (CPU-yoÄŸun-deÄŸil)"
+
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr "İptal edildi: Son teslim tarihi nedeniyle başlamadı"
+
+#: clientgui/ViewWorkGrid.cpp:184
+msgid "TasksGrid"
+msgstr "TasksGrid"
+
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
+msgid ""
+"Are you sure you want to abort this task '%s'?\n"
+"(Progress: %s %%, Status: %s)"
+msgstr ""
+"'%s'\n"
+"adlı işi iptal etmek istediğinize emin misiniz?\n"
+"(Ä°lerleme: %%%s, Durum: %s)"
+
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr "Projeye katıl ya da hesap yöneticisine bağlan"
+
+#: clientgui/WelcomePage.cpp:264
+#, 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 ""
+"Eğer mümkünse projeleri %s\n"
+"internet sitesinden ekleyin.\n"
+"\n"
+"Bu sihirbazla eklenen projeler, %s ile\n"
+"listelenemez ya da yönetilemez."
+
+#: clientgui/WelcomePage.cpp:277
+msgid ""
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
+"Size bir projeye katılma ya da hesap yöneticisine\n"
+"baÄŸlanma iÅŸleminde rehberlik edeceÄŸiz."
+
+#: clientgui/WelcomePage.cpp:281
+msgid ""
+"You have selected to attach to a new BOINC project.  Attaching to a new\n"
+"project means that you will be connecting your computer to a new website\n"
+"and organization.  If this is what you wanted to do, then please click on\n"
+"the 'Next' button below.\n"
+"\n"
+"Some projects like World Community Grid run multiple research applications.\n"
+"If you want to change which research applications are sent to your computer\n"
+"to run, then you should visit the project's website and modify your\n"
+"preferences there.\n"
+"\n"
+"To change which research applications are sent to you from\n"
+"World Community Grid then please click on the following button:"
+msgstr ""
+"Yeni bir BOINC projesine katılmayı seçtiniz. Bunun anlamı, bilgisayarınız bir\n"
+"internet sitesine ve organizasyonuna baÄŸlanacak. EÄŸer istediÄŸiniz buysa,\n"
+"aşağıdaki 'İleri' butonuna basın.\n"
+"\n"
+"World Community Grid gibi bazı projeler, birden fazla araştırma uygulamasına\n"
+"sahiptir. Eğer bilgisayarınıza gönderilen uygulamaları değiştirmek isterseniz,\n"
+"projenin Ä°nternet sitesini ziyaret etmeli ve buradaki tercihlerinizi deÄŸiÅŸtirmelisiniz.\n"
+"\n"
+"World Community Grid'den gönderilen araştırma uygulamalarını değiştirmek\n"
+"için lütfen aşağıdaki butona tıklayın:"
+
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr "World Community Grid'te Araştırma Uygulamalarını değiştirin"
+
+#: clientgui/WelcomePage.cpp:301
+msgid "To continue, click Next."
+msgstr "Devam etmek için, İleri'yi tıklayın."
+
+#: clientgui/WizardAttachProject.cpp:610
+msgid "Do you really want to cancel?"
+msgstr "Ä°ptal etmek istediÄŸinize emin misiniz?"
+
+#: clientgui/WizardAttachProject.cpp:611
+msgid "Question"
+msgstr "Soru"
+
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
+msgid "&Next >"
+msgstr "&Ä°leri >"
+
+#: clientgui/wizardex.cpp:383
+msgid "< &Back"
+msgstr "< &Geri"
+
+#: clientgui/wizardex.cpp:553
+msgid "&Finish"
+msgstr "&Son"
+
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
+msgid "New page inserted. Index = %i"
+msgstr "Yeni sayfa girildi. Ä°ndex = %i"
+
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
+msgid "New page appended. Index = %i"
+msgstr "New page eklendi. Ä°ndex = %i"
+
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
+msgid "Old Page Index = %i"
+msgstr "Eski Sayfa Ä°ndex'i= %i"
+
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
+msgid "OnDropTarget: index by HitTest = %i"
+msgstr "OnDropTarget: HitTest tarafından index = %i"
+
+#: clientgui/common/wxPieCtrl.cpp:66
+msgid "Pie Ctrl"
+msgstr "Pie Ctrl"
+
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr "erişilebilirlik desteği için, lütfen \"görünüm\" menüsünden \"gelişmiş\"i seçin ya da klavyeden komut+shift+a tuşlarına basın"
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr "Bu panel, kullanıcının projelerdeki toplamı ya da ortalamasıyla ilgili grafikleri içerir"
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr "boÅŸ"
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+#, fuzzy
+msgid "list of "
+msgstr "listesi"
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+#, fuzzy
+msgid " is empty"
+msgstr "liste boÅŸ"
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, fuzzy, c-format
+msgid "%d of %d; "
+msgstr "%d taneden %d "
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr "şu anki sıralama sütunu"
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr "azalan sıralama"
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr "artan sıralama"
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr "sütun"
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr "liste boÅŸ"
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr "seçili"
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, fuzzy, c-format
+msgid "row %d "
+msgstr "sıra %d "
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, fuzzy, c-format
+msgid "of %d; "
+msgstr "taneden %d"
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, fuzzy, c-format
+msgid "column %d; "
+msgstr "sütun"
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr "projeler veya hesap yöneticilerinin listesi"
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, fuzzy, c-format
+msgid "row %d of %d; "
+msgstr "sıra %d "
+
+#: clientgui/DlgAdvPreferences.h:29
+msgid "specify work start and stop hours in format HH:MM-HH:MM"
+msgstr "çalışma ve durma saatlerini SS:DD-SS:DD formatına göre belirleyin"
+
+#: clientgui/DlgAdvPreferences.h:30
+msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
+msgstr "ağ kullanım saatlerini SS:DD-SS:DD formatına göre belirleyin"
+
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "&Pencereyi Kapat\tCtrl+W"
+#~ msgid "&News\tCtrl+Shift+N"
+#~ msgstr "&Haberler\tCtrl+Shift+N"
+#~ msgid "Display news"
+#~ msgstr "Haberleri görüntüler."
+#~ msgid "&Projects\tCTRL+SHIFT+P"
+#~ msgstr "&Projeler\tCTRL+SHIFT+P"
+
diff --git a/locale/tr/BOINC-Project-Generic.po b/locale/tr/BOINC-Project-Generic.po
index 7f3490b..f7c9682 100644
--- a/locale/tr/BOINC-Project-Generic.po
+++ b/locale/tr/BOINC-Project-Generic.po
@@ -2,1190 +2,1455 @@
 # Copyright (C) 2008 University of California
 # This file is distributed under the same license as BOINC.
 # FileID  : $Id$
-msgid ""
-msgstr ""
-"Project-Id-Version: BOINC Project Generic\n"
-"Report-Msgid-Bugs-To: BOINC translation team <translate at boinc.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-09 21:36 PDT\n"
-"PO-Revision-Date: 2009-07-20 01:57+0200\n"
-"Last-Translator: Aycan Demirel <aycandemirel at hotmail.com>\n"
-"Language-Team: Donanım Haber <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.2.1\n"
-"X-Poedit-SourceCharset: utf-8\n"
-
-msgid "Search for words in forum messages"
-msgstr "Forum mesajlarında arama yap"
-
-msgid "Search forums"
-msgstr "Forumlarda ara"
-
-msgid "Advanced search"
-msgstr "GeliÅŸmiÅŸ arama"
-
-msgid "Private messages"
-msgstr "Özel mesajlar"
-
-msgid "Questions and Answers"
-msgstr "Soru ve Yanıtlar"
-
-msgid "Message boards"
-msgstr "Mesaj panoları"
-
-msgid "%1 message board"
-msgstr "%1 mesaj panosu"
-
-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 "%1 içerisinde yeni bir konu başlığı oluşturmak için, belli bir kredi miktarına sahip olmalısınız. Bu uygulamayla, sistemin kural dışı kullanımını ve suistimal edilmesini önlemeyi amaçlıyoruz."
-
-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 "Şu anda daha fazla yeni konu başlığı oluşturamazsınız. Lütfen yeniden denemek için bir süre bekleyin. Bu gecikmeyle, sistemin kural dışı kullanımını önlemeyi amaçlıyoruz."
-
-msgid "Thread"
-msgstr "Konu Başlığı"
-
-msgid "Posts"
-msgstr "Cevaplar"
-
-msgid "Author"
-msgstr "BaÅŸlatan"
-
-msgid "Views"
-msgstr "Okunma"
-
-msgid "Last post"
-msgstr "Son mesaj"
-
-msgid "Mark all threads as read"
-msgstr "Tüm konu başlıklarını okundu olarak işaretle"
-
-msgid "Mark all threads in all message boards as 'read'."
-msgstr "Tüm mesaj panolarındaki tüm konu başlıklarını 'okundu' olarak işaretler."
-
-msgid "Inbox"
-msgstr "Gelen kutusu"
-
-msgid "Write"
-msgstr "Yaz"
-
-msgid "Send private message"
-msgstr "Özel mesaj gönder"
-
-msgid "Preview"
-msgstr "Önizleme"
-
-msgid "To"
-msgstr "Alıcı"
-
-msgid "User IDs or unique usernames, separated with commas"
-msgstr "Kullanıcı ID'leri ya da benzersiz kullanıcı adları, virgülle ayrılmış"
-
-msgid "Subject"
-msgstr "Konu"
-
-msgid "Message"
-msgstr "Mesaj"
-
-msgid "Send message"
-msgstr "Mesajı yolla"
-
-msgid "You are not allowed to send privates messages so often. Please wait some time before sending more messages."
-msgstr "Çok sık şekilde özel mesaj gönderemezsiniz. Daha fazla mesaj göndermek için lütfen bir süre bekleyin."
-
-msgid "unread"
-msgstr "okunmamış"
-
-msgid "Edit your profile"
-msgstr "Profilinizi düzenleyin"
-
-msgid "Your feedback on this profile"
-msgstr "Bu profil hakkındaki fikriniz"
-
-msgid "Recommend this profile for User of the Day:"
-msgstr "Bu profili Günün Kullanıcısı için öner:"
-
-msgid "I %1like%2 this profile"
-msgstr "Bu profilden %1hoşlandım%2"
-
-msgid "Alert administrators to an offensive profile:"
-msgstr "Uygunsuz profili yöneticilere bildir:"
-
-msgid "I %1do not like%2 this profile"
-msgstr "Bu profilden %1hiç hoşlanmadım%2"
-
-msgid "Search criteria (use one or more)"
-msgstr "Arama kriterleri (birini ya da daha fazlasını kullanın)"
-
-msgid "Key words"
-msgstr "Anahtar kelimeler"
-
-msgid "Find teams with these words in their names or descriptions"
-msgstr "Takımları, isimleri ya da tanıtımlarındaki bu kelimelere göre bul"
-
-msgid "Country"
-msgstr "Ãœlke"
-
-msgid "Type of team"
-msgstr "Takımın tipi"
-
-msgid "Show only active teams"
-msgstr "Yalnızca aktif takımları göster"
-
-msgid "Search"
-msgstr "Ara"
-
-msgid "Requested by you, and founder response deadline has passed."
-msgstr "Sizin tarafınızdan istendi ve kurucunun son yanıt tarihi geçti."
-
-msgid "Complete foundership transfer"
-msgstr "Kurucu deÄŸiÅŸimini tamamla"
-
-msgid "Requested by you"
-msgstr "Sizin tarafınızdan istendi"
-
-msgid "founder response deadline is %1"
-msgstr "kurucu son yanıt tarihi %1"
-
-msgid "None"
-msgstr "Yok"
-
-msgid "Initiate request"
-msgstr "Ä°stekte bulun"
-
-msgid "Deferred"
-msgstr "Ertelendi"
-
-msgid "Team info"
-msgstr "Takım bilgisi"
-
-msgid "Description"
-msgstr "Tanıtım"
-
-msgid "Web site"
-msgstr "Ä°nternet sitesi"
-
-msgid "Total credit"
-msgstr "Toplam kredi"
-
-msgid "Recent average credit"
-msgstr "En son ortalama kredi"
-
-msgid "Cross-project stats"
-msgstr "Çapraz-proje istatistikleri"
-
-msgid "Type"
-msgstr "Tip"
-
-msgid "Message board"
-msgstr "Mesaj panosu"
-
-msgid "Threads"
-msgstr "Konu Başlıkları"
-
-msgid "Join this team"
-msgstr "Bu takıma katıl"
-
-msgid "Note: if 'OK to email' is set in your project preferences, joining a team gives its founder access to your email address."
-msgstr "Not: Eğer proje tercihlerinizde 'E-postayla onayla' ayarlıysa, takıma katılmak, kurucusunun e-posta adresinizi görmesini sağlar."
-
-msgid "Not accepting new members"
-msgstr "Yeni üyeleri kabul etmiyor"
-
-msgid "Foundership change requested"
-msgstr "Kurucu deÄŸiÅŸimi istendi"
-
-msgid "Respond by %1"
-msgstr "%1 ile yanıtla"
-
-msgid "Team foundership change"
-msgstr "Takım kurucusu değişimi"
-
-msgid "Members"
-msgstr "Ãœyeler"
-
-msgid "Founder"
-msgstr "Kurucu"
-
-msgid "Admins"
-msgstr "Yöneticiler"
-
-msgid "New members in last day"
-msgstr "Son günlerdeki yeni üyeler"
-
-msgid "Total members"
-msgstr "Toplam üye"
-
-msgid "view"
-msgstr "bak"
-
-msgid "Active members"
-msgstr "Aktif üye"
-
-msgid "Members with credit"
-msgstr "Kredisi bulunan üye"
-
-msgid "Name"
-msgstr "Ä°sim"
-
-msgid "Admin"
-msgstr "Yönetici"
-
-msgid "Last %1"
-msgstr "Son %1"
-
-msgid "Next %1"
-msgstr "Sonraki %1"
-
-msgid "No such team."
-msgstr "Eşleşen takım yok."
-
-msgid "This operation requires foundership."
-msgstr "Bu işlem kurucu olmayı gerektirir."
-
-msgid "This operation requires team admin privileges"
-msgstr "Bu işlem takım yöneticisi hakları gerektirir."
-
-msgid "Rank"
-msgstr "Sıra"
-
-msgid "%1Privacy note%2: if you create a team, your project preferences (resource share, graphics preferences) will be visible to the public."
-msgstr "%1Gizlilik notu%2: bir takım kurarsanız, proje tercihleriniz (kaynak paylaşımı, grafik tercihleri) herkese görünür olacaktır."
-
-msgid "Team name, text version"
-msgstr "Takım adı, salt metin sürümü"
-
-msgid "Don't use HTML tags."
-msgstr "HTML etiketleri kullanmayın."
-
-msgid "Team name, HTML version"
-msgstr "Takım adı, HTML sürümü"
-
-msgid "You may use %1limited HTML tags%2."
-msgstr "%1Sınırlı HTML etiketleri%2 kullanabilirsiniz."
-
-msgid "If you don't know HTML, leave this box blank."
-msgstr "HTML bilmiyorsanız, bu bölümü boş bırakın."
-
-msgid "URL of team web page, if any"
-msgstr "Mevcutsa, takımın İnternet sitesi adresi"
-
-msgid "without \"http://\""
-msgstr "\"http://\" olmadan"
-
-msgid "This URL will be linked to from the team's page on this site."
-msgstr "Belirttiğiniz URL, takımın bu sitedeki sayfasında gösterilecek."
-
-msgid "Description of team"
-msgstr "Takımın tanıtımı"
-
-msgid "Projects in which you are participating"
-msgstr "Katıldığınız projeler"
-
-msgid "Projects in which %1 is participating"
-msgstr "%1 kullanıcısının katıldığı projeler"
-
-msgid "Project"
-msgstr "Proje"
-
-msgid "Click for user page"
-msgstr "Kullanıcı safyası için tıklayın"
-
-msgid "Average credit"
-msgstr "Ortalama kredi"
-
-msgid "Since"
-msgstr "Katılma tarihi"
-
-msgid "Computing and credit"
-msgstr "Hesaplama ve kredi"
-
-msgid "Pending credit"
-msgstr "Beklenilen kredi"
-
-msgid "View"
-msgstr "Bak"
-
-msgid "Computers on this account"
-msgstr "Bu hesaptaki bilgisayarlar"
-
-msgid "Tasks"
-msgstr "Ä°ÅŸler"
-
-msgid "Cross-project ID"
-msgstr "Çapraz-proje ID"
-
-msgid "Cross-project statistics"
-msgstr "Çapraz-proje istatistikleri"
-
-msgid "Certificate"
-msgstr "Sertifika"
-
-msgid "Stats on your cell phone"
-msgstr "Ä°statistikler cep telefonuzda"
-
-msgid "Account information"
-msgstr "Hesap bilgisi"
-
-msgid "Email address"
-msgstr "E-posta adresi"
-
-msgid "URL"
-msgstr "Site"
-
-msgid "Postal code"
-msgstr "Posta Kodu"
-
-msgid "%1 member since"
-msgstr "%1 üyelik tarihi"
-
-msgid "Change"
-msgstr "DeÄŸiÅŸtir"
-
-msgid "email address"
-msgstr "e-posta adresi"
-
-msgid "password"
-msgstr "parola"
-
-msgid "other account info"
-msgstr "diÄŸer hesap bilgisi"
-
-msgid "Log out"
-msgstr "Çıkış"
-
-msgid "User ID"
-msgstr "Kullanıcı ID"
-
-msgid "Used in community functions"
-msgstr "Topluluk işlevlerinde kullanılır (özel mesaj için vs.)"
-
-msgid "Account key"
-msgstr "Hesap anahtarı"
-
-msgid "Provides full access to your account"
-msgstr "Hesabınıza tam erişimi sağlar"
-
-msgid "Weak account key"
-msgstr "Zayıf hesap anahtarı"
-
-msgid "Provides %1limited access%2 to your account"
-msgstr "Hesabınıza %1sınırlı erişimi%2 sağlar"
-
-msgid "Preferences"
-msgstr "Tercihler"
-
-msgid "When and how BOINC uses your computer"
-msgstr "BOINC bilgisayarınızı ne zaman ve nasıl kullanacak"
-
-msgid "Computing preferences"
-msgstr "Hesaplama tercihleri"
-
-msgid "Message boards and private messages"
-msgstr "Mesaj panoları ve özel mesajlar"
-
-msgid "Community preferences"
-msgstr "Topluluk tercihleri"
-
-msgid "Resource share and graphics"
-msgstr "Kaynak paylaşımı ve grafikler"
-
-msgid "%1 preferences"
-msgstr "%1 tercihleri"
-
-msgid "Community"
-msgstr "Topluluk"
-
-msgid "Delete"
-msgstr "Sil"
-
-msgid "Create"
-msgstr "OluÅŸtur"
-
-msgid "Profile"
-msgstr "Profil"
-
-msgid "%1 posts"
-msgstr "%1 gönderi"
-
-msgid "Notifications"
-msgstr " Uyarılar"
-
-msgid "Quit team"
-msgstr "Takımdan ayrıl"
-
-msgid "Administer"
-msgstr "Yönetim"
-
-msgid "(foundership change request pending)"
-msgstr "(kurucu deÄŸiÅŸim isteÄŸi beklemede)"
-
-msgid "Member of team"
-msgstr "Takım üyeliği"
-
-msgid "Team"
-msgstr "Takım"
-
-msgid "find a team"
-msgstr "bir takım bul"
-
-msgid "Founder but not member of"
-msgstr "Kurucusu fakat üyesi değil"
-
-msgid "Find friends"
-msgstr "ArkadaÅŸ bul"
-
-msgid "Friends"
-msgstr "ArkadaÅŸlar"
-
-msgid "Computers"
-msgstr "Bilgisayarlar"
-
-msgid "hidden"
-msgstr "gizli"
-
-msgid "Donor"
-msgstr "Bağışçı"
-
-msgid "Contact"
-msgstr "Ä°rtibat"
-
-msgid "This person is a friend"
-msgstr "Bu kişi arkadaşınız"
-
-msgid "Cancel friendship"
-msgstr "Arkadaşlığı bitir"
-
-msgid "Request pending"
-msgstr "Ä°stek beklemede"
-
-msgid "Add as friend"
-msgstr "ArkadaÅŸ olarak ekle"
-
-msgid "CHARSET"
-msgstr "UTF-8"
-
-msgid "Use BBCode tags to format your text"
-msgstr "Yazınızı biçimlendirmek için BBCode etiketleri kullanın"
-
-msgid "Identifies you on our web site. Use your real name or a nickname."
-msgstr "Sizi sitemizde tanıtır. Gerçek adınızı ya da takma adınızı kullanın."
-
-msgid "Select the country you want to represent, if any."
-msgstr "Temsil ettiğiniz ülkeyi seçin, eğer mevcutsa."
-
-msgid "Postal or ZIP Code"
-msgstr "Posta ya da ZIP Kodu"
-
-msgid "Optional"
-msgstr "İsteğe bağlı"
-
-msgid "Applications"
-msgstr "Uygulamalar"
-
-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 "%1 şu anda aşağıdaki uygulamalara sahip. %1 projesine katıldığınızda, bu bir ya da daha fazla uygulamaya ait işler bilgisayarınıza gönderilecek. İşleri hesaplamak için gerekli uygulamanın son sürümü de bilgisayarınıza indirilecek. Bu otomatik olarak gerçekleşecek, herhangi bir şey yapmanız gerekmeyecek."
-
-msgid "Platform"
-msgstr "Platform"
-
-msgid "Version"
-msgstr "Sürüm"
-
-msgid "Installation time"
-msgstr "Yayınlanma tarihi"
-
-msgid "You must supply an invitation code to create an account."
-msgstr "Bir hesap oluşturmak için bir davet kodu temin etmelisiniz."
-
-msgid "The invitation code you gave is not valid."
-msgstr "Sahip olduğunuz davet kodu geçersiz."
-
-msgid "Create an account"
-msgstr "Bir hesap oluÅŸtur"
-
-msgid "Account creation is disabled"
-msgstr "Hesap oluÅŸturma etkisizleÅŸtirildi"
-
-msgid "Account creation is currently disabled. Please try again later."
-msgstr "Şu anda yeni hesap oluşturma seçeneği mevcut değil. Lütfen daha sonra tekrar deneyin."
-
-msgid "NOTE: If you use BOINC version 5.2+ with the BOINC Manager, don't use this form. Just run BOINC, select Attach Project, and enter an email address and password."
-msgstr "NOT: Eğer BOINC'in 5.2+ sürümünü BOINC Manager ile kullanıyorsanız, bu formu kullanmayın. Yalnızca BOINC'i çalıştırın, Projeye katıl'ı seçin ve bir e-posta adresi ile parola girin."
-
-msgid "This account will belong to the team %1 and will have the project preferences of its founder."
-msgstr "Bu hesap %1 takımının üyesi olacak ve takım kurucusunun proje tercihlerine sahip olacak."
-
-msgid "Invitation Code"
-msgstr "Davet Kodu"
-
-msgid "A valid invitation code is required to create an account."
-msgstr "Bir hesap oluşturmak için geçerli bir davet kodu gerekiyor."
-
-msgid "Email Address"
-msgstr "E-posta Adresi"
-
-msgid "Must be a valid address of the form 'name at domain'."
-msgstr "'isim at site' biçiminde geçerli bir adres olmalı"
-
-msgid "Password"
-msgstr "Parola"
-
-msgid "Must be at least %1 characters"
-msgstr "En az %1 karakter olmalı"
-
-msgid "Confirm password"
-msgstr "Parolayı doğrula"
-
-msgid "Create account"
-msgstr "Hesap oluÅŸtur"
-
-msgid "ERROR: %1 does not exist!  Cannot create combo box.<br>"
-msgstr "HATA: %1 mevcut değil!  Giriş kutusu oluşturulamıyor.<br>"
-
-msgid "Picture"
-msgstr "Resim"
-
-msgid "%1 Your profile picture is shown to the left."
-msgstr "%1 Profil fotoğrafınız solda gösterilecek."
-
-msgid "To replace it, click the \"Browse\" button and select a JPEG or PNG file (%1 or less)."
-msgstr "Yenisiyle değiştirmek için, \"Gözat\" butonuna tıklayın ve bir JPEG veya PNG dosyası seçin (%1 ya da daha küçük)."
-
-msgid "To remove it from your profile, check this box:"
-msgstr "Profilinizden kaldırmak için, bu kutucuğu işaretleyin:"
-
-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 "Eğer profilinizin bir resim içermesini istiyorsanız, \"Gözat\" butonuna tıklayın ve bir JPEG veya PNG dosyası seçin. Lütfen %1 ya da daha küçük resim dosyalarını seçin."
-
-msgid "Language"
-msgstr "Dil"
-
-msgid "Select the language in which your profile is written:"
-msgstr "Lütfen profilinizi yazdığınız dili seçin:"
-
-msgid "Submit profile"
-msgstr "Profili gönder"
-
-msgid "To protect the project's webpages from spam, we kindly ask you to type in the two words shown in the image:<br>\n"
-msgstr "Projenin sitesini saldırılardan korumak için, resimde görülen iki kelimeyi girmenizi istemek durumundayız:<br>\n"
-
-msgid "Create/edit profile"
-msgstr "Profil oluştur/düzenle"
-
-msgid "The format of your uploaded image is not supported."
-msgstr "Gönderdiğiniz resim formatı desteklenmiyor."
-
-msgid "Your %1profile%2 lets you share your opinions and background with the %3 community."
-msgstr "%1Profiliniz%2 fikirlerinizi ve özgeçmişinizi %3 topluluğuyla paylaşmanızı sağlar."
-
-msgid "Your ReCaptcha response was not correct.  Please try again."
-msgstr "ReCaptcha yanıtınız doğru değil.  Lütfen tekrar deneyin."
-
-msgid "Your first response was flagged as spam by the Akismet anti-spam system.  Please modify your text and try again."
-msgstr "İlk yanıtınız Akismet anti-spam sistemi tarafından bir saldırı olarak algılandı.  Lütfen yazdığınızı değiştirip tekrar deneyin."
-
-msgid "Your second response was flagged as spam by the Akismet anti-spam system.  Please modify your text and try again."
-msgstr "İkinci yanıtınız Akismet anti-spam sistemi tarafından bir saldırı olarak algılandı.  Lütfen yazdığınızı değiştirip tekrar deneyin."
-
-msgid "Your profile submission was empty."
-msgstr "Gönderdiğiniz profil boş."
-
-msgid "Could not update the profile: database error"
-msgstr "Profil güncellenemedi: veritabanı hatası"
-
-msgid "Could not create the profile: database error"
-msgstr "Profil oluşturulamadı: veritabanı hatası"
-
-msgid "Profile saved"
-msgstr "Profil kaydedildi"
-
-msgid "Congratulations! Your profile was successfully entered into our database."
-msgstr "Tebrikler! Profiliniz başarıyla veritabanımıza kaydedildi."
-
-msgid "%1View your profile%2"
-msgstr "%1Profilinizi görün%2"
-
-msgid "Create a profile"
-msgstr "Bir profil oluÅŸtur"
-
-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 "Sitemize saldırıların önüne geçmek amacıyla, profil oluşturmak ve değiştirmek için ortalama kredinin %1 ya da fazlası olması gerekir.  Verdiğimiz rahatsızlık nedeniyle özür dileriz."
-
-msgid "Download BOINC add-on software"
-msgstr "BOINC eklenti programlarını indir"
-
-msgid "You can download applications in several categories."
-msgstr "Çeşitli kategorilerdeki bu uygulamaları indirebilirsiniz."
-
-msgid "These applications are not endorsed by %1 and you use them at your own risk."
-msgstr "Bu uygulamalar %1 tarafından onaylanmamıştır ve kullanmak sizin alacağınız bir risktir."
-
-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 ""
-"Bu uygulamaların kurulum yönergelerini sağlamıyoruz.\n"
-"Bununla birlikte, yazarı kurulumu ve kaldırılmasıyla ilgili yardım sağlıyor olabilir. \n"
-"Eğer bu sizin için yeterli değilse, yazarıyla irtibata geçmelisiniz. "
-
-msgid "Instructions for installing and running BOINC are %1here%2."
-msgstr "BOINC'in kurulumu ve çalıştırmasıyla ilgili talimatlar %1buradadır%2."
-
-msgid "This list is managed centrally at %1the BOINC website%2."
-msgstr "Bu liste %1BOINC internet sitesinden%2 merkezi olarak yönetilir."
-
-msgid "fll"
-msgstr "fll"
-
-msgid "Title"
-msgstr "Başlık"
-
-msgid "Add my signature to this post"
-msgstr "İmzamı bu iletiye ekle"
-
-msgid "%1 Message boards"
-msgstr "%1 Mesaj panoları"
-
-msgid "If you have a question or problem, please use the %1Questions & Answers%2 section of the message boards."
-msgstr "Bir soru ya da probleminiz varsa, lütfen mesaj panolarındaki %1Soru ve Yanıtlar%2 bölümünü kullanın."
-
-msgid "Topic"
-msgstr "Konu"
-
-msgid "Create a new thread"
-msgstr "Yeni konu başlığı oluştur"
-
-msgid "Post to thread"
-msgstr "Konu başlığına gönder"
-
-msgid "Forum search"
-msgstr "Forum ara"
-
-msgid "Forum search results"
-msgstr "Forum arama sonuçları"
-
-msgid "No thread with id %1. Please check the link and try again."
-msgstr "%1 ID'siyle bir konu başlığı mevcut değil. Lütfen bağlantıyı kontrol edip tekrar deneyin."
-
-msgid "This forum is not visible to you."
-msgstr "Bu forum sizin tarafınızdan görülebilir değil."
-
-msgid "This thread has been hidden for administrative purposes"
-msgstr "Bu konu başlığı yönetimsel amaçlar nedeniyle gizlendi"
-
-msgid "My question was answered"
-msgstr "Sorum yanıtlandı"
-
-msgid "If your question has been adequately answered please click here to close it!"
-msgstr "Eğer sorunuz yeterli şekilde yanıtlandıysa, kapatmak için lütfen buraya tıklayın!"
-
-msgid "I've also got this question"
-msgstr "Ben de aynısını soruyorum"
-
-msgid "Add a new message to this thread"
-msgstr "Bu konu başlığına yeni bir mesaj ekle"
-
-msgid "Unsubscribe"
-msgstr "AboneliÄŸi bitir"
-
-msgid "You are subscribed to this thread.  Click here to unsubscribe."
-msgstr "Bu konu başlığına abonesiniz.  Aboneliği bitirmek için tıklayın."
-
-msgid "Subscribe"
-msgstr "Abone ol"
-
-msgid "Click to get email when there are new posts in this thread"
-msgstr "Bu konu başlığına yeni mesajlar yazıldığında e-posta almak için tıklayın"
-
-msgid "Unhide"
-msgstr "Gizliliği kaldır"
-
-msgid "Unhide this thread"
-msgstr "Bu konu başlığının gizliliğini kaldırır"
-
-msgid "Hide"
-msgstr "Gizle"
-
-msgid "Hide this thread"
-msgstr "Bu konu başlığını gizler"
-
-msgid "Make unsticky"
-msgstr "Üst konudan kaldır"
-
-msgid "Make this thread not sticky"
-msgstr "Bu konu başlığının üst konu durumunu kaldır"
-
-msgid "Make sticky"
-msgstr "Ãœst konu yap"
-
-msgid "Make this thread sticky"
-msgstr "Bu konu başlığını üst konu başlığı yapar"
-
-msgid "Unlock"
-msgstr "Kilidi kaldır"
-
-msgid "Unlock this thread"
-msgstr "Bu konu başlığının kilidini kaldırır"
-
-msgid "Lock"
-msgstr "Kilitle"
-
-msgid "Lock this thread"
-msgstr "Bu konu başlığını kilitler"
-
-msgid "Move"
-msgstr "Taşı"
-
-msgid "Move this thread to a different forum"
-msgstr "Bu konu başlığını başka bir foruma taşır"
-
-msgid "Edit title"
-msgstr "Başlığı düzenle"
-
-msgid "Edit thread title"
-msgstr "Konu başlığını düzenler"
-
-msgid "Sort"
-msgstr "Sırala"
-
-msgid "Already friends"
-msgstr "Zaten arkadaÅŸ"
-
-msgid "You requested friendship with %1 on %2."
-msgstr "%1 ile %2 üzerinde arkadaşlık isteği aldınız."
-
-msgid "This request is still pending confirmation."
-msgstr "Bu istek halen onaylanmayı bekliyor."
-
-msgid "%1 is not accepting friendship requests from you"
-msgstr "%1 gönderdiğiniz arkadaşlık isteğini onaylamadı"
-
-msgid "You can't be friends with yourself"
-msgstr "Kendinizle arkadaş olamazsınız"
-
-msgid "No such user"
-msgstr "Böyle bir kullanıcı yok"
-
-msgid "Add friend"
-msgstr "ArkadaÅŸ ekle"
-
-msgid "You have asked to add %1 as a friend. We will notify %2 and will ask him/her to confirm that you are friends."
-msgstr "%1 kullanıcısını arkadaş olarak eklemek istediniz. %2 kullanıcısını uyaracağız ve arkadaşlığınızı onaylamasını isteyeceğiz."
-
-msgid "Add an optional message here:"
-msgstr "İstiyorsanız buraya bir mesaj ekleyin:"
-
-msgid "Database error"
-msgstr "Veritabanı hatası"
-
-msgid "Friend request sent"
-msgstr "Arkadaşlık isteği gönderildi"
-
-msgid "We have notified %1 of your request."
-msgstr "%1 kullanıcısını isteğiniz konusunda uyardık."
-
-msgid "Request not found"
-msgstr "İstek bulunamadı"
-
-msgid "Friend request"
-msgstr "Arkadaşlık isteği"
-
-msgid "%1 has added you as a friend."
-msgstr "%1 sizi arkadaÅŸ olarak ekledi."
-
-msgid "%1 says: %2"
-msgstr "%1 diyor ki: %2"
-
-msgid "Accept friendship"
-msgstr "Arkadaşlığı onayla"
-
-msgid "Click accept if %1 is in fact a friend"
-msgstr "%1 gerçekten arkadaşınızsa onaylamayı tıklayın"
-
-msgid "Decline"
-msgstr "Reddet"
-
-msgid "Click decline if %1 is not a friend"
-msgstr "%1 arkadaşınız değilse reddetmeyi tıklayın"
-
-msgid "No request"
-msgstr "Ä°stek yok"
-
-msgid "Friendship confirmed"
-msgstr "Arkadaşlık onaylandı"
-
-msgid "Your friendship with %1 has been confirmed."
-msgstr "%1 ile arkadaşlığınız onaylandı."
-
-msgid "Friendship declined"
-msgstr "Arkadaşlık reddedildi"
-
-msgid "You have declined friendship with %1"
-msgstr "%1 ile arkadaşlığınız reddedildi"
-
-msgid "Notification not found"
-msgstr "Uyarı bulunamadı"
-
-msgid "Friend confirmed"
-msgstr "Arkadaş onayladı"
-
-msgid "You are now friends with %1."
-msgstr "%1 ile artık arkadaşsınız."
-
-msgid "Cancel friendship?"
-msgstr "Arkadaşlığı bitir?"
-
-msgid "Are you sure you want to cancel your friendship with %1?"
-msgstr "%1 ile arkadaşlığınızı bitirmek istediğinize emin misiniz?"
-
-msgid "Yes"
-msgstr "Evet"
-
-msgid "No"
-msgstr "Hayır"
-
-msgid "Stay friends"
-msgstr "ArkadaÅŸ kal"
-
-msgid "Friendship cancelled"
-msgstr "Arkadaşlık bitirildi"
-
-msgid "Your friendship with %1 has been cancelled."
-msgstr "%1 ile arkadaşlığınız bitti."
-
-msgid "Unknown action"
-msgstr "Bilinmeyen eylem"
-
-msgid "Welcome to %1"
-msgstr "%1 projesine hoÅŸ geldiniz"
-
-msgid "View and edit your account preferences using the links below."
-msgstr "Hesap tercihlerinizi aşağıdaki bağlantılardan görüp değiştirebilirsiniz."
-
-msgid "Your account"
-msgstr "Hesabınız"
-
-msgid "Read our rules and policies"
-msgstr "Kurallarımızı ve politikamızı okuyun"
-
-msgid "Run %1 only on authorized computers"
-msgstr "%1 projesini yalnızca yetkili bilgisayarlarda çalıştırın"
-
-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 "%1 projesini yalnızca kendi bilgisayarınızda ya da sahibinin izin verdiği bilgisayarlarda çalıştırın. Bazı okul ya da şirketlerin, bilgisayarlarının %1 gibi projeler için kullanılmaması yönünde politikaları bulunabilir."
-
-msgid "How %1 will use your computer"
-msgstr "%1 bilgisayarınızı nasıl kullanacak"
-
-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 "Bilgisayarınızda %1 çalıştırdığınızda, CPU (işlemci) gücü, disk alanı ve ağ bant genişliğinin bir kısmını kullanacak. %1 projesinin bu kaynakları ne zaman ve ne kadar kullanacağını belirleyebilirsiniz."
-
-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 "Bilgisayarınız, gönderilen işleri %1 projesinin hedefleri doğrultusunda ve proje sitesinde tanımlandığı şekilde tamamlayacak. Bu kapsamda uygulama programları zaman zaman değişebilir."
-
-msgid "Privacy policy"
-msgstr "Gizlilik politikası"
-
-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 "%1 üzerindeki hesabınız, seçeceğiniz bir isimle birlikte tanınır. Bu isim, bilgisayarınızın %1 için tamamladığı işlerin özetiyle birlikte, %1 sitesinde gösterilebilir. Eğer anonim kalmak istiyorsanız, gerçek kimliğinizi ortaya çıkarmayan bir isim seçin."
-
-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 "Eğer %1 projesine katılırsanız, bilgisayarınız hakkında bilgi (örneğin işlemci tipi, bellek miktarı vb.) %1 tarafından kaydedilecek ve bilgisayarınıza ne tip iş gönderileceğinin belirlenmesinde kullanılacak. Bu bilgi %1 internet sitesinde de gösterilecek. Bilgisayarınızın konumuyla ilgili herhangi bir bilgi (örneğin etki alanı adı ya da ağ adresi) gösterilmeyecek."
-
-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 "%1 projesine katılmak için, e-postaları alacağınız bir adres vermelisiniz. Bu adres %1 internet sitesinde gösterilmeyecek ya da başka organizasyonlarla paylaşılmayacak. %1 size düzenli olarak bilgilendirme e-postaları gönderebilecek, bununla birlikte, gönderilmemesini de sağlayabilirsiniz."
-
-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 "%1 internet sitesinden gönderilen özel mesajları, yalnızca gönderen ve alan görebilir.  %1 özel mesajların içeriğini gözlemlemez ya da kontrol altında tutmaz.  Eğer başka bir %1 kullanıcısından istemediğiniz özel mesajlar alıyorsanız, onu %2mesaj filtrenize%3 ekleyebilirsiniz.  Böylece, bu kişiden gelen özel ya da herkese açık hiç bir mesajı görmezsiniz."
-
-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 "Eğer internet sitesi forumlarımızı kullanıyorsanız, %2gönderim ilkelerine%3 uymak zorundasınız.  %1 forumlarına gönderilen mesajlar herkes tarafından görülebilir, buna üye olmayanlar da dahildir.  Forumlara mesaj göndermekle, mesajların herhangi biri tarafından görülmesi ve kopyalanmasını kabul etmiş ve içeriği üzerindeki haklarınızdan vazgeçmiş oluyorsunuz."
-
-msgid "Is it safe to run %1?"
-msgstr "%1 çalıştırmak güvenli midir?"
-
-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 "İnternetten herhangi bir zamanda bir program indirdiğinizde, bazı olasılıkları göze almaktasınız: programın tehlikeli hataları bulunabilir ya da indirme sunucusu hack'lenmiş olabilir. %1 bu riskleri en aza indirmeye gayret etmekte. Uygulamalarımızı dikkalice test etmekteyiz. Sunucularımız bir güvenlik duvarı arkasında bulunuyor ve yüksek güvenlik için yapılandırılıyor. İndirilen programların doğruluğunu sağlamak için, tüm çalıştırılabilir dosyalar internete bağlı olmayan güvenli bir bilgisayarda dijital olarak imzalanıyor."
-
-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 "%1 tarafından çalıştırılan uygulamalar, bazı bilgisayarların fazla ısınmasına neden olabilir. Bu gerçekleşirse, %1 kullanmayı durdurun ya da CPU (işlemci) kullanımını sınırlayan bir %2yardımcı program%3 kullanın."
-
-msgid "%1 was developed by %2. BOINC was developed at the University of California."
-msgstr "%1, %2 tarafından geliştirildi. BOINC, University of California'da geliştirildi."
-
-msgid "Liability"
-msgstr "Sorumluluk"
-
-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 "%1 ve %2, %1 projesine katılmakla bilgisayarınızda oluşabilecek bir hasarı, veri kaybını ya da oluşabilecek başka olayların sonuçlarını üstlenmez."
-
-msgid "Other BOINC projects"
-msgstr "DiÄŸer BOINC projeleri"
-
-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 "Diğer projeler, %1 ile aynı platformu kullanır, yani BOINC'i. Bir ya da daha fazla projeye daha katılmayı düşünebilirsiniz. Böylece, bilgisayarınız %1 için bir iş bulunmadığı zamanlarda da faydalı olmayı sürdürebilir."
-
-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 "Bu diğer projeler, %1 ile ortak değildir ve onların güvenlik yöntemlerine ya da araştırmalarının doğasına kefil olmayız. Diğer projelere, riski kendinize ait olmak üzere katılın."
-
-msgid "LANG_NAME_INTERNATIONAL"
-msgstr "Turkish"
-
-msgid "LANG_NAME_NATIVE"
-msgstr "Türkçe"
-
-msgid "Your message has been sent."
-msgstr "Mesajınız gönderildi."
-
-msgid "You have no private messages."
-msgstr "Özel mesajınız bulunmuyor."
-
-msgid "Sender and date"
-msgstr "Gönderen ve tarih"
-
-msgid "Reply"
-msgstr "Yanıtla"
-
-msgid "Delete selected messages"
-msgstr "Seçili mesajları sil"
-
-msgid "Sender"
-msgstr "Gönderen"
-
-msgid "Date"
-msgstr "Tarih"
-
-msgid "You need to fill all fields to send a private message"
-msgstr "Özel mesaj göndermek için tüm alanları doldurmalısınız"
-
-msgid "Could not find user with id %1"
-msgstr "%1 ID'siyle bir kullanıcı bulunamadı"
-
-msgid "Could not find user with username %1"
-msgstr "%1 adında bir kullanıcı bulunamadı."
-
-msgid "%1 is not a unique username; you will have to use user ID"
-msgstr "%1 benzersiz bir kullanıcı adı değil; kullanıcının ID numarasını kullanmalısınız"
-
-msgid "User %1 (ID: %2) is not accepting private messages from you."
-msgstr "%1 kullanıcısı (ID: %2) sizden gelen özel mesajları kabul etmiyor."
-
-msgid "Really block %1?"
-msgstr "%1 gerçekten engellensin mi?"
-
-msgid "Are you really sure you want to block user %1 from sending you private messages?"
-msgstr "%1 kullanıcısının size özel mesaj göndermesini engellemek istediğinize emin misiniz?"
-
-msgid "Please note that you can only block a limited amount of users."
-msgstr "Unutmayın ki, yalnızca sınırlı sayıda kullanıcıyı engelleyebilirsiniz."
-
-msgid "Once the user has been blocked you can unblock it using forum preferences page."
-msgstr "Bir kullanıcı engellendiğinizde, engelini forum tercihleri sayfasından kaldırabilirsiniz."
-
-msgid "Add user to filter"
-msgstr "Kullanıcıyı filtreye ekle"
-
-msgid "No, cancel"
-msgstr "Hayır, iptal"
-
-msgid "User %1 blocked"
-msgstr "%1 kullancısı engellendi"
-
-msgid "User %1 has been blocked from sending you private messages."
-msgstr "%1 kullanıcısının size özel mesaj göndermesi engellendi."
-
-msgid "To unblock, visit %1message board preferences%2"
-msgstr "Engellemeyi kaldırmak için, %1forum tercihlerini%2 ziyaret edin"
-
-msgid "Profiles"
-msgstr "Profiller"
-
-msgid "%1Profiles%2 let individuals share backgrounds and opinions with the %3 community."
-msgstr "%1Profilller%2, fikirlerinizi ve özgeçmişinizi %3 topluluğuyla paylaşmanızı sağlar."
-
-msgid "Explore the diversity of your fellow volunteers, and contribute your own views for others to enjoy."
-msgstr "Sizin gibi düşünen gönüllüleri arayın ve görüşlerinizle diğerlerine katkıda bulunun."
-
-msgid "If you haven't already, you can %1create your own user profile%2 for others to see!"
-msgstr "Sahip değilseniz, diğerlerinin görmesi için %1kendi kullanıcı profilinizi oluşturabilirsiniz%2."
-
-msgid "User of the Day"
-msgstr "Günün Kullanıcısı"
-
-msgid "User Profile Explorer"
-msgstr "Kullancı Profili Gezgini"
-
-msgid "View the %1User Picture Gallery%2."
-msgstr "%1Kullancı Resim Galerisine%2 bak."
-
-msgid "Browse profiles %1by country%2."
-msgstr "Profillere %1ülkelerine göre%2 gözat."
-
-msgid "Browse profiles %1at random%2, %3at random with pictures%2, or %4at random without pictures%2."
-msgstr "Profillere %1rasgele%2, %3resimlerle rasgele%2 ya da %4resimler olmadan rasgele%2 gözat."
-
-msgid "Alphabetical profile listings:"
-msgstr "Alfabetik profil listesi:"
-
-msgid "Search profile text"
-msgstr "Profil yazısında ara"
-
-msgid "No profiles"
-msgstr "Profil yok"
-
-msgid "No profiles matched your query."
-msgstr "Aramanızla eşleşen profil yok."
-
-msgid "Invalid vote type:"
-msgstr "Geçersiz oy tipi:"
-
-msgid "Vote Recorded"
-msgstr "Oy Kaydedildi"
-
-msgid "Thank you"
-msgstr "Teşekkürler"
-
-msgid "Your recommendation has been recorded."
-msgstr "Öneriniz kaydedildi."
-
-msgid "Your vote to reject this profile has been recorded."
-msgstr "Bu profilin çıkarılması konusundaki oyunuz kaydedildi."
-
-msgid "Return to profile."
-msgstr "Profile dön."
-
-msgid "This feature is turned off temporarily"
-msgstr "Bu özellik geçici olarak kapatıldı"
-
-msgid "No computer with ID %1 found"
-msgstr "%1 ID'siyle bilgisayar bulunamadı"
-
-msgid "Tasks for computer %1"
-msgstr "%1 bilgisayarı için işler"
-
-msgid "No access"
-msgstr "EriÅŸim yok"
-
-msgid "Missing user ID or host ID"
-msgstr "Eksik kullanıcı ID ya da sunucu ID"
-
-msgid "User of the day"
-msgstr "Günün kullanıcısı"
-
-msgid "Account data for %1"
-msgstr "%1 için hesap bilgisi"
-
-msgid "Statistics and leaderboards"
-msgstr "Ä°statistikler ve en iyiler listeleri"
-
-msgid "Statistics for %1"
-msgstr "%1 için istatistikler"
-
-msgid "Top participants"
-msgstr "En iyi katılımcılar"
-
-msgid "Top computers"
-msgstr "En iyi bilgisayarlar"
-
-msgid "Top teams"
-msgstr "En iyi takımlar"
-
-msgid "More detailed statistics for %1 and other BOINC-based projects are available at several web sites:"
-msgstr "%1 ve çeşitli BOINC-tabanlı projeler için daha detaylı istatistikler, çeşitli internet sitelerinde mevcuttur:"
-
-msgid "You can also get your current statistics in the form of a \"signature image\":"
-msgstr "Güncel istatistiklerinizi, bir \"imza resmi\" biçiminde de görebilirsiniz:"
-
-msgid "Additionally you can get your individual statistics summed across all BOINC projects from several sites; see your %1home page%2."
-msgstr "Ek olarak, tüm BOINC projelerindeki kişisel istatistiklerinizin özetini de çeşitli sitelerden alabilirsiniz; %1ana sayfanıza%2 bakın."
-
-msgid "%1 participants may form %2teams%3"
-msgstr "%1 katılımcıları %2takımlara%3 katılabilir."
-
-msgid "You may belong to only one team. You can join or quit a team at any time."
-msgstr "Aynı anda yalnızca bir takımın üyesi olabilirsiniz. Bir takıma istediğiniz zaman katılıp ayrılabilirsiniz."
-
-msgid "Each team has a %1founder%2 who may:"
-msgstr "Her takım şunları yapabilen bir %1kurucuya%2 sahiptir:"
-
-msgid "access team members' email addresses"
-msgstr "Takım üyelerinin e-posta adreslerini görme"
-
-msgid "edit the team's name and description"
-msgstr "Takımın ismini ve tanıtımını düzenleme"
-
-msgid "remove members from the team"
-msgstr "Takımdan bir üyeyi çıkarma"
-
-msgid "disband a team if it has no members"
-msgstr "Üyesi yoksa bir takımı kaldırma."
-
-msgid "To join a team, visit its team page and click %1Join this team%2."
-msgstr "Bir takıma katılmak için, takımın sayfasını ziyaret edin ve %1Bu takıma katıl%2 bağlantısına tıklayın."
-
-msgid "Find a team"
-msgstr "Bir takım bul"
-
-msgid "All teams"
-msgstr "Tüm takımlar"
-
-msgid "%1 teams"
-msgstr "%1 takımları"
-
-msgid "Create a new team"
-msgstr "Yeni bir takım oluştur"
-
-msgid "If you cannot find a team that is right for you, you can %1create a team%2."
-msgstr "Size göre bir takım bulamadıysanız, %1bir takım oluşturabilirsiniz%2."
-
-msgid "You must choose a non-blank team name"
-msgstr "Boş olmayan bir takım adı seçmelisiniz."
-
-msgid "A team named %1 already exists - try another name"
-msgstr "%1 adında bir takım zaten mevcut - lütfen başka bir isim deneyin."
-
-msgid "Could not create team - please try later."
-msgstr "Takım oluşturulamadı - lütfen tekrar deneyin."
-
-msgid "Create a team"
-msgstr "Takım oluştur"
-
-msgid "You belong to %1. You must %2quit this team%3 before creating a new one."
-msgstr "%1 üyesisiniz. Yeni bir tane oluşturmadan önce %2bu takımdan ayrılmalısınız%3."
-
-msgid "Top hosts"
-msgstr "En iyi sunucular"
-
-msgid "Top %1 teams"
-msgstr "En iyi %1 takımlar"
-
-msgid "Participant since"
-msgstr "Katılım tarihi"
-
-msgid "This user has no profile"
-msgstr "Bu kullanıcının profili yok"
-
-msgid "Account data"
-msgstr "Hesap bilgisi"
-
-msgid "Your 'weak account key' lets you attach computers to your account on this project, without giving the ability to log in to your account or to change it in any way."
-msgstr "'Zayıf hesap anahtarınız',  bu projedeki hesabınıza bilgisayarlar eklemenizi sağlar, ancak, söz konusu bilgisayarlardan hesabınıza giriş yapılamaz ve hesabınız değiştirilemez."
-
-msgid "This mechanism works only with projects that have upgraded their server software 7 Dec 2007 or later."
-msgstr "Bu mekanizma, sunucu yazılımlarını 7 Aralık 2007 ya da daha sonraki tarihli sürüme yükseltmiş projelerde çalışır."
-
-msgid "Your weak account key for this project is:"
-msgstr "Bu proje için zayıf hesap anahtarınız:"
-
-msgid "To use your weak account key on a given host, find or create the 'account file' for this project. This file has a name of the form <b>account_PROJECT_URL.xml</b>. The account file for %1 is <b>%2</b>."
-msgstr "Bir bilgisayarda zayıf hesap anahtarınızı kullanmak için, bu proje için 'hesap dosyası'nı bulun ya da oluşturun. Söz konusu dosya, <b>account_PROJE_URL'si.xml</b> biçiminde bir isme sahiptir. %1 için hesap dosyası <b>%2</b> biçimindedir."
-
-msgid "Create this file if needed. Set its contents to:"
-msgstr "Gerekiyorsa bu dosyayı oluşturun. İçeriğini şu şekilde yapın:"
-
-msgid "Your weak account key is a function of your password. If you change your password, your weak account key changes, and your previous weak account key becomes invalid."
-msgstr "Zayıf hesap anahtarınız, parolanıza bağlı bir işlevdir. Parolanızı değiştirirseniz, zayıf hesap anahtarınız da değişir ve önceki zayıf hesap anahtarınız geçersiz hale gelir."
-
+msgid ""
+msgstr ""
+"Project-Id-Version: BOINC Project Generic\n"
+"Report-Msgid-Bugs-To: BOINC translation team <translate at boinc.berkeley.edu>\n"
+"POT-Creation-Date: 2009-05-09 21:36 PDT\n"
+"PO-Revision-Date: 2009-07-20 01:57+0200\n"
+"Last-Translator: Aycan Demirel <aycandemirel at hotmail.com>\n"
+"Language-Team: Donanım Haber <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.2.1\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+msgid "Search for words in forum messages"
+msgstr "Forum mesajlarında arama yap"
+
+msgid "Search forums"
+msgstr "Forumlarda ara"
+
+msgid "Advanced search"
+msgstr "GeliÅŸmiÅŸ arama"
+
+msgid "Private messages"
+msgstr "Özel mesajlar"
+
+msgid "Questions and Answers"
+msgstr "Soru ve Yanıtlar"
+
+msgid "Message boards"
+msgstr "Mesaj panoları"
+
+msgid "%1 message board"
+msgstr "%1 mesaj panosu"
+
+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 ""
+"%1 içerisinde yeni bir konu başlığı oluşturmak için, belli bir kredi "
+"miktarına sahip olmalısınız. Bu uygulamayla, sistemin kural dışı kullanımını "
+"ve suistimal edilmesini önlemeyi amaçlıyoruz."
+
+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 ""
+"Şu anda daha fazla yeni konu başlığı oluşturamazsınız. Lütfen yeniden "
+"denemek için bir süre bekleyin. Bu gecikmeyle, sistemin kural dışı "
+"kullanımını önlemeyi amaçlıyoruz."
+
+msgid "Thread"
+msgstr "Konu Başlığı"
+
+msgid "Posts"
+msgstr "Cevaplar"
+
+msgid "Author"
+msgstr "BaÅŸlatan"
+
+msgid "Views"
+msgstr "Okunma"
+
+msgid "Last post"
+msgstr "Son mesaj"
+
+msgid "Mark all threads as read"
+msgstr "Tüm konu başlıklarını okundu olarak işaretle"
+
+msgid "Mark all threads in all message boards as 'read'."
+msgstr ""
+"Tüm mesaj panolarındaki tüm konu başlıklarını 'okundu' olarak işaretler."
+
+msgid "Inbox"
+msgstr "Gelen kutusu"
+
+msgid "Write"
+msgstr "Yaz"
+
+msgid "Send private message"
+msgstr "Özel mesaj gönder"
+
+msgid "Preview"
+msgstr "Önizleme"
+
+msgid "To"
+msgstr "Alıcı"
+
+msgid "User IDs or unique usernames, separated with commas"
+msgstr "Kullanıcı ID'leri ya da benzersiz kullanıcı adları, virgülle ayrılmış"
+
+msgid "Subject"
+msgstr "Konu"
+
+msgid "Message"
+msgstr "Mesaj"
+
+msgid "Send message"
+msgstr "Mesajı yolla"
+
+msgid ""
+"You are not allowed to send privates messages so often. Please wait some "
+"time before sending more messages."
+msgstr ""
+"Çok sık şekilde özel mesaj gönderemezsiniz. Daha fazla mesaj göndermek için "
+"lütfen bir süre bekleyin."
+
+msgid "unread"
+msgstr "okunmamış"
+
+msgid "Edit your profile"
+msgstr "Profilinizi düzenleyin"
+
+msgid "Your feedback on this profile"
+msgstr "Bu profil hakkındaki fikriniz"
+
+msgid "Recommend this profile for User of the Day:"
+msgstr "Bu profili Günün Kullanıcısı için öner:"
+
+msgid "I %1like%2 this profile"
+msgstr "Bu profilden %1hoşlandım%2"
+
+msgid "Alert administrators to an offensive profile:"
+msgstr "Uygunsuz profili yöneticilere bildir:"
+
+msgid "I %1do not like%2 this profile"
+msgstr "Bu profilden %1hiç hoşlanmadım%2"
+
+msgid "Search criteria (use one or more)"
+msgstr "Arama kriterleri (birini ya da daha fazlasını kullanın)"
+
+msgid "Key words"
+msgstr "Anahtar kelimeler"
+
+msgid "Find teams with these words in their names or descriptions"
+msgstr "Takımları, isimleri ya da tanıtımlarındaki bu kelimelere göre bul"
+
+msgid "Country"
+msgstr "Ãœlke"
+
+msgid "Type of team"
+msgstr "Takımın tipi"
+
+msgid "Show only active teams"
+msgstr "Yalnızca aktif takımları göster"
+
+msgid "Search"
+msgstr "Ara"
+
+msgid "Requested by you, and founder response deadline has passed."
+msgstr "Sizin tarafınızdan istendi ve kurucunun son yanıt tarihi geçti."
+
+msgid "Complete foundership transfer"
+msgstr "Kurucu deÄŸiÅŸimini tamamla"
+
+msgid "Requested by you"
+msgstr "Sizin tarafınızdan istendi"
+
+msgid "founder response deadline is %1"
+msgstr "kurucu son yanıt tarihi %1"
+
+msgid "None"
+msgstr "Yok"
+
+msgid "Initiate request"
+msgstr "Ä°stekte bulun"
+
+msgid "Deferred"
+msgstr "Ertelendi"
+
+msgid "Team info"
+msgstr "Takım bilgisi"
+
+msgid "Description"
+msgstr "Tanıtım"
+
+msgid "Web site"
+msgstr "Ä°nternet sitesi"
+
+msgid "Total credit"
+msgstr "Toplam kredi"
+
+msgid "Recent average credit"
+msgstr "En son ortalama kredi"
+
+msgid "Cross-project stats"
+msgstr "Çapraz-proje istatistikleri"
+
+msgid "Type"
+msgstr "Tip"
+
+msgid "Message board"
+msgstr "Mesaj panosu"
+
+msgid "Threads"
+msgstr "Konu Başlıkları"
+
+msgid "Join this team"
+msgstr "Bu takıma katıl"
+
+msgid ""
+"Note: if 'OK to email' is set in your project preferences, joining a team "
+"gives its founder access to your email address."
+msgstr ""
+"Not: Eğer proje tercihlerinizde 'E-postayla onayla' ayarlıysa, takıma "
+"katılmak, kurucusunun e-posta adresinizi görmesini sağlar."
+
+msgid "Not accepting new members"
+msgstr "Yeni üyeleri kabul etmiyor"
+
+msgid "Foundership change requested"
+msgstr "Kurucu deÄŸiÅŸimi istendi"
+
+msgid "Respond by %1"
+msgstr "%1 ile yanıtla"
+
+msgid "Team foundership change"
+msgstr "Takım kurucusu değişimi"
+
+msgid "Members"
+msgstr "Ãœyeler"
+
+msgid "Founder"
+msgstr "Kurucu"
+
+msgid "Admins"
+msgstr "Yöneticiler"
+
+msgid "New members in last day"
+msgstr "Son günlerdeki yeni üyeler"
+
+msgid "Total members"
+msgstr "Toplam üye"
+
+msgid "view"
+msgstr "bak"
+
+msgid "Active members"
+msgstr "Aktif üye"
+
+msgid "Members with credit"
+msgstr "Kredisi bulunan üye"
+
+msgid "Name"
+msgstr "Ä°sim"
+
+msgid "Admin"
+msgstr "Yönetici"
+
+msgid "Last %1"
+msgstr "Son %1"
+
+msgid "Next %1"
+msgstr "Sonraki %1"
+
+msgid "No such team."
+msgstr "Eşleşen takım yok."
+
+msgid "This operation requires foundership."
+msgstr "Bu işlem kurucu olmayı gerektirir."
+
+msgid "This operation requires team admin privileges"
+msgstr "Bu işlem takım yöneticisi hakları gerektirir."
+
+msgid "Rank"
+msgstr "Sıra"
+
+msgid ""
+"%1Privacy note%2: if you create a team, your project preferences (resource "
+"share, graphics preferences) will be visible to the public."
+msgstr ""
+"%1Gizlilik notu%2: bir takım kurarsanız, proje tercihleriniz (kaynak "
+"paylaşımı, grafik tercihleri) herkese görünür olacaktır."
+
+msgid "Team name, text version"
+msgstr "Takım adı, salt metin sürümü"
+
+msgid "Don't use HTML tags."
+msgstr "HTML etiketleri kullanmayın."
+
+msgid "Team name, HTML version"
+msgstr "Takım adı, HTML sürümü"
+
+msgid "You may use %1limited HTML tags%2."
+msgstr "%1Sınırlı HTML etiketleri%2 kullanabilirsiniz."
+
+msgid "If you don't know HTML, leave this box blank."
+msgstr "HTML bilmiyorsanız, bu bölümü boş bırakın."
+
+msgid "URL of team web page, if any"
+msgstr "Mevcutsa, takımın İnternet sitesi adresi"
+
+msgid "without \"http://\""
+msgstr "\"http://\" olmadan"
+
+msgid "This URL will be linked to from the team's page on this site."
+msgstr "Belirttiğiniz URL, takımın bu sitedeki sayfasında gösterilecek."
+
+msgid "Description of team"
+msgstr "Takımın tanıtımı"
+
+msgid "Projects in which you are participating"
+msgstr "Katıldığınız projeler"
+
+msgid "Projects in which %1 is participating"
+msgstr "%1 kullanıcısının katıldığı projeler"
+
+msgid "Project"
+msgstr "Proje"
+
+msgid "Click for user page"
+msgstr "Kullanıcı safyası için tıklayın"
+
+msgid "Average credit"
+msgstr "Ortalama kredi"
+
+msgid "Since"
+msgstr "Katılma tarihi"
+
+msgid "Computing and credit"
+msgstr "Hesaplama ve kredi"
+
+msgid "Pending credit"
+msgstr "Beklenilen kredi"
+
+msgid "View"
+msgstr "Bak"
+
+msgid "Computers on this account"
+msgstr "Bu hesaptaki bilgisayarlar"
+
+msgid "Tasks"
+msgstr "Ä°ÅŸler"
+
+msgid "Cross-project ID"
+msgstr "Çapraz-proje ID"
+
+msgid "Cross-project statistics"
+msgstr "Çapraz-proje istatistikleri"
+
+msgid "Certificate"
+msgstr "Sertifika"
+
+msgid "Stats on your cell phone"
+msgstr "Ä°statistikler cep telefonuzda"
+
+msgid "Account information"
+msgstr "Hesap bilgisi"
+
+msgid "Email address"
+msgstr "E-posta adresi"
+
+msgid "URL"
+msgstr "Site"
+
+msgid "Postal code"
+msgstr "Posta Kodu"
+
+msgid "%1 member since"
+msgstr "%1 üyelik tarihi"
+
+msgid "Change"
+msgstr "DeÄŸiÅŸtir"
+
+msgid "email address"
+msgstr "e-posta adresi"
+
+msgid "password"
+msgstr "parola"
+
+msgid "other account info"
+msgstr "diÄŸer hesap bilgisi"
+
+msgid "Log out"
+msgstr "Çıkış"
+
+msgid "User ID"
+msgstr "Kullanıcı ID"
+
+msgid "Used in community functions"
+msgstr "Topluluk işlevlerinde kullanılır (özel mesaj için vs.)"
+
+msgid "Account key"
+msgstr "Hesap anahtarı"
+
+msgid "Provides full access to your account"
+msgstr "Hesabınıza tam erişimi sağlar"
+
+msgid "Weak account key"
+msgstr "Zayıf hesap anahtarı"
+
+msgid "Provides %1limited access%2 to your account"
+msgstr "Hesabınıza %1sınırlı erişimi%2 sağlar"
+
+msgid "Preferences"
+msgstr "Tercihler"
+
+msgid "When and how BOINC uses your computer"
+msgstr "BOINC bilgisayarınızı ne zaman ve nasıl kullanacak"
+
+msgid "Computing preferences"
+msgstr "Hesaplama tercihleri"
+
+msgid "Message boards and private messages"
+msgstr "Mesaj panoları ve özel mesajlar"
+
+msgid "Community preferences"
+msgstr "Topluluk tercihleri"
+
+msgid "Resource share and graphics"
+msgstr "Kaynak paylaşımı ve grafikler"
+
+msgid "%1 preferences"
+msgstr "%1 tercihleri"
+
+msgid "Community"
+msgstr "Topluluk"
+
+msgid "Delete"
+msgstr "Sil"
+
+msgid "Create"
+msgstr "OluÅŸtur"
+
+msgid "Profile"
+msgstr "Profil"
+
+msgid "%1 posts"
+msgstr "%1 gönderi"
+
+msgid "Notifications"
+msgstr " Uyarılar"
+
+msgid "Quit team"
+msgstr "Takımdan ayrıl"
+
+msgid "Administer"
+msgstr "Yönetim"
+
+msgid "(foundership change request pending)"
+msgstr "(kurucu deÄŸiÅŸim isteÄŸi beklemede)"
+
+msgid "Member of team"
+msgstr "Takım üyeliği"
+
+msgid "Team"
+msgstr "Takım"
+
+msgid "find a team"
+msgstr "bir takım bul"
+
+msgid "Founder but not member of"
+msgstr "Kurucusu fakat üyesi değil"
+
+msgid "Find friends"
+msgstr "ArkadaÅŸ bul"
+
+msgid "Friends"
+msgstr "ArkadaÅŸlar"
+
+msgid "Computers"
+msgstr "Bilgisayarlar"
+
+msgid "hidden"
+msgstr "gizli"
+
+msgid "Donor"
+msgstr "Bağışçı"
+
+msgid "Contact"
+msgstr "Ä°rtibat"
+
+msgid "This person is a friend"
+msgstr "Bu kişi arkadaşınız"
+
+msgid "Cancel friendship"
+msgstr "Arkadaşlığı bitir"
+
+msgid "Request pending"
+msgstr "Ä°stek beklemede"
+
+msgid "Add as friend"
+msgstr "ArkadaÅŸ olarak ekle"
+
+msgid "CHARSET"
+msgstr "UTF-8"
+
+msgid "Use BBCode tags to format your text"
+msgstr "Yazınızı biçimlendirmek için BBCode etiketleri kullanın"
+
+msgid "Identifies you on our web site. Use your real name or a nickname."
+msgstr "Sizi sitemizde tanıtır. Gerçek adınızı ya da takma adınızı kullanın."
+
+msgid "Select the country you want to represent, if any."
+msgstr "Temsil ettiğiniz ülkeyi seçin, eğer mevcutsa."
+
+msgid "Postal or ZIP Code"
+msgstr "Posta ya da ZIP Kodu"
+
+msgid "Optional"
+msgstr "İsteğe bağlı"
+
+msgid "Applications"
+msgstr "Uygulamalar"
+
+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 ""
+"%1 şu anda aşağıdaki uygulamalara sahip. %1 projesine katıldığınızda, bu bir "
+"ya da daha fazla uygulamaya ait işler bilgisayarınıza gönderilecek. İşleri "
+"hesaplamak için gerekli uygulamanın son sürümü de bilgisayarınıza "
+"indirilecek. Bu otomatik olarak gerçekleşecek, herhangi bir şey yapmanız "
+"gerekmeyecek."
+
+msgid "Platform"
+msgstr "Platform"
+
+msgid "Version"
+msgstr "Sürüm"
+
+msgid "Installation time"
+msgstr "Yayınlanma tarihi"
+
+msgid "You must supply an invitation code to create an account."
+msgstr "Bir hesap oluşturmak için bir davet kodu temin etmelisiniz."
+
+msgid "The invitation code you gave is not valid."
+msgstr "Sahip olduğunuz davet kodu geçersiz."
+
+msgid "Create an account"
+msgstr "Bir hesap oluÅŸtur"
+
+msgid "Account creation is disabled"
+msgstr "Hesap oluÅŸturma etkisizleÅŸtirildi"
+
+msgid "Account creation is currently disabled. Please try again later."
+msgstr ""
+"Şu anda yeni hesap oluşturma seçeneği mevcut değil. Lütfen daha sonra tekrar "
+"deneyin."
+
+msgid ""
+"NOTE: If you use BOINC version 5.2+ with the BOINC Manager, don't use this "
+"form. Just run BOINC, select Attach Project, and enter an email address and "
+"password."
+msgstr ""
+"NOT: Eğer BOINC'in 5.2+ sürümünü BOINC Manager ile kullanıyorsanız, bu formu "
+"kullanmayın. Yalnızca BOINC'i çalıştırın, Projeye katıl'ı seçin ve bir "
+"e-posta adresi ile parola girin."
+
+msgid ""
+"This account will belong to the team %1 and will have the project "
+"preferences of its founder."
+msgstr ""
+"Bu hesap %1 takımının üyesi olacak ve takım kurucusunun proje tercihlerine "
+"sahip olacak."
+
+msgid "Invitation Code"
+msgstr "Davet Kodu"
+
+msgid "A valid invitation code is required to create an account."
+msgstr "Bir hesap oluşturmak için geçerli bir davet kodu gerekiyor."
+
+msgid "Email Address"
+msgstr "E-posta Adresi"
+
+msgid "Must be a valid address of the form 'name at domain'."
+msgstr "'isim at site' biçiminde geçerli bir adres olmalı"
+
+msgid "Password"
+msgstr "Parola"
+
+msgid "Must be at least %1 characters"
+msgstr "En az %1 karakter olmalı"
+
+msgid "Confirm password"
+msgstr "Parolayı doğrula"
+
+msgid "Create account"
+msgstr "Hesap oluÅŸtur"
+
+msgid "ERROR: %1 does not exist!  Cannot create combo box.<br>"
+msgstr "HATA: %1 mevcut değil!  Giriş kutusu oluşturulamıyor.<br>"
+
+msgid "Picture"
+msgstr "Resim"
+
+msgid "%1 Your profile picture is shown to the left."
+msgstr "%1 Profil fotoğrafınız solda gösterilecek."
+
+msgid ""
+"To replace it, click the \"Browse\" button and select a JPEG or PNG file (%1 "
+"or less)."
+msgstr ""
+"Yenisiyle değiştirmek için, \"Gözat\" butonuna tıklayın ve bir JPEG veya PNG "
+"dosyası seçin (%1 ya da daha küçük)."
+
+msgid "To remove it from your profile, check this box:"
+msgstr "Profilinizden kaldırmak için, bu kutucuğu işaretleyin:"
+
+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 ""
+"Eğer profilinizin bir resim içermesini istiyorsanız, \"Gözat\" butonuna "
+"tıklayın ve bir JPEG veya PNG dosyası seçin. Lütfen %1 ya da daha küçük "
+"resim dosyalarını seçin."
+
+msgid "Language"
+msgstr "Dil"
+
+msgid "Select the language in which your profile is written:"
+msgstr "Lütfen profilinizi yazdığınız dili seçin:"
+
+msgid "Submit profile"
+msgstr "Profili gönder"
+
+msgid ""
+"To protect the project's webpages from spam, we kindly ask you to type in "
+"the two words shown in the image:<br>\n"
+msgstr "Projenin sitesini saldırılardan korumak için, resimde görülen iki kelimeyi "
+"girmenizi istemek durumundayız:<br>\n"
+
+msgid "Create/edit profile"
+msgstr "Profil oluştur/düzenle"
+
+msgid "The format of your uploaded image is not supported."
+msgstr "Gönderdiğiniz resim formatı desteklenmiyor."
+
+msgid ""
+"Your %1profile%2 lets you share your opinions and background with the %3 "
+"community."
+msgstr ""
+"%1Profiliniz%2 fikirlerinizi ve özgeçmişinizi %3 topluluğuyla paylaşmanızı "
+"saÄŸlar."
+
+msgid "Your ReCaptcha response was not correct.  Please try again."
+msgstr "ReCaptcha yanıtınız doğru değil.  Lütfen tekrar deneyin."
+
+msgid ""
+"Your first response was flagged as spam by the Akismet anti-spam system.  "
+"Please modify your text and try again."
+msgstr ""
+"İlk yanıtınız Akismet anti-spam sistemi tarafından bir saldırı olarak "
+"algılandı.  Lütfen yazdığınızı değiştirip tekrar deneyin."
+
+msgid ""
+"Your second response was flagged as spam by the Akismet anti-spam system.  "
+"Please modify your text and try again."
+msgstr ""
+"İkinci yanıtınız Akismet anti-spam sistemi tarafından bir saldırı olarak "
+"algılandı.  Lütfen yazdığınızı değiştirip tekrar deneyin."
+
+msgid "Your profile submission was empty."
+msgstr "Gönderdiğiniz profil boş."
+
+msgid "Could not update the profile: database error"
+msgstr "Profil güncellenemedi: veritabanı hatası"
+
+msgid "Could not create the profile: database error"
+msgstr "Profil oluşturulamadı: veritabanı hatası"
+
+msgid "Profile saved"
+msgstr "Profil kaydedildi"
+
+msgid ""
+"Congratulations! Your profile was successfully entered into our database."
+msgstr "Tebrikler! Profiliniz başarıyla veritabanımıza kaydedildi."
+
+msgid "%1View your profile%2"
+msgstr "%1Profilinizi görün%2"
+
+msgid "Create a profile"
+msgstr "Bir profil oluÅŸtur"
+
+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 ""
+"Sitemize saldırıların önüne geçmek amacıyla, profil oluşturmak ve "
+"değiştirmek için ortalama kredinin %1 ya da fazlası olması gerekir.  "
+"Verdiğimiz rahatsızlık nedeniyle özür dileriz."
+
+msgid "Download BOINC add-on software"
+msgstr "BOINC eklenti programlarını indir"
+
+msgid "You can download applications in several categories."
+msgstr "Çeşitli kategorilerdeki bu uygulamaları indirebilirsiniz."
+
+msgid ""
+"These applications are not endorsed by %1 and you use them at your own risk."
+msgstr ""
+"Bu uygulamalar %1 tarafından onaylanmamıştır ve kullanmak sizin alacağınız "
+"bir risktir."
+
+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 ""
+"Bu uygulamaların kurulum yönergelerini sağlamıyoruz.\n"
+"Bununla birlikte, yazarı kurulumu ve kaldırılmasıyla ilgili yardım sağlıyor "
+"olabilir. \n"
+"Eğer bu sizin için yeterli değilse, yazarıyla irtibata geçmelisiniz. "
+
+msgid "Instructions for installing and running BOINC are %1here%2."
+msgstr "BOINC'in kurulumu ve çalıştırmasıyla ilgili talimatlar %1buradadır%2."
+
+msgid "This list is managed centrally at %1the BOINC website%2."
+msgstr "Bu liste %1BOINC internet sitesinden%2 merkezi olarak yönetilir."
+
+msgid "fll"
+msgstr "fll"
+
+msgid "Title"
+msgstr "Başlık"
+
+msgid "Add my signature to this post"
+msgstr "İmzamı bu iletiye ekle"
+
+msgid "%1 Message boards"
+msgstr "%1 Mesaj panoları"
+
+msgid ""
+"If you have a question or problem, please use the %1Questions & Answers%2 "
+"section of the message boards."
+msgstr ""
+"Bir soru ya da probleminiz varsa, lütfen mesaj panolarındaki %1Soru ve "
+"Yanıtlar%2 bölümünü kullanın."
+
+msgid "Topic"
+msgstr "Konu"
+
+msgid "Create a new thread"
+msgstr "Yeni konu başlığı oluştur"
+
+msgid "Post to thread"
+msgstr "Konu başlığına gönder"
+
+msgid "Forum search"
+msgstr "Forum ara"
+
+msgid "Forum search results"
+msgstr "Forum arama sonuçları"
+
+msgid "No thread with id %1. Please check the link and try again."
+msgstr ""
+"%1 ID'siyle bir konu başlığı mevcut değil. Lütfen bağlantıyı kontrol edip "
+"tekrar deneyin."
+
+msgid "This forum is not visible to you."
+msgstr "Bu forum sizin tarafınızdan görülebilir değil."
+
+msgid "This thread has been hidden for administrative purposes"
+msgstr "Bu konu başlığı yönetimsel amaçlar nedeniyle gizlendi"
+
+msgid "My question was answered"
+msgstr "Sorum yanıtlandı"
+
+msgid ""
+"If your question has been adequately answered please click here to close it!"
+msgstr ""
+"Eğer sorunuz yeterli şekilde yanıtlandıysa, kapatmak için lütfen buraya "
+"tıklayın!"
+
+msgid "I've also got this question"
+msgstr "Ben de aynısını soruyorum"
+
+msgid "Add a new message to this thread"
+msgstr "Bu konu başlığına yeni bir mesaj ekle"
+
+msgid "Unsubscribe"
+msgstr "AboneliÄŸi bitir"
+
+msgid "You are subscribed to this thread.  Click here to unsubscribe."
+msgstr "Bu konu başlığına abonesiniz.  Aboneliği bitirmek için tıklayın."
+
+msgid "Subscribe"
+msgstr "Abone ol"
+
+msgid "Click to get email when there are new posts in this thread"
+msgstr ""
+"Bu konu başlığına yeni mesajlar yazıldığında e-posta almak için tıklayın"
+
+msgid "Unhide"
+msgstr "Gizliliği kaldır"
+
+msgid "Unhide this thread"
+msgstr "Bu konu başlığının gizliliğini kaldırır"
+
+msgid "Hide"
+msgstr "Gizle"
+
+msgid "Hide this thread"
+msgstr "Bu konu başlığını gizler"
+
+msgid "Make unsticky"
+msgstr "Üst konudan kaldır"
+
+msgid "Make this thread not sticky"
+msgstr "Bu konu başlığının üst konu durumunu kaldır"
+
+msgid "Make sticky"
+msgstr "Ãœst konu yap"
+
+msgid "Make this thread sticky"
+msgstr "Bu konu başlığını üst konu başlığı yapar"
+
+msgid "Unlock"
+msgstr "Kilidi kaldır"
+
+msgid "Unlock this thread"
+msgstr "Bu konu başlığının kilidini kaldırır"
+
+msgid "Lock"
+msgstr "Kilitle"
+
+msgid "Lock this thread"
+msgstr "Bu konu başlığını kilitler"
+
+msgid "Move"
+msgstr "Taşı"
+
+msgid "Move this thread to a different forum"
+msgstr "Bu konu başlığını başka bir foruma taşır"
+
+msgid "Edit title"
+msgstr "Başlığı düzenle"
+
+msgid "Edit thread title"
+msgstr "Konu başlığını düzenler"
+
+msgid "Sort"
+msgstr "Sırala"
+
+msgid "Already friends"
+msgstr "Zaten arkadaÅŸ"
+
+msgid "You requested friendship with %1 on %2."
+msgstr "%1 ile %2 üzerinde arkadaşlık isteği aldınız."
+
+msgid "This request is still pending confirmation."
+msgstr "Bu istek halen onaylanmayı bekliyor."
+
+msgid "%1 is not accepting friendship requests from you"
+msgstr "%1 gönderdiğiniz arkadaşlık isteğini onaylamadı"
+
+msgid "You can't be friends with yourself"
+msgstr "Kendinizle arkadaş olamazsınız"
+
+msgid "No such user"
+msgstr "Böyle bir kullanıcı yok"
+
+msgid "Add friend"
+msgstr "ArkadaÅŸ ekle"
+
+msgid ""
+"You have asked to add %1 as a friend. We will notify %2 and will ask him/her "
+"to confirm that you are friends."
+msgstr ""
+"%1 kullanıcısını arkadaş olarak eklemek istediniz. %2 kullanıcısını "
+"uyaracağız ve arkadaşlığınızı onaylamasını isteyeceğiz."
+
+msgid "Add an optional message here:"
+msgstr "İstiyorsanız buraya bir mesaj ekleyin:"
+
+msgid "Database error"
+msgstr "Veritabanı hatası"
+
+msgid "Friend request sent"
+msgstr "Arkadaşlık isteği gönderildi"
+
+msgid "We have notified %1 of your request."
+msgstr "%1 kullanıcısını isteğiniz konusunda uyardık."
+
+msgid "Request not found"
+msgstr "İstek bulunamadı"
+
+msgid "Friend request"
+msgstr "Arkadaşlık isteği"
+
+msgid "%1 has added you as a friend."
+msgstr "%1 sizi arkadaÅŸ olarak ekledi."
+
+msgid "%1 says: %2"
+msgstr "%1 diyor ki: %2"
+
+msgid "Accept friendship"
+msgstr "Arkadaşlığı onayla"
+
+msgid "Click accept if %1 is in fact a friend"
+msgstr "%1 gerçekten arkadaşınızsa onaylamayı tıklayın"
+
+msgid "Decline"
+msgstr "Reddet"
+
+msgid "Click decline if %1 is not a friend"
+msgstr "%1 arkadaşınız değilse reddetmeyi tıklayın"
+
+msgid "No request"
+msgstr "Ä°stek yok"
+
+msgid "Friendship confirmed"
+msgstr "Arkadaşlık onaylandı"
+
+msgid "Your friendship with %1 has been confirmed."
+msgstr "%1 ile arkadaşlığınız onaylandı."
+
+msgid "Friendship declined"
+msgstr "Arkadaşlık reddedildi"
+
+msgid "You have declined friendship with %1"
+msgstr "%1 ile arkadaşlığınız reddedildi"
+
+msgid "Notification not found"
+msgstr "Uyarı bulunamadı"
+
+msgid "Friend confirmed"
+msgstr "Arkadaş onayladı"
+
+msgid "You are now friends with %1."
+msgstr "%1 ile artık arkadaşsınız."
+
+msgid "Cancel friendship?"
+msgstr "Arkadaşlığı bitir?"
+
+msgid "Are you sure you want to cancel your friendship with %1?"
+msgstr "%1 ile arkadaşlığınızı bitirmek istediğinize emin misiniz?"
+
+msgid "Yes"
+msgstr "Evet"
+
+msgid "No"
+msgstr "Hayır"
+
+msgid "Stay friends"
+msgstr "ArkadaÅŸ kal"
+
+msgid "Friendship cancelled"
+msgstr "Arkadaşlık bitirildi"
+
+msgid "Your friendship with %1 has been cancelled."
+msgstr "%1 ile arkadaşlığınız bitti."
+
+msgid "Unknown action"
+msgstr "Bilinmeyen eylem"
+
+msgid "Welcome to %1"
+msgstr "%1 projesine hoÅŸ geldiniz"
+
+msgid "View and edit your account preferences using the links below."
+msgstr ""
+"Hesap tercihlerinizi aşağıdaki bağlantılardan görüp değiştirebilirsiniz."
+
+msgid "Your account"
+msgstr "Hesabınız"
+
+msgid "Read our rules and policies"
+msgstr "Kurallarımızı ve politikamızı okuyun"
+
+msgid "Run %1 only on authorized computers"
+msgstr "%1 projesini yalnızca yetkili bilgisayarlarda çalıştırın"
+
+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 ""
+"%1 projesini yalnızca kendi bilgisayarınızda ya da sahibinin izin verdiği "
+"bilgisayarlarda çalıştırın. Bazı okul ya da şirketlerin, bilgisayarlarının "
+"%1 gibi projeler için kullanılmaması yönünde politikaları bulunabilir."
+
+msgid "How %1 will use your computer"
+msgstr "%1 bilgisayarınızı nasıl kullanacak"
+
+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 ""
+"Bilgisayarınızda %1 çalıştırdığınızda, CPU (işlemci) gücü, disk alanı ve ağ "
+"bant genişliğinin bir kısmını kullanacak. %1 projesinin bu kaynakları ne "
+"zaman ve ne kadar kullanacağını belirleyebilirsiniz."
+
+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 ""
+"Bilgisayarınız, gönderilen işleri %1 projesinin hedefleri doğrultusunda ve "
+"proje sitesinde tanımlandığı şekilde tamamlayacak. Bu kapsamda uygulama "
+"programları zaman zaman değişebilir."
+
+msgid "Privacy policy"
+msgstr "Gizlilik politikası"
+
+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 ""
+"%1 üzerindeki hesabınız, seçeceğiniz bir isimle birlikte tanınır. Bu isim, "
+"bilgisayarınızın %1 için tamamladığı işlerin özetiyle birlikte, %1 sitesinde "
+"gösterilebilir. Eğer anonim kalmak istiyorsanız, gerçek kimliğinizi ortaya "
+"çıkarmayan bir isim seçin."
+
+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 ""
+"Eğer %1 projesine katılırsanız, bilgisayarınız hakkında bilgi (örneğin "
+"işlemci tipi, bellek miktarı vb.) %1 tarafından kaydedilecek ve "
+"bilgisayarınıza ne tip iş gönderileceğinin belirlenmesinde kullanılacak. Bu "
+"bilgi %1 internet sitesinde de gösterilecek. Bilgisayarınızın konumuyla "
+"ilgili herhangi bir bilgi (örneğin etki alanı adı ya da ağ adresi) "
+"gösterilmeyecek."
+
+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 ""
+"%1 projesine katılmak için, e-postaları alacağınız bir adres vermelisiniz. "
+"Bu adres %1 internet sitesinde gösterilmeyecek ya da başka organizasyonlarla "
+"paylaşılmayacak. %1 size düzenli olarak bilgilendirme e-postaları "
+"gönderebilecek, bununla birlikte, gönderilmemesini de sağlayabilirsiniz."
+
+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 ""
+"%1 internet sitesinden gönderilen özel mesajları, yalnızca gönderen ve alan "
+"görebilir.  %1 özel mesajların içeriğini gözlemlemez ya da kontrol altında "
+"tutmaz.  Eğer başka bir %1 kullanıcısından istemediğiniz özel mesajlar "
+"alıyorsanız, onu %2mesaj filtrenize%3 ekleyebilirsiniz.  Böylece, bu kişiden "
+"gelen özel ya da herkese açık hiç bir mesajı görmezsiniz."
+
+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 ""
+"Eğer internet sitesi forumlarımızı kullanıyorsanız, %2gönderim ilkelerine%3 "
+"uymak zorundasınız.  %1 forumlarına gönderilen mesajlar herkes tarafından "
+"görülebilir, buna üye olmayanlar da dahildir.  Forumlara mesaj göndermekle, "
+"mesajların herhangi biri tarafından görülmesi ve kopyalanmasını kabul etmiş "
+"ve içeriği üzerindeki haklarınızdan vazgeçmiş oluyorsunuz."
+
+msgid "Is it safe to run %1?"
+msgstr "%1 çalıştırmak güvenli midir?"
+
+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 ""
+"İnternetten herhangi bir zamanda bir program indirdiğinizde, bazı "
+"olasılıkları göze almaktasınız: programın tehlikeli hataları bulunabilir ya "
+"da indirme sunucusu hack'lenmiÅŸ olabilir. %1 bu riskleri en aza indirmeye "
+"gayret etmekte. Uygulamalarımızı dikkalice test etmekteyiz. Sunucularımız "
+"bir güvenlik duvarı arkasında bulunuyor ve yüksek güvenlik için "
+"yapılandırılıyor. İndirilen programların doğruluğunu sağlamak için, tüm "
+"çalıştırılabilir dosyalar internete bağlı olmayan güvenli bir bilgisayarda "
+"dijital olarak imzalanıyor."
+
+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 ""
+"%1 tarafından çalıştırılan uygulamalar, bazı bilgisayarların fazla "
+"ısınmasına neden olabilir. Bu gerçekleşirse, %1 kullanmayı durdurun ya da "
+"CPU (işlemci) kullanımını sınırlayan bir %2yardımcı program%3 kullanın."
+
+msgid ""
+"%1 was developed by %2. BOINC was developed at the University of California."
+msgstr ""
+"%1, %2 tarafından geliştirildi. BOINC, University of California'da "
+"geliÅŸtirildi."
+
+msgid "Liability"
+msgstr "Sorumluluk"
+
+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 ""
+"%1 ve %2, %1 projesine katılmakla bilgisayarınızda oluşabilecek bir hasarı, "
+"veri kaybını ya da oluşabilecek başka olayların sonuçlarını üstlenmez."
+
+msgid "Other BOINC projects"
+msgstr "DiÄŸer BOINC projeleri"
+
+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 ""
+"Diğer projeler, %1 ile aynı platformu kullanır, yani BOINC'i. Bir ya da daha "
+"fazla projeye daha katılmayı düşünebilirsiniz. Böylece, bilgisayarınız %1 "
+"için bir iş bulunmadığı zamanlarda da faydalı olmayı sürdürebilir."
+
+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 ""
+"Bu diğer projeler, %1 ile ortak değildir ve onların güvenlik yöntemlerine ya "
+"da araştırmalarının doğasına kefil olmayız. Diğer projelere, riski "
+"kendinize ait olmak üzere katılın."
+
+msgid "LANG_NAME_INTERNATIONAL"
+msgstr "Turkish"
+
+msgid "LANG_NAME_NATIVE"
+msgstr "Türkçe"
+
+msgid "Your message has been sent."
+msgstr "Mesajınız gönderildi."
+
+msgid "You have no private messages."
+msgstr "Özel mesajınız bulunmuyor."
+
+msgid "Sender and date"
+msgstr "Gönderen ve tarih"
+
+msgid "Reply"
+msgstr "Yanıtla"
+
+msgid "Delete selected messages"
+msgstr "Seçili mesajları sil"
+
+msgid "Sender"
+msgstr "Gönderen"
+
+msgid "Date"
+msgstr "Tarih"
+
+msgid "You need to fill all fields to send a private message"
+msgstr "Özel mesaj göndermek için tüm alanları doldurmalısınız"
+
+msgid "Could not find user with id %1"
+msgstr "%1 ID'siyle bir kullanıcı bulunamadı"
+
+msgid "Could not find user with username %1"
+msgstr "%1 adında bir kullanıcı bulunamadı."
+
+msgid "%1 is not a unique username; you will have to use user ID"
+msgstr ""
+"%1 benzersiz bir kullanıcı adı değil; kullanıcının ID numarasını "
+"kullanmalısınız"
+
+msgid "User %1 (ID: %2) is not accepting private messages from you."
+msgstr "%1 kullanıcısı (ID: %2) sizden gelen özel mesajları kabul etmiyor."
+
+msgid "Really block %1?"
+msgstr "%1 gerçekten engellensin mi?"
+
+msgid ""
+"Are you really sure you want to block user %1 from sending you private "
+"messages?"
+msgstr ""
+"%1 kullanıcısının size özel mesaj göndermesini engellemek istediğinize emin "
+"misiniz?"
+
+msgid "Please note that you can only block a limited amount of users."
+msgstr "Unutmayın ki, yalnızca sınırlı sayıda kullanıcıyı engelleyebilirsiniz."
+
+msgid ""
+"Once the user has been blocked you can unblock it using forum preferences "
+"page."
+msgstr ""
+"Bir kullanıcı engellendiğinizde, engelini forum tercihleri sayfasından "
+"kaldırabilirsiniz."
+
+msgid "Add user to filter"
+msgstr "Kullanıcıyı filtreye ekle"
+
+msgid "No, cancel"
+msgstr "Hayır, iptal"
+
+msgid "User %1 blocked"
+msgstr "%1 kullancısı engellendi"
+
+msgid "User %1 has been blocked from sending you private messages."
+msgstr "%1 kullanıcısının size özel mesaj göndermesi engellendi."
+
+msgid "To unblock, visit %1message board preferences%2"
+msgstr "Engellemeyi kaldırmak için, %1forum tercihlerini%2 ziyaret edin"
+
+msgid "Profiles"
+msgstr "Profiller"
+
+msgid ""
+"%1Profiles%2 let individuals share backgrounds and opinions with the %3 "
+"community."
+msgstr ""
+"%1Profilller%2, fikirlerinizi ve özgeçmişinizi %3 topluluğuyla paylaşmanızı "
+"saÄŸlar."
+
+msgid ""
+"Explore the diversity of your fellow volunteers, and contribute your own "
+"views for others to enjoy."
+msgstr ""
+"Sizin gibi düşünen gönüllüleri arayın ve görüşlerinizle diğerlerine katkıda "
+"bulunun."
+
+msgid ""
+"If you haven't already, you can %1create your own user profile%2 for others "
+"to see!"
+msgstr ""
+"Sahip değilseniz, diğerlerinin görmesi için %1kendi kullanıcı profilinizi "
+"oluÅŸturabilirsiniz%2."
+
+msgid "User of the Day"
+msgstr "Günün Kullanıcısı"
+
+msgid "User Profile Explorer"
+msgstr "Kullancı Profili Gezgini"
+
+msgid "View the %1User Picture Gallery%2."
+msgstr "%1Kullancı Resim Galerisine%2 bak."
+
+msgid "Browse profiles %1by country%2."
+msgstr "Profillere %1ülkelerine göre%2 gözat."
+
+msgid ""
+"Browse profiles %1at random%2, %3at random with pictures%2, or %4at random "
+"without pictures%2."
+msgstr ""
+"Profillere %1rasgele%2, %3resimlerle rasgele%2 ya da %4resimler olmadan "
+"rasgele%2 gözat."
+
+msgid "Alphabetical profile listings:"
+msgstr "Alfabetik profil listesi:"
+
+msgid "Search profile text"
+msgstr "Profil yazısında ara"
+
+msgid "No profiles"
+msgstr "Profil yok"
+
+msgid "No profiles matched your query."
+msgstr "Aramanızla eşleşen profil yok."
+
+msgid "Invalid vote type:"
+msgstr "Geçersiz oy tipi:"
+
+msgid "Vote Recorded"
+msgstr "Oy Kaydedildi"
+
+msgid "Thank you"
+msgstr "Teşekkürler"
+
+msgid "Your recommendation has been recorded."
+msgstr "Öneriniz kaydedildi."
+
+msgid "Your vote to reject this profile has been recorded."
+msgstr "Bu profilin çıkarılması konusundaki oyunuz kaydedildi."
+
+msgid "Return to profile."
+msgstr "Profile dön."
+
+msgid "This feature is turned off temporarily"
+msgstr "Bu özellik geçici olarak kapatıldı"
+
+msgid "No computer with ID %1 found"
+msgstr "%1 ID'siyle bilgisayar bulunamadı"
+
+msgid "Tasks for computer %1"
+msgstr "%1 bilgisayarı için işler"
+
+msgid "No access"
+msgstr "EriÅŸim yok"
+
+msgid "Missing user ID or host ID"
+msgstr "Eksik kullanıcı ID ya da sunucu ID"
+
+msgid "User of the day"
+msgstr "Günün kullanıcısı"
+
+msgid "Account data for %1"
+msgstr "%1 için hesap bilgisi"
+
+msgid "Statistics and leaderboards"
+msgstr "Ä°statistikler ve en iyiler listeleri"
+
+msgid "Statistics for %1"
+msgstr "%1 için istatistikler"
+
+msgid "Top participants"
+msgstr "En iyi katılımcılar"
+
+msgid "Top computers"
+msgstr "En iyi bilgisayarlar"
+
+msgid "Top teams"
+msgstr "En iyi takımlar"
+
+msgid ""
+"More detailed statistics for %1 and other BOINC-based projects are available "
+"at several web sites:"
+msgstr ""
+"%1 ve çeşitli BOINC-tabanlı projeler için daha detaylı istatistikler, "
+"çeşitli internet sitelerinde mevcuttur:"
+
+msgid ""
+"You can also get your current statistics in the form of a \"signature image"
+"\":"
+msgstr ""
+"Güncel istatistiklerinizi, bir \"imza resmi\" biçiminde de görebilirsiniz:"
+
+msgid ""
+"Additionally you can get your individual statistics summed across all BOINC "
+"projects from several sites; see your %1home page%2."
+msgstr ""
+"Ek olarak, tüm BOINC projelerindeki kişisel istatistiklerinizin özetini de "
+"çeşitli sitelerden alabilirsiniz; %1ana sayfanıza%2 bakın."
+
+msgid "%1 participants may form %2teams%3"
+msgstr "%1 katılımcıları %2takımlara%3 katılabilir."
+
+msgid ""
+"You may belong to only one team. You can join or quit a team at any time."
+msgstr ""
+"Aynı anda yalnızca bir takımın üyesi olabilirsiniz. Bir takıma istediğiniz "
+"zaman katılıp ayrılabilirsiniz."
+
+msgid "Each team has a %1founder%2 who may:"
+msgstr "Her takım şunları yapabilen bir %1kurucuya%2 sahiptir:"
+
+msgid "access team members' email addresses"
+msgstr "Takım üyelerinin e-posta adreslerini görme"
+
+msgid "edit the team's name and description"
+msgstr "Takımın ismini ve tanıtımını düzenleme"
+
+msgid "remove members from the team"
+msgstr "Takımdan bir üyeyi çıkarma"
+
+msgid "disband a team if it has no members"
+msgstr "Üyesi yoksa bir takımı kaldırma."
+
+msgid "To join a team, visit its team page and click %1Join this team%2."
+msgstr ""
+"Bir takıma katılmak için, takımın sayfasını ziyaret edin ve %1Bu takıma "
+"katıl%2 bağlantısına tıklayın."
+
+msgid "Find a team"
+msgstr "Bir takım bul"
+
+msgid "All teams"
+msgstr "Tüm takımlar"
+
+msgid "%1 teams"
+msgstr "%1 takımları"
+
+msgid "Create a new team"
+msgstr "Yeni bir takım oluştur"
+
+msgid ""
+"If you cannot find a team that is right for you, you can %1create a team%2."
+msgstr "Size göre bir takım bulamadıysanız, %1bir takım oluşturabilirsiniz%2."
+
+msgid "You must choose a non-blank team name"
+msgstr "Boş olmayan bir takım adı seçmelisiniz."
+
+msgid "A team named %1 already exists - try another name"
+msgstr "%1 adında bir takım zaten mevcut - lütfen başka bir isim deneyin."
+
+msgid "Could not create team - please try later."
+msgstr "Takım oluşturulamadı - lütfen tekrar deneyin."
+
+msgid "Create a team"
+msgstr "Takım oluştur"
+
+msgid ""
+"You belong to %1. You must %2quit this team%3 before creating a new one."
+msgstr ""
+"%1 üyesisiniz. Yeni bir tane oluşturmadan önce %2bu takımdan "
+"ayrılmalısınız%3."
+
+msgid "Top hosts"
+msgstr "En iyi sunucular"
+
+msgid "Top %1 teams"
+msgstr "En iyi %1 takımlar"
+
+msgid "Participant since"
+msgstr "Katılım tarihi"
+
+msgid "This user has no profile"
+msgstr "Bu kullanıcının profili yok"
+
+msgid "Account data"
+msgstr "Hesap bilgisi"
+
+msgid ""
+"Your 'weak account key' lets you attach computers to your account on this "
+"project, without giving the ability to log in to your account or to change "
+"it in any way."
+msgstr ""
+"'Zayıf hesap anahtarınız',  bu projedeki hesabınıza bilgisayarlar eklemenizi "
+"sağlar, ancak, söz konusu bilgisayarlardan hesabınıza giriş yapılamaz ve "
+"hesabınız değiştirilemez."
+
+msgid ""
+"This mechanism works only with projects that have upgraded their server "
+"software 7 Dec 2007 or later."
+msgstr ""
+"Bu mekanizma, sunucu yazılımlarını 7 Aralık 2007 ya da daha sonraki tarihli "
+"sürüme yükseltmiş projelerde çalışır."
+
+msgid "Your weak account key for this project is:"
+msgstr "Bu proje için zayıf hesap anahtarınız:"
+
+msgid ""
+"To use your weak account key on a given host, find or create the 'account "
+"file' for this project. This file has a name of the form "
+"<b>account_PROJECT_URL.xml</b>. The account file for %1 is <b>%2</b>."
+msgstr ""
+"Bir bilgisayarda zayıf hesap anahtarınızı kullanmak için, bu proje için "
+"'hesap dosyası'nı bulun ya da oluşturun. Söz konusu dosya, "
+"<b>account_PROJE_URL'si.xml</b> biçiminde bir isme sahiptir. %1 için hesap "
+"dosyası <b>%2</b> biçimindedir."
+
+msgid "Create this file if needed. Set its contents to:"
+msgstr "Gerekiyorsa bu dosyayı oluşturun. İçeriğini şu şekilde yapın:"
+
+msgid ""
+"Your weak account key is a function of your password. If you change your "
+"password, your weak account key changes, and your previous weak account key "
+"becomes invalid."
+msgstr ""
+"Zayıf hesap anahtarınız, parolanıza bağlı bir işlevdir. Parolanızı "
+"değiştirirseniz, zayıf hesap anahtarınız da değişir ve önceki zayıf hesap "
+"anahtarınız geçersiz hale gelir."
diff --git a/locale/tr/BOINC-Web.po b/locale/tr/BOINC-Web.po
index a8ea79b..56ff3eb 100644
--- a/locale/tr/BOINC-Web.po
+++ b/locale/tr/BOINC-Web.po
@@ -192,8 +192,7 @@ msgstr "Arkadaşlardan, akrabalardan ya da iş arkadaşlarından"
 msgid "Team message boards or web sites"
 msgstr "Takım forumlarından ya da internet sitelerinden"
 
-#: poll_data.inc:154
-#: poll_data.inc:210
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr "BOINC Ä°nternet sitesinden"
 
@@ -202,8 +201,12 @@ msgid "Other web sites"
 msgstr "DiÄŸer internet sitelerinden"
 
 #: poll_data.inc:161
-msgid "Which are the most important factors when you decide whether to participate in a BOINC project?"
-msgstr "Bir BOINC projesine katılırken göz önüne aldığınız en önemli faktörler nelerdir?"
+msgid ""
+"Which are the most important factors when you decide whether to participate "
+"in a BOINC project?"
+msgstr ""
+"Bir BOINC projesine katılırken göz önüne aldığınız en önemli faktörler "
+"nelerdir?"
 
 #: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
@@ -282,8 +285,12 @@ msgid "None"
 msgstr "Yok"
 
 #: poll_data.inc:206
-msgid "Where do you get information to help resolve problems with BOINC and/or BOINC projects?"
-msgstr "BOINC ve/veya BOINC projeleriyle sorunların çözümüne yardımcı olabileceğiniz konusunda nereden bilgi aldınız?"
+msgid ""
+"Where do you get information to help resolve problems with BOINC and/or "
+"BOINC projects?"
+msgstr ""
+"BOINC ve/veya BOINC projeleriyle sorunların çözümüne yardımcı olabileceğiniz "
+"konusunda nereden bilgi aldınız?"
 
 #: poll_data.inc:208
 msgid "The project message boards"
@@ -319,13 +326,25 @@ msgid "%s for %s (%s MB)"
 msgstr "%s sürümü, %s için (%s MB)"
 
 #: download.php:89
-msgid "BOINC is a program that lets you donate your idle computer time to science projects like SETI at home, Climateprediction.net, Rosetta at home, World Community Grid, and many others. <p> After installing BOINC on your computer, you can connect it to as many of these projects as you like."
-msgstr "BOINC, bilgisayarınızın boş zamanını, SETI at home, Climateprediction.net, Rosetta at home, World Community Grid ve çok daha fazlası gibi bilimsel projelere bağışlamanızı sağlar. <p> BOINC'i bilgisayarınıza kurduktan sonra, bunlar gibi istediğiniz pek çok projeye katılabilirsiniz."
+msgid ""
+"BOINC is a program that lets you donate your idle computer time to science "
+"projects like SETI at home, Climateprediction.net, Rosetta at home, World "
+"Community Grid, and many others. <p> After installing BOINC on your "
+"computer, you can connect it to as many of these projects as you like."
+msgstr ""
+"BOINC, bilgisayarınızın boş zamanını, SETI at home, Climateprediction.net, "
+"Rosetta at home, World Community Grid ve çok daha fazlası gibi bilimsel "
+"projelere bağışlamanızı sağlar. <p> BOINC'i bilgisayarınıza kurduktan sonra, "
+"bunlar gibi istediğiniz pek çok projeye katılabilirsiniz."
 
 #: download.php:114
 #, php-format
-msgid "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit (GPU), you may be able to %suse it to compute faster%s"
-msgstr "Not: Eğer bilgisayarınız bir NVIDIA ekran kartına (GPU) sahipse, çok daha hızlı hesaplama yaptırmak için %sonu da kullanabilirsiniz%s"
+msgid ""
+"Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
+"(GPU), you may be able to %suse it to compute faster%s"
+msgstr ""
+"Not: Eğer bilgisayarınız bir NVIDIA ekran kartına (GPU) sahipse, çok daha "
+"hızlı hesaplama yaptırmak için %sonu da kullanabilirsiniz%s"
 
 #: download.php:120
 msgid "System requirements"
@@ -335,8 +354,7 @@ msgstr "Sistem gereksinimleri"
 msgid "Release notes"
 msgstr "Sürüm notları"
 
-#: download.php:122
-#: index.php:89
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr "Yardım"
 
@@ -350,20 +368,45 @@ msgstr "BOINC: bilim için hesapla"
 
 #: 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 "BOINC Online Yardım, uzman BOINC kullanıcılarıyla bire bir konuşmanızı sağlar. Bu kişiler, %s BOINC ve gönüllü hesaplama hakkındaki sorular; %s kurulum sırasındaki işlemler ile adımlar; %s karşılaştığınız sorunların çözümleri konularında yardımcı olabilirler."
+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 ""
+"BOINC Online Yardım, uzman BOINC kullanıcılarıyla bire bir konuşmanızı "
+"sağlar. Bu kişiler, %s BOINC ve gönüllü hesaplama hakkındaki sorular; %s "
+"kurulum sırasındaki işlemler ile adımlar; %s karşılaştığınız sorunların "
+"çözümleri konularında yardımcı olabilirler."
 
 #: 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 "BOINC Online Yardım, %sSkype%s tabanlı bir İnternet telefonu sistemidir. Skype bedavadır (yazılım ve görüşmeler). Eğer Skype'a sahip değilseniz, lütfen şimdi %sindirip kurun%s.  Tamamladığınızda, bu sayfaya geri dönün."
+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 ""
+"BOINC Online Yardım, %sSkype%s tabanlı bir İnternet telefonu sistemidir. "
+"Skype bedavadır (yazılım ve görüşmeler). Eğer Skype'a sahip değilseniz, "
+"lütfen şimdi %sindirip kurun%s.  Tamamladığınızda, bu sayfaya geri dönün."
 
 #: 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 "Sesle yardım almak için en iyi yol, bigilsayarınızın dahili mikrofon ve hoparlörünü ya da harici bir kulaklık setini kullanmaktır. Ayrıca gönüllülerle iletişim kurmak için Skype'ın yazı-tabanlı sohbet sistemini ya da normal e-postayı (eğer Skype'a sahip değilseniz) da kullanabilirsiniz."
+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 ""
+"Sesle yardım almak için en iyi yol, bigilsayarınızın dahili mikrofon ve "
+"hoparlörünü ya da harici bir kulaklık setini kullanmaktır. Ayrıca "
+"gönüllülerle iletişim kurmak için Skype'ın yazı-tabanlı sohbet sistemini ya "
+"da normal e-postayı (eğer Skype'a sahip değilseniz) da kullanabilirsiniz."
 
 #: help.php:31
-msgid "Volunteers speaking several languages are available. Please select a language:"
+msgid ""
+"Volunteers speaking several languages are available. Please select a "
+"language:"
 msgstr "Çeşitli dillerde konuşan gönüllüler mevcuttur. Lütfen bir dil seçin:"
 
 #: help.php:47
@@ -372,13 +415,22 @@ msgstr "Bir Yardım Gönüllüsü olun"
 
 #: 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 "Eğer uzman bir BOINC kullanıcısıysanız, sizi bir %sYardım Gönüllüsü%s olmak için cesaretlendirebiliriz. Bu, bilimsel araştırmaları ve gönüllü hesaplamacılığı desteklemenin harika bir yoludur - üstelik eğlencelidir!"
+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 ""
+"Eğer uzman bir BOINC kullanıcısıysanız, sizi bir %sYardım Gönüllüsü%s olmak "
+"için cesaretlendirebiliriz. Bu, bilimsel araştırmaları ve gönüllü "
+"hesaplamacılığı desteklemenin harika bir yoludur - üstelik eğlencelidir!"
 
 #: help.php:56
 #, php-format
-msgid "If you're already a Help Volunteer: to edit your settings, %sclick here%s."
-msgstr "Zaten bir Yardım Günllüsüyseniz: Ayarlarınızı düzenlemek için, %sburaya tıklayın%s."
+msgid ""
+"If you're already a Help Volunteer: to edit your settings, %sclick here%s."
+msgstr ""
+"Zaten bir Yardım Günllüsüyseniz: Ayarlarınızı düzenlemek için, %sburaya "
+"tıklayın%s."
 
 #: index.php:23
 msgid "Computing power"
@@ -433,21 +485,33 @@ msgstr "Gönüllü olun"
 msgid "Download"
 msgstr "Ä°ndir"
 
-#: index.php:90
-#: index.php:125
-#: index.php:163
+#: index.php:90 index.php:125 index.php:163
 msgid "Documentation"
 msgstr "Belgeler"
 
 #: index.php:96
 #, php-format
-msgid " Use the idle time on your computer (Windows, Mac, or Linux) to cure diseases, study global warming, discover pulsars, and do many other types of scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %sDownload%s and run BOINC software  %sEnter%s an email address and password. "
-msgstr " Bilgisayarınızın (Windows, Mac ya da Linux) boş zamanını, hastalıkları iyileştirmek, küresel ısınmayı araştırmak, elektromanyetik yıldızları keşfetmek ve çok daha farklı tipte bilimsel araştırmalar için kullanın.  Bu tehlikesiz, güvenilir ve basittir:  %sSeçin:%s Çeşitli projeler arasından beğendiğinizi seçin  %sİndirin:%s BOINC yazılımını sitemizden indirin ve çalıştırın  %sGirin:%s Bir e-posta adresi ve parola girin. "
+msgid ""
+" Use the idle time on your computer (Windows, Mac, or Linux) to cure "
+"diseases, study global warming, discover pulsars, and do many other types of "
+"scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %"
+"sDownload%s and run BOINC software  %sEnter%s an email address and password. "
+msgstr ""
+" Bilgisayarınızın (Windows, Mac ya da Linux) boş zamanını, hastalıkları "
+"iyileştirmek, küresel ısınmayı araştırmak, elektromanyetik yıldızları "
+"keşfetmek ve çok daha farklı tipte bilimsel araştırmalar için kullanın.  Bu "
+"tehlikesiz, güvenilir ve basittir:  %sSeçin:%s Çeşitli projeler arasından "
+"beğendiğinizi seçin  %sİndirin:%s BOINC yazılımını sitemizden indirin ve "
+"çalıştırın  %sGirin:%s Bir e-posta adresi ve parola girin. "
 
 #: index.php:107
 #, php-format
-msgid "Or, if you run several projects, try an %saccount manager%s such as %sGridRepublic%s or %sBAM!%s. "
-msgstr "Ya da çeşitli projeler çalıştırıyorsanız, bir %shesap yöneticisi%s deneyin. Örneğin %sGridRepublic%s ya da %sBAM!%s gibi. "
+msgid ""
+"Or, if you run several projects, try an %saccount manager%s such as %"
+"sGridRepublic%s or %sBAM!%s. "
+msgstr ""
+"Ya da çeşitli projeler çalıştırıyorsanız, bir %shesap yöneticisi%s deneyin. "
+"Örneğin %sGridRepublic%s ya da %sBAM!%s gibi. "
 
 #: index.php:123
 msgid "Compute with BOINC"
@@ -519,16 +583,38 @@ msgstr "Tarayıcı varsayılanı"
 
 #: index.php:250
 #, php-format
-msgid "Open-source software for %svolunteer computing%s and %sgrid computing%s."
-msgstr "Açık kaynaklı %sgönüllü hesaplama%s ve %sdağınık (grid) hesaplama%s yazılımı."
+msgid ""
+"Open-source software for %svolunteer computing%s and %sgrid computing%s."
+msgstr ""
+"Açık kaynaklı %sgönüllü hesaplama%s ve %sdağınık (grid) hesaplama%s "
+"yazılımı."
 
 #: poll.php:9
 msgid "BOINC user survey"
 msgstr "BOINC kullanıcı anketi"
 
 #: poll.php:19
-msgid "Several volunteer computing projects, including Climateprediction.net, Einstein at home, and SETI at home, use software called BOINC.  If you participate in projects like this, we request that you answer the following questions.  This will help BOINC-based projects increase participation and achieve greater scientific results. <p> Please answer as many questions as you want, then go to the bottom and click OK. If you previously completed the survey but your answers have changed, please complete it again - your new answers will replace the old ones. <p> The current results of the survey are <a href=poll_results.php>here</a>. "
-msgstr "Çeşitli gönüllü hesaplama projeleri, Climateprediction.net, Einstein at home ve SETI at home da dahil, BOINC olarak adlandırılan bir yazılım kullanır.  Eğer bunlar gibi projelere katılacaksanız, aşağıdaki soruları yanıtlamanızı istiyoruz.  Bu BOINC-tabanlı projelere katılımı artırma ve büyük bilimsel sonuçlar alma konusunda yardımcı olacak. <p> Lüften istediğiniz kadar çok soruya yanıt verin ve sonra altta bulunan Tamam butonuna tıklayın. Eğer anketi daha önce tamamladıysanız ve şu anda bazı yanıtlarınız değiştiyse, lütfen tekrar tamamlayın - yeni yanıtlarınız eskileriyle değiştirilecek. <p> Anket sonuçlarının şu andaki durumu <a href=poll_results.php>buradadır</a>. "
+msgid ""
+"Several volunteer computing projects, including Climateprediction.net, "
+"Einstein at home, and SETI at home, use software called BOINC.  If you participate "
+"in projects like this, we request that you answer the following questions.  "
+"This will help BOINC-based projects increase participation and achieve "
+"greater scientific results. <p> Please answer as many questions as you want, "
+"then go to the bottom and click OK. If you previously completed the survey "
+"but your answers have changed, please complete it again - your new answers "
+"will replace the old ones. <p> The current results of the survey are <a "
+"href=poll_results.php>here</a>. "
+msgstr ""
+"Çeşitli gönüllü hesaplama projeleri, Climateprediction.net, Einstein at home ve "
+"SETI at home da dahil, BOINC olarak adlandırılan bir yazılım kullanır.  Eğer "
+"bunlar gibi projelere katılacaksanız, aşağıdaki soruları yanıtlamanızı "
+"istiyoruz.  Bu BOINC-tabanlı projelere katılımı artırma ve büyük bilimsel "
+"sonuçlar alma konusunda yardımcı olacak. <p> Lüften istediğiniz kadar çok "
+"soruya yanıt verin ve sonra altta bulunan Tamam butonuna tıklayın. Eğer "
+"anketi daha önce tamamladıysanız ve şu anda bazı yanıtlarınız değiştiyse, "
+"lütfen tekrar tamamlayın - yeni yanıtlarınız eskileriyle değiştirilecek. <p> "
+"Anket sonuçlarının şu andaki durumu <a href=poll_results.php>buradadır</a>. "
+""
 
 #: poll.php:25
 msgid "Do you run BOINC?"
@@ -555,8 +641,12 @@ msgid "Comments"
 msgstr "Yorumlarınız"
 
 #: poll.php:46
-msgid "Please suggest ways that BOINC, and the projects that use it, could be improved:"
-msgstr "Lütfen BOINC'in ve kullandığı projelerin geliştirilmesi için önerilerde bulunun:"
+msgid ""
+"Please suggest ways that BOINC, and the projects that use it, could be "
+"improved:"
+msgstr ""
+"Lütfen BOINC'in ve kullandığı projelerin geliştirilmesi için önerilerde "
+"bulunun:"
 
 #: poll.php:50
 msgid "When done click:"
@@ -567,8 +657,12 @@ msgid "Error - results not recorded"
 msgstr "Hata - Sonuçlar kaydedilmedi"
 
 #: poll_action.php:10
-msgid "An internal error has prevented us from recording your survey response.  Please try again later."
-msgstr "Anket sonuçlarını kaydederken bizden kaynaklanan bir hata meydana geldi. Lütfen daha sonra tekrar deneyin."
+msgid ""
+"An internal error has prevented us from recording your survey response.  "
+"Please try again later."
+msgstr ""
+"Anket sonuçlarını kaydederken bizden kaynaklanan bir hata meydana geldi. "
+"Lütfen daha sonra tekrar deneyin."
 
 #: poll_action.php:32
 msgid "Survey response recorded"
@@ -583,6 +677,9 @@ msgid "Survey results"
 msgstr "Anket sonuçları"
 
 #: poll_results.php:196
-msgid "These are the current results of the <a href=poll.php>BOINC user survey</a>.  This page is updated every hour."
-msgstr "Bunlar, <a href=poll.php>BOINC kullanıcı anketi</a>nin şu anki sonuçları.  Bu sayfa her saat güncellenir."
-
+msgid ""
+"These are the current results of the <a href=poll.php>BOINC user survey</"
+"a>.  This page is updated every hour."
+msgstr ""
+"Bunlar, <a href=poll.php>BOINC kullanıcı anketi</a>nin şu anki sonuçları.  "
+"Bu sayfa her saat güncellenir."
diff --git a/locale/tr/pootle-boincclient610-tr.prefs b/locale/tr/pootle-boincclient610-tr.prefs
new file mode 100644
index 0000000..ce9a3d9
--- /dev/null
+++ b/locale/tr/pootle-boincclient610-tr.prefs
@@ -0,0 +1,8 @@
+# Pootle preferences for project boinctrunk, language tr
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  CanceleratoR = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/tr/pootle-boinctrunk-tr.prefs b/locale/tr/pootle-boinctrunk-tr.prefs
deleted file mode 100644
index 9928c8b..0000000
--- a/locale/tr/pootle-boinctrunk-tr.prefs
+++ /dev/null
@@ -1,8 +0,0 @@
-# Pootle preferences for project boinctrunk, language tr
-
-rights:
-  default = u'view, suggest, archive, pocompile'
-  nobody = u'view'
-  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  CanceleratoR = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/uk/BOINC-Manager.mo b/locale/uk/BOINC-Manager.mo
new file mode 100644
index 0000000..20024bd
Binary files /dev/null and b/locale/uk/BOINC-Manager.mo differ
diff --git a/locale/uk/BOINC-Manager.po b/locale/uk/BOINC-Manager.po
new file mode 100644
index 0000000..fe9f150
--- /dev/null
+++ b/locale/uk/BOINC-Manager.po
@@ -0,0 +1,3588 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2010-01-09 15:35-0700\n"
+"Last-Translator: Valeriy Khakhutskyy <v.khakhutskyy at web.de>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: uk\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Pootle 1.2.1\n"
+"X-Poedit-SearchPath-0: clientgui\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
+"X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
+
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr "Ваш обліковий запис "
+
+#: clientgui/AccountInfoPage.cpp:382
+msgid ""
+"Please enter your account information\n"
+"(to create an account, visit the project's web site)"
+msgstr ""
+"Будь ласка, введить данні Вашого облікового запису\n"
+"(для того щоб створити обліковий запис, зайдіть на веб-сайт проєкту)"
+
+#: clientgui/AccountInfoPage.cpp:386
+msgid ""
+"This project is not currently accepting new accounts.\n"
+"You can attach only if you already have an account."
+msgstr ""
+"На даний момент створення новий облікових записів у цьому проєкті не "
+"можливо.\n"
+"Ви можете підлючитися тільки якщо вже маєте обліковий запис."
+
+#: clientgui/AccountInfoPage.cpp:390
+msgid "Are you already running this project?"
+msgstr "Чи Ви вже виконуєте цій проєкт?"
+
+#: clientgui/AccountInfoPage.cpp:394
+msgid "&No, new user"
+msgstr "Ні, новий користувач"
+
+#: clientgui/AccountInfoPage.cpp:397
+msgid "&Yes, existing user"
+msgstr "Так, вже зареєстрован"
+
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+"Ми не змогли автоматично зароєструвати Ваш обліковий\n"
+"запис.\n"
+"\n"
+"Будь ласка клікніть на посилання \"Знайти інформацію для реєстрації\" внизу, "
+"щоб з'ясувати, що треба ввести в поле емейл-адрес\n"
+"та пароль."
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr "Знайти інформацію для реєстрації"
+
+#: clientgui/AccountInfoPage.cpp:425 clientgui/AccountInfoPage.cpp:591
+msgid "&Password:"
+msgstr "Пароль:"
+
+#: clientgui/AccountInfoPage.cpp:432 clientgui/AccountInfoPage.cpp:606
+msgid "Choose a &password:"
+msgstr "Обрати пароль:"
+
+#: clientgui/AccountInfoPage.cpp:435
+msgid "C&onfirm password:"
+msgstr "Підтвердити пароль:"
+
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
+msgid "Are you already running %s?"
+msgstr "Чи Ви вже зареєстровані у проєкті %s?"
+
+#: clientgui/AccountInfoPage.cpp:459
+msgid "&Username:"
+msgstr "Ім'я користувача:"
+
+#: clientgui/AccountInfoPage.cpp:473
+msgid "&Email address:"
+msgstr "Адреса електронної пошти:"
+
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
+msgid "minimum length %d"
+msgstr "найменьша довжина %d"
+
+#: clientgui/AccountInfoPage.cpp:488
+msgid "Forgot your password?"
+msgstr "Забули пароль?"
+
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+"Якщо Ви ще не зареєструвалися у цьому менеджері облікових записів,\n"
+"будь ласка зробіть це перед тим, як продовжите._ _Клікніть на посилання "
+"внизу,\n"
+"щоб зареєструватися чи відновити забутий пароль."
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr "Веб-сайт менеджера облікових записів"
+
+#: clientgui/AccountInfoPage.cpp:530
+msgid "Attach to project"
+msgstr "Підключення до проєкту"
+
+#: clientgui/AccountInfoPage.cpp:532
+msgid "Update account manager"
+msgstr "Оновлення менеджера облікових записів"
+
+#: clientgui/AccountInfoPage.cpp:534
+msgid "Attach to account manager"
+msgstr "Підлючення до менеджера облікових записів"
+
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
+msgid ""
+"The minimum password length for this project is %d. Please enter a different "
+"password."
+msgstr ""
+"Мінімальна довжина пароля для цього проєкта %d символів. Будь ласка введіть "
+"інший пароль."
+
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
+msgid ""
+"The minimum password length for this account manager is %d. Please enter a "
+"different password."
+msgstr ""
+"Мінімальна довжина пароля для цього менеджера обліковий записів %d символів. "
+"Будь ласка введіть інший пароль."
+
+#: clientgui/AccountInfoPage.cpp:560
+msgid ""
+"The password and confirmation password do not match. Please type them again."
+msgstr ""
+"Записи у полях \"Пароль\" та \"Підтвердження пароля\" не збігаються. Будь "
+"ласка введіть їх знову."
+
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr "Виберіть менеджер облікових записів"
+
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
+"Виберіть менеджер обліковиз записів, клікніть на його назві чи\n"
+"введіть його URL адресі внизу."
+
+#: clientgui/AccountManagerInfoPage.cpp:255
+msgid "Account Manager &URL:"
+msgstr "URL адреса:"
+
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
+msgid "Communicating with %s."
+msgstr "Встановлення зв'язку з %s."
+
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
+msgid "Communicating with server."
+msgstr "Встановлення зв'язку з сервером."
+
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
+msgid "Please wait..."
+msgstr "Будь ласка зачікайте..."
+
+#: clientgui/AccountManagerProcessingPage.cpp:325
+msgid "An internal server error has occurred.\n"
+msgstr "Відбулася внутрішня помилка сервера.\n"
+
+#: clientgui/AdvancedFrame.cpp:93
+msgid "Connected"
+msgstr "Зв'язок встановлено"
+
+#: clientgui/AdvancedFrame.cpp:101
+msgid "Disconnected"
+msgstr "Роз'єднано"
+
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr "Зачинити вікно %s"
+
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr "Вийти з %s"
+
+#: clientgui/AdvancedFrame.cpp:324 clientgui/BOINCTaskBar.cpp:641
+msgid "E&xit"
+msgstr "Вийти"
+
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr "Проєкти\tCtrl+Shift+P"
+
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr "Показати проєкти"
+
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr "Завдання\tCtrl+Shift+T"
+
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr "Показати завдання"
+
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr "Передавання\tCtrl+Shift+X"
+
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr "Показати передавання"
+
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr "Повідомлення\tCtrl+Shift+M"
+
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr "Показати повідомлення"
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr "Статистика\tCtrl+Shift+S"
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr "Показати статистику"
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr "Заповнення диска\tCtrl+Shift+D"
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr "Показати заповнення диска"
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "Спрощенний вид...\tCtrl+Shift+V"
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr "Показати спрощенний графічній інтерфейс."
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr "Підлючитися до проєкту чи менеджера облікових записів..."
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+"Підлючитися до проєкту чи менеджера облікових записів, щоб почати обробку "
+"завдань"
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
+msgid "&Synchronize with %s"
+msgstr "Синхронізуватися з %s"
+
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
+msgid "Get current settings from %s"
+msgstr "Отримати настройки з %s"
+
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "Підключитися до проєкту..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "Підлючитися до проєкту, щоб почати обробку завдань"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "Зупинити користування %s..."
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "Від'єднати клієнт від менеджера облікових записів."
+
+#: clientgui/AdvancedFrame.cpp:432
+msgid "&Run always"
+msgstr "Завжди виконувати"
+
+#: clientgui/AdvancedFrame.cpp:433
+msgid "Allow work regardless of preferences"
+msgstr "Дозволити обробку незалежно від настройок"
+
+#: clientgui/AdvancedFrame.cpp:437
+msgid "Run based on &preferences"
+msgstr "Виконувати згодно з настройкам"
+
+#: clientgui/AdvancedFrame.cpp:438
+msgid "Allow work according to your preferences"
+msgstr "Дозволити обробку згодно з Вашими настройками"
+
+#: clientgui/AdvancedFrame.cpp:442
+msgid "&Suspend"
+msgstr "Припинити"
+
+#: clientgui/AdvancedFrame.cpp:443
+msgid "Stop work regardless of preferences"
+msgstr "Зупинити обробку незаложно від настройок"
+
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+#, fuzzy
+msgid "Allow GPU work regardless of preferences"
+msgstr "Дозволити обробку незалежно від настройок"
+
+#: clientgui/AdvancedFrame.cpp:473
+#, fuzzy
+msgid "Use GPU based on &preferences"
+msgstr "Виконувати згодно з настройкам"
+
+#: clientgui/AdvancedFrame.cpp:474
+#, fuzzy
+msgid "Allow GPU work according to your preferences"
+msgstr "Дозволити обробку згодно з Вашими настройками"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+#, fuzzy
+msgid "Stop GPU work regardless of preferences"
+msgstr "Зупинити обробку незаложно від настройок"
+
+#: clientgui/AdvancedFrame.cpp:503
+msgid "&Network activity always available"
+msgstr "Доступ до мережі завжди вілний"
+
+#: clientgui/AdvancedFrame.cpp:504
+msgid "Allow network activity regardless of preferences"
+msgstr "Дозволити доступ до мережі незалежно від настройок"
+
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
+msgstr "Доступ до мережі згодно з настройками"
+
+#: clientgui/AdvancedFrame.cpp:509
+msgid "Allow network activity according to your preferences"
+msgstr "Дозволити доступ до мережі згодно з Вашими настройками"
+
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
+msgstr "Доступ до мережі припинено"
+
+#: clientgui/AdvancedFrame.cpp:514
+msgid "Stop BOINC network activity"
+msgstr "Зупинити доступ до мережі для програми BOINC"
+
+#: clientgui/AdvancedFrame.cpp:521
+msgid "&Options..."
+msgstr "Опції"
+
+#: clientgui/AdvancedFrame.cpp:522
+msgid "Configure GUI options and proxy settings"
+msgstr "Настроїти опції графічного інтерфейсу та параметри проксі"
+
+#: clientgui/AdvancedFrame.cpp:526
+msgid "&Preferences..."
+msgstr "Настройки"
+
+#: clientgui/AdvancedFrame.cpp:527
+msgid "Configure local preferences"
+msgstr "Локальні настройки"
+
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
+msgid "Connect to another computer running %s"
+msgstr "Приєднатися до іншого комп'ютера з %s"
+
+#: clientgui/AdvancedFrame.cpp:538
+msgid "Select computer..."
+msgstr "Вибрати комп'ютер..."
+
+#: clientgui/AdvancedFrame.cpp:543
+msgid "Shut down connected client..."
+msgstr "Виключити приєднаний клієнт..."
+
+#: clientgui/AdvancedFrame.cpp:544
+msgid "Shut down the currently connected core client"
+msgstr "Виключити зараз приєднаний основний клієнт"
+
+#: clientgui/AdvancedFrame.cpp:548
+msgid "Run CPU &benchmarks"
+msgstr "Виконати тести продуктивності процесора"
+
+#: clientgui/AdvancedFrame.cpp:549
+msgid "Runs BOINC CPU benchmarks"
+msgstr "Виконати BOINC тести продуктивності процесора"
+
+#: clientgui/AdvancedFrame.cpp:553
+msgid "Do network &communication"
+msgstr "Виконати транзакції з сервером"
+
+#: clientgui/AdvancedFrame.cpp:554
+msgid "Do all pending network communication."
+msgstr "Виконати всі незакінчені транзакції з сервером"
+
+#: clientgui/AdvancedFrame.cpp:558
+msgid "Read config file"
+msgstr "Зчитати з файлу настройок"
+
+#: clientgui/AdvancedFrame.cpp:559
+msgid "Read configuration info from cc_config.xml."
+msgstr "Зчитати настройки з файлу cc_config.xml."
+
+#: clientgui/AdvancedFrame.cpp:563
+msgid "Read local prefs file"
+msgstr "Зчитати локальний файл настройок"
+
+#: clientgui/AdvancedFrame.cpp:564
+msgid "Read preferences from global_prefs_override.xml."
+msgstr "Зчитати настройки з файлу global_prefs_override.xml."
+
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
+msgid "%s &help"
+msgstr "Довідка %s"
+
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
+msgid "Show information about %s"
+msgstr "Показати інформацію по %s"
+
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
+msgid "&%s help"
+msgstr "Довідка %s"
+
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
+msgid "Show information about the %s"
+msgstr "Показати інформацію по %s"
+
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
+msgid "%s &website"
+msgstr "%s веб-сайт"
+
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
+msgid "Show information about BOINC and %s"
+msgstr "Показати інформацію по BOINC та %s"
+
+#: clientgui/AdvancedFrame.cpp:628 clientgui/BOINCTaskBar.cpp:631
+#, c-format
+msgid "&About %s..."
+msgstr "О %s..."
+
+#: clientgui/AdvancedFrame.cpp:634
+msgid "Licensing and copyright information."
+msgstr "Інформація о ліцензій та авторських правах."
+
+#: clientgui/AdvancedFrame.cpp:641
+msgid "&File"
+msgstr "Файл"
+
+#: clientgui/AdvancedFrame.cpp:645
+msgid "&View"
+msgstr "Вид"
+
+#: clientgui/AdvancedFrame.cpp:649
+msgid "&Tools"
+msgstr "Сервіс"
+
+#: clientgui/AdvancedFrame.cpp:653
+msgid "&Activity"
+msgstr "Управління"
+
+#: clientgui/AdvancedFrame.cpp:657
+msgid "A&dvanced"
+msgstr "Додатково"
+
+#: clientgui/AdvancedFrame.cpp:661
+msgid "&Help"
+msgstr "Довідка"
+
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr "Відбувається підключення до проєкту чи менеджера облікових записів..."
+
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
+msgid "%s - Detach from %s"
+msgstr "%s - Відключитися від %s"
+
+#: clientgui/AdvancedFrame.cpp:1126
+#, 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 ""
+"Якщо Ви від'єднаєтесь від %s,\n"
+"усі Ваші проєкти сберегуться,\n"
+"але ві будете повинні кирувати їми власноручно.\n"
+"Від'єднатися від %s?"
+
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
+msgid "%s - Language Selection"
+msgstr "%s - вибір мови"
+
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
+msgid ""
+"The %s's default language has been changed, in order for this change to take "
+"affect you must restart the %s."
+msgstr ""
+"Мову інтерфейсу %s було змінено, для того щоб ці зміни здійснилися треба "
+"перезапустити %s."
+
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - закінчити роботу актуального BOINC клієнту..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s закінчить роботу приєднаного клієнту\n"
+"та запитає Вас адресу іншого сервера для приєднання.\n"
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "Повторне підключення для проекту (проектів)..."
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
+msgid "%s"
+msgstr "%s"
+
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
+msgid "%s has successfully attached to %s"
+msgstr "%s приєднався до %s"
+
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
+msgid "%s - (%s)"
+msgstr "%s - (%s)"
+
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
+msgid "Connecting to %s"
+msgstr "Приєднання до %s"
+
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
+msgid "Connected to %s (%s)"
+msgstr "Приєднано до %s (%s)"
+
+#: clientgui/AlreadyExistsPage.cpp:182
+msgid "Username already in use"
+msgstr "Ім'я користувача вже зареєстровано"
+
+#: clientgui/AlreadyExistsPage.cpp:185
+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 ""
+"Обліковий запис користувача з цим ім'ям вже зареєстрована та має \n"
+"інший пароль, аніж той, що Ви ввели.\n"
+"\n"
+"Будь ласка виконайте інструкції на домашній сторінці проекту."
+
+#: clientgui/AlreadyExistsPage.cpp:189
+msgid "Email address already in use"
+msgstr "Email адреса вже була зареєстрована"
+
+#: clientgui/AlreadyExistsPage.cpp:192
+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 ""
+"Обліковий запис в цією email адресою вже існує та має \n"
+"інший  пароль аніж ти, що Ви ввели.\n"
+"\n"
+"Будь ласка виконайте інструкції на домашній сторінці проекту."
+
+#: clientgui/AsyncRPC.cpp:1207
+msgid "Communicating with BOINC client.  Please wait ..."
+msgstr "Встановлюється зв'язок з BOINC клієнтом.  Будь ласка зачекайте..."
+
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr "Вийти з %s"
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr "Вийти з %s"
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "Відмінити"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
+msgid "%s - Connection Error"
+msgstr "%s - помилка під час з’єднання"
+
+#: clientgui/BOINCBaseFrame.cpp:431
+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 ""
+"Ви не маєте прав, щоб  керувати клієнтом.\n"
+"Будь ласка зверніться до адміністратора, щоб той вніс вас у групу "
+"'boinc_users'."
+
+#: clientgui/BOINCBaseFrame.cpp:440
+msgid ""
+"Authorization failed connecting to running client.\n"
+"Make sure you start this program in the same directory as the client."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:442
+msgid "Authorization failed connecting to running client."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:450
+msgid "The password you have provided is incorrect, please try again."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
+msgid "%s - Connection Failed"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
+msgid ""
+"%s is not able to connect to a %s client.\n"
+"Would you like to try to connect again?"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
+msgid "%s - Daemon Start Failed"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
+
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
+msgid ""
+"%s is not able to start a %s client.\n"
+"Please start the daemon and try again."
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
+msgid "%s - Connection Status"
+msgstr ""
+
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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 ""
+
+#: clientgui/BOINCBaseView.cpp:723
+msgid "Web sites"
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
+msgid "%s - Network Status"
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
+msgid "%s needs to connect to the Internet.  Please click to open %s."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
+msgid ""
+"%s is unable to communicate with a project and needs an Internet "
+"connection.\n"
+"Please connect to the Internet, then select the 'Do network communications' "
+"item from the Advanced menu."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
+msgid ""
+"%s needs to connect to the Internet.\n"
+"May it do so now?"
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
+msgid "%s is connecting to the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
+msgid ""
+"%s couldn't do Internet communication, and no default connection is "
+"selected.\n"
+"Please connect to the Internet, or select a default connection\n"
+"using Advanced/Options/Connections."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
+msgid "%s has successfully connected to the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
+msgid "%s failed to connect to the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
+msgid ""
+"%s has detected it is now connected to the Internet.\n"
+"Updating all projects and retrying all transfers."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
+msgid "%s has successfully disconnected from the Internet."
+msgstr ""
+
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
+msgid "%s failed to disconnected from the Internet."
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall "
+"BOINC.\n"
+"(Error code %d)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:378
+msgid ""
+"A reboot is required in order for BOINC to run properly.\n"
+"Please reboot your computer and try again."
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:379
+msgid "BOINC Manager"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:526
+msgid "BOINC Manager was started by the operating system automatically"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:528
+msgid "Startup BOINC so only the system tray icon is visible"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
+msgid "Startup BOINC with these optional arguments"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:534
+msgid "disable BOINC security users and permissions"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:535
+msgid "set skin debugging mode to enable skin manager error messages"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:725
+msgid "(Automatic Detection)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:726
+msgid "(Unknown)"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:727
+msgid "(User Defined)"
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:348
+msgid "Computation is suspended."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:356
+#, fuzzy
+msgid "Network activity is suspended."
+msgstr "Доступ до мережі припинено"
+
+#: clientgui/BOINCTaskBar.cpp:390
+#, c-format
+msgid "%s: %.2f%% completed."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
+msgid "%d tasks running."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:412
+msgid "Reconnecting to client."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:418
+msgid "Not connected to a client."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
+msgid "Open %s Web..."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
+msgid "Open %s..."
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:623
+msgid "Snooze"
+msgstr ""
+
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
+msgid "Failed to attach to project"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:204
+msgid "Failed to update account manager"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:208
+msgid "Failed to remove account manager"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:212
+msgid "Failed to attach to account manager"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:221
+msgid ""
+"An error has occurred;\n"
+"check Messages for details.\n"
+"\n"
+"Click Finish to close."
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:225 clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246 clientgui/CompletionPage.cpp:295
+msgid "Click Finish to close."
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:234
+msgid "Messages from server:"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:208
+#, fuzzy
+msgid "Attached to project"
+msgstr "Підключення до проєкту"
+
+#: clientgui/CompletionPage.cpp:214
+msgid "You are now successfully attached to this project."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:219
+msgid ""
+"When you click Finish, your web browser will go to a page where\n"
+"you can set your account name and preferences."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:236
+#, c-format
+msgid "Update from %s completed."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:240
+msgid "Update completed."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:257
+#, c-format
+msgid "Attached to %s"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:261
+#, fuzzy
+msgid "Attached to account manager"
+msgstr "Підлючення до менеджера облікових записів"
+
+#: clientgui/CompletionPage.cpp:271
+#, c-format
+msgid "Welcome to %s!"
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:285
+#, c-format
+msgid "You are now successfully attached to the %s system."
+msgstr ""
+
+#: clientgui/CompletionPage.cpp:289
+msgid "You are now successfully attached to this account manager."
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:98
+#, c-format
+msgid "About %s"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:155
+msgid "Version:"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:163
+msgid "wxWidgets Version:"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:171
+msgid "Copyright:"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:175
+msgid ""
+"(C) 2003-2010 University of California, Berkeley.\n"
+"All Rights Reserved."
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:179 clientgui/DlgAbout.cpp:183
+msgid "Berkeley Open Infrastructure for Network Computing"
+msgstr ""
+
+#: clientgui/DlgAbout.cpp:195 clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120 clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
+msgid "&OK"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:485
+msgid "invalid float"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:486
+msgid "invalid time, format is HH:MM"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:487
+msgid "invalid time interval, format is HH:MM-HH:MM"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:601
+msgid "invalid input value detected"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:603
+msgid "Validation Error"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:747
+msgid "Do you really want to clear all local preferences ?"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.cpp:748
+msgid "Confirmation"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
+msgid "%s - Preferences"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:49
+msgid ""
+"This dialog controls preferences for this computer only.\n"
+"Click OK to set preferences.\n"
+"Click Clear to restore web-based settings."
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:52
+msgid "Clear"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:53
+msgid "clear all local preferences and close the dialog"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:76
+msgid "Computing allowed"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:80
+msgid " While computer is on batteries"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:83
+msgid ""
+"check this if you want this computer to do work while it runs on batteries"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:89
+msgid " While computer is in use"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:92
+msgid ""
+"check this if you want this computer to do work even when you're using it"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:98
+msgid " Use GPU while computer is in use"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:101
+msgid ""
+"check this if you want your GPU to do work even when you're using the "
+"computer"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:113
+msgid "Only after computer has been idle for"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:123
+msgid ""
+"do work only after you haven't used the computer for this number of minutes"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
+msgid "minutes"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
+msgid "Every day between hours of"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:181
+msgid "start work at this time"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
+msgid "and"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:189
+msgid "stop work at this time"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
+msgid "(no restriction if equal)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
+msgid "Day-of-week override:"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
+msgid "check box to specify hours for this day of week"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
+msgid "Monday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
+msgid "Tuesday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
+msgid "Wednesday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
+msgid "Thursday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
+msgid "Friday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
+msgid "Saturday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
+msgid "Sunday"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:272
+msgid "Other options"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:289
+msgid "On multiprocessor systems, use at most"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:296
+#, no-c-format
+msgid "% of the processors"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
+msgid "Use at most"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
+msgid "% CPU time"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:316
+msgid "processor usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:324
+msgid "General options"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:331
+msgid "Maximum download rate"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
+msgid "KBytes/sec."
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:340
+msgid "Maximum upload rate"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:349
+msgid "Connect about every"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:353
+msgid ""
+"this computer is connected to the Internet about every X days\n"
+"(0 if it's always connected)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:357
+msgid "days"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:360
+msgid "Additional work buffer"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:366
+msgid "days (max. 10)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:369
+msgid " Skip image file verification"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:371
+msgid "check this if your Internet provider modifies image files"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:380
+msgid "Connect options"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:382
+msgid "Confirm before connecting to internet"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:384
+msgid ""
+"if checked, a confirmation dialog will be displayed before trying to connect "
+"to the Internet"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:388
+msgid "Disconnect when done"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:390
+msgid ""
+"if checked, BOINC hangs up when network usage is done\n"
+"(only relevant for dialup-connection)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:397
+msgid "Network usage allowed"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:406
+msgid "network usage start hour"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:414
+msgid "network usage stop hour"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:499
+msgid "network usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:507 clientgui/DlgItemProperties.cpp:213
+msgid "Disk usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:519
+msgid "the maximum disk space used by BOINC (in Gigabytes)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:523
+msgid "Gigabytes disk space"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:526
+msgid "Leave at least"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:530
+msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:534
+msgid "Gigabytes disk space free"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:541
+msgid "BOINC uses at most this percentage of total disk space"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
+msgid "% of total disk space"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:555
+msgid "seconds"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
+msgid "% of page file (swap space)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:573
+msgid "Memory usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
+msgid "% when computer is in use"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
+msgid "% when computer is idle"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:603
+msgid " Leave applications in memory while suspended"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:605
+msgid "if checked, suspended work units are left in memory"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:614
+msgid "disk and memory usage"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:627
+msgid "OK"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:628
+msgid "save all values and close the dialog"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:633
+msgid "close the dialog without saving"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:637 clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121 clientgui/Localization.cpp:139
+#, fuzzy
+msgid "Help"
+msgstr "Довідка"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:638
+msgid "shows the preferences web page"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
+msgid "%s - Exit Confirmation"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
+msgid ""
+"You have requested to exit the %s,\n"
+"which allows you to view and manage\n"
+"the science applications running on your computer.\n"
+"\n"
+"If you also want to stop running the science applications when you\n"
+"exit the Manager, then choose from the following options:"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
+msgid ""
+"This will shut down %s and its tasks entirely until either the\n"
+"%s application 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 ""
+
+#: clientgui/DlgExitMessage.cpp:153
+msgid "Stop running science applications when exiting the Manager"
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:164
+msgid "Remember this decision and do not show this dialog."
+msgstr ""
+
+#: clientgui/DlgExitMessage.cpp:177 clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388 clientgui/DlgSelectComputer.cpp:152
+#, fuzzy
+msgid "&Cancel"
+msgstr "Відмінити"
+
+#: clientgui/DlgGenericMessage.cpp:112
+msgid "Don't show this dialog again."
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:63
+msgid "&Close"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:195
+msgid "Properties of project "
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:199 clientgui/DlgOptions.cpp:205
+msgid "General"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:200
+msgid "Master URL"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:201
+msgid "User name"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:202
+msgid "Team name"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:203
+msgid "Resource share"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:205
+msgid "Scheduler RPC deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
+msgid "Non CPU intensive"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215 clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217 clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219 clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "yes"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215 clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217 clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219 clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
+msgid "no"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:216
+msgid "Suspended via GUI"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:217
+msgid "Don't request more work"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:218
+msgid "Scheduler call in progress"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:219
+#, fuzzy
+msgid "Attached via account manager"
+msgstr "Підлючення до менеджера облікових записів"
+
+#: clientgui/DlgItemProperties.cpp:220
+msgid "Detach when done"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:221
+msgid "Ended"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:222
+msgid "Credit"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:223
+msgid "User"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:230
+msgid "Host"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:239
+msgid "Scheduling"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:240
+msgid "CPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:241
+msgid "CPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:244
+msgid "CPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:245
+msgid "CPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
+msgid "NVIDIA GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:251
+msgid "NVIDIA GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:252
+msgid "NVIDIA GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
+msgid "Duration correction factor"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:272
+msgid "Properties of task "
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:276
+msgid "Application"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:277
+msgid "Workunit name"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:278
+msgid "State"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
+msgid "Report deadline"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:286
+msgid "Resources"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:289
+msgid "CPU time at last checkpoint"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:290 clientgui/DlgItemProperties.cpp:305
+msgid "CPU time"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:292 clientgui/DlgItemProperties.cpp:306
+msgid "Elapsed time"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:294
+msgid "Estimated time remaining"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:295
+msgid "Fraction done"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:296
+msgid "Virtual memory size"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:297
+msgid "Working set size"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:400
+msgid "New"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:404
+msgid "Download failed"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:406
+msgid "Downloading"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:411
+msgid "Project suspended by user"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:413
+msgid "Task suspended by user"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:415
+msgid "Suspended"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:417
+msgid " - on batteries"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:420
+msgid " - user active"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:423
+msgid " - computation suspended"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:426
+msgid " - time of day"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:429
+#, fuzzy
+msgid " - CPU benchmarks"
+msgstr "Виконати тести продуктивності процесора"
+
+#: clientgui/DlgItemProperties.cpp:432
+msgid " - need disk space"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:436
+msgid "Waiting for memory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:438
+msgid "Waiting for shared memory"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:441
+msgid "Running, high priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:443
+msgid "Running"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:446
+msgid "Waiting to run"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:448 clientgui/DlgItemProperties.cpp:451
+msgid "Ready to start"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:455
+msgid "Computation error"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:459
+msgid "Upload failed"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:461
+msgid "Uploading"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:467
+msgid "Aborted by user"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:470
+msgid "Aborted by project"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:473
+msgid "Aborted"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:478
+msgid "Acknowledged"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:480
+msgid "Ready to report"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
+msgid "Error: invalid state '%d'"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:119
+#, c-format
+msgid "%s - Options"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:157
+msgid "Language:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:164
+msgid "What language should the manager use?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:168
+msgid ""
+"Network reminder interval:\n"
+"(minutes)"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:180
+msgid ""
+"How often should the Manager remind you when a network connection is needed?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:185
+msgid "Run Manager at login?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:191
+msgid "Run the BOINC Manager when you log on."
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:196
+msgid "Enable Manager exit dialog?"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:202
+msgid "Display the exit dialog when shutting down the Manager."
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:213
+msgid "Dial-up and Virtual Private Network settings"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:227
+msgid "&Set Default"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:232
+msgid "&Clear Default"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:239
+msgid "Default Connection:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:246
+msgid "Connections"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:255
+msgid "Connect via HTTP proxy server"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:259
+msgid "HTTP Proxy Server Configuration"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:267 clientgui/DlgOptions.cpp:331
+msgid "Address:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:275 clientgui/DlgOptions.cpp:339
+msgid "Port:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:283 clientgui/DlgOptions.cpp:347
+msgid "Don't use proxy for:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:290 clientgui/DlgOptions.cpp:354
+msgid "Leave these blank if not needed"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:296 clientgui/DlgOptions.cpp:360
+msgid "User Name:"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:304 clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
+#, fuzzy
+msgid "Password:"
+msgstr "Пароль:"
+
+#: clientgui/DlgOptions.cpp:311
+msgid "HTTP Proxy"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:319
+msgid "Connect via SOCKS proxy server"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:323
+msgid "SOCKS Proxy Server Configuration"
+msgstr ""
+
+#: clientgui/DlgOptions.cpp:375
+msgid "SOCKS Proxy"
+msgstr ""
+
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
+msgid "%s - Select Computer"
+msgstr ""
+
+#: clientgui/DlgSelectComputer.cpp:127
+msgid "Host name:"
+msgstr ""
+
+#: clientgui/hyperlink.cpp:181
+#, c-format
+msgid "%s - Can't find web browser"
+msgstr ""
+
+#: clientgui/hyperlink.cpp:192
+#, c-format
+msgid ""
+"%s tried to display the web page\n"
+"\t%s\n"
+"but couldn't find a web browser.\n"
+"To fix this, set the environment variable\n"
+"BROWSER to the path of your web browser,\n"
+"then restart the %s."
+msgstr ""
+
+#: clientgui/Localization.cpp:31 clientgui/Localization.cpp:69
+msgid "Message boards"
+msgstr ""
+
+#: clientgui/Localization.cpp:33
+msgid "Correspond with other users on the SETI at home message boards"
+msgstr ""
+
+#: clientgui/Localization.cpp:37
+msgid "Ask questions and report problems"
+msgstr ""
+
+#: clientgui/Localization.cpp:39 clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111 clientgui/Localization.cpp:129
+msgid "Your account"
+msgstr ""
+
+#: clientgui/Localization.cpp:41 clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
+msgid "View your account information and credit totals"
+msgstr ""
+
+#: clientgui/Localization.cpp:43
+msgid "Your preferences"
+msgstr ""
+
+#: clientgui/Localization.cpp:45
+msgid "View and modify your SETI at home account profile and preferences"
+msgstr ""
+
+#: clientgui/Localization.cpp:47 clientgui/Localization.cpp:89
+msgid "Your results"
+msgstr ""
+
+#: clientgui/Localization.cpp:49 clientgui/Localization.cpp:91
+msgid "View your last week (or more) of computational results and work"
+msgstr ""
+
+#: clientgui/Localization.cpp:51 clientgui/Localization.cpp:93
+msgid "Your computers"
+msgstr ""
+
+#: clientgui/Localization.cpp:53
+msgid "View a listing of all the computers on which you are running SETI at Home"
+msgstr ""
+
+#: clientgui/Localization.cpp:55 clientgui/Localization.cpp:97
+msgid "Your team"
+msgstr ""
+
+#: clientgui/Localization.cpp:57 clientgui/Localization.cpp:99
+msgid "View information about your team"
+msgstr ""
+
+#: clientgui/Localization.cpp:61
+msgid "Common questions"
+msgstr ""
+
+#: clientgui/Localization.cpp:63
+msgid "Read the Einstein at Home Frequently Asked Question list"
+msgstr ""
+
+#: clientgui/Localization.cpp:65
+msgid "Screensaver info"
+msgstr ""
+
+#: clientgui/Localization.cpp:67
+msgid "Read a detailed description of the Einstein at Home screensaver"
+msgstr ""
+
+#: clientgui/Localization.cpp:71
+msgid ""
+"Correspond with admins and other users on the Einstein at Home message boards"
+msgstr ""
+
+#: clientgui/Localization.cpp:73
+msgid "Einstein status"
+msgstr ""
+
+#: clientgui/Localization.cpp:75
+msgid "Current status of the Einstein at Home server"
+msgstr ""
+
+#: clientgui/Localization.cpp:77
+msgid "Report problems"
+msgstr ""
+
+#: clientgui/Localization.cpp:79
+msgid "A link to the Einstein at Home problems and bug reports message board"
+msgstr ""
+
+#: clientgui/Localization.cpp:83
+msgid "View and modify your Einstein at Home account profile and preferences"
+msgstr ""
+
+#: clientgui/Localization.cpp:85
+msgid "Account summary"
+msgstr ""
+
+#: clientgui/Localization.cpp:95
+msgid ""
+"View a listing of all the computers on which you are running Einstein at Home"
+msgstr ""
+
+#: clientgui/Localization.cpp:101
+msgid "LIGO project"
+msgstr ""
+
+#: clientgui/Localization.cpp:103
+msgid ""
+"The home page of the Laser Interferometer Gravitational-wave Observatory "
+"(LIGO) project"
+msgstr ""
+
+#: clientgui/Localization.cpp:105
+msgid "GEO-600 project"
+msgstr ""
+
+#: clientgui/Localization.cpp:107
+msgid "The home page of the GEO-600 project"
+msgstr ""
+
+#: clientgui/Localization.cpp:115 clientgui/Localization.cpp:133
+msgid "Team"
+msgstr ""
+
+#: clientgui/Localization.cpp:117
+msgid "Info about your Team"
+msgstr ""
+
+#: clientgui/Localization.cpp:123
+msgid "Get help for climateprediction.net"
+msgstr ""
+
+#: clientgui/Localization.cpp:125
+msgid "News"
+msgstr ""
+
+#: clientgui/Localization.cpp:127
+msgid "climateprediction.net News"
+msgstr ""
+
+#: clientgui/Localization.cpp:131
+msgid "View your account information, credits, and trickles"
+msgstr ""
+
+#: clientgui/Localization.cpp:135
+msgid "Info about your team"
+msgstr ""
+
+#: clientgui/Localization.cpp:141
+msgid "Search for help in our help system"
+msgstr ""
+
+#: clientgui/Localization.cpp:143
+msgid "Global Statistics"
+msgstr ""
+
+#: clientgui/Localization.cpp:145
+msgid "Summary statistics for World Community Grid"
+msgstr ""
+
+#: clientgui/Localization.cpp:147
+msgid "My Grid"
+msgstr ""
+
+#: clientgui/Localization.cpp:149
+msgid "Your statistics and settings"
+msgstr ""
+
+#: clientgui/Localization.cpp:151
+msgid "Device Profiles"
+msgstr ""
+
+#: clientgui/Localization.cpp:153
+msgid "Update your device settings"
+msgstr ""
+
+#: clientgui/Localization.cpp:155
+msgid "Research"
+msgstr ""
+
+#: clientgui/Localization.cpp:157
+msgid "Learn about the projects hosted at World Community Grid"
+msgstr ""
+
+#: clientgui/MainDocument.cpp:536
+msgid "Starting client services; please wait..."
+msgstr ""
+
+#: clientgui/MainDocument.cpp:1073
+msgid "Retrieving system state; please wait..."
+msgstr ""
+
+#: clientgui/MainDocument.cpp:1082
+msgid "Retrieving host information; please wait..."
+msgstr ""
+
+#: clientgui/NoInternetConnectionPage.cpp:179
+msgid "No Internet connection"
+msgstr ""
+
+#: clientgui/NoInternetConnectionPage.cpp:182
+msgid "Please connect to the Internet and try again."
+msgstr ""
+
+#: clientgui/NotDetectedPage.cpp:181
+msgid "Project not found"
+msgstr ""
+
+#: clientgui/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 ""
+
+#: clientgui/NotDetectedPage.cpp:188
+msgid "Account manager not found"
+msgstr ""
+
+#: clientgui/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 ""
+
+#: clientgui/NotFoundPage.cpp:181
+msgid "Login Failed."
+msgstr ""
+
+#: clientgui/NotFoundPage.cpp:185
+msgid "Check the username and password, and try again."
+msgstr ""
+
+#: clientgui/NotFoundPage.cpp:189
+msgid "Check the email address and password, and try again."
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:259
+msgid "Choose a project"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:262
+#, fuzzy
+msgid "To choose a project, click its name or type its URL below."
+msgstr ""
+"Виберіть менеджер обліковиз записів, клікніть на його назві чи\n"
+"введіть його URL адресі внизу."
+
+#: clientgui/ProjectInfoPage.cpp:265
+msgid "Project &URL:"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:393
+msgid ""
+"This project may not have work for your type of computer. Are you sure you "
+"wish to continue?"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:417
+msgid ""
+"You are already attached to this project. Please choose a different project."
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
+msgid ""
+"Communicating with project\n"
+"Please wait..."
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:498
+msgid ""
+"Required wizard file(s) are missing from the target server.\n"
+"(lookup_account.php/create_account.php)\n"
+msgstr ""
+
+#: clientgui/ProxyInfoPage.cpp:195
+msgid "Network communication failure"
+msgstr ""
+
+#: clientgui/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"
+"hen click Back to try again.\n"
+"\n"
+"3) You are using a proxy server.\n"
+"Click Next to configure BOINC's proxy settings."
+msgstr ""
+
+#: clientgui/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 ""
+
+#: clientgui/ProxyPage.cpp:331
+msgid "Proxy configuration"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:334
+msgid "HTTP proxy"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:337 clientgui/ProxyPage.cpp:357
+msgid "Server:"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:350
+msgid "Autodetect"
+msgstr ""
+
+#: clientgui/ProxyPage.cpp:354
+msgid "SOCKS proxy"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
+msgid "&%s"
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:288
+msgid "Retrieving current status."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:291
+msgid "You don't have any projects.  Please Add a Project."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:294
+msgid "Downloading work from the server."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:299
+msgid "Processing Suspended:  Running On Batteries."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:301
+msgid "Processing Suspended:  User Active."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:303
+msgid "Processing Suspended:  User paused processing."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:305
+msgid "Processing Suspended:  Time of Day."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:307
+msgid "Processing Suspended:  Benchmarks Running."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:309
+msgid "Processing Suspended."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:313
+msgid "Waiting to contact project servers."
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
+msgid "Retrieving current status"
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:320
+msgid "No work available to process"
+msgstr ""
+
+#: clientgui/sg_ClientStateIndicator.cpp:322
+msgid "Unable to connect to the core client"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:107
+msgid "Project"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:108
+msgid "Time"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:109
+msgid "Message"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:177 clientgui/sg_DlgMessages.cpp:181
+msgid "Copy all the messages to the clipboard."
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:202 clientgui/sg_DlgMessages.cpp:210
+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 ""
+
+#: clientgui/sg_DlgMessages.cpp:204 clientgui/sg_DlgMessages.cpp:212
+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 ""
+
+#: clientgui/sg_DlgMessages.cpp:252 clientgui/sg_DlgPreferences.cpp:509
+msgid "Get help with BOINC"
+msgstr ""
+
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
+msgid "%s - Messages"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:95
+msgid "100 MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:96
+msgid "200 MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:97
+msgid "500 MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:98
+msgid "1 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:99
+msgid "2 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:100
+msgid "5 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:101
+msgid "10 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:102
+msgid "20 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:103
+msgid "50 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:104
+msgid "100 GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:135
+msgid "10%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:136
+msgid "20%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:137
+msgid "30%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:138
+msgid "40%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:139
+msgid "50%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:140
+msgid "60%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:141
+msgid "70%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:142
+msgid "80%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:143
+msgid "90%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:144
+msgid "100%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:169
+msgid "1"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:170
+msgid "3"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:171
+msgid "5"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:172
+msgid "10"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:173
+msgid "15"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:174
+msgid "30"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:175
+msgid "60"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:284
+msgid "Skin"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:291
+msgid "Skin:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:307
+msgid "Preferences"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:324
+msgid "I want to customize my preferences for this computer only."
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:333
+msgid "Customized Preferences"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:349
+msgid "Do work only between:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:371
+msgid "Connect to internet only between:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:393 clientgui/sg_DlgPreferences.cpp:410
+msgid "Use no more than:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:406
+msgid "of disk space"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:423
+msgid "of the processor"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:427
+msgid "Do work while on battery?"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:440
+msgid "Do work after idle for:"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:678 clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749 clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765 clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927 clientgui/sg_DlgPreferences.cpp:938
+msgid "Anytime"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
+msgid "%d MB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
+msgid "%4.2f GB"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
+msgid "%d%%"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:864
+msgid "0 (Run Always)"
+msgstr ""
+
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
+msgid "%d"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:90
+msgid "Paused: Other work running"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:92
+msgid "Paused: User initiatied.  Click 'Resume' to continue"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:94
+msgid "Paused: User active"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:96
+msgid "Paused: Computer on battery"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:98
+msgid "Paused: Time of Day"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:100
+msgid "Paused: Benchmarks running"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:102
+msgid "Paused"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:104
+msgid "Paused: Application start delayed"
+msgstr ""
+
+#: clientgui/sg_ImageButton.cpp:132
+msgid "Click to show project graphics"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:106
+msgid "Attach to an additional project"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:123
+msgid "Synchronize projects with account manager system"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
+msgid "Open a window to view messages"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:223
+msgid "Stop all activity"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:235
+msgid "Resume activity"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:252
+msgid "Open a window to set your preferences"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:269
+msgid "Switch to the BOINC advanced view"
+msgstr ""
+
+#: clientgui/sg_ProjectsComponent.cpp:296
+msgid "My Projects:"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
+msgid "%s. Work done by %s: %0.2f"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:154
+msgid "Remove Project"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:217 clientgui/ViewProjects.cpp:490
+#, c-format
+msgid "Are you sure you want to detach from project '%s'?"
+msgstr ""
+
+#: clientgui/sg_StatImageLoader.cpp:223 clientgui/ViewProjects.cpp:496
+msgid "Detach from Project"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:138 clientgui/sg_ViewTabPage.cpp:278
+#, c-format
+msgid "%.1lf"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
+msgid "%d hr %d min %d sec"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:421
+msgid "Are you sure you want to display graphics on a remote machine?"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:422
+msgid "Show graphics"
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:444
+msgid "Application: "
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:447 clientgui/sg_ViewTabPage.cpp:451
+msgid "Time Remaining: "
+msgstr ""
+
+#: clientgui/sg_ViewTabPage.cpp:450
+msgid "Elapsed Time: "
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:218
+msgid "Terms of Use"
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:222
+msgid "Please read the following terms of use:"
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:231
+msgid "I agree to the terms of use."
+msgstr ""
+
+#: clientgui/TermsOfUsePage.cpp:237
+msgid "I do not agree with the terms of use."
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:183
+msgid "Project temporarily unavailable"
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:186
+msgid ""
+"The project is temporarily unavailable.\n"
+"\n"
+"Please try again later."
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:190
+msgid "Account manager temporarily unavailable"
+msgstr ""
+
+#: clientgui/UnavailablePage.cpp:193
+msgid ""
+"The account manager is temporarily unavailable.\n"
+"\n"
+"Please try again later."
+msgstr ""
+
+#: clientgui/ValidateAccountKey.cpp:68
+msgid "Please specify an account key to continue."
+msgstr ""
+
+#: clientgui/ValidateAccountKey.cpp:71
+msgid "Invalid Account Key; please enter a valid Account Key"
+msgstr ""
+
+#: clientgui/ValidateAccountKey.cpp:82 clientgui/ValidateEmailAddress.cpp:86
+msgid "Validation conflict"
+msgstr ""
+
+#: clientgui/ValidateEmailAddress.cpp:72
+msgid "Please specify an email address"
+msgstr ""
+
+#: clientgui/ValidateEmailAddress.cpp:75
+msgid "Invalid email address; please enter a valid email address"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:69
+msgid "Missing URL"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:70
+msgid ""
+"Please specify a URL.\n"
+"For example:\n"
+"http://www.example.com/"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:83 clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91 clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107 clientgui/ValidateURL.cpp:110
+msgid "Invalid URL"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:84 clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
+msgid ""
+"Please specify a valid URL.\n"
+"For example:\n"
+"http://boincproject.example.com"
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:104 clientgui/ValidateURL.cpp:108
+#, c-format
+msgid "'%s' does not contain a valid host name."
+msgstr ""
+
+#: clientgui/ValidateURL.cpp:111
+#, c-format
+msgid "'%s' does not contain a valid path."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:84 clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
+msgid "Commands"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:88 clientgui/ViewMessagesGrid.cpp:101
+msgid "Copy all messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:95 clientgui/ViewMessagesGrid.cpp:108
+msgid "Copy selected messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:106 clientgui/ViewMessages.cpp:502
+msgid "Show only this project"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:107 clientgui/ViewMessages.cpp:503
+msgid "Show only the messages for the selected project."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:164 clientgui/ViewMessagesGrid.cpp:157
+msgid "Messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:187 clientgui/ViewMessagesGrid.cpp:179
+msgid "Copying all messages to the clipboard..."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:223
+msgid "Copying selected messages to the clipboard..."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:286
+msgid "Filtering messages..."
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:494
+msgid "Show all messages"
+msgstr ""
+
+#: clientgui/ViewMessages.cpp:495
+msgid "Show messages for all projects."
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:128
+msgid "ID"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:128
+msgid "Priority"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:151
+msgid "MessagesGrid"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:209
+msgid "Copying selected messages to Clipboard..."
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:396
+msgid "Info"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:399
+msgid "Warning"
+msgstr ""
+
+#: clientgui/ViewMessagesGrid.cpp:403
+msgid "Error"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:76
+msgid "News Feeds"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:80
+msgid "BOINC"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:81
+msgid "Display the latest news about BOINC"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:87
+msgid "BOINC Website"
+msgstr ""
+
+#: clientgui/ViewNews.cpp:88
+msgid "Display the latest news about BOINC from the BOINC website"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:173
+msgid "Update"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:174
+msgid ""
+"Report all completed tasks, get latest credit, get latest preferences, and "
+"possibly get more tasks."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:180 clientgui/ViewProjects.cpp:707
+#, fuzzy
+msgid "Suspend"
+msgstr "Припинити"
+
+#: clientgui/ViewProjects.cpp:181 clientgui/ViewProjects.cpp:707
+msgid "Suspend tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:187 clientgui/ViewProjects.cpp:726
+msgid "No new tasks"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:188
+msgid "Don't get new tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:194
+msgid "Reset project"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:195
+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 ""
+
+#: clientgui/ViewProjects.cpp:201
+msgid "Detach"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:202
+msgid ""
+"Detach computer from this project.  Tasks in progress will be lost (use "
+"'Update' first to report any completed tasks)."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:208
+msgid "Properties"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:209
+msgid "Show project details."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:219
+msgid "Account"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:221
+msgid "Work done"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:222
+msgid "Avg. work done"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:224
+msgid "Status"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:249
+msgid "Projects"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:296
+msgid "Updating project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:338
+msgid "Resuming project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:342
+msgid "Suspending project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:379
+msgid "Telling project to allow additional task downloads..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:383
+msgid "Telling project to not fetch any additional tasks..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:419
+msgid "Resetting project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:432
+#, c-format
+msgid "Are you sure you want to reset project '%s'?"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:438
+msgid "Reset Project"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:477
+msgid "Detaching from project..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:537
+msgid "Launching browser..."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:703
+msgid "Resume"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:703
+msgid "Resume tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:722
+msgid "Allow new tasks"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:722
+msgid "Allow fetching new tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:726
+msgid "Don't fetch new tasks for this project."
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1052
+msgid "Suspended by user"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1055
+msgid "Won't get new tasks"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1058
+msgid "Project ended - OK to detach"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1061
+msgid "Will detach when tasks done"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1064
+msgid "Scheduler request pending"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1068
+msgid "Scheduler request in progress"
+msgstr ""
+
+#: clientgui/ViewProjects.cpp:1074
+msgid "Communication deferred "
+msgstr ""
+
+#: clientgui/ViewProjectsGrid.cpp:193
+msgid "ProjectsGrid"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:61
+msgid "Total disk usage"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:82
+msgid "Disk usage by BOINC projects"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:117
+msgid "Disk"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:223
+msgid "not attached to any BOINC project: 0 bytes"
+msgstr ""
+
+#: clientgui/ViewResources.cpp:260
+msgid "used by BOINC: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:270
+msgid "free, available to BOINC: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:280
+msgid "free, not available to BOINC: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:290
+msgid "free: "
+msgstr ""
+
+#: clientgui/ViewResources.cpp:300
+msgid "used by other programs: "
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1142
+msgid "User Total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1143
+msgid "User Average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1144
+msgid "Host Total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1145
+msgid "Host Average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
+msgid "Last update: %.0f days ago"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1745
+msgid "Show user total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1746
+msgid "Show total credit for user"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1752
+msgid "Show user average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1753
+msgid "Show average credit for user"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1759
+msgid "Show host total"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1760
+msgid "Show total credit for host"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1766
+msgid "Show host average"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1767
+msgid "Show average credit for host"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1776
+msgid "< &Previous project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1777
+msgid "Show chart for previous project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1782
+msgid "&Next project >"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1783
+msgid "Show chart for next project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1788
+msgid "Mode view"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1791
+msgid "All projects"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1792
+msgid "Show all projects, one chart per project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1798
+msgid "One project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1799
+msgid "Show one chart with selected project"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1805
+msgid "All projects(sum)"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1806
+msgid "Show one chart with all projects"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1833
+msgid "Statistics"
+msgstr ""
+
+#: clientgui/ViewStatistics.cpp:1853 clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895 clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938 clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980 clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
+msgid "Updating charts..."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:163 clientgui/ViewTransfersGrid.cpp:106
+msgid "Retry Now"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:164 clientgui/ViewTransfersGrid.cpp:107
+msgid "Click 'Retry now' to transfer the file now"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:170 clientgui/ViewTransfersGrid.cpp:113
+msgid "Abort Transfer"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:171 clientgui/ViewTransfersGrid.cpp:114
+msgid ""
+"Click 'Abort transfer' to delete the file from the transfer queue. This will "
+"prevent you from being granted credit for this result."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:182 clientgui/ViewTransfersGrid.cpp:129
+#, fuzzy
+msgid "File"
+msgstr "Файл"
+
+#: clientgui/ViewTransfers.cpp:183 clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226 clientgui/ViewWorkGrid.cpp:147
+msgid "Progress"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:184 clientgui/ViewTransfersGrid.cpp:129
+msgid "Size"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:185 clientgui/ViewTransfersGrid.cpp:130
+msgid "Elapsed Time"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:186 clientgui/ViewTransfersGrid.cpp:130
+msgid "Speed"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:212 clientgui/ViewTransfersGrid.cpp:167
+msgid "Transfers"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:271 clientgui/ViewTransfersGrid.cpp:190
+msgid "Retrying transfer now..."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:309
+msgid "Aborting transfer..."
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:322
+#, 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 ""
+
+#: clientgui/ViewTransfers.cpp:328
+msgid "Abort File Transfer"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:751 clientgui/ViewTransfersGrid.cpp:419
+msgid "Retry in "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:763 clientgui/ViewTransfersGrid.cpp:431
+msgid "Upload pending"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:763 clientgui/ViewTransfersGrid.cpp:431
+msgid "Download pending"
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
+msgid "TransfersGrid"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:228
+msgid "Aborting transfer(s)..."
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:230
+msgid ""
+"Are you sure you want to abort this file(s) transfer ?\n"
+"NOTE: Aborting a transfer will invalidate a task and you\n"
+"will not receive credit for it."
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:231
+msgid "Abort File Transfer(s)"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:184 clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185 clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192 clientgui/ViewWorkGrid.cpp:115
+msgid "Show application graphics in a window."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:199 clientgui/ViewWorkGrid.cpp:122
+msgid "Suspend work for this result."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:205 clientgui/ViewWorkGrid.cpp:128
+msgid "Abort"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:206 clientgui/ViewWorkGrid.cpp:129
+msgid "Abandon work on the result. You will get no credit for it."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:213
+msgid "Show task details."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:224 clientgui/ViewWorkGrid.cpp:146
+msgid "Name"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:225
+msgid "Elapsed"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:227 clientgui/ViewWorkGrid.cpp:147
+msgid "To completion"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:254 clientgui/ViewWorkGrid.cpp:190
+msgid "Tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:342 clientgui/ViewWorkGrid.cpp:220
+msgid "Resuming task..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:345 clientgui/ViewWorkGrid.cpp:223
+msgid "Suspending task..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:373 clientgui/ViewWorkGrid.cpp:251
+msgid "Showing graphics for task..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:426
+#, c-format
+msgid ""
+"Are you sure you want to abort this task '%s'?\n"
+"(Progress: %s, Status: %s)"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:437 clientgui/ViewWorkGrid.cpp:335
+msgid "Abort task"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:446 clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728 clientgui/ViewWorkGrid.cpp:445
+msgid "Resume work for this task."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:734 clientgui/ViewWorkGrid.cpp:451
+msgid "Suspend work for this task."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
+msgid " - an exclusive app is running"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1168 clientgui/ViewWorkGrid.cpp:822
+msgid " (non-CPU-intensive)"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
+msgid "TasksGrid"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
+msgid ""
+"Are you sure you want to abort this task '%s'?\n"
+"(Progress: %s %%, Status: %s)"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:256
+#, fuzzy
+msgid "Attach to project or account manager"
+msgstr "Підлючитися до проєкту чи менеджера облікових записів..."
+
+#: clientgui/WelcomePage.cpp:264
+#, 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 ""
+
+#: clientgui/WelcomePage.cpp:277
+msgid ""
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:281
+msgid ""
+"You have selected to attach to a new BOINC project.  Attaching to a new\n"
+"project means that you will be connecting your computer to a new website\n"
+"and organization.  If this is what you wanted to do, then please click on\n"
+"the 'Next' button below.\n"
+"\n"
+"Some projects like World Community Grid run multiple research applications.\n"
+"If you want to change which research applications are sent to your computer\n"
+"to run, then you should visit the project's website and modify your\n"
+"preferences there.\n"
+"\n"
+"To change which research applications are sent to you from\n"
+"World Community Grid then please click on the following button:"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr ""
+
+#: clientgui/WelcomePage.cpp:301
+msgid "To continue, click Next."
+msgstr ""
+
+#: clientgui/WizardAttachProject.cpp:610
+msgid "Do you really want to cancel?"
+msgstr ""
+
+#: clientgui/WizardAttachProject.cpp:611
+msgid "Question"
+msgstr ""
+
+#: clientgui/wizardex.cpp:377 clientgui/wizardex.cpp:553
+msgid "&Next >"
+msgstr ""
+
+#: clientgui/wizardex.cpp:383
+msgid "< &Back"
+msgstr ""
+
+#: clientgui/wizardex.cpp:553
+msgid "&Finish"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
+msgid "New page inserted. Index = %i"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
+msgid "New page appended. Index = %i"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
+msgid "Old Page Index = %i"
+msgstr ""
+
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
+msgid "OnDropTarget: index by HitTest = %i"
+msgstr ""
+
+#: clientgui/common/wxPieCtrl.cpp:66
+msgid "Pie Ctrl"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid ""
+"for accessibility support, please select advanced from the view menu or type "
+"command shift a"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:528 clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
+msgid "specify work start and stop hours in format HH:MM-HH:MM"
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:30
+msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
+msgstr ""
+
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "Зачинити вікно\tCtrl+W"
+
+#~ msgid "&News\tCtrl+Shift+N"
+#~ msgstr "Новини\tCtrl+Shift+N"
+
+#~ msgid "Display news"
+#~ msgstr "Показати новини"
diff --git a/locale/ar/BOINC-Project-Generic.po b/locale/uk/BOINC-Project-Generic.po
similarity index 100%
copy from locale/ar/BOINC-Project-Generic.po
copy to locale/uk/BOINC-Project-Generic.po
diff --git a/locale/uk/BOINC-Web.po b/locale/uk/BOINC-Web.po
new file mode 100644
index 0000000..7e46bf9
--- /dev/null
+++ b/locale/uk/BOINC-Web.po
@@ -0,0 +1,634 @@
+# BOINC web translation
+# Copyright (C) 2008-2009 University of California
+# This file is distributed under the same license as BOINC.
+# FileID  : $Id$
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.2.1\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+#: poll.inc:18
+msgid "[check all that apply]"
+msgstr ""
+
+#: poll.inc:47
+msgid "Other:"
+msgstr ""
+
+#: poll_data.inc:19
+msgid "Yes - I have been running BOINC on my computer for..."
+msgstr ""
+
+#: poll_data.inc:22
+msgid "less than a week"
+msgstr ""
+
+#: poll_data.inc:23
+msgid "less than a month"
+msgstr ""
+
+#: poll_data.inc:24
+msgid "less than a year"
+msgstr ""
+
+#: poll_data.inc:25
+msgid "more than a year"
+msgstr ""
+
+#: poll_data.inc:31
+msgid "No - I used to run BOINC, but..."
+msgstr ""
+
+#: poll_data.inc:34
+msgid "I lost interest"
+msgstr ""
+
+#: poll_data.inc:35
+msgid "it was too complicated"
+msgstr ""
+
+#: poll_data.inc:36
+msgid "I stopped it and forgot to start again"
+msgstr ""
+
+#: poll_data.inc:37
+msgid "it caused problems on my computer"
+msgstr ""
+
+#: poll_data.inc:38
+msgid "it used too much electricity"
+msgstr ""
+
+#: poll_data.inc:39
+msgid "I switched to a non-BOINC computing project"
+msgstr ""
+
+#: poll_data.inc:45
+msgid "No - I tried running BOINC, but..."
+msgstr ""
+
+#: poll_data.inc:48
+msgid "the software didn't install correctly"
+msgstr ""
+
+#: poll_data.inc:49
+msgid "I couldn't figure out how to use the software"
+msgstr ""
+
+#: poll_data.inc:50
+msgid "I had network communication problems"
+msgstr ""
+
+#: poll_data.inc:51
+msgid "I couldn't attach to a project"
+msgstr ""
+
+#: poll_data.inc:52
+msgid "I attached to a project, but never got any work"
+msgstr ""
+
+#: poll_data.inc:58
+msgid "No - I never tried running BOINC, because..."
+msgstr ""
+
+#: poll_data.inc:61
+msgid "I was concerned about security"
+msgstr ""
+
+#: poll_data.inc:62
+msgid "I wasn't interested in any of the projects"
+msgstr ""
+
+#: poll_data.inc:63
+msgid "I don't have permission to run it on my computer"
+msgstr ""
+
+#: poll_data.inc:64
+msgid "No version was available for my computer"
+msgstr ""
+
+#: poll_data.inc:75
+msgid "What kind of computers do you have running BOINC?"
+msgstr ""
+
+#: poll_data.inc:85
+msgid "Where are they?"
+msgstr ""
+
+#: poll_data.inc:87
+msgid "Home"
+msgstr ""
+
+#: poll_data.inc:88
+msgid "Work"
+msgstr ""
+
+#: poll_data.inc:89
+msgid "School"
+msgstr ""
+
+#: poll_data.inc:96
+msgid "How many computers?"
+msgstr ""
+
+#: poll_data.inc:107
+msgid "On average, how many hours per day are they powered on?"
+msgstr ""
+
+#: poll_data.inc:119
+msgid "Age"
+msgstr ""
+
+#: poll_data.inc:129
+msgid "Sex"
+msgstr ""
+
+#: poll_data.inc:131
+msgid "Male"
+msgstr ""
+
+#: poll_data.inc:132
+msgid "Female"
+msgstr ""
+
+#: poll_data.inc:137
+msgid "Your level of computer expertise"
+msgstr ""
+
+#: poll_data.inc:139
+msgid "Beginner"
+msgstr ""
+
+#: poll_data.inc:140
+msgid "Intermediate"
+msgstr ""
+
+#: poll_data.inc:141
+msgid "Advanced"
+msgstr ""
+
+#: poll_data.inc:149
+msgid "Where did you learn about BOINC projects?"
+msgstr ""
+
+#: poll_data.inc:151
+msgid "TV/radio/newspaper"
+msgstr ""
+
+#: poll_data.inc:152
+msgid "From friends, relatives, or coworkers"
+msgstr ""
+
+#: poll_data.inc:153
+msgid "Team message boards or web sites"
+msgstr ""
+
+#: poll_data.inc:154 poll_data.inc:210
+msgid "The BOINC web site"
+msgstr ""
+
+#: poll_data.inc:155
+msgid "Other web sites"
+msgstr ""
+
+#: poll_data.inc:161
+msgid ""
+"Which are the most important factors when you decide whether to participate "
+"in a BOINC project?"
+msgstr ""
+
+#: poll_data.inc:163
+msgid "Nice-looking screensaver graphics"
+msgstr ""
+
+#: poll_data.inc:164
+msgid "Fair and quick granting of credit for work done"
+msgstr ""
+
+#: poll_data.inc:165
+msgid "Getting more credit from this project than from others"
+msgstr ""
+
+#: poll_data.inc:166
+msgid "Helpful and friendly message boards"
+msgstr ""
+
+#: poll_data.inc:167
+msgid "Participation by project staff on the message boards"
+msgstr ""
+
+#: poll_data.inc:168
+msgid "Informative project web site"
+msgstr ""
+
+#: poll_data.inc:169
+msgid "The science is important and beneficial"
+msgstr ""
+
+#: poll_data.inc:170
+msgid "Non-profit, and results are public"
+msgstr ""
+
+#: poll_data.inc:171
+msgid "Personal recognition if my computer finds something"
+msgstr ""
+
+#: poll_data.inc:172
+msgid "Publication by the project in scientific journals"
+msgstr ""
+
+#: poll_data.inc:173
+msgid "Periodic email newsletters from the project"
+msgstr ""
+
+#: poll_data.inc:180
+msgid "How many BOINC projects do you participate in?"
+msgstr ""
+
+#: poll_data.inc:190
+msgid "Do you run BOINC as a screensaver?"
+msgstr ""
+
+#: poll_data.inc:192
+msgid "Yes"
+msgstr ""
+
+#: poll_data.inc:193
+msgid "No"
+msgstr ""
+
+#: poll_data.inc:198
+msgid "Your usage of project messages boards:"
+msgstr ""
+
+#: poll_data.inc:200
+msgid "to read information"
+msgstr ""
+
+#: poll_data.inc:201
+msgid "to read and post information"
+msgstr ""
+
+#: poll_data.inc:202
+msgid "None"
+msgstr ""
+
+#: poll_data.inc:206
+msgid ""
+"Where do you get information to help resolve problems with BOINC and/or "
+"BOINC projects?"
+msgstr ""
+
+#: poll_data.inc:208
+msgid "The project message boards"
+msgstr ""
+
+#: poll_data.inc:209
+msgid "The BOINC message boards"
+msgstr ""
+
+#: poll_data.inc:211
+msgid "BOINC mailing lists"
+msgstr ""
+
+#: poll_data.inc:212
+msgid "The Unofficial BOINC Wiki"
+msgstr ""
+
+#: poll_data.inc:213
+msgid "Team web sites"
+msgstr ""
+
+#: poll_data.inc:214
+msgid "Google or other search engines"
+msgstr ""
+
+#: download.php:40
+msgid "Download BOINC"
+msgstr ""
+
+#: download.php:42
+#, php-format
+msgid "%s for %s (%s MB)"
+msgstr ""
+
+#: download.php:89
+msgid ""
+"BOINC is a program that lets you donate your idle computer time to science "
+"projects like SETI at home, Climateprediction.net, Rosetta at home, World "
+"Community Grid, and many others. <p> After installing BOINC on your "
+"computer, you can connect it to as many of these projects as you like."
+msgstr ""
+
+#: download.php:114
+#, php-format
+msgid ""
+"Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
+"(GPU), you may be able to %suse it to compute faster%s"
+msgstr ""
+
+#: download.php:120
+msgid "System requirements"
+msgstr ""
+
+#: download.php:121
+msgid "Release notes"
+msgstr ""
+
+#: download.php:122 index.php:89
+msgid "Help"
+msgstr ""
+
+#: download.php:123
+msgid "All versions"
+msgstr ""
+
+#: download.php:141
+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 ""
+
+#: index.php:23
+msgid "Computing power"
+msgstr ""
+
+#: index.php:25
+msgid "Top 100 volunteers"
+msgstr ""
+
+#: index.php:26
+msgid "Statistics"
+msgstr ""
+
+#: index.php:53
+msgid "Active:"
+msgstr ""
+
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
+
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
+msgstr ""
+
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
+
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
+#, php-format
+msgid ""
+" Use the idle time on your computer (Windows, Mac, or Linux) to cure "
+"diseases, study global warming, discover pulsars, and do many other types of "
+"scientific research.  It's safe, secure, and easy:  %sChoose%s projects  %"
+"sDownload%s and run BOINC software  %sEnter%s an email address and password. "
+msgstr ""
+
+#: index.php:107
+#, php-format
+msgid ""
+"Or, if you run several projects, try an %saccount manager%s such as %"
+"sGridRepublic%s or %sBAM!%s. "
+msgstr ""
+
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
+
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
+#, php-format
+msgid ""
+"Open-source software for %svolunteer computing%s and %sgrid computing%s."
+msgstr ""
+
+#: poll.php:9
+msgid "BOINC user survey"
+msgstr ""
+
+#: poll.php:19
+msgid ""
+"Several volunteer computing projects, including Climateprediction.net, "
+"Einstein at home, and SETI at home, use software called BOINC.  If you participate "
+"in projects like this, we request that you answer the following questions.  "
+"This will help BOINC-based projects increase participation and achieve "
+"greater scientific results. <p> Please answer as many questions as you want, "
+"then go to the bottom and click OK. If you previously completed the survey "
+"but your answers have changed, please complete it again - your new answers "
+"will replace the old ones. <p> The current results of the survey are <a "
+"href=poll_results.php>here</a>. "
+msgstr ""
+
+#: poll.php:25
+msgid "Do you run BOINC?"
+msgstr ""
+
+#: poll.php:30
+msgid "Your participation"
+msgstr ""
+
+#: poll.php:32
+msgid "Your computers"
+msgstr ""
+
+#: poll.php:34
+msgid "You"
+msgstr ""
+
+#: poll.php:39
+msgid "Nationality"
+msgstr ""
+
+#: poll.php:44
+msgid "Comments"
+msgstr ""
+
+#: poll.php:46
+msgid ""
+"Please suggest ways that BOINC, and the projects that use it, could be "
+"improved:"
+msgstr ""
+
+#: poll.php:50
+msgid "When done click:"
+msgstr ""
+
+#: poll_action.php:9
+msgid "Error - results not recorded"
+msgstr ""
+
+#: poll_action.php:10
+msgid ""
+"An internal error has prevented us from recording your survey response.  "
+"Please try again later."
+msgstr ""
+
+#: poll_action.php:32
+msgid "Survey response recorded"
+msgstr ""
+
+#: poll_action.php:33
+msgid "Thank you for completing the BOINC user survey."
+msgstr ""
+
+#: poll_results.php:195
+msgid "Survey results"
+msgstr ""
+
+#: poll_results.php:196
+msgid ""
+"These are the current results of the <a href=poll.php>BOINC user survey</"
+"a>.  This page is updated every hour."
+msgstr ""
diff --git a/locale/uk/pootle-boincclient610-uk.prefs b/locale/uk/pootle-boincclient610-uk.prefs
new file mode 100644
index 0000000..e34fe9f
--- /dev/null
+++ b/locale/uk/pootle-boincclient610-uk.prefs
@@ -0,0 +1,8 @@
+# Pootle preferences for project boincclient610, language uk
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  davea = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  eorit = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/updatetrans.sh b/locale/updatetrans.sh
new file mode 100755
index 0000000..f873480
--- /dev/null
+++ b/locale/updatetrans.sh
@@ -0,0 +1,98 @@
+#!/bin/sh
+
+# Automate the compilation of the various locale PO files by automatically
+# generating them at night.
+#
+projname=boincclient610
+projdir=$HOME/pootle/po/$projname
+
+cd $projdir
+
+
+# Update anything that needs updating
+svn update
+
+
+# Iterrate through the various PO files looking for those that need to be compiled.
+#
+for file in `find -name 'BOINC-Manager.po'` ; do
+  dir=`dirname $file`
+  locale=`basename $dir`
+  template_name=${projdir}/${locale}/BOINC-Manager
+ 
+  # Remove old MO from previous compilation
+  #
+  rm ${projdir}/BOINC-Manager.mo > /dev/null 2> /dev/null
+
+  if test ${template_name}.po -nt ${template_name}.mo
+  then
+
+    # Use wget to cause the Pottle system to compile the PO file into an MO file.
+    #
+    # poEdit has a hard time with the Pootle markup in the PO files.
+    #
+    # Example: http://boinc.berkeley.edu/translate/ar/boinctrunk/BOINC-Manager.mo
+    #
+    wget "http://boinc.berkeley.edu/translate/${locale}/${projname}/BOINC-Manager.mo" > /dev/null 2> /dev/null
+    
+    # Add any new MO files to SVN
+    svn add ${template_name}.mo > /dev/null 2> /dev/null
+
+    # Touch each file to adjust timestamps
+    touch ${template_name}.po
+    touch ${template_name}.mo 
+
+  fi  
+done
+
+
+# Determine if we need to update the various languages using the templates.
+# This will be done by the use of a tag file which should have a matching 
+# timestamp as the template files. If the timestamps do not match update all
+# languages.
+for file in `find -name '*.pot'` ; do
+  template_rootname=`basename $file .pot`
+  template_name=${projdir}/templates/${template_rootname}
+
+  # Check to see if the file exists, if not create it
+  if test ! -e ${template_name}.flag
+  then
+    cp ${template_name}.pot ${template_name}.flag
+  fi
+  
+  # If the modification timestamps don't match then update all the languages
+  if test ${template_name}.pot -nt ${template_name}.flag
+  then
+    execute_update=true
+  fi  
+done
+
+if test "${execute_update}" = "true"
+then
+
+  for file in `find -name '*.po'` ; do
+    dir=`dirname $file`
+    locale=`basename $dir`
+    po_name=`basename $file .po`
+
+    msgmerge --update ${locale}/${po_name}.po templates/${po_name}.pot
+ 
+  done
+
+fi
+
+for file in `find -name '*.pot'` ; do
+  template_rootname=`basename $file .pot`
+  template_name=${projdir}/templates/${template_rootname}
+
+  # Touch each file to adjust timestamps
+  touch ${template_name}.pot
+  touch ${template_name}.flag
+
+done
+
+
+# Commit any changes to SVN
+svn commit -m 'Update Translations'
+
+exit 0
diff --git a/locale/zh_CN/BOINC-Manager.mo b/locale/zh_CN/BOINC-Manager.mo
index b0e9ef1..fcaedd7 100644
Binary files a/locale/zh_CN/BOINC-Manager.mo and b/locale/zh_CN/BOINC-Manager.mo differ
diff --git a/locale/zh_CN/BOINC-Manager.po b/locale/zh_CN/BOINC-Manager.po
index 02c9283..473f8cc 100644
--- a/locale/zh_CN/BOINC-Manager.po
+++ b/locale/zh_CN/BOINC-Manager.po
@@ -1,9 +1,9 @@
 msgid ""
 msgstr ""
-"Project-Id-Version: BOINC Manager 6.5.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
-"PO-Revision-Date: 2009-05-07 20:03-0700\n"
+"Project-Id-Version: BOINC Manager 6.10.x\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
+"PO-Revision-Date: 2010-03-11 10:27+0800\n"
 "Last-Translator: Yin Gang <zenith.yin at gmail.com>\n"
 "Language-Team: Team China <zenith.yin at gmail.com>\n"
 "Language: zh_CN\n"
@@ -12,18 +12,18 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Pootle 1.2.1\n"
-"X-Poedit-Language: English\n"
-"X-Poedit-SearchPath-0: clientgui\n"
+"X-Poedit-Language: Chinese\n"
 "X-Poedit-SourceCharset: iso-8859-1\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
-"X-Poedit-Country: UNITED STATES\n"
+"X-Poedit-Country: CHINA\n"
+"X-Poedit-SearchPath-0: clientgui\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "用户信息"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr "确认您的帐户"
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
@@ -31,7 +31,7 @@ msgstr ""
 "请输入您的帐户信息\n"
 "( 要创建帐户,请访问项目网站 )"
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
@@ -39,431 +39,475 @@ msgstr ""
 "该项目目前不支持新建帐户。\n"
 "您只能用现有的帐户在客户端加入该项目。"
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "您参加过这个项目吗?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "没有,我是新用户(&N)"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "是的,我已经注册过了(&Y)"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+"我们无法自动建立您的帐户信息。\n"
+"\n"
+"请点击下方的“寻找登录信息”超链接以查明\n"
+"应该在电子邮件地址和密码栏中填写什么内容。"
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr "寻找登录信息"
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "密码(&P):"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "选择一个密码(&P):"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "密码确认(&O):"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
 #, c-format
 msgid "Are you already running %s?"
 msgstr "您已经在运行 %s 吗?"
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr "用户名(&U):"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "电子邮件地址(&E):"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
 #, c-format
 msgid "minimum length %d"
 msgstr "最小长度 %d"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr "忘记您的密码了?"
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+"如果您还没有注册过这个帐户管理器,\n"
+"请在继续之前先注册。点击下方的超链接\n"
+"就可以进行注册或取回您已忘记的密码。"
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr "帐户管理器网站"
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "加入项目"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "更新帐户管理器"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "加入帐户管理器"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
 #, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr "该项目要求的最小密码长度为%d,请输入符合要求的密码。"
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
 #, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr "该帐户管理器要求的最小密码长度为%d。请输入符合要求的密码。"
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr "两次输入的密码不匹配,请重新输入。"
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "帐户管理器的网址"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr "选择一个帐户管理器"
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "请输入帐户管理器的网址。"
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr "要选择一个帐户管理器,请点击它的名称或在下方输入它的网址。"
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "帐户管理器的网址(&U):"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
 #, c-format
 msgid "Communicating with %s."
 msgstr "正在和 %s 进行通讯。"
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr "正在和服务器进行通讯。"
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "请稍候..."
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr "服务器上产生了一个内部错误。\n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "已连接"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "已断开"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "关闭窗口(&C)\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr "关闭 %s 窗口"
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "关闭 BOINC Manager 的窗口。"
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr "关闭窗口(&C)"
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
+#: clientgui/AdvancedFrame.cpp:319
 #, c-format
-msgid "Exit the %s"
+msgid "Exit %s"
 msgstr "退出 %s"
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "退出(&X)"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
-msgstr "高级视图(&A)\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
+msgstr "项目(&P)\tCtrl+Shift+P"
 
-#: clientgui/AdvancedFrame.cpp:325
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
-msgstr "高级视图允许用户按表格列进行排序并可显示图形化的进度条。"
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr "显示项目页"
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
-msgstr "简易视图(&S)\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
+msgstr "任务(&T)\tCtrl+Shift+T"
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "显示简洁的 BOINC 图形界面。"
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr "显示任务页"
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "加入项目(&P)..."
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr "网络传输(&F)\tCtrl+Shift+X"
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "加入一个项目"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr "显示网络传输页"
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "加入帐户管理器(&A)..."
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr "消息(&M)\tCtrl+Shift+M"
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "加入帐户管理器"
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr "显示消息页"
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr "统计(&S)\tCtrl+Shift+S"
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr "显示统计页"
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr "磁盘使用情况(&D)\tCtrl+Shift+D"
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr "显示磁盘使用情况页"
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr "简易视图(&V)...\tCtrl+Shift+V"
+
+#: clientgui/AdvancedFrame.cpp:372
+msgid "Display the simple graphical interface."
+msgstr "显示简洁的图形界面。"
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr "加入项目或帐户管理器(&P)..."
+
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr "加入一个项目或帐户管理器以取得计算任务"
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:397
 #, c-format
 msgid "&Synchronize with %s"
 msgstr "与 %s 进行同步(&S)"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
 #, c-format
 msgid "Get current settings from %s"
 msgstr "从 %s 获取当前的参数设定"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "加入项目(&P)..."
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "加入一个项目以开始处理任务"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "停止使用 %s(&S)"
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "将客户端退出帐户管理器。"
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "一直运行(&R)"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr "运行计算程序且不受参数设置的影响"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "依照参数运行(&P)"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "运行计算程序且依照用户的参数设置"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "暂停(&S)"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr "暂停计算程序且不受参数设置的影响"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr "总是使用 GPU"
+
+#: clientgui/AdvancedFrame.cpp:469
+msgid "Allow GPU work regardless of preferences"
+msgstr "使用 GPU 且不受参数设置的影响"
+
+#: clientgui/AdvancedFrame.cpp:473
+msgid "Use GPU based on &preferences"
+msgstr "依照参数使用 GPU (&P)"
+
+#: clientgui/AdvancedFrame.cpp:474
+msgid "Allow GPU work according to your preferences"
+msgstr "使用 GPU 且依照用户的参数设置"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr "从不使用 GPU"
+
+#: clientgui/AdvancedFrame.cpp:479
+msgid "Stop GPU work regardless of preferences"
+msgstr "暂停使用 GPU 且不受参数设置的影响"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "网络总是可用(&N)"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr "允许使用网络且不受参数设置的影响"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
-msgstr "依照参数使用网络(&P)"
+#: clientgui/AdvancedFrame.cpp:508
+msgid "Network activity based on pre&ferences"
+msgstr "依照参数使用网络(&F)"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr "允许使用网络且依照用户的参数设置"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
-msgstr "暂停使用网络(&N)"
+#: clientgui/AdvancedFrame.cpp:513
+msgid "Network activity s&uspended"
+msgstr "暂停使用网络(&U)"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr "暂停使用网络且不受参数设置的影响"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "选项(&O)..."
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "配置界面及代理服务器选项"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "本地参数设置..."
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr "修改本地参数设置 ( 配置信息将保存于 global_prefs_override.xml )"
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
 #, c-format
 msgid "Connect to another computer running %s"
 msgstr "连接到另外一台运行 %s 的计算机"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "选择计算机..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr "关闭当前连接的客户端..."
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr "关闭当前连接的客户端核心服务程序 ( boinc.exe )"
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "运行 CPU 基准测试(&B)"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "运行 BOINC 的 CPU 基准测试"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr "进行网络通讯(&C)"
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr "进行所有等待中的网络通讯请求。"
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr "读取客户端核心配置文件"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr "从 cc-config.xml 中读取配置信息。"
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "读取本地参数设置文件"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr "从 global_prefs_override.xml 中读取本地参数设置。"
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-#, c-format
-msgid "&Stop using %s..."
-msgstr "停止使用 %s(&S)"
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "将客户端退出帐户管理器。"
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "加入项目(&P)"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "加入一个项目以开始处理任务"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
 #, c-format
 msgid "%s &help"
 msgstr "%s 帮助(&H)"
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
 #, c-format
 msgid "Show information about %s"
 msgstr "查看 %s 的信息"
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
 #, c-format
 msgid "&%s help"
 msgstr "%s 帮助"
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
 #, c-format
 msgid "Show information about the %s"
 msgstr "查看 %s 的信息"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
 #, c-format
 msgid "%s &website"
 msgstr "%s 网站(&W)"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
 #, c-format
 msgid "Show information about BOINC and %s"
 msgstr "查看 BOINC 和 %s 的信息"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
 #, c-format
 msgid "&About %s..."
 msgstr "关于 %s (&A)..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "查看许可与版权信息。"
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "文件(&F)"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "视图(&V)"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "工具(&T)"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "活动(&A)"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "高级(&D)"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "帮助(&H)"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr "%s - 关闭当前连接的客户端..."
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
+msgstr "正在加入项目或帐户管理器..."
 
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
-msgstr ""
-"%s 将要关闭当前连接的客户端,\n"
-"然后会提示您输入想要连接的客户端。\n"
-
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
 #, c-format
 msgid "%s - Detach from %s"
 msgstr "%s - 退出 %s"
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
 #, c-format
 msgid ""
 "If you stop using %s,\n"
@@ -478,62 +522,64 @@ msgstr ""
 "\n"
 "您确定要停止使用 %s 吗?"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "正在加入项目..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "正在重试项目的网络通讯..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
 #, c-format
 msgid "%s - Language Selection"
 msgstr "%s - 语言选择"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
 #, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr "%s 的缺省语言已被修改,且必须重启 %s 才能生效。"
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - 关闭当前连接的客户端..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+"%s 将要关闭当前连接的客户端,\n"
+"然后会提示您输入想要连接的客户端。\n"
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "正在重试项目的网络通讯..."
+
+#: clientgui/AdvancedFrame.cpp:1725
 #, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
 #, c-format
 msgid "%s has successfully attached to %s"
 msgstr "%s 已经成功地加入了 %s"
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
 #, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
 #, c-format
 msgid "Connecting to %s"
 msgstr "正在连接至 %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
 #, c-format
 msgid "Connected to %s (%s)"
 msgstr "已连接至 %s ( %s )"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "该用户名已被使用"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -544,11 +590,11 @@ msgstr ""
 "\n"
 "请访问项目网站并按照上面的说明进行操作。"
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "该电子邮件地址已被使用"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -559,17 +605,30 @@ msgstr ""
 "\n"
 "请访问项目网站并按照上面的说明进行操作。"
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr "正在连接 BOINC 客户端。请稍候..."
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr "退出 %s (&Q)"
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr "退出 %s (&X)"
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "取消"
+
+#: clientgui/BOINCBaseFrame.cpp:422
 #, c-format
 msgid "%s - Connection Error"
 msgstr "%s - 连接错误"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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."
@@ -577,7 +636,7 @@ msgstr ""
 "您当前未被授权管理本客户端。\n"
 "请联系系统管理员将您添加到名称为 boinc_users 的本地用户组。"
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
@@ -585,22 +644,20 @@ msgstr ""
 "连接运行中的客户端时发生验证错误。\n"
 "请务必在该客户端所在的文件目录中运行本程序。"
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr "连接至已运行的客户端时发生验证错误。"
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "您提供的密码不正确,请重试。"
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
 #, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - 连接失败"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
 #, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
@@ -609,14 +666,12 @@ msgstr ""
 "%s 无法连接至 %s 客户端。\n"
 "您想再连接一次吗?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
 #, c-format
 msgid "%s - Daemon Start Failed"
 msgstr "%s - 客户端服务程序启动失败"
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
 #, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
@@ -625,8 +680,7 @@ msgstr ""
 "%s 无法启动 %s 客户端的服务程序。\n"
 "请依次运行 控制面板->管理工具->服务,并从中启动 BOINC 服务。"
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
 #, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
@@ -635,14 +689,12 @@ msgstr ""
 "%s 无法启动 %s 客户端的服务程序。\n"
 "请手工启动服务程序后再重试。"
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
 #, c-format
 msgid "%s - Connection Status"
 msgstr "%s - 连接状态"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
 #, c-format
 msgid ""
 "%s is not currently connected to a %s client.\n"
@@ -653,26 +705,21 @@ msgstr ""
 "请使用菜单中的'高级\\选择计算机...'以连接至一个 %s 客户端。\n"
 "如果要连接至您的本地计算机,请在主机名称中填入'localhost'。"
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "网站"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
 #, c-format
 msgid "%s - Network Status"
 msgstr "%s - 网络状态"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
 #, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr "%s 需要连接至互联网。请点击打开 %s。"
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
 #, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
@@ -681,8 +728,7 @@ msgstr ""
 "%s 无法与项目进行通讯,请求接入互联网。\n"
 "请接入互联网并在菜单中依次选择“高级->进行网络通讯”。"
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
 #, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
@@ -691,14 +737,12 @@ msgstr ""
 "%s 需要连接至互联网。\n"
 "现在就进行连接吗?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
 #, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s 正在连接至互联网。"
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
 #, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
@@ -708,20 +752,17 @@ msgstr ""
 "%s 无法在互联网上进行通讯,也没有设定缺省连接。\n"
 "请连接至互联网或者从菜单中选择'高级->选项'然后切换到连接页面以设定一个缺省连接。"
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
 #, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s 已经成功地连接至互联网。"
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
 #, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "%s 连接至互联网失败。"
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
 #, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
@@ -730,19 +771,43 @@ msgstr ""
 "%s 已经检测到与互联网的连接。\n"
 "请更新所有项目并重试所有网络传输。"
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
 #, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s 已经成功地断开至互联网的连接。"
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
 #, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s 断开至互联网的连接失败。"
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+"您当前未被授权管理本客户端。\n"
+"\n"
+"要在当前用户下运行 BOINC,请:\n"
+" - 重新安装 BOINC,在被问到关于非系统管理员用户的问题时,回答\"是\"\n"
+" - 联系系统管理员将您加入到“boinc_master”用户组。"
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"BOINC 相关的本地用户权限设置有误,请重新安装 BOINC。\n"
+"( 错误代码 %d )"
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
@@ -750,104 +815,111 @@ msgstr ""
 "BOINC 需要在计算机重新启动后才能正常运行。\n"
 "请您先重启计算机再重试当前的操作。"
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "BOINC Manager"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr "BOINC Manager 已经由操作系统自动运行"
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr "启动 BOINC 时仅显示在系统托盘区"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr "包含 BOINC 客户端执行程序的目录"
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr "BOINC 数据目录"
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr "使用可选参数来启动 BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr "禁用 BOINC 中用户和权限相关的安全选项"
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr "设置皮肤调试模式已启用皮肤管理器的错误消息记录"
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "( 自动检测 )"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "( 未知 )"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "( 用户自定义 )"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 msgid "Computation is suspended."
 msgstr "计算被暂停。"
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 msgid "Network activity is suspended."
 msgstr "网络被暂停。"
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
 #, c-format
 msgid "%s: %.2f%% completed."
 msgstr "%s: 已完成 %.2f%%。"
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
 #, c-format
 msgid "%d tasks running."
 msgstr "%d 个任务正在运行。"
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 msgid "Reconnecting to client."
 msgstr "正在重新连接至客户端。"
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 msgid "Not connected to a client."
 msgstr "当前没有连接到任何客户端。"
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
 #, c-format
 msgid "Open %s Web..."
 msgstr "打开 %s 的网站..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
 #, c-format
 msgid "Open %s..."
 msgstr "打开 %s..."
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "休息一下"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr "让 GPU 休息一下"
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "加入项目失败"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr "更新帐户管理器失败"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr "退出帐户管理器失败"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "加入帐户管理器失败"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -859,157 +931,139 @@ msgstr ""
 "\n"
 "点击完成可关闭本窗口。"
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "点击完成以关闭向导。"
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "服务器发来的消息:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "已加入到项目"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "您已经成功加入到这个项目。"
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
 msgstr "点击完成,您的浏览器将打开一个网页,您可在网页上设置您的帐户用户名及项目参数。"
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
 #, c-format
 msgid "Update from %s completed."
 msgstr "从 %s 的更新已完成。"
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "更新已完成。"
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-#, c-format
-msgid "Removal from %s completed."
-msgstr "退出 %s 已完成。"
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "退出成功!"
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
 #, c-format
 msgid "Attached to %s"
 msgstr "已经加入了 %s"
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "已经加入到帐户管理器"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
 #, c-format
 msgid "Welcome to %s!"
 msgstr "欢迎来到 %s!"
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
 #, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "您已经成功地加入了 %s 系统。"
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "您已经成功地加入了当前帐户管理器。"
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
 #, c-format
 msgid "About %s"
 msgstr "关于 %s"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "版本:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr "wxWidgets 版本:"
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "版权所有:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
-"(C) 2003-2008 加州大学伯克利分校。\n"
+"(C) 2003-2010 加州大学伯克利分校。\n"
 "保留所有权利。\n"
 "\n"
-"( 中文翻译: 2005-2009 Yin Gang @ Team China )\n"
+"( 中文翻译: 2005-2010 Yin Gang @ Team China )\n"
 "( 中文网站: http://www.equn.com )\n"
 "( 中文论坛: http://www.equn.com/forum )"
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr "伯克利开放式网络计算平台 ( BOINC )"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "确定(&O)"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr "非法的浮点数"
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr "错误的时间,正确格式应该是 HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr "错误的时间间隔,正确格式应该是 HH:MM-HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr "检测到错误的输入值"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr "验证错误"
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr "您确定要清除所有的本地参数设置吗?"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr "确认"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
 #, c-format
 msgid "%s - Preferences"
 msgstr "%s - 本地参数设置"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
@@ -1019,361 +1073,357 @@ msgstr ""
 "点击“确定”即可保存并应用对话框中的相关设置。\n"
 "点击“清除”即可恢复使用项目网站上的参数设置。"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr "清除"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr "清除所有本地的参数设置并关闭对话框"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr "允许计算的情况"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr "电池供电时"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr "如果您希望在电池供电时仍进行计算请选上"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr "使用计算机时"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr "如果您希望在您使用计算机的时候仍进行计算请选上"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr " 是否在使用计算机时仍运行 GPU 计算程序"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr "如果您希望在使用计算机的时候仍运行 GPU 版计算程序请选中此项"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr "仅在计算机空闲多少时间后"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr "仅在您不使用计算机后指定的时间才进行计算"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr "分钟"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+msgid "While processor usage is less than"
+msgstr "当处理器的使用率低于百分之"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr "如果处理器使用率超出设置值就暂停计算"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr "时 (0 表示不限制)"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr "每日时间段 从"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr "开始计算的时间"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr "到"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr "停止计算的时间"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr "( 如果相同即表示不进行限制 )"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr "定制每周内各天的可用时间段:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr "选取以指定每周内的某天以进行可用时间设定"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr "周一"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr "周二"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr "周三"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr "周四"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr "周五"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr "周六"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr "周日"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr "其它选项"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
-msgstr "切换计算程序的时间间隔"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+msgid "Switch between applications every"
+msgstr "计算程序的切换时间间隔"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr "在多处理器系统上,最多使用"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
 #, no-c-format
-#, c-format
 msgid "% of the processors"
 msgstr "% 处理器"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr "最多使用"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
 #, no-c-format
 msgid "% CPU time"
 msgstr "% CPU时间"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr "处理器使用"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr "综合选项"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr "最大下载速率"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr "千字节/秒。"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr "最大上传速率"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr "连接网络的间隔"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
 msgstr "本台计算机连接互联网的间隔天数 ( 0 表示一直连接 )"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr "天"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr "额外的任务缓存"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr "天 ( 最多十天 )"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr "不对映像文件进行校验"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr "如果您的互联网接入服务端修改了镜像文件请选择上"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr "网络选项"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr "接入互联网前先确认"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr "如果选中,在需要连接至互联网时会先显示一个确认对话框"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr "传输完成后断开连接"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
 msgstr "如果选上,BOINC 将在使用完网络后断开连接 ( 仅适用于拨号连接 )"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr "允许使用网络的情况"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr "开始使用网络的时间"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr "停止使用网络的时间"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr "网络使用"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr "磁盘使用"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr "BOINC 最多可使用的磁盘空间 (GB)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr "磁盘空间 (GB)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr "至少保留"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr "BOINC 至少需保留的磁盘空余 (GB)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr "剩余磁盘空间 (GB)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr "BOINC 最多可使用的磁盘空间比例"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
 #, no-c-format
 msgid "% of total disk space"
 msgstr "% 总磁盘空间"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
-msgstr "写磁盘的最小时间间隔"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr "任务的最快存盘间隔"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr "秒"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
 #, no-c-format
 msgid "% of page file (swap space)"
 msgstr "% 页面文件 ( 交换空间 )"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr "内存使用"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
 #, no-c-format
 msgid "% when computer is in use"
 msgstr "% ( 使用计算机时 )"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
 #, no-c-format
 msgid "% when computer is idle"
 msgstr "% ( 计算机闲置时 )"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr "计算程序暂停时驻留在内存"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr "如果选中,暂停的计算任务将保留在内存中"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr "磁盘和内存使用"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr "确定"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr "保存所有参数值并关闭对话框"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr "取消"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr "关闭对话框且不进行任何保存"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "帮助"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr "显示参数设置网页"
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
 #, c-format
 msgid "%s - Exit Confirmation"
 msgstr "%s - 退出确认"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
 #, c-format
 msgid ""
 "You have requested to exit the %s,\n"
@@ -1389,8 +1439,7 @@ msgstr ""
 "如果您想要在退出 BOINC Manager 的同时停止运行\n"
 "所有的科学计算程序,请在下列选项中进行选择:"
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
 #, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
@@ -1404,414 +1453,376 @@ msgstr ""
 "\n"
 "一般情况下,建议只关闭 %s 的窗口而不是退出应用程序,这样 %s 将会在您设定的时间段内进行工作。"
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr "退出 BOINC Manger 的同时停止运行科学计算程序。"
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr "记住当前的选择并不再显示本对话框。"
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "取消(&C)"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr "不再显示本对话框。"
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr "关闭(&C)"
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr "项目属性"
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "综合"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr "主网址 (Master URL)"
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 msgid "User name"
 msgstr "用户名称"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr "团队名称"
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "资源分享"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr "远程调度请求被延迟"
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr "文件下载被延迟"
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr "文件上传被延迟"
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr "计算机编号"
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr "非 CPU 密集"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr "是"
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr "否"
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr "已在界面上被暂停"
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr "已禁止下载新任务"
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 msgid "Scheduler call in progress"
 msgstr "正在进行调度请求"
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 msgid "Attached via account manager"
 msgstr "已通过帐户管理器加入"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr "计算完成后退出项目"
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr "已结束"
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr "积分"
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr "用户"
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr "主机"
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr "调度"
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr "CPU 调度优先级"
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr "CPU 任务获取优先级"
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr "CPU 任务获取被延迟"
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr "CPU 任务获取延迟间隔"
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr "NVIDIA GPU 调度优先级"
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr "NVIDIA GPU 任务获取优先级"
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr "NVIDIA GPU 任务获取被延迟"
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr "NVIDIA GPU 任务获取延迟间隔"
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr "ATI GPU 调度优先级"
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr "ATI GPU 任务获取优先级"
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr "ATI GPU 任务获取被延迟"
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr "ATI GPU 任务获取延迟间隔"
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr "时长校正因子"
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr "任务属性"
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "计算程序"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr "任务单元名称"
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr "状态"
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr "接收时间"
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "上报期限"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr "资源"
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr "上次存盘的 CPU 时间"
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "已用 CPU 时间"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 msgid "Elapsed time"
 msgstr "已用时间"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr "预计剩余时间"
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr "完成百分比"
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr "虚存占用大小"
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr "工作集大小"
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
-msgstr "槽位"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
+msgstr "目录"
+
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr "进程标识"
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "新任务"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "下载失败"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "正在下载"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "项目已被用户暂停"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr "任务已被用户暂停"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "已被暂停"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr " - 电池供电"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr " - 用户活跃"
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr " - 计算被暂停"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr " - 休息时间段"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr " - CPU 基准测试"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr " - 磁盘空间不足"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr "等待足够的内存"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr "等待足够的共享内存"
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr "运行中,高优先级"
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "运行中"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr "等待运行"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr "准备运行"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "计算错误"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "上传失败"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "正在上传"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "已被用户终止"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "已被项目中止"
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "已中止"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "已被确认"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "等待上报"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
 #, c-format
 msgid "Error: invalid state '%d'"
 msgstr "错误:非法状态 '%d'"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
 #, c-format
 msgid "%s - Options"
 msgstr "%s - 选项"
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr "语言:"
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr "BOINC Manager 应该使用哪种语言?"
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
@@ -1819,125 +1830,116 @@ msgstr ""
 "网络提醒间隔:\n"
 "(分钟)"
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr "当需要连接网络的时候,BOINC Manager 应该多久一次提醒您?"
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr "在登录时运行 BOINC Manager?"
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr "在您登录的时候运行 BOINC Manager。"
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr "启用 BOINC Manager 的退出消息提示:"
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr "在关闭 BOINC Manager 时显示退出消息对话框。"
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "拨号及 VPN 设置"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "设置默认值(&S)"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "清除默认值(&C)"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "缺省连接:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "连接"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "通过 HTTP 代理连接"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "HTTP 代理配置"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "地址:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "端口:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr "不要使用代理服务器:"
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "下面的内容如果不需要请留空"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "用户名:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "密码:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "HTTP 代理"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "通过 SOCKS 代理连接"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "SOCKS 代理配置"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "SOCKS 代理"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
 #, c-format
 msgid "%s - Select Computer"
 msgstr "%s - 选择计算机"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "主机名:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
 #, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s - 无法找到网页浏览器"
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
 #, c-format
 msgid ""
 "%s tried to display the web page\n"
@@ -1952,228 +1954,223 @@ msgstr ""
 "但无法找到网络浏览器。\n"
 "请在环境变量中设置您的网络浏览器路径,然后重新运行 %s。"
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "留言板"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "在留言板上可以和其他 SETI at home 用户进行交流"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "提问及报告错误"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "您的帐户"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "查看您的帐户及积分信息"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "您的参数设置"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr "查看和修改您的 SETI at home 帐户及参数设置"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "您的任务"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr "查看您近期的计算任务及结果"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "您的计算机"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr "查看您用来运行 SETI at home 的计算机列表"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "您的团队"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "查看您的团队信息"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "常见问题"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "阅读 Einstein at Home 的常见问答列表"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "屏保信息"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "阅读 Einstein at Home 屏保的详细信息"
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr "和管理员及其他 Einstein at Home 用户进行交流"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "服务器状态"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Einstein at Home 服务器的当前状态"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "报告问题"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr "链接到 Einstein at Home 留言板的提问及报错版面"
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr "查看和修改您的 Einstein at Home 帐户及参数设置"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "帐户概要"
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr "查看您用来运行 Einstein at Home 的计算机列表"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "LIGO 项目"
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr "激光干涉引力波观测站 (LIGO) 项目的主页"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "GEO-600 项目"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "GEO-600 项目的主页"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "团队"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "您的团队信息"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "从 CPDN 得到帮助"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "æ–°é—»"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "CPDN 的项目新闻"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr "查看您的帐户信息、积分及已上传的任务。"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "您的团队信息"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr "在我们的帮助系统中寻求帮助"
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "全局统计"
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "WCG 概况统计"
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr "我的网格"
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "您的统计信息及参数设置"
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr "设备档案"
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr "更新您的设备参数"
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr "研究"
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "了解 WCG 平台上的项目"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr "正在启动客户端的服务程序,请稍候..."
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "正在读取系统状态,请稍候..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "正在读取主机信息,请稍候..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "未连接到互联网"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "请连接至互联网并重试。"
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "查找项目失败"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2183,11 +2180,11 @@ msgstr ""
 "\n"
 "请检查该网址并重试。"
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "查找帐户管理器失败"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2198,50 +2195,60 @@ msgstr ""
 "\n"
 "请检查该网址并重试。"
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr "登录失败。"
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr "请检查用户名及密码,然后重试。"
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr "请检查电子邮件地址及密码,然后重试。"
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr "选择一个项目"
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr "要选择一个项目,请点击它的项目名称或在下方输入它的项目网址。"
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "项目网址(&U):"
 
-#: clientgui/ProjectInfoPage.cpp:320
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr "该项目可能没有适合您计算机的任务类型。您确定还要继续吗?"
+
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr "您当前已经加入了这个项目,请选择一个其它的项目。"
 
-#: clientgui/ProjectInfoPage.cpp:321
-msgid "Already Attached to Project"
-msgstr "已加入到该项目"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr "点击"
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
-msgstr "该项目可能没有适合您计算机的任务类型。"
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
+msgstr "已支持多核 CPU"
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-#, c-format
-msgid "Click here to go to %s's website."
-msgstr "点击可访问 %s 的项目网站。"
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
+msgstr "已支持 Nvidia GPU"
+
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr "已支持 ATI GPU"
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr "项目网站"
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
@@ -2249,7 +2256,7 @@ msgstr ""
 "正在与项目通讯。\n"
 "请稍候..."
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
@@ -2257,11 +2264,11 @@ msgstr ""
 "无法从目标服务器获取必须的向导文件。\n"
 "( lookup_account.php/create_account.php )\n"
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "网络通讯失败"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
 "over the Internet. The most likely reasons are:\n"
@@ -2272,7 +2279,7 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
@@ -2287,7 +2294,7 @@ msgstr ""
 "3) 您正在通过代理服务器接入互联网。\n"
 "请点击下一步以对 BOINC 的代理进行设置。"
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
 "The most likely reasons are:\n"
@@ -2313,496 +2320,464 @@ msgstr ""
 "3) 您正在通过代理服务器接入互联网。\n"
 "请点击下一步以对 BOINC 的代理进行设置。"
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "代理配置"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "HTTP 代理"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "服务器:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "自动检测"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "SOCKS 代理"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr "高级视图...\tCtrl+Shift+A"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr "显示高级图形界面。"
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
 #, c-format
 msgid "&%s"
 msgstr "&%s"
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr "正在获取当前状态。"
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr "您当前没有加入到任何项目,请先加入一个项目。"
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr "正在从服务器下载任务。"
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr "暂停计算:电池供电。"
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr "暂停计算:用户活跃。"
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr "暂停计算:用户暂停计算。"
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr "暂停计算: 休息时间段。"
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr "暂停计算:正在运行基准测试。"
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr "暂停计算。"
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr "正在等待连接项目服务器。"
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr "正在获取当前状态"
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr "无任务可供处理"
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr "无法连接至客户端的核心服务程序"
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "项目"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "时间"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "消息"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "复制所有消息至剪贴板。"
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 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 "复制选中的消息至剪贴板。您可以在选择的时候通过按住Shift键或Commandl键来选取多条消息。"
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 "复制选中的消息至剪贴板。您可以在选择的时候通过按住Shift键或Ctrl键来选取多条消息。"
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr "从 BOINC 得到帮助"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
 #, c-format
 msgid "%s - Messages"
 msgstr "%s - 消息"
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr "100 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr "200 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr "500 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr "1 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr "2 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr "5 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr "10 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr "20 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr "50 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr "100 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr "10%"
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr "20%"
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr "30%"
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr "40%"
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr "50%"
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr "60%"
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr "70%"
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr "80%"
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr "90%"
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr "100%"
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr "1"
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr "3"
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr "5"
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr "10"
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr "15"
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr "30"
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr "60"
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr "皮肤"
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr "皮肤:"
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr "参数设置"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr "我想定制本台计算机的参数。"
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr "定制的参数设置"
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr "计算时间段:"
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr "连接互联网的时间段:"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr "最多使用:"
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr "磁盘空间"
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr "处理器"
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr "电池供电时仍然计算?"
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr "闲置一定时间后开始计算:"
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr "任何时候"
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
 #, c-format
 msgid "%d MB"
 msgstr "%d MB"
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
 #, c-format
 msgid "%4.2f GB"
 msgstr "%4.2f GB"
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
 #, c-format
 msgid "%d%%"
 msgstr "%d%%"
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr "0 ( 一直运行 )"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
 #, c-format
 msgid "%d"
 msgstr "%d"
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr "暂停:其它任务在运行"
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr "暂停:用户发起,点击“继续”即可继续"
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr "暂停:用户活跃"
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr "暂停:电池供电"
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr "暂停:非计算时段"
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr "暂停:正在进行基准测试"
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr "暂停"
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr "暂停:计算程序延迟启动"
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr "点击即可显示项目图形"
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr "加入其它项目"
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr "从帐户管理系统同步项目"
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr "打开一个窗口来查看消息"
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr "暂停所有活动"
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr "继续所有活动"
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr "打开一个窗口进行本地参数设置"
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr "切换到 BOINC 的高级视图"
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr "我的项目:"
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
 #, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr "%s。%s 已经完成的任务:%0.2f"
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr "移除项目"
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
 #, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "您确定要退出'%s'项目吗?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "退出项目"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
 #, c-format
 msgid "%.1lf"
 msgstr "%.1lf"
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
 #, c-format
 msgid "%d hr %d min %d sec"
 msgstr "%d时%d分%d秒"
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr "您确定要在远程计算机上显示图形吗?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "显示图形"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
 msgstr "计算程序:"
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr "剩余时间:"
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
 msgstr "已用时间:"
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr "使用协议"
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr "请阅读以下的使用协议:"
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr "我同意该使用协议。"
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr "我不同意该使用协议。"
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "项目已暂停服务"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2812,11 +2787,11 @@ msgstr ""
 "\n"
 "请稍后重试。"
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "帐户管理器已暂停服务"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2826,32 +2801,32 @@ msgstr ""
 "\n"
 "请稍后重试。"
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "请输入帐户密钥以继续。"
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr "此帐户密钥错误;请输入一个正确的帐户密钥"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "验证冲突"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr "请指定一个电子邮件地址"
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr "此电子邮件地址错误;请输入一个正确的电子邮件地址"
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "网址不存在"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2861,18 +2836,18 @@ msgstr ""
 "例如:\n"
 "http://www.example.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "错误的网址"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2882,599 +2857,492 @@ msgstr ""
 "比如:\n"
 "http://boincproject.example.com/"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
 #, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "'%s'中未包含正确的主机名称。"
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
 #, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "'%s'中未包含正确的路径。"
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "命令"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "复制所有消息"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "复制选中的消息"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr "仅显示当前项目"
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr "仅显示当前选中项目的消息。"
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "消息"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "复制所有消息至剪贴板..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 msgid "Copying selected messages to the clipboard..."
 msgstr "复制选中的消息到剪贴板..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr "正在过滤消息..."
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 msgid "Show all messages"
 msgstr "显示所有消息"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr "显示所有项目的消息。"
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr "ID"
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr "优先级"
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr "消息网格"
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr "复制选中的消息到剪贴板..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr "信息"
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr "警告"
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr "错误"
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr "新闻订阅"
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr "BOINC"
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr "显示最新的 BOINC 新闻"
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
 msgstr "BOINC 网站"
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr "显示 BOINC 网站上最近关于 BOINC 的新闻"
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "æ›´æ–°"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr "上报所有完成的任务,获取最新的积分及参数设置,可能下载更多的新任务。"
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "暂停"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr "暂停当前项目的所有任务。"
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr "禁止下载新任务"
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr "该项目不再下载任何新任务。"
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "重置项目"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 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 "删除并重新下载当前项目所有相关文件。您可以先更新当前项目以上传所有已经完成的任务。"
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "退出"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr "在本计算机上退出当前项目。该项目所有正在计算的任务将丢失,您可以先点击“更新”按钮以上报所有已经完成的任务。"
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr "属性"
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr "显示项目细节。"
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "帐户"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "总积分"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr "近期平均积分"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "状态"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "项目"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "正在更新项目..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "正在继续项目..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "正在暂停项目..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr "允许项目下载更多的任务..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "禁止项目下载更多的任务..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "正在重置项目..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
 #, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "您确定要重置'%s'项目吗?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "重置项目"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "正在退出项目..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "正在启动浏览器..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "继续"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "继续当前任务的计算。"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "允许下载新任务"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr "允许当前项目下载新任务。"
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "禁止当前项目下载新任务。"
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "已被用户暂停"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "禁止下载新任务"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr "项目已结束 - 点击确定可退出项目"
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr "将在任务完成后退出"
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "等待调度请求"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr "正在进行调度请求"
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "通讯被延迟 "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr "项目网格"
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 msgid "Total disk usage"
 msgstr "总磁盘占用"
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 msgid "Disk usage by BOINC projects"
 msgstr "BOINC 项目的磁盘占用"
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "磁盘"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr "未加入到任何 BOINC 项目: 零字节"
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 msgid "used by BOINC: "
 msgstr "BOINC 使用:"
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr "BOINC 可用的剩余磁盘空间:"
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr "BOINC 不可用的剩余磁盘空间:"
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr "可用磁盘空间:"
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 msgid "used by other programs: "
 msgstr "其它程序使用:"
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "用户的总积分"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "用户的近期平均积分"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "主机的总积分"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "主机的近期平均积分"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
 #, c-format
 msgid "Last update: %.0f days ago"
 msgstr "上次更新:%.0f天前"
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "显示用户的总积分"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr "显示用户的总积分"
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "显示用户的近期平均积分"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr "显示用户的近期平均积分"
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "显示主机的总积分"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr "显示主机的总积分"
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "显示主机的近期平均积分"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr "显示主机的近期平均积分"
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< 前一项目(&P)"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr "显示前一个项目的图表"
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "后一项目(&N) >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr "显示后一个项目的图表"
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "查看模式"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "所有项目"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr "显示所有项目,一个项目一张图表"
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "单项目"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr "显示当前项目的图表"
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr "所有项目(合成)"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr "在一张图表中显示所有项目"
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "统计"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "正在更新图表..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "立即重试"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "点击“立即重试”,则现在就传输该文件"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "中断传输"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr "点击“中断传输”以从传输队列中删除该文件,这将导致您无法从该结果获得积分。"
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "文件"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "进度"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "大小"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "已用时间"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "速度"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "网络传输"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "正在重试传输..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "中断传输..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
 #, c-format
 msgid ""
 "Are you sure you want to abort this file transfer '%s'?\n"
@@ -3484,34 +3352,42 @@ msgstr ""
 "您确信要中断文件'%s'的传输吗?\n"
 "注意:中断传输将标识该任务为无效,您将不能从该任务得到积分。"
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "中断文件传输"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "稍后重试 "
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr "等待上传"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "等待下载"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr "( 项目延后:"
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ")"
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr "传输网格"
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 msgid "Aborting transfer(s)..."
 msgstr "中断传输..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
@@ -3520,75 +3396,79 @@ msgstr ""
 "您确信要中断文件'%s'的传输吗?\n"
 "注意:中断传输将标识该任务为无效,您将不能从该任务得到积分。"
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 msgid "Abort File Transfer(s)"
 msgstr "中断文件传输"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr "显示活动任务"
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr "只显示正在处理过程中的任务。"
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "在新窗口中显示项目图形。"
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "暂停当前任务。"
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "中止"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr "中止该任务,您将不能得到它的积分。"
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr "显示任务细节。"
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "任务名称"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr "已用时间"
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "剩余时间"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "任务"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "正在继续该任务..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "正在暂停该任务..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "正在显示该任务的图形..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "正在中止任务..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
 #, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
@@ -3597,36 +3477,61 @@ msgstr ""
 "您确定要中止当前任务'%s'吗?\n"
 "( 进度:%s,状态:%s )"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr "您确定想要中止这 %d 个任务吗?"
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "中止任务"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "正在中止任务..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr "显示所有任务"
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr "显示所有的任务。"
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr "继续计算当前任务。"
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr "暂停计算当前任务。"
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr "无可用 GPU, "
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr " - 有互斥的应用程序在运行"
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr "( 非 CPU 密集 )"
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr "已中止:未在截止日期前开始计算"
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr "任务网格"
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
 #, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
@@ -3635,12 +3540,11 @@ msgstr ""
 "您确定要中止当前任务'%s'吗?\n"
 "( 进度:%s %%,状态:%s )"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
-msgstr "设定 WCG 项目的科学计算程序"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
+msgstr "加入项目或帐户管理器"
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
 #, c-format
 msgid ""
 "If possible, add projects at the\n"
@@ -3653,13 +3557,13 @@ msgstr ""
 "\n"
 "通过向导增加的项目将不能在 %s 中显示及进行管理。"
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
-msgstr "我们将引导您完成加入一个项目的过程。"
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr " 我们将引导您完成加入一个项目或帐户管理器的过程。"
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3685,223 +3589,142 @@ msgstr ""
 "要设置您希望运行的 World Community Grid 项目计算程序,\n"
 "请点击后面的按钮:"
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-#, c-format
-msgid "&Stop using%s"
-msgstr "停止使用 %s(&S)"
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-"我们将从 %s 中移除当前计算机。\n"
-"从现在开始,请直接在该客户端中加入或退出项目。\n"
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "帐户管理器"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"我们将引导您完成加入一个帐户管理器的过程。\n"
-"\n"
-"如果您只想要加入一个项目,请点击取消,\n"
-"然后选择菜单中的'加入项目'。"
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "调试标志位"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "项目属性错误"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr "项目通讯失败"
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "项目网址错误"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "帐户创建已被停用"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "客户端的帐户创建已被停用"
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "帐户已存在"
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "项目已被加入"
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "加入项目失败"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
-msgstr "参考站点通讯失败"
-
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "网络检测失败"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
+msgstr "设定 WCG 项目的科学计算程序"
 
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "点击下一步以继续。"
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "您确定要取消吗?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "问题"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "下一步(&N) >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< 上一步(&B)"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "完成(&F)"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
 #, c-format
 msgid "New page inserted. Index = %i"
 msgstr "New page inserted. Index = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
 #, c-format
 msgid "New page appended. Index = %i"
 msgstr "New page appended. Index = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
 #, c-format
 msgid "Old Page Index = %i"
 msgstr "Old Page Index = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
 #, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr "OnDropTarget: index by HitTest = %i"
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr "派图"
 
-#: clientgui/DlgAdvPreferences.h:29
-msgid "specify work start and stop hours in format HH:MM-HH:MM"
-msgstr "指定开始和停止计算的时间,格式是 HH:MM-HH:MM"
-
-#: clientgui/DlgAdvPreferences.h:30
-msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
-msgstr "指定开始和停止使用网络的时间,格式是 HH:MM-HH:MM"
-
-#~ msgid ""
-#~ "You can copy and paste the URL from your browser's\n"
-#~ "address bar."
-#~ msgstr "您可以从浏览器的地址栏中复制网址(URL)。"
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr "要使用辅助功能,请从查看菜单中选择高级或者输入 shift a 命令"
 
-#~ msgid "For a list of account managers go to:"
-#~ msgstr "查看帐户管理器的列表请到:"
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr "该面板用来显示用户在各个项目的统计信息"
 
-#~ msgid "&Advanced View"
-#~ msgstr "高级视图(&A)"
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr "空白"
 
-#~ msgid "&Simple View..."
-#~ msgstr "简易视图(&S)"
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr "列表 "
 
-#~ msgid "Already attached to project"
-#~ msgstr "已经加入到项目"
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr " 内容为空"
 
-#~ msgid "You are already attached to this project."
-#~ msgstr "您已经加入到项目。"
-
-#~ msgid "Static text"
-#~ msgstr "静态文本"
-
-#~ msgid "Radiobutton"
-#~ msgstr "单选按钮"
-
-#~ msgid "Short term debt"
-#~ msgstr "短期债项"
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr "第 %d(共 %d);"
 
-#~ msgid "Long term debt"
-#~ msgstr "长期债项"
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr "当前排序列"
 
-#~ msgid "Test"
-#~ msgstr "测试"
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr "降序"
 
-#~ msgid "Enter account key"
-#~ msgstr "输入帐户密钥"
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr "升序"
 
-#~ msgid ""
-#~ "This project uses an \"account key\" to identify you.\n"
-#~ "\n"
-#~ "Go to the project's web site to create an account. Your account\n"
-#~ "key will be emailed to you."
-#~ msgstr ""
-#~ "该项目通过\"帐户密钥\"来鉴别您的身份。\n"
-#~ "\n"
-#~ "请访问项目网站以创建一个帐户。您的帐户密钥将通过电子邮件发送给您。"
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr "列"
 
-#~ msgid "An account key looks like:"
-#~ msgstr "帐户密钥看上去就像:"
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr "列表为空"
 
-#~ msgid "82412313ac88e9a3638f66ea82186948"
-#~ msgstr "82412313ac88e9a3638f66ea82186948"
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr "选中"
 
-#~ msgid "Account key:"
-#~ msgstr "帐户密钥:"
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr "第 %d 行"
 
-#~ msgid "Checkpoint CPU time"
-#~ msgstr "上一次进度存储的 CPU 时间"
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr "(共 %d 行);"
 
-#~ msgid "Current CPU time"
-#~ msgstr "当前的 CPU 时间"
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr "第 %d 列;"
 
-#~ msgid "Language Selection:"
-#~ msgstr "语言选择:"
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr "项目或帐户管理器列表"
 
-#~ msgid "What language should the manager display by default."
-#~ msgstr "BOINC Manager 缺省显示的语言。"
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr "第 %d 行(共 %d 行);"
 
-#~ msgid "Reminder Frequency:"
-#~ msgstr "提醒间隔:"
+#: clientgui/DlgAdvPreferences.h:29
+msgid "specify work start and stop hours in format HH:MM-HH:MM"
+msgstr "指定开始和停止计算的时间,格式是 HH:MM-HH:MM"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
-#~ msgstr "BOINC Manager 应该隔多久提醒您可能的连接事件。( 以分钟为单位 )"
+#: clientgui/DlgAdvPreferences.h:30
+msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
+msgstr "指定开始和停止使用网络的时间,格式是 HH:MM-HH:MM"
 
-#~ msgid "Run BOINC Manager at startup:"
-#~ msgstr "在启动时运行 BOINC Manager:"
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "关闭窗口(&C)\tCtrl+W"
 
-#~ msgid "Enable BOINC Manager exit message:"
-#~ msgstr "启用 BOINC Manager 的退出消息:"
diff --git a/locale/zh_CN/BOINC-Project-Generic.po b/locale/zh_CN/BOINC-Project-Generic.po
index 2919bdc..bf236ea 100644
--- a/locale/zh_CN/BOINC-Project-Generic.po
+++ b/locale/zh_CN/BOINC-Project-Generic.po
@@ -8,16 +8,16 @@ msgstr ""
 "Language-Team: Team China <zenith.yin at gmail.com>\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Pootle 1.2.1\n"
 "X-Poedit-Language: Chinese\n"
+"X-Poedit-SearchPath-0: html\\user\n"
 "X-Poedit-SourceCharset: utf-8\n"
 "X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: CHINA\n"
-"X-Poedit-SearchPath-0: html\\user\n"
 
 msgid "Search for words in forum messages"
 msgstr "在论坛的所有帖子中搜索关键字"
@@ -40,10 +40,15 @@ msgstr "留言板"
 msgid "%1 message board"
 msgstr "%1 留言板"
 
-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."
+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 "您必须在已经获得了一定的积分后才能在 %1 发表一个新主题。这是为了防止对论坛系统的滥用。"
 
-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."
+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 "您暂时不能发表更多的新主题,请稍后再试,这是为了防止对论坛系统的滥用而采取的延时。"
 
 msgid "Thread"
@@ -94,7 +99,9 @@ msgstr "消息"
 msgid "Send message"
 msgstr "发送消息"
 
-msgid "You are not allowed to send privates messages so often. Please wait some time before sending more messages."
+msgid ""
+"You are not allowed to send privates messages so often. Please wait some "
+"time before sending more messages."
 msgstr "您发送消息的间隔时间太短,请等待一段时间再发送更多的消息。"
 
 msgid "unread"
@@ -190,7 +197,9 @@ msgstr "主题"
 msgid "Join this team"
 msgstr "加入该团队"
 
-msgid "Note: if 'OK to email' is set in your project preferences, joining a team gives its founder access to your email address."
+msgid ""
+"Note: if 'OK to email' is set in your project preferences, joining a team "
+"gives its founder access to your email address."
 msgstr "如果你在项目参数中设置了允许接收电子邮件,加入团队后该团队的创建人将可以年到您的电子邮件地址。"
 
 msgid "Not accepting new members"
@@ -253,7 +262,9 @@ msgstr "本操作需要团队创建人的权限"
 msgid "Rank"
 msgstr "名次"
 
-msgid "%1Privacy note%2: if you create a team, your project preferences (resource share, graphics preferences) will be visible to the public."
+msgid ""
+"%1Privacy note%2: if you create a team, your project preferences (resource "
+"share, graphics preferences) will be visible to the public."
 msgstr "%1隐私事项%2:如果您要创建一个团队,则您的项目参数 ( 资源分享率,图形参数设置等 ) 将会对团队成员公开。"
 
 msgid "Team name, text version"
@@ -487,8 +498,14 @@ msgstr "可选的"
 msgid "Applications"
 msgstr "计算程序"
 
-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 "%1 目前有如下几个计算程序。当您参与 %1 项目时,适用于这些计算程序的任务包将会分发给您的计算机。当前版本的计算程序也会下载到您的计算机上。这一切都是自动的,您不需要做任何操作。"
+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 ""
+"%1 目前有如下几个计算程序。当您参与 %1 "
+"项目时,适用于这些计算程序的任务包将会分发给您的计算机。当前版本的计算程序也会下载到您的计算机上。这一切都是自动的,您不需要做任何操作。"
 
 msgid "Platform"
 msgstr "平台"
@@ -514,10 +531,16 @@ msgstr "账号创建功能已被禁用"
 msgid "Account creation is currently disabled. Please try again later."
 msgstr "新帐户创建功能当前已暂停,请以后再试。"
 
-msgid "NOTE: If you use BOINC version 5.2+ with the BOINC Manager, don't use this form. Just run BOINC, select Attach Project, and enter an email address and password."
-msgstr "注意:如果您正在使用5.2版本之后的客户端,请不要使用这个表单。运行 BOINC,运行菜单中的“加入项目”,然后输入电子邮件地址并设置一个用户口令。"
+msgid ""
+"NOTE: If you use BOINC version 5.2+ with the BOINC Manager, don't use this "
+"form. Just run BOINC, select Attach Project, and enter an email address and "
+"password."
+msgstr ""
+"注意:如果您正在使用5.2版本之后的客户端,请不要使用这个表单。运行 BOINC,运行菜单中的“加入项目”,然后输入电子邮件地址并设置一个用户口令。"
 
-msgid "This account will belong to the team %1 and will have the project preferences of its founder."
+msgid ""
+"This account will belong to the team %1 and will have the project "
+"preferences of its founder."
 msgstr "此帐户将属于 %1 团队并且其项目参数的默认值和团队创建人的项目参数相同。"
 
 msgid "Invitation Code"
@@ -553,13 +576,17 @@ msgstr "照片"
 msgid "%1 Your profile picture is shown to the left."
 msgstr "%1您的用户档案图片将显示在左边"
 
-msgid "To replace it, click the \"Browse\" button and select a JPEG or PNG file (%1 or less)."
+msgid ""
+"To replace it, click the \"Browse\" button and select a JPEG or PNG file (%1 "
+"or less)."
 msgstr "要替换的话,点击“浏览”按钮并选择一个 JPEG 或 PNG 文件(大小不超过 %1)。"
 
 msgid "To remove it from your profile, check this box:"
 msgstr "如果想从用户档案中删除它,请选择:"
 
-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."
+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 "如果您想在用户档案中包含一张照片,点击“浏览”按钮并选择一个 JPEG 或 PNG 文件。文件大小不能超过 %1。"
 
 msgid "Language"
@@ -571,7 +598,9 @@ msgstr "请选择你写用户档案所用的语言:"
 msgid "Submit profile"
 msgstr "提交用户档案"
 
-msgid "To protect the project's webpages from spam, we kindly ask you to type in the two words shown in the image:<br>\n"
+msgid ""
+"To protect the project's webpages from spam, we kindly ask you to type in "
+"the two words shown in the image:<br>\n"
 msgstr "为保护我们网站不被垃圾信息破坏,我们请求您输入下面图片中的两个单词:<br>\n"
 
 msgid "Create/edit profile"
@@ -580,16 +609,22 @@ msgstr "创建/编辑用户档案"
 msgid "The format of your uploaded image is not supported."
 msgstr "您上传的图片格式不支持。"
 
-msgid "Your %1profile%2 lets you share your opinions and background with the %3 community."
+msgid ""
+"Your %1profile%2 lets you share your opinions and background with the %3 "
+"community."
 msgstr "通过 %1用户档案%2,您可以和 %3 社区分享您的观点和背景。"
 
 msgid "Your ReCaptcha response was not correct.  Please try again."
 msgstr "您的验证字符回复不正确,请重试。"
 
-msgid "Your first response was flagged as spam by the Akismet anti-spam system.  Please modify your text and try again."
+msgid ""
+"Your first response was flagged as spam by the Akismet anti-spam system.  "
+"Please modify your text and try again."
 msgstr "您第一次输入的验证字符被 Akismet 防垃圾信息系统标记为垃圾信息,请修改您的输入并重试。"
 
-msgid "Your second response was flagged as spam by the Akismet anti-spam system.  Please modify your text and try again."
+msgid ""
+"Your second response was flagged as spam by the Akismet anti-spam system.  "
+"Please modify your text and try again."
 msgstr "您第二次输入的验证字符被 Akismet 防垃圾信息系统标记为垃圾信息,请修改您的输入并重试。"
 
 msgid "Your profile submission was empty."
@@ -604,7 +639,8 @@ msgstr "无法创建该用户档案:数据库错误"
 msgid "Profile saved"
 msgstr "用户档案内容已保存"
 
-msgid "Congratulations! Your profile was successfully entered into our database."
+msgid ""
+"Congratulations! Your profile was successfully entered into our database."
 msgstr "恭喜!您的用户档案已经成功进入了我们的数据库。"
 
 msgid "%1View your profile%2"
@@ -613,7 +649,9 @@ msgstr "%1查看您的用户档案%2"
 msgid "Create a profile"
 msgstr "创建一个用户档案"
 
-msgid "To prevent spam, an average credit of %1 or greater is required to create or edit a profile.  We apologize for this inconvenience."
+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 "为防止垃圾信息,如果要创建或编译用户档案,近期平均积分不能小于 %1,由此带来的不方便之处我们深感抱歉。"
 
 msgid "Download BOINC add-on software"
@@ -622,12 +660,14 @@ msgstr "下载 BOINC 的辅助软件"
 msgid "You can download applications in several categories."
 msgstr "您可以下载如下几个类别的应用程序。"
 
-msgid "These applications are not endorsed by %1 and you use them at your own risk."
+msgid ""
+"These applications are not endorsed by %1 and you use them at your own risk."
 msgstr "这些应用程序未经过 %1 的仔细检查,若准备使用请自担风险。"
 
 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"
+"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 ""
 "我们不能提供这些应用程序的安装及使用文档。\n"
@@ -652,7 +692,9 @@ msgstr "在帖子后附上我的个性签名"
 msgid "%1 Message boards"
 msgstr "%1 留言板"
 
-msgid "If you have a question or problem, please use the %1Questions & Answers%2 section of the message boards."
+msgid ""
+"If you have a question or problem, please use the %1Questions & Answers%2 "
+"section of the message boards."
 msgstr "如果您有问题希望得到解答,请使用留言板中的 %1问题解答%2 区。"
 
 msgid "Topic"
@@ -682,7 +724,8 @@ msgstr "该主题出于管理目的已被隐藏"
 msgid "My question was answered"
 msgstr "我的问题已得到解答"
 
-msgid "If your question has been adequately answered please click here to close it!"
+msgid ""
+"If your question has been adequately answered please click here to close it!"
 msgstr "如果您的问题已经得到充分的解答,请点击这里关闭它!"
 
 msgid "I've also got this question"
@@ -775,7 +818,9 @@ msgstr "没有这个用户"
 msgid "Add friend"
 msgstr "添加好友"
 
-msgid "You have asked to add %1 as a friend. We will notify %2 and will ask him/her to confirm that you are friends."
+msgid ""
+"You have asked to add %1 as a friend. We will notify %2 and will ask him/her "
+"to confirm that you are friends."
 msgstr "您已经要求将 %1 加为好友,我们将通知 %2 并请他/她来确认你们的关系。"
 
 msgid "Add an optional message here:"
@@ -877,61 +922,124 @@ msgstr "阅读规定和政策"
 msgid "Run %1 only on authorized computers"
 msgstr "仅在已授权的计算机上运行 %1"
 
-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."
+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 "仅在您自己的或者已获准使用的计算机上运行 %1。某些企业和学校是禁止在他们的计算机上运行和 %1 的类似的项目。"
 
 msgid "How %1 will use your computer"
 msgstr "%1 如何使用您的计算机"
 
-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."
+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 "当您在计算机上运行 %1 时,他会使用您计算机上部分的处理器资源、磁盘空间以及网络带宽。您可以控制 %1 的资源使用量以及何时可以使用。"
 
-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."
+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 "您的计算机所完成的计算任务仅用来帮助 %1 实现其项目网站上所申明的目标。项目计算程序的版本可能会经常改变。"
 
 msgid "Privacy policy"
 msgstr "隐私政策"
 
-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 "%1 通过您选择的用户名来标识您的帐户。该用户名以及您为 %1 完成的计算任务的摘要将显示在 %1 的网站上。如果您想要匿名,那请选择一个不会泄漏您身份的用户名。"
+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 ""
+"%1 通过您选择的用户名来标识您的帐户。该用户名以及您为 %1 完成的计算任务的摘要将显示在 %1 "
+"的网站上。如果您想要匿名,那请选择一个不会泄漏您身份的用户名。"
 
-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 "如果您参加了 %1,那您的计算机中的相关信息比如处理器的型号、内存的大小等会被 %1 记录下来,以用来决定什么样的计算任务最适合您的计算机。 这些信息也会显示在 %1 的网站上,但是请不要担心,我们绝对不会泄漏出您的计算机的位置比如域名、网络地址等。"
+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 ""
+"如果您参加了 %1,那您的计算机中的相关信息比如处理器的型号、内存的大小等会被 %1 记录下来,以用来决定什么样的计算任务最适合您的计算机。 "
+"这些信息也会显示在 %1 的网站上,但是请不要担心,我们绝对不会泄漏出您的计算机的位置比如域名、网络地址等。"
 
-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 "为了参加 %1,您必须提供一个能够接收邮件的电子邮件地址。这个地址不会被显示在 %1 的网站上。%1 可能会定期向您发送项目的新闻快讯; 当然,您随时可以选择退订。"
+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 ""
+"为了参加 %1,您必须提供一个能够接收邮件的电子邮件地址。这个地址不会被显示在 %1 的网站上。%1 可能会定期向您发送项目的新闻快讯; "
+"当然,您随时可以选择退订。"
 
-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 "在 %1 网站上发送的私人消息只对发送者和接收者可见。%1 不会检查或审查消息的内容。如果您从 %1 的用户那收到不希望收到的私人消息,您可以把他们加入到您的 %2消息过滤器%3。这样就可以避免您收到来自那位用户的任何公共或私人消息。"
+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 ""
+"在 %1 网站上发送的私人消息只对发送者和接收者可见。%1 不会检查或审查消息的内容。如果您从 %1 "
+"的用户那收到不希望收到的私人消息,您可以把他们加入到您的 %2消息过滤器%3。这样就可以避免您收到来自那位用户的任何公共或私人消息。"
 
-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 "如果您要使用我们的网站论坛,您必须遵守 %2发贴注意事项%3。发送到 %1 论坛的帖子对所有人都是可见的,即便不是我们网站的用户也能看到。您的发帖同时表明你允许所有人查看和复制您的帖子。"
+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 ""
+"如果您要使用我们的网站论坛,您必须遵守 %2发贴注意事项%3。发送到 %1 "
+"论坛的帖子对所有人都是可见的,即便不是我们网站的用户也能看到。您的发帖同时表明你允许所有人查看和复制您的帖子。"
 
 msgid "Is it safe to run %1?"
 msgstr "运行 %1 安全吗?"
 
-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 "只要您从互联网下载程序就有可能碰到有危险错误的程序或者下载服务器已被黑客攻击的情况。%1 已经尽力最小化这方面的风险。我们已经仔细测试了我们的程序。我们的服务器处于防火墙之后,并且设置了最高的安全级别。为了保证程序下载的正确性,全部的可执行文件会被放置在一台未联网的安全的计算机中进行数字签名。"
+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 ""
+"只要您从互联网下载程序就有可能碰到有危险错误的程序或者下载服务器已被黑客攻击的情况。%1 已经尽力最小化这方面的风险。我们已经仔细测试了我们的程序。我们"
+"的服务器处于防火墙之后,并且设置了最高的安全级别。为了保证程序下载的正确性,全部的可执行文件会被放置在一台未联网的安全的计算机中进行数字签名。"
 
-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 "%1 的计算程序可能会导致某些计算机温度过高。如果您碰到了这种情形,请停止运行 %1 或者使用 %2某些工具软件%3 来限制计算程序对处理器的使用。"
+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 ""
+"%1 的计算程序可能会导致某些计算机温度过高。如果您碰到了这种情形,请停止运行 %1 或者使用 %2某些工具软件%3 来限制计算程序对处理器的使用。"
 
-msgid "%1 was developed by %2. BOINC was developed at the University of California."
+msgid ""
+"%1 was developed by %2. BOINC was developed at the University of California."
 msgstr "%1 由 %2 开发。BOINC 由加州大学开发。"
 
 msgid "Liability"
 msgstr "免责申明"
 
-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."
+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 "%1 和 %2 对于您的计算机损坏、数据丢失或其他任意由于参与 %1 所可能造成的事件没有赔偿责任。"
 
 msgid "Other BOINC projects"
 msgstr "其它 BOINC 项目"
 
-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 "除了 %1,还有其它一些项目也使用BOINC平台。您也许会考虑同时参加多个项目,这样当您无法从 %1 获取计算任务时,您的计算机仍可以处理其它项目的计算任务。"
+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 ""
+"除了 %1,还有其它一些项目也使用BOINC平台。您也许会考虑同时参加多个项目,这样当您无法从 %1 "
+"获取计算任务时,您的计算机仍可以处理其它项目的计算任务。"
 
-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."
+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 "其它项目同 %1 没有关系,所以我们也无法保证这些项目的安全性以及确切的研究内容,请您自行决定是否参加其他项目。"
 
 msgid "LANG_NAME_INTERNATIONAL"
@@ -979,13 +1087,17 @@ msgstr "用户 %1 ( 用户ID为 %2) 已禁止接受您的私人消息。"
 msgid "Really block %1?"
 msgstr "确定要阻止 %1 吗?"
 
-msgid "Are you really sure you want to block user %1 from sending you private messages?"
+msgid ""
+"Are you really sure you want to block user %1 from sending you private "
+"messages?"
 msgstr "您确定要阻止用户 %1 向您发送私人消息吗?"
 
 msgid "Please note that you can only block a limited amount of users."
 msgstr "请注意您只有阻止有限数量的用户。"
 
-msgid "Once the user has been blocked you can unblock it using forum preferences page."
+msgid ""
+"Once the user has been blocked you can unblock it using forum preferences "
+"page."
 msgstr "一旦该用户被您阻止,您可以在论坛的参数设置页面中解除该阻止。"
 
 msgid "Add user to filter"
@@ -1006,13 +1118,19 @@ msgstr "要解除阻止,请访问 %1留言板的参数设置%2"
 msgid "Profiles"
 msgstr "用户档案"
 
-msgid "%1Profiles%2 let individuals share backgrounds and opinions with the %3 community."
+msgid ""
+"%1Profiles%2 let individuals share backgrounds and opinions with the %3 "
+"community."
 msgstr "通过 %1用户档案%2 志愿者可以和 %3 社区分享他的背景和观点。"
 
-msgid "Explore the diversity of your fellow volunteers, and contribute your own views for others to enjoy."
+msgid ""
+"Explore the diversity of your fellow volunteers, and contribute your own "
+"views for others to enjoy."
 msgstr "可以了解其他志愿者的想法,也可以让他人看到您分享的观点。"
 
-msgid "If you haven't already, you can %1create your own user profile%2 for others to see!"
+msgid ""
+"If you haven't already, you can %1create your own user profile%2 for others "
+"to see!"
 msgstr "如果您还没有用户档案的话,您现在就可以%1创建属于您自己的用户档案了%2!"
 
 msgid "User of the Day"
@@ -1027,7 +1145,9 @@ msgstr "查看%1用户图片库%2。"
 msgid "Browse profiles %1by country%2."
 msgstr "%1按国家或地区%2浏览用户档案。"
 
-msgid "Browse profiles %1at random%2, %3at random with pictures%2, or %4at random without pictures%2."
+msgid ""
+"Browse profiles %1at random%2, %3at random with pictures%2, or %4at random "
+"without pictures%2."
 msgstr "%1随机地浏览所有用户档案%2,%3随机地浏览带图片的用户档案%2,或者%4随机地浏览不带图片%2的用户档案。"
 
 msgid "Alphabetical profile listings:"
@@ -1096,19 +1216,26 @@ msgstr "主机排名"
 msgid "Top teams"
 msgstr "团队排名"
 
-msgid "More detailed statistics for %1 and other BOINC-based projects are available at several web sites:"
+msgid ""
+"More detailed statistics for %1 and other BOINC-based projects are available "
+"at several web sites:"
 msgstr "下列几个网站可以查询到关于 %1 和其它 BOINC 项目的更详细的统计信息:"
 
-msgid "You can also get your current statistics in the form of a \"signature image\":"
+msgid ""
+"You can also get your current statistics in the form of a \"signature image"
+"\":"
 msgstr "你还可以通过“签名图片”的形式得到您当前的统计信息:"
 
-msgid "Additionally you can get your individual statistics summed across all BOINC projects from several sites; see your %1home page%2."
+msgid ""
+"Additionally you can get your individual statistics summed across all BOINC "
+"projects from several sites; see your %1home page%2."
 msgstr "另外,您还可以在您的 %1帐户主页面%2 中查看所有你参加的 BOINC 项目中的个人统计信息。"
 
 msgid "%1 participants may form %2teams%3"
 msgstr "%1 的用户可以组成 %2团队%3"
 
-msgid "You may belong to only one team. You can join or quit a team at any time."
+msgid ""
+"You may belong to only one team. You can join or quit a team at any time."
 msgstr "你最多只能加入一个团队。您可以在任何时候加入或退出一个团队。"
 
 msgid "Each team has a %1founder%2 who may:"
@@ -1141,7 +1268,8 @@ msgstr "%1 团队"
 msgid "Create a new team"
 msgstr "创建新团队"
 
-msgid "If you cannot find a team that is right for you, you can %1create a team%2."
+msgid ""
+"If you cannot find a team that is right for you, you can %1create a team%2."
 msgstr "如果您找不到适合您的团队,您可以 %1创建一个团队%2。"
 
 msgid "You must choose a non-blank team name"
@@ -1156,7 +1284,8 @@ msgstr "无法创建团队 - 请稍后再试。"
 msgid "Create a team"
 msgstr "创建一个团队"
 
-msgid "You belong to %1. You must %2quit this team%3 before creating a new one."
+msgid ""
+"You belong to %1. You must %2quit this team%3 before creating a new one."
 msgstr "您当前加入了 %1,您在创建新团队之前必须先 %2退出这个团队%3。"
 
 msgid "Top hosts"
@@ -1174,29 +1303,36 @@ msgstr "该用户未建立档案"
 msgid "Account data"
 msgstr "帐户数据"
 
-msgid "Your 'weak account key' lets you attach computers to your account on this project, without giving the ability to log in to your account or to change it in any way."
+msgid ""
+"Your 'weak account key' lets you attach computers to your account on this "
+"project, without giving the ability to log in to your account or to change "
+"it in any way."
 msgstr "'弱帐户密钥'仅用于在客户端加入项目,而不能用来登录您在项目网站上的帐户。"
 
-msgid "This mechanism works only with projects that have upgraded their server software 7 Dec 2007 or later."
+msgid ""
+"This mechanism works only with projects that have upgraded their server "
+"software 7 Dec 2007 or later."
 msgstr "该机制只对于那些已更新至2007年12月7日版本服务端软件的项目才有效。"
 
 msgid "Your weak account key for this project is:"
 msgstr "您在本项目的弱帐户密钥为:"
 
-msgid "To use your weak account key on a given host, find or create the 'account file' for this project. This file has a name of the form <b>account_PROJECT_URL.xml</b>. The account file for %1 is <b>%2</b>."
-msgstr "要在指定的主机上使用您的弱帐户密钥,得先找到或创建相应项目的'帐户文件',该文件的名称类似于 <b>account_项目网址.xml</b>。%1 的帐户文件为 <b>%2</b>。"
+msgid ""
+"To use your weak account key on a given host, find or create the 'account "
+"file' for this project. This file has a name of the form "
+"<b>account_PROJECT_URL.xml</b>. The account file for %1 is <b>%2</b>."
+msgstr ""
+"要在指定的主机上使用您的弱帐户密钥,得先找到或创建相应项目的'帐户文件',该文件的名称类似于 <b>account_项目网址.xml</b>。%1 "
+"的帐户文件为 <b>%2</b>。"
 
 msgid "Create this file if needed. Set its contents to:"
 msgstr "根据需要创建该文件,并将其内容设置为:"
 
-msgid "Your weak account key is a function of your password. If you change your password, your weak account key changes, and your previous weak account key becomes invalid."
+msgid ""
+"Your weak account key is a function of your password. If you change your "
+"password, your weak account key changes, and your previous weak account key "
+"becomes invalid."
 msgstr "弱帐户密钥是根据您的帐户密码计算而来。如果您修改了您的帐户密码,您的弱帐户密钥也随之改变,您之前的弱帐户密钥将失效。"
 
 #~ msgid "Provides"
 #~ msgstr "可用于"
-
-#~ msgid ""
-#~ msgstr "受限制地访问"
-
-#~ msgid ""
-#~ msgstr "您的帐户"
diff --git a/locale/zh_CN/BOINC-Web.po b/locale/zh_CN/BOINC-Web.po
index cf127e2..51bc693 100644
--- a/locale/zh_CN/BOINC-Web.po
+++ b/locale/zh_CN/BOINC-Web.po
@@ -2,13 +2,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: 15349\n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
 "PO-Revision-Date: 2009-05-05 21:14-0700\n"
 "Last-Translator: Yin Gang <zenith.yin at gmail.com>\n"
 "Language-Team: Team China <zenith.yin at gmail.com>\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Pootle 1.2.1\n"
@@ -20,226 +20,299 @@ msgstr ""
 "X-Poedit-Country: UNITED STATES\n"
 "X-Poedit-KeywordsList: tra\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
 msgstr "[选中所有符合情况的]"
 
+#: poll.inc:47
 msgid "Other:"
 msgstr "其它:"
 
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
 msgstr "是的 - 我已经在我的计算机上运行 BOINC ..."
 
+#: poll_data.inc:22
 msgid "less than a week"
 msgstr "不到一个星期"
 
+#: poll_data.inc:23
 msgid "less than a month"
 msgstr "不到一个月"
 
+#: poll_data.inc:24
 msgid "less than a year"
 msgstr "不到一年"
 
+#: poll_data.inc:25
 msgid "more than a year"
 msgstr "超过一年"
 
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
 msgstr "没有 - 我曾经运行过,但是 ..."
 
+#: poll_data.inc:34
 msgid "I lost interest"
 msgstr "没兴趣了"
 
+#: poll_data.inc:35
 msgid "it was too complicated"
 msgstr "软件太复杂"
 
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
 msgstr "我退出软件之后忘记重新启动了"
 
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
 msgstr "软件让我的机器出毛病了"
 
+#: poll_data.inc:38
 msgid "it used too much electricity"
 msgstr "它太浪费电"
 
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr "我转向了一个非 BOINC 的计算项目"
 
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
 msgstr "没有 - 我试图运行 BOINC,但是 ..."
 
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
 msgstr "软件安装时碰到问题"
 
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
 msgstr "我不知道该怎么使用这个软件"
 
+#: poll_data.inc:50
 msgid "I had network communication problems"
 msgstr "我的网络通讯有问题"
 
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
 msgstr "我没法加入项目"
 
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr "我加入了项目,但总是下载不到任何任务包"
 
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
 msgstr "没有 - 我还从来没用过,因为 ..."
 
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr "我担心它的安全性"
 
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr "没有一个项目能引起我的兴趣"
 
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr "我没有获准在我机器上运行这个软件"
 
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr "没有适合我计算机的版本"
 
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr "您在什么计算机上运行 BOINC?"
 
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr "您使用的计算机在哪里?"
 
+#: poll_data.inc:87
 msgid "Home"
 msgstr "家里"
 
+#: poll_data.inc:88
 msgid "Work"
 msgstr "公司"
 
+#: poll_data.inc:89
 msgid "School"
 msgstr "学校"
 
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr "总共有多少台计算机?"
 
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr "平均来说,这些计算机一天开机多少小时?"
 
+#: poll_data.inc:119
 msgid "Age"
 msgstr "年龄"
 
+#: poll_data.inc:129
 msgid "Sex"
 msgstr "性别"
 
+#: poll_data.inc:131
 msgid "Male"
 msgstr "ç”·"
 
+#: poll_data.inc:132
 msgid "Female"
 msgstr "女"
 
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr "您的计算机操作水平"
 
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr "初学"
 
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr "中等"
 
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr "熟练"
 
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr "您从哪里了解 BOINC 平台上的项目?"
 
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr "电视/广播/报纸"
 
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr "朋友、亲戚或同事"
 
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr "计算团队的留言板或网站"
 
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr "BOINC 官方网站"
 
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr "其它网站"
 
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
 msgstr "在您决定参加某个 BOINC 项目时,哪些因素在您看来最为重要?"
 
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr "好看的屏保"
 
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr "任务完成后能够公平而且快速地得到积分"
 
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr "从这个项目可以得到比其它项目更多的积分"
 
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr "有帮助的并且友好的项目留言板"
 
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr "项目人员积极参与到留言板的讨论中"
 
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr "内容丰富的项目网站"
 
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr "研究内容重要而且有实用价值"
 
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr "非赢利,研究成果公开"
 
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr "如果从用户那得到了好的研究结果,能对其贡献进行认可"
 
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr "项目能在科学刊物上发表文章"
 
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr "能定期从项目收到新闻邮件"
 
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr "您参加了多少个 BOINC 项目?"
 
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr "您是通过屏保方式运行 BOINC 吗?"
 
+#: poll_data.inc:192
 msgid "Yes"
 msgstr "是的"
 
+#: poll_data.inc:193
 msgid "No"
 msgstr "不是"
 
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr "您如何使用项目的留言板:"
 
+#: poll_data.inc:200
 msgid "to read information"
 msgstr "只是阅读"
 
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr "阅读并发表"
 
+#: poll_data.inc:202
 msgid "None"
 msgstr "不使用"
 
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr "如果碰到 BOINC 的或基于 BOINC 的项目的问题,您会去哪寻求帮助?"
 
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr "项目留言板"
 
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr "BOINC 官方网站的留言板"
 
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr "BOINC 官方邮件列表"
 
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr "非官方的 BOINC 维基网站"
 
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr "计算团队网站"
 
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr "Google 或其它搜索引擎"
 
@@ -248,13 +321,16 @@ msgstr "Google 或其它搜索引擎"
 # download.php<br />
 # #######################################<br />
 # download.php
+#: download.php:40
 msgid "Download BOINC"
 msgstr "下载 BOINC"
 
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr "%s 用于 %s (%s兆字节)"
 
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -265,27 +341,34 @@ msgstr ""
 "SETI at home、Einstein at home、Climateprediction.net、Rosetta at home、World Commnunity "
 "Grid 等等许多科研项目。<p>在将 BOINC 安装到您的计算机上之后,您可以加入任意多个您喜欢的项目。<p>"
 
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
 "(GPU), you may be able to %suse it to compute faster%s"
 msgstr "注意:如果您的计算机配备了 NVIDIA 的显示卡,您 也许可以%s通过它来使计算变得更快%s。"
 
+#: download.php:120
 msgid "System requirements"
 msgstr "系统需求"
 
+#: download.php:121
 msgid "Release notes"
 msgstr "发行说明"
 
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr "帮助"
 
+#: download.php:123
 msgid "All versions"
 msgstr "所有版本"
 
+#: download.php:141
 msgid "BOINC: compute for science"
 msgstr "BOINC:为科学而计算"
 
+#: help.php:12
 #, php-format
 msgid ""
 "BOINC Online Help lets you talk one-on-one with experienced BOINC users, who "
@@ -296,6 +379,7 @@ msgstr ""
 "BOINC 的在线帮助让您可以一对一地与有经验的 BOINC 用户进行交谈,他们可以:%s回答您关于 BOINC "
 "以及志愿计算的问题;%s带您完成安装及使用 BOINC 的过程;%s解决您可能有的任何问题。"
 
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -306,6 +390,7 @@ msgstr ""
 "BOINC 的在线帮助基于 %sSkype%s,一个基于互联网的电话系统。Skype 可以免费使用(包括软件本身及使用该软件进行通话)。如果您还没没有 "
 "Skype,请 %s现在就下载并安装它%s。当您完成后再回到这个页面。"
 
+#: 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 "
@@ -315,14 +400,17 @@ msgstr ""
 "得到帮助的最好途径是通过声音,您的计算机必须拥有一个内置的麦克和扬声器或外接的耳麦。  您也可以使用 Skype "
 "的文本聊天系统或者普通的电子邮件(如果您不使用 Skype)和志愿帮助者进行交流。"
 
+#: 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 "
@@ -330,20 +418,70 @@ msgid ""
 "volunteer computing - and it's fun!"
 msgstr "如果您是一位有经验的 BOINC 用户,我们鼓励您 %s成为一位志愿帮助者%s。这对于科学研究和志愿计算都大有益处 - 而且还很有趣!"
 
+#: help.php:56
 #, php-format
 msgid ""
 "If you're already a Help Volunteer: to edit your settings, %sclick here%s."
 msgstr "如果您已经是一位志愿帮助者并且想要修改您的参数设置,请 %s点击这里%s。"
 
+#: index.php:23
+msgid "Computing power"
+msgstr ""
+
+#: index.php:25
+msgid "Top 100 volunteers"
+msgstr ""
+
+#: index.php:26
+msgid "Statistics"
+msgstr ""
+
+#: index.php:53
+msgid "Active:"
+msgstr ""
+
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
+
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
+msgstr ""
+
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
+
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
 msgid "Volunteer"
 msgstr "志愿者"
 
+#: index.php:88
 msgid "Download"
 msgstr "下载"
 
+#: index.php:90 index.php:125 index.php:163
 msgid "Documentation"
 msgstr "文档"
 
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -355,6 +493,7 @@ msgstr ""
 "的闲置时间利用起来,就可以帮助科学家们治疗疾病、了解全球变暖、发现脉冲星以及其它多种类型的科学研究,而且这还很简单和安全:  %s选择%s 项目  "
 "%s下载%s 并运行 BOINC 软件%s  输入%s 您的电子邮件地址以及项目密码。 "
 
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
@@ -362,14 +501,85 @@ msgid ""
 msgstr ""
 "或者,如果您想参加多个研究项目,可以使用 %s帐户管理器%s 来简化您的日常操作,比如 %sGridRepublic%s 或者 %sBAM!%s。"
 
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
+
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr "用于 %s志愿计算%s 和 %s网格计算%s 的开源软件"
 
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr "BOINC 用户调查"
 
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -386,49 +596,63 @@ msgstr ""
 ">请尽可能多回答一些问题,然后点击页面最底部的确定按钮。如果您之前完成过这个调查,但现在有了不同的回答,请重新填写调查 - "
 "您的新回答将会取代旧的。<p>要查看当前的调查结果请点击 <a href=poll_results.php>这里</a>。"
 
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr "您使用 BOINC 吗?"
 
+#: poll.php:30
 msgid "Your participation"
 msgstr "您的参与情况"
 
+#: poll.php:32
 msgid "Your computers"
 msgstr "您的计算机"
 
+#: poll.php:34
 msgid "You"
 msgstr "关于您自己"
 
+#: poll.php:39
 msgid "Nationality"
 msgstr "国家或地区"
 
+#: poll.php:44
 msgid "Comments"
 msgstr "备注"
 
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
 msgstr "请对 BOINC 及使用 BOINC 的项目提出您的改进意见:"
 
+#: poll.php:50
 msgid "When done click:"
 msgstr "已完成调查,请点击:"
 
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr "错误 - 调查结果未保存"
 
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
 msgstr "一个内部错误导致我们无法保存您的调查结果。  请稍后重试。"
 
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr "调查结果已保存"
 
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr "感谢您完成了 BOINC 用户调查。"
 
+#: poll_results.php:195
 msgid "Survey results"
 msgstr "调查结果"
 
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
@@ -466,10 +690,13 @@ msgstr "下面是 <a href=poll.php>BOINC 用户调查</a> 的当前统计结果
 
 #~ msgid "POLL_INTRO"
 #~ msgstr ""
-#~ "包括 Climateprediction.net、Einstein at home 和 SETI at home 在内的几个志愿计算项目都使用一个称之为 BOINC "
-#~ "的软件。如果您参加了这些项目,我们希望您能回答下面的问题。这将能帮助所有基于 BOINC 的项目提高它们的用户参与度并得到更好的科研成果。<p>请尽可"
-#~ "能多回答一些问题,然后点击页面最底部的确定按钮。如果您之前完成过这个调查,但现在有了不同的回答,请重新填写调查 - "
-#~ "您的新回答将会取代旧的。<p>要查看当前的调查结果请点击 <a href=poll_results.php>这里</a>。"
+#~ "包括 Climateprediction.net、Einstein at home 和 SETI at home 在内的几个志愿计算"
+#~ "项目都使用一个称之为 BOINC 的软件。如果您参加了这些项目,我们希望您能回答"
+#~ "下面的问题。这将能帮助所有基于 BOINC 的项目提高它们的用户参与度并得到更好"
+#~ "的科研成果。<p>请尽可能多回答一些问题,然后点击页面最底部的确定按钮。如果"
+#~ "您之前完成过这个调查,但现在有了不同的回答,请重新填写调查 - 您的新回答将"
+#~ "会取代旧的。<p>要查看当前的调查结果请点击 <a href=poll_results.php>这里</"
+#~ "a>。"
 
 #~ msgid "POLL_RUN"
 #~ msgstr "您使用 BOINC 吗?"
@@ -694,7 +921,8 @@ msgstr "下面是 <a href=poll.php>BOINC 用户调查</a> 的当前统计结果
 #~ msgstr "不使用"
 
 #~ msgid "POLL_HELP"
-#~ msgstr "如果碰到 BOINC平台 或 BOINC 平台上的计算项目的相关问题,您会去哪寻求帮助?"
+#~ msgstr ""
+#~ "如果碰到 BOINC平台 或 BOINC 平台上的计算项目的相关问题,您会去哪寻求帮助?"
 
 #~ msgid "POLL_HELP_PMB"
 #~ msgstr "项目留言板"
@@ -733,7 +961,9 @@ msgstr "下面是 <a href=poll.php>BOINC 用户调查</a> 的当前统计结果
 #~ msgstr "调查结果"
 
 #~ msgid "POLL_RESULTS_TEXT"
-#~ msgstr "下面是 <a href=poll.php>BOINC 用户调查</a> 的当前统计结果,该页面每小时更新一次。"
+#~ msgstr ""
+#~ "下面是 <a href=poll.php>BOINC 用户调查</a> 的当前统计结果,该页面每小时更"
+#~ "新一次。"
 
 #~ msgid "Other systems"
 #~ msgstr "其它系统"
@@ -744,16 +974,19 @@ msgstr "下面是 <a href=poll.php>BOINC 用户调查</a> 的当前统计结果
 #~ msgid "%s make your own client software %s or"
 #~ msgstr "%s 制作您自己的客户端软件 %s 或者"
 
-#~ msgid "%s download executables from a third-party site %s (available for Solaris/Opteron, Linux/Opteron, Linux/PPC, HP-UX, and FreeBSD, and others)."
+#~ msgid ""
+#~ "%s download executables from a third-party site %s (available for Solaris/"
+#~ "Opteron, Linux/Opteron, Linux/PPC, HP-UX, and FreeBSD, and others)."
 #~ msgstr ""
-#~ "%s 从第三方网站下载相应的可执行文件 %s (包括 Solaris/Opteron、Linux/Opteron、 Linux/PPC、HP-UX 以及 "
-#~ "FreeBSD 等等)。"
+#~ "%s 从第三方网站下载相应的可执行文件 %s (包括 Solaris/Opteron、Linux/"
+#~ "Opteron、 Linux/PPC、HP-UX 以及 FreeBSD 等等)。"
 
 #~ msgid "DL_MIRRORS"
 #~ msgstr ""
-#~ "注意:文件是从包括 boinc.berkeley.edu、morel.mit.edu、einstein.aei.mpg.de、einstein.astr"
-#~ "o.gla.ac.uk、einstein.ligo.caltech.edu 以及 einstein.aset.psu.edu "
-#~ "在内的镜像服务器下载的,感谢提供下载服务的这些机构。下载服务器是随机选择的,如果下载失败,请尝试刷新页面后重新下载。"
+#~ "注意:文件是从包括 boinc.berkeley.edu、morel.mit.edu、einstein.aei.mpg."
+#~ "de、einstein.astro.gla.ac.uk、einstein.ligo.caltech.edu 以及 einstein."
+#~ "aset.psu.edu 在内的镜像服务器下载的,感谢提供下载服务的这些机构。下载服务"
+#~ "器是随机选择的,如果下载失败,请尝试刷新页面后重新下载。"
 
 # ############################################<br />
 # <br />
@@ -771,18 +1004,21 @@ msgstr "下面是 <a href=poll.php>BOINC 用户调查</a> 的当前统计结果
 
 #~ msgid "HELP_P1_1"
 #~ msgstr ""
-#~ "BOINC 的在线帮助让您可以一对一地与有经验的 BOINC 用户进行交谈,他们可以:%s回答您关于 BOINC "
-#~ "以及志愿计算的问题;%s带您完成安装及使用 BOINC 的过程;%s解决您可能有的任何问题。"
+#~ "BOINC 的在线帮助让您可以一对一地与有经验的 BOINC 用户进行交谈,他们可以:%"
+#~ "s回答您关于 BOINC 以及志愿计算的问题;%s带您完成安装及使用 BOINC 的过程;%"
+#~ "s解决您可能有的任何问题。"
 
 #~ msgid "HELP_P1_2"
 #~ msgstr ""
-#~ "BOINC 的在线帮助基于 %sSkype%s,一个基于互联网的电话系统。Skype 可以免费使用(包括软件本身及使用该软件进行通话)。如果您还没没有 "
-#~ "Skype,请 %s现在就下载并安装它%s。当您完成后再回到这个页面。"
+#~ "BOINC 的在线帮助基于 %sSkype%s,一个基于互联网的电话系统。Skype 可以免费使"
+#~ "用(包括软件本身及使用该软件进行通话)。如果您还没没有 Skype,请 %s现在就"
+#~ "下载并安装它%s。当您完成后再回到这个页面。"
 
 #~ msgid "HELP_P1_3"
 #~ msgstr ""
-#~ "得到帮助的最好途径是通过声音,您的计算机必须拥有一个内置的麦克和扬声器或外接的耳麦。另外,您也可以使用 Skype "
-#~ "的文本聊天系统或者普通的电子邮件(如果您不使用 Skype)和志愿帮助者进行交流。"
+#~ "得到帮助的最好途径是通过声音,您的计算机必须拥有一个内置的麦克和扬声器或外"
+#~ "接的耳麦。另外,您也可以使用 Skype 的文本聊天系统或者普通的电子邮件(如果"
+#~ "您不使用 Skype)和志愿帮助者进行交流。"
 
 #~ msgid "HELP_P1_4"
 #~ msgstr "志愿帮助者们使用的语言有如下几种,请选择一种:"
@@ -809,10 +1045,13 @@ msgstr "下面是 <a href=poll.php>BOINC 用户调查</a> 的当前统计结果
 #~ msgstr "成为一位志愿帮助者"
 
 #~ msgid "HELP_P3_1"
-#~ msgstr "如果您是一位有经验的 BOINC 用户,我们鼓励您 %s成为一位志愿帮助者%s。这对于科学研究和志愿计算都大有益处 - 而且还很有趣!"
+#~ msgstr ""
+#~ "如果您是一位有经验的 BOINC 用户,我们鼓励您 %s成为一位志愿帮助者%s。这对于"
+#~ "科学研究和志愿计算都大有益处 - 而且还很有趣!"
 
 #~ msgid "HELP_P3_2"
-#~ msgstr "如果您已经是一位志愿帮助者并且想要编辑您的参数设置,请 %s点击这里%s。"
+#~ msgstr ""
+#~ "如果您已经是一位志愿帮助者并且想要编辑您的参数设置,请 %s点击这里%s。"
 
 # ############################################<br />
 # <br />
@@ -827,15 +1066,20 @@ msgstr "下面是 <a href=poll.php>BOINC 用户调查</a> 的当前统计结果
 
 #~ msgid "HOME_P1"
 #~ msgstr ""
-#~ "只需要简单并且安全的几个操作,就可以将计算机 (包括 Windows、Mac 以及Linux) "
-#~ "的闲置时间用来帮助治疗疾病、研究全球变暖、发现脉冲星以及其它多种类型的科学研究:%s选择%s 项目%s下载%s 并运行 BOINC 软件%s输入%s "
-#~ "您的电子邮件地址以及项目密码。"
+#~ "只需要简单并且安全的几个操作,就可以将计算机 (包括 Windows、Mac 以及"
+#~ "Linux) 的闲置时间用来帮助治疗疾病、研究全球变暖、发现脉冲星以及其它多种类"
+#~ "型的科学研究:%s选择%s 项目%s下载%s 并运行 BOINC 软件%s输入%s 您的电子邮件"
+#~ "地址以及项目密码。"
 
 #~ msgid "HOME_P2"
-#~ msgstr "如果参加了多个项目,您可以使用 %s帐户管理器%s 来简化您的日常操作,比如 %sGridRepublic%s 或者 %sBAM!%s。"
+#~ msgstr ""
+#~ "如果参加了多个项目,您可以使用 %s帐户管理器%s 来简化您的日常操作,比如 %"
+#~ "sGridRepublic%s 或者 %sBAM!%s。"
 
 #~ msgid "HOME_P3"
-#~ msgstr "如果有任何相关问题,或者需要一些帮助,您还可以 %s和很乐意帮忙的志愿者们进行交谈%s。"
+#~ msgstr ""
+#~ "如果有任何相关问题,或者需要一些帮助,您还可以 %s和很乐意帮忙的志愿者们进"
+#~ "行交谈%s。"
 
 #~ msgid "HOME_DOWNLOAD"
 #~ msgstr "下载"
diff --git a/locale/zh_CN/pootle-boincclient610-zh_CN.prefs b/locale/zh_CN/pootle-boincclient610-zh_CN.prefs
new file mode 100644
index 0000000..09c623c
--- /dev/null
+++ b/locale/zh_CN/pootle-boincclient610-zh_CN.prefs
@@ -0,0 +1,7 @@
+# Pootle preferences for project boinctrunk, language zh_CN
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
+  YG = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/zh_CN/pootle-boinctrunk-zh_CN.prefs b/locale/zh_CN/pootle-boinctrunk-zh_CN.prefs
deleted file mode 100644
index 7bacbc4..0000000
--- a/locale/zh_CN/pootle-boinctrunk-zh_CN.prefs
+++ /dev/null
@@ -1,7 +0,0 @@
-# Pootle preferences for project boinctrunk, language zh_CN
-
-rights:
-  default = u'view, suggest, archive, pocompile'
-  nobody = u'view'
-  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
-  YG = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/zh_TW/BOINC-Manager.mo b/locale/zh_TW/BOINC-Manager.mo
index e76150d..33cbd0d 100644
Binary files a/locale/zh_TW/BOINC-Manager.mo and b/locale/zh_TW/BOINC-Manager.mo differ
diff --git a/locale/zh_TW/BOINC-Manager.po b/locale/zh_TW/BOINC-Manager.po
index 4d96ec6..5d1fff9 100644
--- a/locale/zh_TW/BOINC-Manager.po
+++ b/locale/zh_TW/BOINC-Manager.po
@@ -1,27 +1,27 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: BOINC Manager 4.x\n"
-"Report-Msgid-Bugs-To: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-01-05 12:28-0500\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-09 17:53-0500\n"
 "PO-Revision-Date: 2008-01-01 00:33+0800\n"
 "Last-Translator: Jose Sun <josesun at gmail.com>\n"
 "Language-Team: BOINC Development Team <boinc_loc at ssl.berkeley.edu>\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Translate Toolkit 1.2.1\n"
 "X-Poedit-Language: English\n"
 "X-Poedit-SearchPath-0: clientgui\n"
 "X-Poedit-SourceCharset: iso-8859-1\n"
-"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\trunk\\boinc\n"
+"X-Poedit-Basepath: C:\\Src\\BOINCSVN\\branches\\boinc_core_release_6_10\n"
 "X-BOINC-UTF8-Marker: 简体中文, 日本語\n"
 "X-Poedit-Country: UNITED STATES\n"
 
-#: clientgui/AccountInfoPage.cpp:337
-msgid "User information"
-msgstr "使用者資訊"
+#: clientgui/AccountInfoPage.cpp:376
+msgid "Identify your account "
+msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:343
+#: clientgui/AccountInfoPage.cpp:382
 msgid ""
 "Please enter your account information\n"
 "(to create an account, visit the project's web site)"
@@ -29,7 +29,7 @@ msgstr ""
 "請輸入你的帳號資訊\n"
 "(要建立帳號,請前往計畫網站)"
 
-#: clientgui/AccountInfoPage.cpp:347
+#: clientgui/AccountInfoPage.cpp:386
 msgid ""
 "This project is not currently accepting new accounts.\n"
 "You can attach only if you already have an account."
@@ -37,410 +37,476 @@ msgstr ""
 "該計畫暫不接受新帳號註冊,\n"
 "只能加入已存在的帳號。"
 
-#: clientgui/AccountInfoPage.cpp:351
+#: clientgui/AccountInfoPage.cpp:390
 msgid "Are you already running this project?"
 msgstr "您準備好執行此計畫了嗎?"
 
-#: clientgui/AccountInfoPage.cpp:355
+#: clientgui/AccountInfoPage.cpp:394
 msgid "&No, new user"
 msgstr "否,我是新使用者(&N)"
 
-#: clientgui/AccountInfoPage.cpp:358
+#: clientgui/AccountInfoPage.cpp:397
 msgid "&Yes, existing user"
 msgstr "是,我是已存在的使用者(&Y)"
 
-#: clientgui/AccountInfoPage.cpp:374
-#: clientgui/AccountInfoPage.cpp:537
+#: clientgui/AccountInfoPage.cpp:402
+msgid ""
+"We were not able to set up your account information\n"
+"automatically.\n"
+"\n"
+"Please click on the 'Find logon information' link\n"
+"below to find out what to put in the email address and\n"
+"password fields."
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:405
+msgid "Find logon information"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:425
+#: clientgui/AccountInfoPage.cpp:591
 msgid "&Password:"
 msgstr "密碼(&P):"
 
-#: clientgui/AccountInfoPage.cpp:381
-#: clientgui/AccountInfoPage.cpp:552
+#: clientgui/AccountInfoPage.cpp:432
+#: clientgui/AccountInfoPage.cpp:606
 msgid "Choose a &password:"
 msgstr "選擇密碼(&O):"
 
-#: clientgui/AccountInfoPage.cpp:384
+#: clientgui/AccountInfoPage.cpp:435
 msgid "C&onfirm password:"
 msgstr "密碼確認(&O):"
 
-#: clientgui/AccountInfoPage.cpp:391
-#, c-format
+#: clientgui/AccountInfoPage.cpp:442
+#, c-format
 msgid "Are you already running %s?"
 msgstr "您準備好執行 %s 了嗎?"
 
-#: clientgui/AccountInfoPage.cpp:408
+#: clientgui/AccountInfoPage.cpp:459
 msgid "&Username:"
 msgstr "使用者名稱(&U):"
 
-#: clientgui/AccountInfoPage.cpp:422
+#: clientgui/AccountInfoPage.cpp:473
 msgid "&Email address:"
 msgstr "電子郵件地址(&E):"
 
-#: clientgui/AccountInfoPage.cpp:430
-#, c-format
+#: clientgui/AccountInfoPage.cpp:481
+#, c-format
 msgid "minimum length %d"
 msgstr "最小字元長度 %d"
 
-#: clientgui/AccountInfoPage.cpp:435
+#: clientgui/AccountInfoPage.cpp:488
 msgid "Forgot your password?"
 msgstr ""
 
-#: clientgui/AccountInfoPage.cpp:476
-#: clientgui/WelcomePage.cpp:332
-#: clientgui/WelcomePage.cpp:346
+#: clientgui/AccountInfoPage.cpp:495
+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 ""
+
+#: clientgui/AccountInfoPage.cpp:498
+msgid "Account manager website"
+msgstr ""
+
+#: clientgui/AccountInfoPage.cpp:530
 msgid "Attach to project"
 msgstr "加入計畫"
 
-#: clientgui/AccountInfoPage.cpp:478
+#: clientgui/AccountInfoPage.cpp:532
 msgid "Update account manager"
 msgstr "更新帳號管理員"
 
-#: clientgui/AccountInfoPage.cpp:480
+#: clientgui/AccountInfoPage.cpp:534
 msgid "Attach to account manager"
 msgstr "加入帳號管理"
 
-#: clientgui/AccountInfoPage.cpp:489
-#, c-format
+#: clientgui/AccountInfoPage.cpp:543
+#, c-format
 msgid "The minimum password length for this project is %d. Please enter a different password."
 msgstr "此計畫所需的最小密碼長度為 %d,請輸入其他的密碼。"
 
-#: clientgui/AccountInfoPage.cpp:495
-#, c-format
+#: clientgui/AccountInfoPage.cpp:549
+#, c-format
 msgid "The minimum password length for this account manager is %d. Please enter a different password."
 msgstr "此帳號管理員所需的最小密碼長度為 %d,請輸入其他的密碼。"
 
-#: clientgui/AccountInfoPage.cpp:506
+#: clientgui/AccountInfoPage.cpp:560
 msgid "The password and confirmation password do not match. Please type them again."
 msgstr "「密碼」與「確認密碼」不相符。請再輸入一次。"
 
-#: clientgui/AccountManagerInfoPage.cpp:180
-msgid "Account Manager URL"
-msgstr "帳號管理員網址"
+#: clientgui/AccountManagerInfoPage.cpp:249
+msgid "Choose an account manager"
+msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:183
-msgid "Enter the URL of the account manager's web site."
-msgstr "請輸入帳號管理網站的網址。"
+#: clientgui/AccountManagerInfoPage.cpp:252
+msgid ""
+"To choose an account manager, click its name or \n"
+"type its URL below."
+msgstr ""
 
-#: clientgui/AccountManagerInfoPage.cpp:186
+#: clientgui/AccountManagerInfoPage.cpp:255
 msgid "Account Manager &URL:"
 msgstr "帳號管理員網址(&U):"
 
-#: clientgui/AccountManagerProcessingPage.cpp:190
-#: clientgui/AccountManagerPropertiesPage.cpp:194
-#, c-format
+#: clientgui/AccountManagerProcessingPage.cpp:189
+#: clientgui/AccountManagerPropertiesPage.cpp:195
+#, c-format
 msgid "Communicating with %s."
 msgstr "正在與 %s 通訊。"
 
-#: clientgui/AccountManagerProcessingPage.cpp:197
-#: clientgui/AccountManagerPropertiesPage.cpp:201
+#: clientgui/AccountManagerProcessingPage.cpp:196
+#: clientgui/AccountManagerPropertiesPage.cpp:202
 msgid "Communicating with server."
 msgstr "與伺服器通訊中。"
 
-#: clientgui/AccountManagerProcessingPage.cpp:202
-#: clientgui/AccountManagerPropertiesPage.cpp:206
+#: clientgui/AccountManagerProcessingPage.cpp:201
+#: clientgui/AccountManagerPropertiesPage.cpp:207
 msgid "Please wait..."
 msgstr "請稍候..."
 
-#: clientgui/AccountManagerProcessingPage.cpp:322
-#: clientgui/ProjectProcessingPage.cpp:494
-#: clientgui/ProjectProcessingPage.cpp:552
+#: clientgui/AccountManagerProcessingPage.cpp:325
 msgid "An internal server error has occurred.\n"
 msgstr "內部伺服器發生錯誤。\n"
 
-#: clientgui/AdvancedFrame.cpp:100
+#: clientgui/AdvancedFrame.cpp:93
 msgid "Connected"
 msgstr "已連線"
 
-#: clientgui/AdvancedFrame.cpp:108
+#: clientgui/AdvancedFrame.cpp:101
 msgid "Disconnected"
 msgstr "已斷線"
 
-#: clientgui/AdvancedFrame.cpp:303
-#: clientgui/sg_BoincSimpleGUI.cpp:100
-msgid "&Close Window\tCTRL+W"
-msgstr "關閉視窗(&C)\tCTRL+W"
+#: clientgui/AdvancedFrame.cpp:305
+#, c-format
+msgid "Close the %s window"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:304
-#: clientgui/sg_BoincSimpleGUI.cpp:101
-msgid "Close BOINC Manager Window."
-msgstr "關閉 BOINC 管理員"
+#: clientgui/AdvancedFrame.cpp:308
+msgid "&Close Window"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:310
-#, c-format
-msgid "Exit the %s"
-msgstr "離開 %s"
+#: clientgui/AdvancedFrame.cpp:319
+#, c-format
+msgid "Exit %s"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:315
-#: clientgui/BOINCTaskBar.cpp:626
-#: clientgui/mac/MacSysMenu.cpp:218
+#: clientgui/AdvancedFrame.cpp:324
+#: clientgui/BOINCTaskBar.cpp:641
 msgid "E&xit"
 msgstr "離開(&X)"
 
-#: clientgui/AdvancedFrame.cpp:324
-msgid "&Advanced View\tCTRL+SHIFT+A"
+#: clientgui/AdvancedFrame.cpp:333
+msgid "&Projects\tCtrl+Shift+P"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:325
-#, fuzzy
-msgid "Advanced views allow you to sort various columns and displays graphical progress bars."
-msgstr "格線介面可讓你排序不同欄位並顯示圖形進度列。"
+#: clientgui/AdvancedFrame.cpp:334
+msgid "Display projects"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:330
-msgid "&Simple View...\tCTRL+SHIFT+S"
+#: clientgui/AdvancedFrame.cpp:339
+msgid "&Tasks\tCtrl+Shift+T"
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:331
-msgid "Display the simple BOINC graphical interface."
-msgstr "顯示精簡 BOINC 圖形介面。"
+#: clientgui/AdvancedFrame.cpp:340
+msgid "Display tasks"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:345
-msgid "Attach to &project..."
-msgstr "加入計畫(&P)"
+#: clientgui/AdvancedFrame.cpp:345
+msgid "Trans&fers\tCtrl+Shift+X"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:346
-msgid "Attach to a project"
-msgstr "加入計畫"
+#: clientgui/AdvancedFrame.cpp:346
+msgid "Display transfers"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:350
-msgid "Attach to &account manager..."
-msgstr "加入帳號管理(&A)..."
+#: clientgui/AdvancedFrame.cpp:351
+msgid "&Messages\tCtrl+Shift+M"
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:351
-msgid "Attach to an account manager"
-msgstr "加入帳號管理"
+#: clientgui/AdvancedFrame.cpp:352
+msgid "Display messages"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:357
+msgid "&Statistics\tCtrl+Shift+S"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:358
+msgid "Display statistics"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:363
+msgid "&Disk usage\tCtrl+Shift+D"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:364
+msgid "Display disk usage"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:371
+msgid "Simple &View...\tCtrl+Shift+V"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:372
+#, fuzzy
+msgid "Display the simple graphical interface."
+msgstr "顯示精簡 BOINC 圖形介面。"
+
+#: clientgui/AdvancedFrame.cpp:392
+msgid "Attach to &project or account manager..."
+msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:355
-#, c-format
+#: clientgui/AdvancedFrame.cpp:393
+msgid "Attach to a project or account manager to begin processing work"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:397
+#, c-format
 msgid "&Synchronize with %s"
 msgstr "與 %s 同步(&S)"
 
-#: clientgui/AdvancedFrame.cpp:359
-#, c-format
+#: clientgui/AdvancedFrame.cpp:401
+#, c-format
 msgid "Get current settings from %s"
 msgstr "從 %s 取得現在的設定"
 
-#: clientgui/AdvancedFrame.cpp:374
+#: clientgui/AdvancedFrame.cpp:412
+msgid "Attach to &project..."
+msgstr "加入計畫(&P)"
+
+#: clientgui/AdvancedFrame.cpp:413
+msgid "Attach to a project to begin processing work"
+msgstr "加入計畫以開始進行工作"
+
+#: clientgui/AdvancedFrame.cpp:417
+#, c-format
+msgid "&Stop using %s..."
+msgstr "停止使用 %s(&S)..."
+
+#: clientgui/AdvancedFrame.cpp:423
+msgid "Remove client from account manager control."
+msgstr "從帳號管理員控制中移除用戶端。"
+
+#: clientgui/AdvancedFrame.cpp:432
 msgid "&Run always"
 msgstr "持續執行(&R)"
 
-#: clientgui/AdvancedFrame.cpp:375
+#: clientgui/AdvancedFrame.cpp:433
 msgid "Allow work regardless of preferences"
 msgstr "不管偏好設定運行工作"
 
-#: clientgui/AdvancedFrame.cpp:379
+#: clientgui/AdvancedFrame.cpp:437
 msgid "Run based on &preferences"
 msgstr "以偏好設定執行(&P)"
 
-#: clientgui/AdvancedFrame.cpp:380
+#: clientgui/AdvancedFrame.cpp:438
 msgid "Allow work according to your preferences"
 msgstr "依照您的偏好設定運行工作"
 
-#: clientgui/AdvancedFrame.cpp:384
+#: clientgui/AdvancedFrame.cpp:442
 msgid "&Suspend"
 msgstr "æš«æ­¢(&S)"
 
-#: clientgui/AdvancedFrame.cpp:385
+#: clientgui/AdvancedFrame.cpp:443
 msgid "Stop work regardless of preferences"
 msgstr "不管偏好設定停止工作"
 
-#: clientgui/AdvancedFrame.cpp:408
+#: clientgui/AdvancedFrame.cpp:468
+msgid "Use GPU always"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:469
+#, fuzzy
+msgid "Allow GPU work regardless of preferences"
+msgstr "不管偏好設定運行工作"
+
+#: clientgui/AdvancedFrame.cpp:473
+#, fuzzy
+msgid "Use GPU based on &preferences"
+msgstr "以偏好設定執行(&P)"
+
+#: clientgui/AdvancedFrame.cpp:474
+#, fuzzy
+msgid "Allow GPU work according to your preferences"
+msgstr "依照您的偏好設定運行工作"
+
+#: clientgui/AdvancedFrame.cpp:478
+msgid "Use GPU never"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:479
+#, fuzzy
+msgid "Stop GPU work regardless of preferences"
+msgstr "不管偏好設定停止工作"
+
+#: clientgui/AdvancedFrame.cpp:503
 msgid "&Network activity always available"
 msgstr "持續進行網路活動(&N)"
 
-#: clientgui/AdvancedFrame.cpp:409
+#: clientgui/AdvancedFrame.cpp:504
 msgid "Allow network activity regardless of preferences"
 msgstr "不管偏好設定進行網路活動"
 
-#: clientgui/AdvancedFrame.cpp:413
-msgid "Network activity based on &preferences"
+#: clientgui/AdvancedFrame.cpp:508
+#, fuzzy
+msgid "Network activity based on pre&ferences"
 msgstr "以偏好設定連線網路(&P)"
 
-#: clientgui/AdvancedFrame.cpp:414
+#: clientgui/AdvancedFrame.cpp:509
 msgid "Allow network activity according to your preferences"
 msgstr "依照您的偏好設定進行網路活動"
 
-#: clientgui/AdvancedFrame.cpp:418
-msgid "&Network activity suspended"
+#: clientgui/AdvancedFrame.cpp:513
+#, fuzzy
+msgid "Network activity s&uspended"
 msgstr "暫止網路活動(&N)"
 
-#: clientgui/AdvancedFrame.cpp:419
+#: clientgui/AdvancedFrame.cpp:514
 msgid "Stop BOINC network activity"
 msgstr "停止 BONIC 的網路活動"
 
-#: clientgui/AdvancedFrame.cpp:426
+#: clientgui/AdvancedFrame.cpp:521
 msgid "&Options..."
 msgstr "選項(&O)"
 
-#: clientgui/AdvancedFrame.cpp:427
+#: clientgui/AdvancedFrame.cpp:522
 msgid "Configure GUI options and proxy settings"
 msgstr "GUI 組態選項和 Proxy 設定"
 
-#: clientgui/AdvancedFrame.cpp:431
+#: clientgui/AdvancedFrame.cpp:526
 msgid "&Preferences..."
 msgstr "偏好設定(&P)..."
 
-#: clientgui/AdvancedFrame.cpp:432
+#: clientgui/AdvancedFrame.cpp:527
 msgid "Configure local preferences"
 msgstr "設定本機偏好設定"
 
-#: clientgui/AdvancedFrame.cpp:438
-#, c-format
+#: clientgui/AdvancedFrame.cpp:533
+#, c-format
 msgid "Connect to another computer running %s"
 msgstr "連線到另一台運行 %s 的電腦"
 
-#: clientgui/AdvancedFrame.cpp:443
+#: clientgui/AdvancedFrame.cpp:538
 msgid "Select computer..."
 msgstr "選擇電腦(&S)..."
 
-#: clientgui/AdvancedFrame.cpp:448
+#: clientgui/AdvancedFrame.cpp:543
 msgid "Shut down connected client..."
 msgstr "關閉已連線用戶端..."
 
-#: clientgui/AdvancedFrame.cpp:449
+#: clientgui/AdvancedFrame.cpp:544
 msgid "Shut down the currently connected core client"
 msgstr "關閉目前連線的核心用戶端"
 
-#: clientgui/AdvancedFrame.cpp:453
+#: clientgui/AdvancedFrame.cpp:548
 msgid "Run CPU &benchmarks"
 msgstr "執行 CPU 效能測試(&B)"
 
-#: clientgui/AdvancedFrame.cpp:454
+#: clientgui/AdvancedFrame.cpp:549
 msgid "Runs BOINC CPU benchmarks"
 msgstr "執行 BONIC 的 CPU 效能測試"
 
-#: clientgui/AdvancedFrame.cpp:458
+#: clientgui/AdvancedFrame.cpp:553
 msgid "Do network &communication"
 msgstr "開始網路通訊(&C)"
 
-#: clientgui/AdvancedFrame.cpp:459
+#: clientgui/AdvancedFrame.cpp:554
 msgid "Do all pending network communication."
 msgstr "開始所有待處理的網路通訊。"
 
-#: clientgui/AdvancedFrame.cpp:463
+#: clientgui/AdvancedFrame.cpp:558
 msgid "Read config file"
 msgstr "讀取設定檔"
 
-#: clientgui/AdvancedFrame.cpp:464
+#: clientgui/AdvancedFrame.cpp:559
 msgid "Read configuration info from cc_config.xml."
 msgstr "從 cc-config.xml 讀取設定資訊。"
 
-#: clientgui/AdvancedFrame.cpp:468
+#: clientgui/AdvancedFrame.cpp:563
 msgid "Read local prefs file"
 msgstr "讀取本機偏好設定"
 
-#: clientgui/AdvancedFrame.cpp:469
+#: clientgui/AdvancedFrame.cpp:564
 msgid "Read preferences from global_prefs_override.xml."
 msgstr "從 global_prefs_override.xml 讀取偏好設定。"
 
-#: clientgui/AdvancedFrame.cpp:473
-#, c-format
-msgid "&Stop using %s..."
-msgstr "停止使用 %s(&S)..."
-
-#: clientgui/AdvancedFrame.cpp:479
-msgid "Remove client from account manager control."
-msgstr "從帳號管理員控制中移除用戶端。"
-
-#: clientgui/AdvancedFrame.cpp:483
-msgid "Attach to &project"
-msgstr "加入計畫(&A)"
-
-#: clientgui/AdvancedFrame.cpp:484
-msgid "Attach to a project to begin processing work"
-msgstr "加入計畫以開始進行工作"
-
-#: clientgui/AdvancedFrame.cpp:495
-#: clientgui/sg_BoincSimpleGUI.cpp:110
-#, c-format
+#: clientgui/AdvancedFrame.cpp:574
+#, c-format
 msgid "%s &help"
 msgstr "%s 說明(&H)"
 
-#: clientgui/AdvancedFrame.cpp:501
-#: clientgui/sg_BoincSimpleGUI.cpp:116
-#, c-format
+#: clientgui/AdvancedFrame.cpp:580
+#, c-format
 msgid "Show information about %s"
 msgstr "顯示關於 %s 的資訊"
 
-#: clientgui/AdvancedFrame.cpp:513
-#, c-format
+#: clientgui/AdvancedFrame.cpp:592
+#, c-format
 msgid "&%s help"
 msgstr "說明(&%s)"
 
-#: clientgui/AdvancedFrame.cpp:519
-#: clientgui/sg_BoincSimpleGUI.cpp:134
-#, c-format
+#: clientgui/AdvancedFrame.cpp:598
+#, c-format
 msgid "Show information about the %s"
 msgstr "顯示關於 %s 的資訊"
 
-#: clientgui/AdvancedFrame.cpp:531
-#: clientgui/sg_BoincSimpleGUI.cpp:146
-#, c-format
+#: clientgui/AdvancedFrame.cpp:610
+#, c-format
 msgid "%s &website"
 msgstr "%s 網站(&W)"
 
-#: clientgui/AdvancedFrame.cpp:537
-#: clientgui/sg_BoincSimpleGUI.cpp:152
-#, c-format
+#: clientgui/AdvancedFrame.cpp:616
+#, c-format
 msgid "Show information about BOINC and %s"
 msgstr "顯示關於 BONIC 及 %s 的資訊"
 
-#: clientgui/AdvancedFrame.cpp:553
-#: clientgui/BOINCTaskBar.cpp:616
-#, c-format
+#: clientgui/AdvancedFrame.cpp:628
+#: clientgui/BOINCTaskBar.cpp:631
+#, c-format
 msgid "&About %s..."
 msgstr "關於 %s(&A)..."
 
-#: clientgui/AdvancedFrame.cpp:559
+#: clientgui/AdvancedFrame.cpp:634
 msgid "Licensing and copyright information."
 msgstr "授權與版權資訊。"
 
-#: clientgui/AdvancedFrame.cpp:566
-#: clientgui/sg_BoincSimpleGUI.cpp:175
+#: clientgui/AdvancedFrame.cpp:641
 msgid "&File"
 msgstr "檔案(&F)"
 
-#: clientgui/AdvancedFrame.cpp:570
+#: clientgui/AdvancedFrame.cpp:645
 msgid "&View"
 msgstr "檢視(&V)"
 
-#: clientgui/AdvancedFrame.cpp:574
+#: clientgui/AdvancedFrame.cpp:649
 msgid "&Tools"
 msgstr "工具(&T)"
 
-#: clientgui/AdvancedFrame.cpp:578
+#: clientgui/AdvancedFrame.cpp:653
 msgid "&Activity"
 msgstr "活動(&A)"
 
-#: clientgui/AdvancedFrame.cpp:582
+#: clientgui/AdvancedFrame.cpp:657
 msgid "A&dvanced"
 msgstr "進階(&D)"
 
-#: clientgui/AdvancedFrame.cpp:586
-#: clientgui/sg_BoincSimpleGUI.cpp:165
-#: clientgui/wizardex.cpp:399
-#: clientgui/wizardex.cpp:406
+#: clientgui/AdvancedFrame.cpp:661
 msgid "&Help"
 msgstr "說明(&H)"
 
-#: clientgui/AdvancedFrame.cpp:1083
-#, c-format
-msgid "%s - Shutdown the current client..."
-msgstr "%s - 關閉目前用戶端..."
-
-#: clientgui/AdvancedFrame.cpp:1092
-#, c-format
-msgid ""
-"%s will shut down the currently connected client,\n"
-"and prompt you for another host to connect to.\n"
+#: clientgui/AdvancedFrame.cpp:1028
+msgid "Attaching to project or account manager..."
 msgstr ""
 
-#: clientgui/AdvancedFrame.cpp:1239
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1121
+#, c-format
 msgid "%s - Detach from %s"
 msgstr "%s - 從 %s 退出"
 
-#: clientgui/AdvancedFrame.cpp:1244
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1126
+#, c-format
 msgid ""
 "If you stop using %s,\n"
 "you'll keep all your current projects,\n"
@@ -453,55 +519,62 @@ msgstr ""
 "\n"
 "您確定要停止使用 %s 嗎?"
 
-#: clientgui/AdvancedFrame.cpp:1291
-msgid "Attaching to project..."
-msgstr "正在加入計畫..."
-
-#: clientgui/AdvancedFrame.cpp:1330
-msgid "Retrying communications for project(s)..."
-msgstr "重試與計畫的通訊中..."
-
-#: clientgui/AdvancedFrame.cpp:1421
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1303
+#, c-format
 msgid "%s - Language Selection"
 msgstr "%s - 語言選擇"
 
-#: clientgui/AdvancedFrame.cpp:1428
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1310
+#, c-format
 msgid "The %s's default language has been changed, in order for this change to take affect you must restart the %s."
 msgstr "%s 預設的語言已改變。為了使變更生效, 您必須重新啟動 %s。"
 
-#: clientgui/AdvancedFrame.cpp:1639
-#: clientgui/DlgAbout.cpp:104
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1473
+#, c-format
+msgid "%s - Shutdown the current client..."
+msgstr "%s - 關閉目前用戶端..."
+
+#: clientgui/AdvancedFrame.cpp:1482
+#, c-format
+msgid ""
+"%s will shut down the currently connected client,\n"
+"and prompt you for another host to connect to.\n"
+msgstr ""
+
+#: clientgui/AdvancedFrame.cpp:1529
+msgid "Retrying communications for project(s)..."
+msgstr "重試與計畫的通訊中..."
+
+#: clientgui/AdvancedFrame.cpp:1725
+#, c-format
 msgid "%s"
 msgstr "%s"
 
-#: clientgui/AdvancedFrame.cpp:1648
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1734
+#, c-format
 msgid "%s has successfully attached to %s"
 msgstr "%s 已成功加入 %s 計畫。"
 
-#: clientgui/AdvancedFrame.cpp:1772
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1865
+#, c-format
 msgid "%s - (%s)"
 msgstr "%s - (%s)"
 
-#: clientgui/AdvancedFrame.cpp:1775
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1868
+#, c-format
 msgid "Connecting to %s"
 msgstr "正在連線到 %s"
 
-#: clientgui/AdvancedFrame.cpp:1778
-#, c-format
+#: clientgui/AdvancedFrame.cpp:1871
+#, c-format
 msgid "Connected to %s (%s)"
 msgstr "已連線到 %s (%s)"
 
-#: clientgui/AlreadyExistsPage.cpp:183
+#: clientgui/AlreadyExistsPage.cpp:182
 msgid "Username already in use"
 msgstr "此帳號名稱已被使用"
 
-#: clientgui/AlreadyExistsPage.cpp:186
+#: clientgui/AlreadyExistsPage.cpp:185
 msgid ""
 "An account with that username already exists and has a\n"
 "different password than the one you entered.\n"
@@ -513,11 +586,11 @@ msgstr ""
 "\n"
 "請拜訪計畫網站後,依照計畫網站的指示操作。"
 
-#: clientgui/AlreadyExistsPage.cpp:190
+#: clientgui/AlreadyExistsPage.cpp:189
 msgid "Email address already in use"
 msgstr "此電子郵件地址已被使用"
 
-#: clientgui/AlreadyExistsPage.cpp:193
+#: clientgui/AlreadyExistsPage.cpp:192
 msgid ""
 "An account with that email address already exists and has a\n"
 "different password than the one you entered.\n"
@@ -529,22 +602,36 @@ msgstr ""
 "\n"
 "請拜訪計畫網站後,依照計畫網站的指示操作。"
 
-#: clientgui/AsyncRPC.cpp:948
+#: clientgui/AsyncRPC.cpp:1207
 msgid "Communicating with BOINC client.  Please wait ..."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:421
-#, c-format
+#: clientgui/AsyncRPC.cpp:1210
+#, c-format
+msgid "&Quit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1212
+#, c-format
+msgid "E&xit %s"
+msgstr ""
+
+#: clientgui/AsyncRPC.cpp:1229
+msgid "Cancel"
+msgstr "取消"
+
+#: clientgui/BOINCBaseFrame.cpp:422
+#, c-format
 msgid "%s - Connection Error"
 msgstr "%s - 連線錯誤"
 
-#: clientgui/BOINCBaseFrame.cpp:430
+#: clientgui/BOINCBaseFrame.cpp:431
 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:439
+#: clientgui/BOINCBaseFrame.cpp:440
 msgid ""
 "Authorization failed connecting to running client.\n"
 "Make sure you start this program in the same directory as the client."
@@ -552,21 +639,21 @@ msgstr ""
 "連線到執行中的用戶端認證失敗。\n"
 "請確定你於相同的用戶端目錄啟動了本程式。"
 
-#: clientgui/BOINCBaseFrame.cpp:441
+#: clientgui/BOINCBaseFrame.cpp:442
 msgid "Authorization failed connecting to running client."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:449
+#: clientgui/BOINCBaseFrame.cpp:450
 msgid "The password you have provided is incorrect, please try again."
 msgstr "您提供的密碼不正確,請再試一遍。"
 
-#: clientgui/BOINCBaseFrame.cpp:488
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:489
+#, c-format
 msgid "%s - Connection Failed"
 msgstr "%s - 連線失敗"
 
-#: clientgui/BOINCBaseFrame.cpp:497
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:498
+#, c-format
 msgid ""
 "%s is not able to connect to a %s client.\n"
 "Would you like to try to connect again?"
@@ -574,32 +661,32 @@ msgstr ""
 "%s 無法連線到 %s 用戶端。\n"
 "您要再試一次嗎?"
 
-#: clientgui/BOINCBaseFrame.cpp:533
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:534
+#, c-format
 msgid "%s - Daemon Start Failed"
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:543
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:544
+#, 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 ""
 
-#: clientgui/BOINCBaseFrame.cpp:549
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:550
+#, c-format
 msgid ""
 "%s is not able to start a %s client.\n"
 "Please start the daemon and try again."
 msgstr ""
 
-#: clientgui/BOINCBaseFrame.cpp:595
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:596
+#, c-format
 msgid "%s - Connection Status"
 msgstr "%s - 連線狀態"
 
-#: clientgui/BOINCBaseFrame.cpp:606
-#, c-format
+#: clientgui/BOINCBaseFrame.cpp:607
+#, 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"
@@ -609,24 +696,22 @@ msgstr ""
 "請選擇「檔案」>「選擇電腦...」來連到 %s 用戶端。\n"
 "要連線到本機電腦,請於主機名稱輸入「localhost」。"
 
-#: clientgui/BOINCBaseView.cpp:748
-#: clientgui/ViewProjectsGrid.cpp:644
-#: clientgui/ViewWorkGrid.cpp:542
+#: clientgui/BOINCBaseView.cpp:723
 msgid "Web sites"
 msgstr "網站"
 
-#: clientgui/BOINCDialupManager.cpp:61
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:61
+#, c-format
 msgid "%s - Network Status"
 msgstr "%s - 網路狀態"
 
-#: clientgui/BOINCDialupManager.cpp:255
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:255
+#, c-format
 msgid "%s needs to connect to the Internet.  Please click to open %s."
 msgstr "%s 需要連線到網路,請按一下開啟 %s。"
 
-#: clientgui/BOINCDialupManager.cpp:263
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:263
+#, c-format
 msgid ""
 "%s is unable to communicate with a project and needs an Internet connection.\n"
 "Please connect to the Internet, then select the 'Do network communications' item from the Advanced menu."
@@ -634,20 +719,20 @@ msgstr ""
 "%s 無法與計畫通訊,需要網路連線。\n"
 "請連線到網路後於「進階」選單中選擇「開始網路通訊」。"
 
-#: clientgui/BOINCDialupManager.cpp:310
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:310
+#, c-format
 msgid ""
 "%s needs to connect to the Internet.\n"
 "May it do so now?"
 msgstr "%s 需要連線到網路。您要現在連線嗎?"
 
-#: clientgui/BOINCDialupManager.cpp:323
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:323
+#, c-format
 msgid "%s is connecting to the Internet."
 msgstr "%s 正連線到網路。"
 
-#: clientgui/BOINCDialupManager.cpp:354
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:354
+#, c-format
 msgid ""
 "%s couldn't do Internet communication, and no default connection is selected.\n"
 "Please connect to the Internet, or select a default connection\n"
@@ -656,18 +741,18 @@ msgstr ""
 "%s 無法與網路通訊,沒有選擇預設的連線。\n"
 "請連線到網路後,於「進階>選項>連線」選擇預設連線。"
 
-#: clientgui/BOINCDialupManager.cpp:386
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:386
+#, c-format
 msgid "%s has successfully connected to the Internet."
 msgstr "%s 已成功與網路連線。"
 
-#: clientgui/BOINCDialupManager.cpp:414
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:414
+#, c-format
 msgid "%s failed to connect to the Internet."
 msgstr "%s 連線到網路失敗。"
 
-#: clientgui/BOINCDialupManager.cpp:455
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:455
+#, c-format
 msgid ""
 "%s has detected it is now connected to the Internet.\n"
 "Updating all projects and retrying all transfers."
@@ -675,122 +760,154 @@ msgstr ""
 "%s 偵測到現在處於連線狀態。\n"
 "正在更新所有計畫並重試所有檔案傳送。"
 
-#: clientgui/BOINCDialupManager.cpp:500
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:500
+#, c-format
 msgid "%s has successfully disconnected from the Internet."
 msgstr "%s 已成功從網路斷線。"
 
-#: clientgui/BOINCDialupManager.cpp:516
-#, c-format
+#: clientgui/BOINCDialupManager.cpp:516
+#, c-format
 msgid "%s failed to disconnected from the Internet."
 msgstr "%s 從網路斷線失敗。"
 
-#: clientgui/BOINCGUIApp.cpp:372
+#: clientgui/BOINCGUIApp.cpp:325
+msgid ""
+"You currently are not authorized to manage the client.\n"
+"\n"
+"To run BOINC as this user, please:\n"
+"  - reinstall BOINC 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 ""
+
+#: clientgui/BOINCGUIApp.cpp:328
+#, c-format
+#, fuzzy, c-format
+msgid ""
+"BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
+"(Error code %d)"
+msgstr ""
+"BOINC 的所有權或權限未正確設定,請重新安裝 BOINC。\n"
+"(錯誤碼 %d)"
+
+#: clientgui/BOINCGUIApp.cpp:378
 msgid ""
 "A reboot is required in order for BOINC to run properly.\n"
 "Please reboot your computer and try again."
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:373
-#: clientgui/DlgAbout.cpp:136
+#: clientgui/BOINCGUIApp.cpp:379
 msgid "BOINC Manager"
 msgstr "BOINC 管理員"
 
-#: clientgui/BOINCGUIApp.cpp:523
+#: clientgui/BOINCGUIApp.cpp:526
 msgid "BOINC Manager was started by the operating system automatically"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:525
+#: clientgui/BOINCGUIApp.cpp:528
 msgid "Startup BOINC so only the system tray icon is visible"
 msgstr "只以系統匣圖示啟動 BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:527
+#: clientgui/BOINCGUIApp.cpp:530
+msgid "Directory containing the BOINC Client executable"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:531
+msgid "BOINC data directory"
+msgstr ""
+
+#: clientgui/BOINCGUIApp.cpp:533
 msgid "Startup BOINC with these optional arguments"
 msgstr "以這些選用參數啟動 BOINC"
 
-#: clientgui/BOINCGUIApp.cpp:528
+#: clientgui/BOINCGUIApp.cpp:534
 msgid "disable BOINC security users and permissions"
 msgstr "停用 BOINC 安全性使用者和權限"
 
-#: clientgui/BOINCGUIApp.cpp:529
+#: clientgui/BOINCGUIApp.cpp:535
 msgid "set skin debugging mode to enable skin manager error messages"
 msgstr ""
 
-#: clientgui/BOINCGUIApp.cpp:689
+#: clientgui/BOINCGUIApp.cpp:725
 msgid "(Automatic Detection)"
 msgstr "(自動偵測)"
 
-#: clientgui/BOINCGUIApp.cpp:690
+#: clientgui/BOINCGUIApp.cpp:726
 msgid "(Unknown)"
 msgstr "(未知的語言)"
 
-#: clientgui/BOINCGUIApp.cpp:691
+#: clientgui/BOINCGUIApp.cpp:727
 msgid "(User Defined)"
 msgstr "(使用者定義)"
 
-#: clientgui/BOINCTaskBar.cpp:336
+#: clientgui/BOINCTaskBar.cpp:348
 #, fuzzy
 msgid "Computation is suspended."
 msgstr "運算已暫止。\n"
 
-#: clientgui/BOINCTaskBar.cpp:344
+#: clientgui/BOINCTaskBar.cpp:356
 #, fuzzy
 msgid "Network activity is suspended."
 msgstr "網路活動已暫止。\n"
 
-#: clientgui/BOINCTaskBar.cpp:378
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:390
 #, c-format
-#, fuzzy
+#, fuzzy, c-format
 msgid "%s: %.2f%% completed."
 msgstr "%s: %.2f%% 已完成\n"
 
-#: clientgui/BOINCTaskBar.cpp:391
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:403
+#, c-format
 msgid "%d tasks running."
 msgstr ""
 
-#: clientgui/BOINCTaskBar.cpp:400
+#: clientgui/BOINCTaskBar.cpp:412
 #, fuzzy
 msgid "Reconnecting to client."
 msgstr "重新連線用戶端中。\n"
 
-#: clientgui/BOINCTaskBar.cpp:406
+#: clientgui/BOINCTaskBar.cpp:418
 #, fuzzy
 msgid "Not connected to a client."
 msgstr "未連線到用戶端。\n"
 
-#: clientgui/BOINCTaskBar.cpp:597
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:609
+#, c-format
 msgid "Open %s Web..."
 msgstr "開啟 %s 網站..."
 
-#: clientgui/BOINCTaskBar.cpp:604
-#, c-format
+#: clientgui/BOINCTaskBar.cpp:616
+#, c-format
 msgid "Open %s..."
 msgstr "é–‹å•Ÿ %s..."
 
-#: clientgui/BOINCTaskBar.cpp:611
+#: clientgui/BOINCTaskBar.cpp:623
 msgid "Snooze"
 msgstr "稍後通知"
 
-#: clientgui/CompletionErrorPage.cpp:200
+#: clientgui/BOINCTaskBar.cpp:625
+msgid "Snooze GPU"
+msgstr ""
+
+#: clientgui/CompletionErrorPage.cpp:199
 msgid "Failed to attach to project"
 msgstr "加入計畫失敗"
 
-#: clientgui/CompletionErrorPage.cpp:205
+#: clientgui/CompletionErrorPage.cpp:204
 msgid "Failed to update account manager"
 msgstr "更新帳號管理員失敗"
 
-#: clientgui/CompletionErrorPage.cpp:209
+#: clientgui/CompletionErrorPage.cpp:208
 msgid "Failed to remove account manager"
 msgstr "移除帳號管理員失敗"
 
-#: clientgui/CompletionErrorPage.cpp:213
+#: clientgui/CompletionErrorPage.cpp:212
 msgid "Failed to attach to account manager"
 msgstr "加入帳號管理失敗"
 
-#: clientgui/CompletionErrorPage.cpp:222
+#: clientgui/CompletionErrorPage.cpp:221
 msgid ""
 "An error has occurred;\n"
 "check Messages for details.\n"
@@ -800,27 +917,26 @@ msgstr ""
 "發生錯誤,請檢查訊息分頁取得詳細資訊。\n"
 "按「完成」關閉視窗。"
 
-#: clientgui/CompletionErrorPage.cpp:226
-#: clientgui/CompletionPage.cpp:220
-#: clientgui/CompletionPage.cpp:243
-#: clientgui/CompletionPage.cpp:264
-#: clientgui/CompletionPage.cpp:313
+#: clientgui/CompletionErrorPage.cpp:225
+#: clientgui/CompletionPage.cpp:223
+#: clientgui/CompletionPage.cpp:246
+#: clientgui/CompletionPage.cpp:295
 msgid "Click Finish to close."
 msgstr "按「完成」關閉此視窗。"
 
-#: clientgui/CompletionErrorPage.cpp:235
+#: clientgui/CompletionErrorPage.cpp:234
 msgid "Messages from server:"
 msgstr "伺服器傳來的訊息:"
 
-#: clientgui/CompletionPage.cpp:205
+#: clientgui/CompletionPage.cpp:208
 msgid "Attached to project"
 msgstr "已加入計畫"
 
-#: clientgui/CompletionPage.cpp:211
+#: clientgui/CompletionPage.cpp:214
 msgid "You are now successfully attached to this project."
 msgstr "您已成功加入此計畫。"
 
-#: clientgui/CompletionPage.cpp:216
+#: clientgui/CompletionPage.cpp:219
 msgid ""
 "When you click Finish, your web browser will go to a page where\n"
 "you can set your account name and preferences."
@@ -828,121 +944,111 @@ msgstr ""
 "當您按下「完成」後,程式將會啟動瀏覽器並前往設定\n"
 "帳號名稱與偏好設定的網頁。"
 
-#: clientgui/CompletionPage.cpp:233
-#, c-format
+#: clientgui/CompletionPage.cpp:236
+#, c-format
 msgid "Update from %s completed."
 msgstr "從 %s 更新已完成。"
 
-#: clientgui/CompletionPage.cpp:237
+#: clientgui/CompletionPage.cpp:240
 msgid "Update completed."
 msgstr "更新已完成。"
 
-#: clientgui/CompletionPage.cpp:254
-#, c-format
-msgid "Removal from %s completed."
-msgstr "從 %s 移除已完成。"
-
-#: clientgui/CompletionPage.cpp:258
-msgid "Removal succeeded!"
-msgstr "成功移除!"
-
-#: clientgui/CompletionPage.cpp:275
-#, c-format
+#: clientgui/CompletionPage.cpp:257
+#, c-format
 msgid "Attached to %s"
 msgstr "已加入 %s"
 
-#: clientgui/CompletionPage.cpp:279
+#: clientgui/CompletionPage.cpp:261
 msgid "Attached to account manager"
 msgstr "加入帳號管理"
 
-#: clientgui/CompletionPage.cpp:289
-#, c-format
+#: clientgui/CompletionPage.cpp:271
+#, c-format
 msgid "Welcome to %s!"
 msgstr "歡迎加入 %s!"
 
-#: clientgui/CompletionPage.cpp:303
-#, c-format
+#: clientgui/CompletionPage.cpp:285
+#, c-format
 msgid "You are now successfully attached to the %s system."
 msgstr "您已成功加入 %s 系統。"
 
-#: clientgui/CompletionPage.cpp:307
+#: clientgui/CompletionPage.cpp:289
 msgid "You are now successfully attached to this account manager."
 msgstr "您已成功加入此帳號管理員。"
 
-#: clientgui/DlgAbout.cpp:98
-#, c-format
+#: clientgui/DlgAbout.cpp:98
+#, c-format
 msgid "About %s"
 msgstr "中止 %s"
 
-#: clientgui/DlgAbout.cpp:155
+#: clientgui/DlgAbout.cpp:155
 msgid "Version:"
 msgstr "版本:"
 
-#: clientgui/DlgAbout.cpp:163
+#: clientgui/DlgAbout.cpp:163
 msgid "wxWidgets Version:"
 msgstr ""
 
-#: clientgui/DlgAbout.cpp:171
+#: clientgui/DlgAbout.cpp:171
 msgid "Copyright:"
 msgstr "Copyright:"
 
-#: clientgui/DlgAbout.cpp:175
+#: clientgui/DlgAbout.cpp:175
 #, fuzzy
 msgid ""
-"(C) 2003-2008 University of California, Berkeley.\n"
+"(C) 2003-2010 University of California, Berkeley.\n"
 "All Rights Reserved."
 msgstr ""
 "(C) 2003-2007 University of California, Berkeley.\n"
 "All Rights Reserved."
 
-#: clientgui/DlgAbout.cpp:179
-#: clientgui/DlgAbout.cpp:183
+#: clientgui/DlgAbout.cpp:179
+#: clientgui/DlgAbout.cpp:183
 msgid "Berkeley Open Infrastructure for Network Computing"
 msgstr "柏克萊開放式網路運算平台"
 
-#: clientgui/DlgAbout.cpp:195
-#: clientgui/DlgExitMessage.cpp:172
-#: clientgui/DlgGenericMessage.cpp:120
-#: clientgui/DlgOptions.cpp:383
-#: clientgui/DlgSelectComputer.cpp:147
+#: clientgui/DlgAbout.cpp:195
+#: clientgui/DlgExitMessage.cpp:172
+#: clientgui/DlgGenericMessage.cpp:120
+#: clientgui/DlgOptions.cpp:383
+#: clientgui/DlgSelectComputer.cpp:147
 msgid "&OK"
 msgstr "確定(&O)"
 
-#: clientgui/DlgAdvPreferences.cpp:480
+#: clientgui/DlgAdvPreferences.cpp:485
 msgid "invalid float"
 msgstr "浮點數無效"
 
-#: clientgui/DlgAdvPreferences.cpp:481
+#: clientgui/DlgAdvPreferences.cpp:486
 msgid "invalid time, format is HH:MM"
 msgstr "時間無效,格式為 HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:482
+#: clientgui/DlgAdvPreferences.cpp:487
 msgid "invalid time interval, format is HH:MM-HH:MM"
 msgstr "時間區間無效,格式為 HH:MM-HH:MM"
 
-#: clientgui/DlgAdvPreferences.cpp:591
+#: clientgui/DlgAdvPreferences.cpp:601
 msgid "invalid input value detected"
 msgstr "偵測到輸入值無效"
 
-#: clientgui/DlgAdvPreferences.cpp:593
+#: clientgui/DlgAdvPreferences.cpp:603
 msgid "Validation Error"
 msgstr "驗證錯誤"
 
-#: clientgui/DlgAdvPreferences.cpp:736
+#: clientgui/DlgAdvPreferences.cpp:747
 msgid "Do you really want to clear all local preferences ?"
 msgstr "您真的要清除所有本機偏好設定嗎?"
 
-#: clientgui/DlgAdvPreferences.cpp:737
+#: clientgui/DlgAdvPreferences.cpp:748
 msgid "Confirmation"
 msgstr "確認"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:31
-#: clientgui/sg_DlgPreferences.cpp:1036
-#, c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:31
+#, c-format
 msgid "%s - Preferences"
 msgstr "%s - 偏好設定"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:49
+#: clientgui/DlgAdvPreferencesBase.cpp:49
 msgid ""
 "This dialog controls preferences for this computer only.\n"
 "Click OK to set preferences.\n"
@@ -952,185 +1058,195 @@ msgstr ""
 "按「確定」設定偏好設定。\n"
 "按「清除」回復為網頁上的偏好設定。"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:52
+#: clientgui/DlgAdvPreferencesBase.cpp:52
 msgid "Clear"
 msgstr "清除"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:53
+#: clientgui/DlgAdvPreferencesBase.cpp:53
 msgid "clear all local preferences and close the dialog"
 msgstr "清除所有本機偏好設定並關閉此視窗"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:76
+#: clientgui/DlgAdvPreferencesBase.cpp:76
 msgid "Computing allowed"
 msgstr "選擇允許運算的情況"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:80
+#: clientgui/DlgAdvPreferencesBase.cpp:80
 msgid " While computer is on batteries"
 msgstr " 電腦以電池供電時"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:83
+#: clientgui/DlgAdvPreferencesBase.cpp:83
 msgid "check this if you want this computer to do work while it runs on batteries"
 msgstr "若你想讓電腦以電池供電時也要運行工作就打勾"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:89
+#: clientgui/DlgAdvPreferencesBase.cpp:89
 msgid " While computer is in use"
 msgstr " 電腦正使用中時"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:92
+#: clientgui/DlgAdvPreferencesBase.cpp:92
 msgid "check this if you want this computer to do work even when you're using it"
 msgstr "若你想在使用電腦的同時一起運行工作就打勾"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:98
+#: clientgui/DlgAdvPreferencesBase.cpp:98
 msgid " Use GPU while computer is in use"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:101
+#: clientgui/DlgAdvPreferencesBase.cpp:101
 msgid "check this if you want your GPU to do work even when you're using the computer"
 msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:111
+#: clientgui/DlgAdvPreferencesBase.cpp:113
 msgid "Only after computer has been idle for"
 msgstr "電腦閒置幾分鐘後才運行工作: "
 
-#: clientgui/DlgAdvPreferencesBase.cpp:115
+#: clientgui/DlgAdvPreferencesBase.cpp:123
 msgid "do work only after you haven't used the computer for this number of minutes"
 msgstr "設定你不使用電腦幾分鐘後才運行工作"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:119
-#: clientgui/DlgAdvPreferencesBase.cpp:239
-#: clientgui/sg_DlgPreferences.cpp:453
+#: clientgui/DlgAdvPreferencesBase.cpp:128
+#: clientgui/DlgAdvPreferencesBase.cpp:286
 msgid "minutes"
 msgstr "分"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:130
-#: clientgui/DlgAdvPreferencesBase.cpp:355
+#: clientgui/DlgAdvPreferencesBase.cpp:147
+#, fuzzy
+msgid "While processor usage is less than"
+msgstr "處理器用量"
+
+#: clientgui/DlgAdvPreferencesBase.cpp:157
+msgid "suspend work if processor usage exceeds this level"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:162
+msgid "percent (0 means no restriction)"
+msgstr ""
+
+#: clientgui/DlgAdvPreferencesBase.cpp:177
+#: clientgui/DlgAdvPreferencesBase.cpp:402
 msgid "Every day between hours of"
 msgstr "每天運行工作的時間: "
 
-#: clientgui/DlgAdvPreferencesBase.cpp:134
+#: clientgui/DlgAdvPreferencesBase.cpp:181
 msgid "start work at this time"
 msgstr "開始運行工作的時間"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:138
-#: clientgui/DlgAdvPreferencesBase.cpp:363
-#: clientgui/sg_DlgPreferences.cpp:362
-#: clientgui/sg_DlgPreferences.cpp:384
+#: clientgui/DlgAdvPreferencesBase.cpp:185
+#: clientgui/DlgAdvPreferencesBase.cpp:410
 msgid "and"
 msgstr "到"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:142
+#: clientgui/DlgAdvPreferencesBase.cpp:189
 msgid "stop work at this time"
 msgstr "停止運行工作的時間"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:146
-#: clientgui/DlgAdvPreferencesBase.cpp:371
+#: clientgui/DlgAdvPreferencesBase.cpp:193
+#: clientgui/DlgAdvPreferencesBase.cpp:418
 msgid "(no restriction if equal)"
 msgstr "(兩欄都相等表示不設限)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:151
-#: clientgui/DlgAdvPreferencesBase.cpp:376
+#: clientgui/DlgAdvPreferencesBase.cpp:198
+#: clientgui/DlgAdvPreferencesBase.cpp:423
 msgid "Day-of-week override:"
 msgstr "每日分別設定:"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:156
-#: clientgui/DlgAdvPreferencesBase.cpp:381
+#: clientgui/DlgAdvPreferencesBase.cpp:203
+#: clientgui/DlgAdvPreferencesBase.cpp:428
 msgid "check box to specify hours for this day of week"
 msgstr "打勾可設定該日要運行工作的時間"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:166
-#: clientgui/DlgAdvPreferencesBase.cpp:391
+#: clientgui/DlgAdvPreferencesBase.cpp:213
+#: clientgui/DlgAdvPreferencesBase.cpp:438
 msgid "Monday"
 msgstr "星期一"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:173
-#: clientgui/DlgAdvPreferencesBase.cpp:398
+#: clientgui/DlgAdvPreferencesBase.cpp:220
+#: clientgui/DlgAdvPreferencesBase.cpp:445
 msgid "Tuesday"
 msgstr "星期二"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:180
-#: clientgui/DlgAdvPreferencesBase.cpp:405
+#: clientgui/DlgAdvPreferencesBase.cpp:227
+#: clientgui/DlgAdvPreferencesBase.cpp:452
 msgid "Wednesday"
 msgstr "星期三"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:187
-#: clientgui/DlgAdvPreferencesBase.cpp:412
+#: clientgui/DlgAdvPreferencesBase.cpp:234
+#: clientgui/DlgAdvPreferencesBase.cpp:459
 msgid "Thursday"
 msgstr "星期四"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:194
-#: clientgui/DlgAdvPreferencesBase.cpp:419
+#: clientgui/DlgAdvPreferencesBase.cpp:241
+#: clientgui/DlgAdvPreferencesBase.cpp:466
 msgid "Friday"
 msgstr "星期五"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:201
-#: clientgui/DlgAdvPreferencesBase.cpp:426
+#: clientgui/DlgAdvPreferencesBase.cpp:248
+#: clientgui/DlgAdvPreferencesBase.cpp:473
 msgid "Saturday"
 msgstr "星期六"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:208
-#: clientgui/DlgAdvPreferencesBase.cpp:433
+#: clientgui/DlgAdvPreferencesBase.cpp:255
+#: clientgui/DlgAdvPreferencesBase.cpp:480
 msgid "Sunday"
 msgstr "星期日"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:225
+#: clientgui/DlgAdvPreferencesBase.cpp:272
 msgid "Other options"
 msgstr "其他選項"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:233
-msgid "Switch between applications between every"
+#: clientgui/DlgAdvPreferencesBase.cpp:280
+#, fuzzy
+msgid "Switch between applications every"
 msgstr "每隔幾分鐘切換應用程式: "
 
-#: clientgui/DlgAdvPreferencesBase.cpp:242
+#: clientgui/DlgAdvPreferencesBase.cpp:289
 msgid "On multiprocessor systems, use at most"
 msgstr "多處理器系統中最多只使用"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:249
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:296
 #, no-c-format
-#, fuzzy
+#, fuzzy, no-c-format
 msgid "% of the processors"
 msgstr "/CPU 使用率"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:252
-#: clientgui/DlgAdvPreferencesBase.cpp:468
-#: clientgui/DlgAdvPreferencesBase.cpp:490
-#: clientgui/DlgAdvPreferencesBase.cpp:511
-#: clientgui/DlgAdvPreferencesBase.cpp:534
-#: clientgui/DlgAdvPreferencesBase.cpp:544
+#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:515
+#: clientgui/DlgAdvPreferencesBase.cpp:537
+#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:591
 msgid "Use at most"
 msgstr "最多只使用"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:259
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:306
+#, no-c-format
 msgid "% CPU time"
 msgstr "% CPU 時間"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:269
+#: clientgui/DlgAdvPreferencesBase.cpp:316
 msgid "processor usage"
 msgstr "處理器用量"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:277
+#: clientgui/DlgAdvPreferencesBase.cpp:324
 msgid "General options"
 msgstr "一般選項"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:284
+#: clientgui/DlgAdvPreferencesBase.cpp:331
 msgid "Maximum download rate"
 msgstr "最大下載速率"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:290
-#: clientgui/DlgAdvPreferencesBase.cpp:299
+#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:346
 msgid "KBytes/sec."
 msgstr "KB/秒"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:293
+#: clientgui/DlgAdvPreferencesBase.cpp:340
 msgid "Maximum upload rate"
 msgstr "最大上傳速率"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:302
+#: clientgui/DlgAdvPreferencesBase.cpp:349
 msgid "Connect about every"
 msgstr "每幾天連線一次: "
 
-#: clientgui/DlgAdvPreferencesBase.cpp:306
+#: clientgui/DlgAdvPreferencesBase.cpp:353
 msgid ""
 "this computer is connected to the Internet about every X days\n"
 "(0 if it's always connected)"
@@ -1138,43 +1254,43 @@ msgstr ""
 "設定此電腦每 X 天連線網路\n"
 "(0 代表一直連線)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:310
+#: clientgui/DlgAdvPreferencesBase.cpp:357
 msgid "days"
 msgstr "天"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:313
+#: clientgui/DlgAdvPreferencesBase.cpp:360
 msgid "Additional work buffer"
 msgstr "取得額外工作的緩衝時間"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:319
+#: clientgui/DlgAdvPreferencesBase.cpp:366
 msgid "days (max. 10)"
 msgstr "天 (最多 10 天)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:322
+#: clientgui/DlgAdvPreferencesBase.cpp:369
 msgid " Skip image file verification"
 msgstr "略過映像檔驗證"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:324
+#: clientgui/DlgAdvPreferencesBase.cpp:371
 msgid "check this if your Internet provider modifies image files"
 msgstr "若你的 ISP 會修改映像檔就打勾"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:333
+#: clientgui/DlgAdvPreferencesBase.cpp:380
 msgid "Connect options"
 msgstr "連線選項"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:335
+#: clientgui/DlgAdvPreferencesBase.cpp:382
 msgid "Confirm before connecting to internet"
 msgstr "連線到網路前確認"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:337
+#: clientgui/DlgAdvPreferencesBase.cpp:384
 msgid "if checked, a confirmation dialog will be displayed before trying to connect to the Internet"
 msgstr "若勾選此方塊,當連線到網路前會先顯示確認視窗"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:341
+#: clientgui/DlgAdvPreferencesBase.cpp:388
 msgid "Disconnect when done"
 msgstr "完成後斷線"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:343
+#: clientgui/DlgAdvPreferencesBase.cpp:390
 msgid ""
 "if checked, BOINC hangs up when network usage is done\n"
 "(only relevant for dialup-connection)"
@@ -1182,130 +1298,126 @@ msgstr ""
 "若勾選此方塊,當網路使用結束後 BOINC 會中斷連線\n"
 "(只對撥接連線有效)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:350
+#: clientgui/DlgAdvPreferencesBase.cpp:397
 msgid "Network usage allowed"
 msgstr "選擇允許使用網路的情況"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:359
+#: clientgui/DlgAdvPreferencesBase.cpp:406
 msgid "network usage start hour"
 msgstr "網路使用開始時間"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:367
+#: clientgui/DlgAdvPreferencesBase.cpp:414
 msgid "network usage stop hour"
 msgstr "網路使用結束時間"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:452
+#: clientgui/DlgAdvPreferencesBase.cpp:499
 msgid "network usage"
 msgstr "網路用量"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:460
-#: clientgui/DlgItemProperties.cpp:113
+#: clientgui/DlgAdvPreferencesBase.cpp:507
+#: clientgui/DlgItemProperties.cpp:213
 msgid "Disk usage"
 msgstr "磁碟用量"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:472
+#: clientgui/DlgAdvPreferencesBase.cpp:519
 msgid "the maximum disk space used by BOINC (in Gigabytes)"
 msgstr "BOINC 能使用的最大磁碟空間 (以 GB 計)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:476
+#: clientgui/DlgAdvPreferencesBase.cpp:523
 msgid "Gigabytes disk space"
 msgstr "GB 磁碟空間"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:479
+#: clientgui/DlgAdvPreferencesBase.cpp:526
 msgid "Leave at least"
 msgstr "留下至少"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:483
+#: clientgui/DlgAdvPreferencesBase.cpp:530
 #, fuzzy
 msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)"
 msgstr "BOINC 要留下多少的可用磁碟空間 (以 GB 計)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:487
+#: clientgui/DlgAdvPreferencesBase.cpp:534
 msgid "Gigabytes disk space free"
 msgstr "GB 可用磁碟空間"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:494
+#: clientgui/DlgAdvPreferencesBase.cpp:541
 msgid "BOINC uses at most this percentage of total disk space"
 msgstr "BOINC 最多可使用的總磁碟空間百分比"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:499
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:546
+#, no-c-format
 msgid "% of total disk space"
 msgstr "% 總磁碟空間"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:502
-msgid "Write to disk at most every"
-msgstr "寫入磁碟最多每"
+#: clientgui/DlgAdvPreferencesBase.cpp:549
+msgid "Tasks checkpoint to disk at most every"
+msgstr ""
 
-#: clientgui/DlgAdvPreferencesBase.cpp:508
+#: clientgui/DlgAdvPreferencesBase.cpp:555
 msgid "seconds"
 msgstr "秒"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:518
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:565
+#, no-c-format
 msgid "% of page file (swap space)"
 msgstr "% 分頁檔大小 (交換空間)"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:526
+#: clientgui/DlgAdvPreferencesBase.cpp:573
 msgid "Memory usage"
 msgstr "記憶體用量"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:541
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:588
+#, no-c-format
 msgid "% when computer is in use"
 msgstr "% 於電腦使用中"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:551
-#, no-c-format
+#: clientgui/DlgAdvPreferencesBase.cpp:598
+#, no-c-format
 msgid "% when computer is idle"
 msgstr "% 於電腦閒置中"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:556
+#: clientgui/DlgAdvPreferencesBase.cpp:603
 msgid " Leave applications in memory while suspended"
 msgstr " 當暫止時保留應用程式於記憶體中"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:558
+#: clientgui/DlgAdvPreferencesBase.cpp:605
 msgid "if checked, suspended work units are left in memory"
 msgstr "若勾選此方塊,暫止的工作會留在記憶體中"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:567
+#: clientgui/DlgAdvPreferencesBase.cpp:614
 msgid "disk and memory usage"
 msgstr "磁碟及記憶體用量"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:580
+#: clientgui/DlgAdvPreferencesBase.cpp:627
 msgid "OK"
 msgstr "確定"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:581
+#: clientgui/DlgAdvPreferencesBase.cpp:628
 msgid "save all values and close the dialog"
 msgstr "儲存所有值並關閉視窗"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:585
-msgid "Cancel"
-msgstr "取消"
-
-#: clientgui/DlgAdvPreferencesBase.cpp:586
+#: clientgui/DlgAdvPreferencesBase.cpp:633
 msgid "close the dialog without saving"
 msgstr "關閉視窗且不儲存"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:590
-#: clientgui/Localization.cpp:35
-#: clientgui/Localization.cpp:121
-#: clientgui/Localization.cpp:139
+#: clientgui/DlgAdvPreferencesBase.cpp:637
+#: clientgui/Localization.cpp:35
+#: clientgui/Localization.cpp:121
+#: clientgui/Localization.cpp:139
 msgid "Help"
 msgstr "幫助"
 
-#: clientgui/DlgAdvPreferencesBase.cpp:591
+#: clientgui/DlgAdvPreferencesBase.cpp:638
 msgid "shows the preferences web page"
 msgstr "顯示網頁上的偏好設定"
 
-#: clientgui/DlgExitMessage.cpp:82
-#, c-format
+#: clientgui/DlgExitMessage.cpp:82
+#, c-format
 msgid "%s - Exit Confirmation"
 msgstr "%s - 關閉確認視窗"
 
-#: clientgui/DlgExitMessage.cpp:130
-#, c-format
+#: clientgui/DlgExitMessage.cpp:130
+#, c-format
 msgid ""
 "You have requested to exit the %s,\n"
 "which allows you to view and manage\n"
@@ -1315,8 +1427,8 @@ msgid ""
 "exit the Manager, then choose from the following options:"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:135
-#, c-format
+#: clientgui/DlgExitMessage.cpp:135
+#, c-format
 msgid ""
 "This will shut down %s and its tasks entirely until either the\n"
 "%s application or the %s screen saver is run again.\n"
@@ -1331,538 +1443,496 @@ msgstr ""
 "一般而言只關掉 %s 視窗會比完全離開程式來的好,\n"
 "這樣子可以讓 %s 依照你設置的偏好設定按時執行。"
 
-#: clientgui/DlgExitMessage.cpp:153
+#: clientgui/DlgExitMessage.cpp:153
 msgid "Stop running science applications when exiting the Manager"
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:164
+#: clientgui/DlgExitMessage.cpp:164
 msgid "Remember this decision and do not show this dialog."
 msgstr ""
 
-#: clientgui/DlgExitMessage.cpp:177
-#: clientgui/DlgGenericMessage.cpp:125
-#: clientgui/DlgOptions.cpp:388
-#: clientgui/DlgSelectComputer.cpp:152
-#: clientgui/wizardex.cpp:403
+#: clientgui/DlgExitMessage.cpp:177
+#: clientgui/DlgGenericMessage.cpp:125
+#: clientgui/DlgOptions.cpp:388
+#: clientgui/DlgSelectComputer.cpp:152
 msgid "&Cancel"
 msgstr "取消(&C)"
 
-#: clientgui/DlgGenericMessage.cpp:112
+#: clientgui/DlgGenericMessage.cpp:112
 msgid "Don't show this dialog again."
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:57
+#: clientgui/DlgItemProperties.cpp:63
 msgid "&Close"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:101
+#: clientgui/DlgItemProperties.cpp:195
 msgid "Properties of project "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:105
-#: clientgui/DlgOptions.cpp:205
+#: clientgui/DlgItemProperties.cpp:199
+#: clientgui/DlgOptions.cpp:205
 msgid "General"
 msgstr "一般"
 
-#: clientgui/DlgItemProperties.cpp:106
+#: clientgui/DlgItemProperties.cpp:200
 msgid "Master URL"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:107
+#: clientgui/DlgItemProperties.cpp:201
 #, fuzzy
 msgid "User name"
 msgstr "使用者名稱:"
 
-#: clientgui/DlgItemProperties.cpp:108
+#: clientgui/DlgItemProperties.cpp:202
 msgid "Team name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:109
-#: clientgui/ViewProjects.cpp:223
-#: clientgui/ViewProjectsBase.cpp:156
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/DlgItemProperties.cpp:203
 msgid "Resource share"
 msgstr "資源分享"
 
-#: clientgui/DlgItemProperties.cpp:111
+#: clientgui/DlgItemProperties.cpp:205
 msgid "Scheduler RPC deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
+#: clientgui/DlgItemProperties.cpp:208
+msgid "File downloads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:211
+msgid "File uploads deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:214
+msgid "Computer ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:215
 msgid "Non CPU intensive"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "yes"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:114
-#: clientgui/DlgItemProperties.cpp:115
-#: clientgui/DlgItemProperties.cpp:116
-#: clientgui/DlgItemProperties.cpp:117
-#: clientgui/DlgItemProperties.cpp:118
-#: clientgui/DlgItemProperties.cpp:119
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:215
+#: clientgui/DlgItemProperties.cpp:216
+#: clientgui/DlgItemProperties.cpp:217
+#: clientgui/DlgItemProperties.cpp:218
+#: clientgui/DlgItemProperties.cpp:219
+#: clientgui/DlgItemProperties.cpp:220
+#: clientgui/DlgItemProperties.cpp:221
 msgid "no"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:115
+#: clientgui/DlgItemProperties.cpp:216
 msgid "Suspended via GUI"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:116
+#: clientgui/DlgItemProperties.cpp:217
 msgid "Don't request more work"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:117
+#: clientgui/DlgItemProperties.cpp:218
 #, fuzzy
 msgid "Scheduler call in progress"
 msgstr "排程器請求進行中"
 
-#: clientgui/DlgItemProperties.cpp:118
+#: clientgui/DlgItemProperties.cpp:219
 #, fuzzy
 msgid "Attached via account manager"
 msgstr "加入帳號管理"
 
-#: clientgui/DlgItemProperties.cpp:119
+#: clientgui/DlgItemProperties.cpp:220
 msgid "Detach when done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:120
+#: clientgui/DlgItemProperties.cpp:221
 msgid "Ended"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:121
+#: clientgui/DlgItemProperties.cpp:222
 msgid "Credit"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:122
+#: clientgui/DlgItemProperties.cpp:223
 msgid "User"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:129
+#: clientgui/DlgItemProperties.cpp:230
 msgid "Host"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:138
+#: clientgui/DlgItemProperties.cpp:239
 msgid "Scheduling"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:139
+#: clientgui/DlgItemProperties.cpp:240
 msgid "CPU scheduling priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:140
+#: clientgui/DlgItemProperties.cpp:241
 msgid "CPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:143
+#: clientgui/DlgItemProperties.cpp:244
 msgid "CPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:144
+#: clientgui/DlgItemProperties.cpp:245
 msgid "CPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:146
+#: clientgui/DlgItemProperties.cpp:247
+msgid "NVIDIA GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:248
 msgid "NVIDIA GPU work fetch priority"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:149
+#: clientgui/DlgItemProperties.cpp:251
 msgid "NVIDIA GPU work fetch deferred for"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:150
+#: clientgui/DlgItemProperties.cpp:252
 msgid "NVIDIA GPU work fetch deferral interval"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:152
+#: clientgui/DlgItemProperties.cpp:255
+msgid "ATI GPU scheduling priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:256
+msgid "ATI GPU work fetch priority"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:259
+msgid "ATI GPU work fetch deferred for"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:260
+msgid "ATI GPU work fetch deferral interval"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:262
 msgid "Duration correction factor"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:162
+#: clientgui/DlgItemProperties.cpp:272
 msgid "Properties of task "
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:166
-#: clientgui/ViewWork.cpp:215
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:276
 msgid "Application"
 msgstr "應用程式"
 
-#: clientgui/DlgItemProperties.cpp:167
+#: clientgui/DlgItemProperties.cpp:277
 msgid "Workunit name"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:168
+#: clientgui/DlgItemProperties.cpp:278
 msgid "State"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:170
-#: clientgui/ViewWork.cpp:220
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/DlgItemProperties.cpp:281
+msgid "Received"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:284
 msgid "Report deadline"
 msgstr "回報期限"
 
-#: clientgui/DlgItemProperties.cpp:172
+#: clientgui/DlgItemProperties.cpp:286
 msgid "Resources"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:175
+#: clientgui/DlgItemProperties.cpp:289
 msgid "CPU time at last checkpoint"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:176
-#: clientgui/DlgItemProperties.cpp:188
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/DlgItemProperties.cpp:290
+#: clientgui/DlgItemProperties.cpp:305
 msgid "CPU time"
 msgstr "CPU 時間"
 
-#: clientgui/DlgItemProperties.cpp:178
-#: clientgui/DlgItemProperties.cpp:189
+#: clientgui/DlgItemProperties.cpp:292
+#: clientgui/DlgItemProperties.cpp:306
 #, fuzzy
 msgid "Elapsed time"
 msgstr "剩餘時間"
 
-#: clientgui/DlgItemProperties.cpp:180
+#: clientgui/DlgItemProperties.cpp:294
 msgid "Estimated time remaining"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:181
+#: clientgui/DlgItemProperties.cpp:295
 msgid "Fraction done"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:182
+#: clientgui/DlgItemProperties.cpp:296
 msgid "Virtual memory size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:183
+#: clientgui/DlgItemProperties.cpp:297
 msgid "Working set size"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:185
-msgid "Slot"
+#: clientgui/DlgItemProperties.cpp:299
+msgid "Directory"
 msgstr ""
 
-#: clientgui/DlgItemProperties.cpp:283
-#: clientgui/ViewWork.cpp:1006
-#: clientgui/ViewWorkGrid.cpp:774
+#: clientgui/DlgItemProperties.cpp:302
+msgid "Process ID"
+msgstr ""
+
+#: clientgui/DlgItemProperties.cpp:400
 msgid "New"
 msgstr "新工作"
 
-#: clientgui/DlgItemProperties.cpp:287
-#: clientgui/ViewTransfers.cpp:752
-#: clientgui/ViewTransfersGrid.cpp:421
-#: clientgui/ViewWork.cpp:1010
-#: clientgui/ViewWorkGrid.cpp:778
+#: clientgui/DlgItemProperties.cpp:404
 msgid "Download failed"
 msgstr "下載失敗"
 
-#: clientgui/DlgItemProperties.cpp:289
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1012
-#: clientgui/ViewWorkGrid.cpp:780
+#: clientgui/DlgItemProperties.cpp:406
 msgid "Downloading"
 msgstr "下載中"
 
-#: clientgui/DlgItemProperties.cpp:294
-#: clientgui/ViewWork.cpp:1017
-#: clientgui/ViewWorkGrid.cpp:785
+#: clientgui/DlgItemProperties.cpp:411
 msgid "Project suspended by user"
 msgstr "計畫被使用者暫止"
 
-#: clientgui/DlgItemProperties.cpp:296
-#: clientgui/ViewWork.cpp:1019
-#: clientgui/ViewWorkGrid.cpp:787
+#: clientgui/DlgItemProperties.cpp:413
 msgid "Task suspended by user"
 msgstr "被使用者暫止"
 
-#: clientgui/DlgItemProperties.cpp:298
-#: clientgui/ViewTransfers.cpp:757
-#: clientgui/ViewTransfersGrid.cpp:426
-#: clientgui/ViewWork.cpp:1021
-#: clientgui/ViewWorkGrid.cpp:789
+#: clientgui/DlgItemProperties.cpp:415
 msgid "Suspended"
 msgstr "已暫止"
 
-#: clientgui/DlgItemProperties.cpp:300
-#: clientgui/ViewWork.cpp:1023
-#: clientgui/ViewWorkGrid.cpp:791
+#: clientgui/DlgItemProperties.cpp:417
 msgid " - on batteries"
 msgstr " - 正以電池供電"
 
-#: clientgui/DlgItemProperties.cpp:303
-#: clientgui/ViewWork.cpp:1026
-#: clientgui/ViewWorkGrid.cpp:794
+#: clientgui/DlgItemProperties.cpp:420
 msgid " - user active"
 msgstr " - 使用者正在操作"
 
-#: clientgui/DlgItemProperties.cpp:306
-#: clientgui/ViewWork.cpp:1029
-#: clientgui/ViewWorkGrid.cpp:797
+#: clientgui/DlgItemProperties.cpp:423
 msgid " - computation suspended"
 msgstr "- 運算已暫止"
 
-#: clientgui/DlgItemProperties.cpp:309
-#: clientgui/ViewWork.cpp:1032
-#: clientgui/ViewWorkGrid.cpp:800
+#: clientgui/DlgItemProperties.cpp:426
 msgid " - time of day"
 msgstr " - 不在設定時間內"
 
-#: clientgui/DlgItemProperties.cpp:312
-#: clientgui/ViewWork.cpp:1035
-#: clientgui/ViewWorkGrid.cpp:803
+#: clientgui/DlgItemProperties.cpp:429
 msgid " - CPU benchmarks"
 msgstr " - CPU 效能測試"
 
-#: clientgui/DlgItemProperties.cpp:315
-#: clientgui/ViewWork.cpp:1038
-#: clientgui/ViewWorkGrid.cpp:806
+#: clientgui/DlgItemProperties.cpp:432
 msgid " - need disk space"
 msgstr " - 需要磁碟空間"
 
-#: clientgui/DlgItemProperties.cpp:319
-#: clientgui/ViewWork.cpp:1048
-#: clientgui/ViewWorkGrid.cpp:810
+#: clientgui/DlgItemProperties.cpp:436
 msgid "Waiting for memory"
 msgstr "等待記憶體釋放"
 
-#: clientgui/DlgItemProperties.cpp:321
-#: clientgui/ViewWork.cpp:1050
-#: clientgui/ViewWorkGrid.cpp:812
+#: clientgui/DlgItemProperties.cpp:438
 msgid "Waiting for shared memory"
 msgstr "等待共享記憶體釋放"
 
-#: clientgui/DlgItemProperties.cpp:324
-#: clientgui/ViewWork.cpp:1053
-#: clientgui/ViewWorkGrid.cpp:815
+#: clientgui/DlgItemProperties.cpp:441
 msgid "Running, high priority"
 msgstr "執行中,高優先權"
 
-#: clientgui/DlgItemProperties.cpp:326
-#: clientgui/sg_ImageButton.cpp:88
-#: clientgui/ViewWork.cpp:1055
-#: clientgui/ViewWorkGrid.cpp:817
+#: clientgui/DlgItemProperties.cpp:443
 msgid "Running"
 msgstr "運行中"
 
-#: clientgui/DlgItemProperties.cpp:329
-#: clientgui/ViewWork.cpp:1064
-#: clientgui/ViewWorkGrid.cpp:826
+#: clientgui/DlgItemProperties.cpp:446
 msgid "Waiting to run"
 msgstr "等待執行"
 
-#: clientgui/DlgItemProperties.cpp:331
-#: clientgui/DlgItemProperties.cpp:334
-#: clientgui/ViewWork.cpp:1066
-#: clientgui/ViewWork.cpp:1072
-#: clientgui/ViewWorkGrid.cpp:828
-#: clientgui/ViewWorkGrid.cpp:831
+#: clientgui/DlgItemProperties.cpp:448
+#: clientgui/DlgItemProperties.cpp:451
 msgid "Ready to start"
 msgstr "準備開始"
 
-#: clientgui/DlgItemProperties.cpp:338
-#: clientgui/ViewWork.cpp:1076
-#: clientgui/ViewWorkGrid.cpp:835
+#: clientgui/DlgItemProperties.cpp:455
 msgid "Computation error"
 msgstr "運算錯誤"
 
-#: clientgui/DlgItemProperties.cpp:342
-#: clientgui/ViewTransfers.cpp:754
-#: clientgui/ViewTransfersGrid.cpp:423
-#: clientgui/ViewWork.cpp:1080
-#: clientgui/ViewWorkGrid.cpp:839
+#: clientgui/DlgItemProperties.cpp:459
 msgid "Upload failed"
 msgstr "上傳失敗"
 
-#: clientgui/DlgItemProperties.cpp:344
-#: clientgui/ViewTransfers.cpp:760
-#: clientgui/ViewTransfersGrid.cpp:429
-#: clientgui/ViewWork.cpp:1082
-#: clientgui/ViewWorkGrid.cpp:841
+#: clientgui/DlgItemProperties.cpp:461
 msgid "Uploading"
 msgstr "上傳中"
 
-#: clientgui/DlgItemProperties.cpp:350
-#: clientgui/ViewWork.cpp:1088
-#: clientgui/ViewWorkGrid.cpp:847
+#: clientgui/DlgItemProperties.cpp:467
 msgid "Aborted by user"
 msgstr "被使用者中止"
 
-#: clientgui/DlgItemProperties.cpp:353
-#: clientgui/ViewWork.cpp:1091
-#: clientgui/ViewWorkGrid.cpp:850
+#: clientgui/DlgItemProperties.cpp:470
 msgid "Aborted by project"
 msgstr "被計畫中止"
 
-#: clientgui/DlgItemProperties.cpp:356
-#: clientgui/ViewWork.cpp:1094
-#: clientgui/ViewWorkGrid.cpp:853
+#: clientgui/DlgItemProperties.cpp:473
 msgid "Aborted"
 msgstr "已中止"
 
-#: clientgui/DlgItemProperties.cpp:361
-#: clientgui/ViewWork.cpp:1099
-#: clientgui/ViewWorkGrid.cpp:858
+#: clientgui/DlgItemProperties.cpp:478
 msgid "Acknowledged"
 msgstr "已認可"
 
-#: clientgui/DlgItemProperties.cpp:363
-#: clientgui/ViewWork.cpp:1101
-#: clientgui/ViewWorkGrid.cpp:860
+#: clientgui/DlgItemProperties.cpp:480
 msgid "Ready to report"
 msgstr "準備回報"
 
-#: clientgui/DlgItemProperties.cpp:365
-#: clientgui/ViewWork.cpp:1103
-#: clientgui/ViewWorkGrid.cpp:862
-#, c-format
+#: clientgui/DlgItemProperties.cpp:482
+#, c-format
 msgid "Error: invalid state '%d'"
 msgstr "錯誤: 無效狀態「%d」"
 
-#: clientgui/DlgOptions.cpp:119
-#, c-format
+#: clientgui/DlgOptions.cpp:119
+#, c-format
 msgid "%s - Options"
 msgstr "%s - 選項"
 
-#: clientgui/DlgOptions.cpp:157
+#: clientgui/DlgOptions.cpp:157
 msgid "Language:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:164
+#: clientgui/DlgOptions.cpp:164
 msgid "What language should the manager use?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:168
+#: clientgui/DlgOptions.cpp:168
 msgid ""
 "Network reminder interval:\n"
 "(minutes)"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:180
+#: clientgui/DlgOptions.cpp:180
 msgid "How often should the Manager remind you when a network connection is needed?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:185
+#: clientgui/DlgOptions.cpp:185
 msgid "Run Manager at login?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:191
+#: clientgui/DlgOptions.cpp:191
 msgid "Run the BOINC Manager when you log on."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:196
+#: clientgui/DlgOptions.cpp:196
 msgid "Enable Manager exit dialog?"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:202
+#: clientgui/DlgOptions.cpp:202
 msgid "Display the exit dialog when shutting down the Manager."
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:213
+#: clientgui/DlgOptions.cpp:213
 msgid "Dial-up and Virtual Private Network settings"
 msgstr "撥接與虛擬私人網路 (VPN) 設定"
 
-#: clientgui/DlgOptions.cpp:227
+#: clientgui/DlgOptions.cpp:227
 msgid "&Set Default"
 msgstr "設為預設值(&S)"
 
-#: clientgui/DlgOptions.cpp:232
+#: clientgui/DlgOptions.cpp:232
 msgid "&Clear Default"
 msgstr "清除預設值(&C)"
 
-#: clientgui/DlgOptions.cpp:239
+#: clientgui/DlgOptions.cpp:239
 msgid "Default Connection:"
 msgstr "預設連線:"
 
-#: clientgui/DlgOptions.cpp:246
+#: clientgui/DlgOptions.cpp:246
 msgid "Connections"
 msgstr "連線"
 
-#: clientgui/DlgOptions.cpp:255
+#: clientgui/DlgOptions.cpp:255
 msgid "Connect via HTTP proxy server"
 msgstr "經由 HTTP Proxy 伺服器連線"
 
-#: clientgui/DlgOptions.cpp:259
+#: clientgui/DlgOptions.cpp:259
 msgid "HTTP Proxy Server Configuration"
 msgstr "HTTP Proxy 伺服器組態設定"
 
-#: clientgui/DlgOptions.cpp:267
-#: clientgui/DlgOptions.cpp:331
+#: clientgui/DlgOptions.cpp:267
+#: clientgui/DlgOptions.cpp:331
 msgid "Address:"
 msgstr "位址:"
 
-#: clientgui/DlgOptions.cpp:275
-#: clientgui/DlgOptions.cpp:339
-#: clientgui/ProxyPage.cpp:341
-#: clientgui/ProxyPage.cpp:361
+#: clientgui/DlgOptions.cpp:275
+#: clientgui/DlgOptions.cpp:339
 msgid "Port:"
 msgstr "埠:"
 
-#: clientgui/DlgOptions.cpp:283
-#: clientgui/DlgOptions.cpp:347
+#: clientgui/DlgOptions.cpp:283
+#: clientgui/DlgOptions.cpp:347
 msgid "Don't use proxy for:"
 msgstr ""
 
-#: clientgui/DlgOptions.cpp:290
-#: clientgui/DlgOptions.cpp:354
+#: clientgui/DlgOptions.cpp:290
+#: clientgui/DlgOptions.cpp:354
 msgid "Leave these blank if not needed"
 msgstr "如不需要請留空"
 
-#: clientgui/DlgOptions.cpp:296
-#: clientgui/DlgOptions.cpp:360
-#: clientgui/ProxyPage.cpp:344
-#: clientgui/ProxyPage.cpp:364
+#: clientgui/DlgOptions.cpp:296
+#: clientgui/DlgOptions.cpp:360
 msgid "User Name:"
 msgstr "使用者名稱:"
 
-#: clientgui/DlgOptions.cpp:304
-#: clientgui/DlgOptions.cpp:368
-#: clientgui/DlgSelectComputer.cpp:136
-#: clientgui/ProxyPage.cpp:347
-#: clientgui/ProxyPage.cpp:367
+#: clientgui/DlgOptions.cpp:304
+#: clientgui/DlgOptions.cpp:368
+#: clientgui/DlgSelectComputer.cpp:136
 msgid "Password:"
 msgstr "密碼:"
 
-#: clientgui/DlgOptions.cpp:311
+#: clientgui/DlgOptions.cpp:311
 msgid "HTTP Proxy"
 msgstr "HTTP Proxy"
 
-#: clientgui/DlgOptions.cpp:319
+#: clientgui/DlgOptions.cpp:319
 msgid "Connect via SOCKS proxy server"
 msgstr "經由 SOCKS Proxy 伺服器連線"
 
-#: clientgui/DlgOptions.cpp:323
+#: clientgui/DlgOptions.cpp:323
 msgid "SOCKS Proxy Server Configuration"
 msgstr "SOCKS Proxy 伺服器組態設定"
 
-#: clientgui/DlgOptions.cpp:375
+#: clientgui/DlgOptions.cpp:375
 msgid "SOCKS Proxy"
 msgstr "SOCKS Proxy"
 
-#: clientgui/DlgSelectComputer.cpp:90
-#, c-format
+#: clientgui/DlgSelectComputer.cpp:90
+#, c-format
 msgid "%s - Select Computer"
 msgstr "%s - 選擇電腦"
 
-#: clientgui/DlgSelectComputer.cpp:127
+#: clientgui/DlgSelectComputer.cpp:127
 msgid "Host name:"
 msgstr "主機名稱:"
 
-#: clientgui/hyperlink.cpp:181
-#, c-format
+#: clientgui/hyperlink.cpp:181
+#, c-format
 msgid "%s - Can't find web browser"
 msgstr "%s - 找不到瀏覽器"
 
-#: clientgui/hyperlink.cpp:192
-#, c-format
+#: clientgui/hyperlink.cpp:192
+#, c-format
 msgid ""
 "%s tried to display the web page\n"
 "\t%s\n"
@@ -1877,228 +1947,223 @@ msgstr ""
 "要修正這個問題,請將環境變數 BROWSER \n"
 "設為您瀏覽器程式的路徑後重新啟動 %s。"
 
-#: clientgui/Localization.cpp:31
-#: clientgui/Localization.cpp:69
+#: clientgui/Localization.cpp:31
+#: clientgui/Localization.cpp:69
 msgid "Message boards"
 msgstr "留言板"
 
-#: clientgui/Localization.cpp:33
+#: clientgui/Localization.cpp:33
 msgid "Correspond with other users on the SETI at home message boards"
 msgstr "於 SETI at Home 留言板與其他使用者交流"
 
-#: clientgui/Localization.cpp:37
+#: clientgui/Localization.cpp:37
 msgid "Ask questions and report problems"
 msgstr "詢問問題與回報錯誤"
 
-#: clientgui/Localization.cpp:39
-#: clientgui/Localization.cpp:81
-#: clientgui/Localization.cpp:111
-#: clientgui/Localization.cpp:129
+#: clientgui/Localization.cpp:39
+#: clientgui/Localization.cpp:81
+#: clientgui/Localization.cpp:111
+#: clientgui/Localization.cpp:129
 msgid "Your account"
 msgstr "您的帳號"
 
-#: clientgui/Localization.cpp:41
-#: clientgui/Localization.cpp:87
-#: clientgui/Localization.cpp:113
+#: clientgui/Localization.cpp:41
+#: clientgui/Localization.cpp:87
+#: clientgui/Localization.cpp:113
 msgid "View your account information and credit totals"
 msgstr "檢視您的帳號資訊與總積分"
 
-#: clientgui/Localization.cpp:43
+#: clientgui/Localization.cpp:43
 msgid "Your preferences"
 msgstr "您的偏好設定"
 
-#: clientgui/Localization.cpp:45
+#: clientgui/Localization.cpp:45
 msgid "View and modify your SETI at home account profile and preferences"
 msgstr "檢視並修改您的 SETI at Home 個人資訊與偏好設定"
 
-#: clientgui/Localization.cpp:47
-#: clientgui/Localization.cpp:89
+#: clientgui/Localization.cpp:47
+#: clientgui/Localization.cpp:89
 msgid "Your results"
 msgstr "您的結果"
 
-#: clientgui/Localization.cpp:49
-#: clientgui/Localization.cpp:91
+#: clientgui/Localization.cpp:49
+#: clientgui/Localization.cpp:91
 msgid "View your last week (or more) of computational results and work"
 msgstr "檢視您上週或更久之前所完成的運算結果與工作"
 
-#: clientgui/Localization.cpp:51
-#: clientgui/Localization.cpp:93
+#: clientgui/Localization.cpp:51
+#: clientgui/Localization.cpp:93
 msgid "Your computers"
 msgstr "您的電腦"
 
-#: clientgui/Localization.cpp:53
+#: clientgui/Localization.cpp:53
 msgid "View a listing of all the computers on which you are running SETI at Home"
 msgstr "檢視所有運行 SETI at Home 的電腦清單"
 
-#: clientgui/Localization.cpp:55
-#: clientgui/Localization.cpp:97
+#: clientgui/Localization.cpp:55
+#: clientgui/Localization.cpp:97
 msgid "Your team"
 msgstr "您的團隊"
 
-#: clientgui/Localization.cpp:57
-#: clientgui/Localization.cpp:99
+#: clientgui/Localization.cpp:57
+#: clientgui/Localization.cpp:99
 msgid "View information about your team"
 msgstr "檢視您的團隊資訊"
 
-#: clientgui/Localization.cpp:61
+#: clientgui/Localization.cpp:61
 msgid "Common questions"
 msgstr "常見問題"
 
-#: clientgui/Localization.cpp:63
+#: clientgui/Localization.cpp:63
 msgid "Read the Einstein at Home Frequently Asked Question list"
 msgstr "閱讀 Einstein at Home 的常見問題集 (FAQ)"
 
-#: clientgui/Localization.cpp:65
+#: clientgui/Localization.cpp:65
 msgid "Screensaver info"
 msgstr "螢幕保護程式資訊"
 
-#: clientgui/Localization.cpp:67
+#: clientgui/Localization.cpp:67
 msgid "Read a detailed description of the Einstein at Home screensaver"
 msgstr "閱讀 Einstein at Home 螢幕保護程式的詳細說明"
 
-#: clientgui/Localization.cpp:71
+#: clientgui/Localization.cpp:71
 msgid "Correspond with admins and other users on the Einstein at Home message boards"
 msgstr "於 Einstein at Home 留言板與其他使用者交流"
 
-#: clientgui/Localization.cpp:73
+#: clientgui/Localization.cpp:73
 msgid "Einstein status"
 msgstr "Einstein 狀態"
 
-#: clientgui/Localization.cpp:75
+#: clientgui/Localization.cpp:75
 msgid "Current status of the Einstein at Home server"
 msgstr "Einstein at Home 伺服器狀態"
 
-#: clientgui/Localization.cpp:77
+#: clientgui/Localization.cpp:77
 msgid "Report problems"
 msgstr "問題回報"
 
-#: clientgui/Localization.cpp:79
+#: clientgui/Localization.cpp:79
 msgid "A link to the Einstein at Home problems and bug reports message board"
 msgstr "連結到 Einstein at Home 問題與錯誤回報留言板"
 
-#: clientgui/Localization.cpp:83
+#: clientgui/Localization.cpp:83
 msgid "View and modify your Einstein at Home account profile and preferences"
 msgstr "檢視並修改您的 Einstein at Home 個人資訊與偏好設定"
 
-#: clientgui/Localization.cpp:85
+#: clientgui/Localization.cpp:85
 msgid "Account summary"
 msgstr "帳號摘要"
 
-#: clientgui/Localization.cpp:95
+#: clientgui/Localization.cpp:95
 msgid "View a listing of all the computers on which you are running Einstein at Home"
 msgstr "檢視您所有正在運行 Einstein at Home 的電腦清單"
 
-#: clientgui/Localization.cpp:101
+#: clientgui/Localization.cpp:101
 msgid "LIGO project"
 msgstr "LIGO 計畫"
 
-#: clientgui/Localization.cpp:103
+#: clientgui/Localization.cpp:103
 msgid "The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project"
 msgstr "雷射干涉重力波天文台 (LIGO) 計畫首頁"
 
-#: clientgui/Localization.cpp:105
+#: clientgui/Localization.cpp:105
 msgid "GEO-600 project"
 msgstr "GEO-600 計畫"
 
-#: clientgui/Localization.cpp:107
+#: clientgui/Localization.cpp:107
 msgid "The home page of the GEO-600 project"
 msgstr "GEO-600 計畫首頁"
 
-#: clientgui/Localization.cpp:115
-#: clientgui/Localization.cpp:133
-#: clientgui/ViewProjects.cpp:220
-#: clientgui/ViewProjectsBase.cpp:153
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:411
+#: clientgui/Localization.cpp:115
+#: clientgui/Localization.cpp:133
 msgid "Team"
 msgstr "團隊"
 
-#: clientgui/Localization.cpp:117
+#: clientgui/Localization.cpp:117
 msgid "Info about your Team"
 msgstr "關於您的團隊資訊"
 
-#: clientgui/Localization.cpp:123
+#: clientgui/Localization.cpp:123
 msgid "Get help for climateprediction.net"
 msgstr "關於 climateprediction.net 的協助"
 
-#: clientgui/Localization.cpp:125
-#: clientgui/ViewNews.cpp:115
+#: clientgui/Localization.cpp:125
 msgid "News"
 msgstr "新聞"
 
-#: clientgui/Localization.cpp:127
+#: clientgui/Localization.cpp:127
 msgid "climateprediction.net News"
 msgstr "climateprediction.net 新聞"
 
-#: clientgui/Localization.cpp:131
+#: clientgui/Localization.cpp:131
 msgid "View your account information, credits, and trickles"
 msgstr "檢視您的帳號資訊、總積分等其他資訊"
 
-#: clientgui/Localization.cpp:135
+#: clientgui/Localization.cpp:135
 msgid "Info about your team"
 msgstr "關於您的團隊資訊"
 
-#: clientgui/Localization.cpp:141
+#: clientgui/Localization.cpp:141
 msgid "Search for help in our help system"
 msgstr "於說明系統中搜尋說明"
 
-#: clientgui/Localization.cpp:143
+#: clientgui/Localization.cpp:143
 msgid "Global Statistics"
 msgstr "全域統計"
 
-#: clientgui/Localization.cpp:145
+#: clientgui/Localization.cpp:145
 msgid "Summary statistics for World Community Grid"
 msgstr "World Community Grid 摘要統計"
 
-#: clientgui/Localization.cpp:147
+#: clientgui/Localization.cpp:147
 msgid "My Grid"
 msgstr "我的網格"
 
-#: clientgui/Localization.cpp:149
+#: clientgui/Localization.cpp:149
 msgid "Your statistics and settings"
 msgstr "您的統計資訊與設定"
 
-#: clientgui/Localization.cpp:151
+#: clientgui/Localization.cpp:151
 msgid "Device Profiles"
 msgstr "裝置描述檔"
 
-#: clientgui/Localization.cpp:153
+#: clientgui/Localization.cpp:153
 msgid "Update your device settings"
 msgstr "更新您的裝置設定"
 
-#: clientgui/Localization.cpp:155
+#: clientgui/Localization.cpp:155
 msgid "Research"
 msgstr "研究"
 
-#: clientgui/Localization.cpp:157
+#: clientgui/Localization.cpp:157
 msgid "Learn about the projects hosted at World Community Grid"
 msgstr "於 World Community Grid 學習更多有關此計畫資訊"
 
-#: clientgui/MainDocument.cpp:522
+#: clientgui/MainDocument.cpp:536
 msgid "Starting client services; please wait..."
 msgstr ""
 
-#: clientgui/MainDocument.cpp:1032
+#: clientgui/MainDocument.cpp:1073
 msgid "Retrieving system state; please wait..."
 msgstr "取回系統狀態中;請稍候..."
 
-#: clientgui/MainDocument.cpp:1041
+#: clientgui/MainDocument.cpp:1082
 msgid "Retrieving host information; please wait..."
 msgstr "取回主機資訊中;請稍候..."
 
-#: clientgui/NoInternetConnectionPage.cpp:180
+#: clientgui/NoInternetConnectionPage.cpp:179
 msgid "No Internet connection"
 msgstr "無網路連線"
 
-#: clientgui/NoInternetConnectionPage.cpp:183
+#: clientgui/NoInternetConnectionPage.cpp:182
 msgid "Please connect to the Internet and try again."
 msgstr "請連線到網路後再試一次。"
 
-#: clientgui/NotDetectedPage.cpp:182
+#: clientgui/NotDetectedPage.cpp:181
 msgid "Project not found"
 msgstr "找不到計畫"
 
-#: clientgui/NotDetectedPage.cpp:185
+#: clientgui/NotDetectedPage.cpp:184
 msgid ""
 "The URL you supplied is not that of a BOINC-based project.\n"
 "\n"
@@ -2107,11 +2172,11 @@ msgstr ""
 "您所輸入的網址並非基於 BOINC 的計畫網站。\n"
 "請檢查網址後再試一次。"
 
-#: clientgui/NotDetectedPage.cpp:189
+#: clientgui/NotDetectedPage.cpp:188
 msgid "Account manager not found"
 msgstr "找不到帳號管理"
 
-#: clientgui/NotDetectedPage.cpp:192
+#: clientgui/NotDetectedPage.cpp:191
 msgid ""
 "The URL you supplied is not that of a BOINC-based account\n"
 "manager.\n"
@@ -2121,50 +2186,60 @@ msgstr ""
 "您所輸入的網址並非基於 BOINC 的帳號管理員。\n"
 "請檢查網址後再試一次。"
 
-#: clientgui/NotFoundPage.cpp:182
+#: clientgui/NotFoundPage.cpp:181
 msgid "Login Failed."
 msgstr "登入失敗。"
 
-#: clientgui/NotFoundPage.cpp:186
+#: clientgui/NotFoundPage.cpp:185
 msgid "Check the username and password, and try again."
 msgstr "請檢查您的帳號名稱和密碼後再試一次。"
 
-#: clientgui/NotFoundPage.cpp:190
+#: clientgui/NotFoundPage.cpp:189
 msgid "Check the email address and password, and try again."
 msgstr "請檢查您的電子郵件地址和密碼後再試一次。"
 
-#: clientgui/ProjectInfoPage.cpp:245
+#: clientgui/ProjectInfoPage.cpp:259
 msgid "Choose a project"
 msgstr "請選擇計畫"
 
-#: clientgui/ProjectInfoPage.cpp:248
+#: clientgui/ProjectInfoPage.cpp:262
 msgid "To choose a project, click its name or type its URL below."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:251
+#: clientgui/ProjectInfoPage.cpp:265
 msgid "Project &URL:"
 msgstr "計畫網址:(&U)"
 
-#: clientgui/ProjectInfoPage.cpp:320
+#: clientgui/ProjectInfoPage.cpp:393
+msgid "This project may not have work for your type of computer. Are you sure you wish to continue?"
+msgstr ""
+
+#: clientgui/ProjectInfoPage.cpp:417
 msgid "You are already attached to this project. Please choose a different project."
 msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:321
-#, fuzzy
-msgid "Already Attached to Project"
-msgstr "已加入計畫"
+#: clientgui/ProjectListCtrl.cpp:276
+msgid "Click"
+msgstr ""
 
-#: clientgui/ProjectInfoPage.cpp:348
-msgid "This project may not have work for your type of computer."
+#: clientgui/ProjectListCtrl.cpp:506
+msgid "Multicore CPU Supported"
 msgstr ""
 
-#: clientgui/ProjectListCtrl.cpp:338
-#, c-format
-msgid "Click here to go to %s's website."
+#: clientgui/ProjectListCtrl.cpp:508
+msgid "Nvidia GPU Supported"
 msgstr ""
 
-#: clientgui/ProjectProcessingPage.cpp:323
-#: clientgui/ProjectPropertiesPage.cpp:332
+#: clientgui/ProjectListCtrl.cpp:510
+msgid "ATI GPU Supported"
+msgstr ""
+
+#: clientgui/ProjectListCtrl.cpp:512
+msgid "Project Website"
+msgstr ""
+
+#: clientgui/ProjectProcessingPage.cpp:322
+#: clientgui/ProjectPropertiesPage.cpp:335
 msgid ""
 "Communicating with project\n"
 "Please wait..."
@@ -2172,7 +2247,7 @@ msgstr ""
 "與計畫通訊中\n"
 "請稍候..."
 
-#: clientgui/ProjectProcessingPage.cpp:491
+#: clientgui/ProjectProcessingPage.cpp:498
 msgid ""
 "Required wizard file(s) are missing from the target server.\n"
 "(lookup_account.php/create_account.php)\n"
@@ -2180,11 +2255,11 @@ msgstr ""
 "此目標伺服器必須的 wizard 檔案遺失。\n"
 "(lookup_account.php/create_account.php)\n"
 
-#: clientgui/ProxyInfoPage.cpp:196
+#: clientgui/ProxyInfoPage.cpp:195
 msgid "Network communication failure"
 msgstr "網路通訊失敗"
 
-#: clientgui/ProxyInfoPage.cpp:200
+#: clientgui/ProxyInfoPage.cpp:199
 #, fuzzy
 msgid ""
 "The World Community Grid - BOINC software failed to communicate\n"
@@ -2196,7 +2271,7 @@ msgid ""
 "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"
+"hen click Back to try again.\n"
 "\n"
 "3) You are using a proxy server.\n"
 "Click Next to configure BOINC's proxy settings."
@@ -2212,7 +2287,7 @@ msgstr ""
 "3) 你正使用 Proxy 伺服器。\n"
 "按「下一步」設置 Proxy 設定。"
 
-#: clientgui/ProxyInfoPage.cpp:217
+#: clientgui/ProxyInfoPage.cpp:203
 #, fuzzy
 msgid ""
 "BOINC failed to communicate on the Internet.\n"
@@ -2240,486 +2315,464 @@ msgstr ""
 "3) 你正使用 Proxy 伺服器。\n"
 "按「下一步」設置 Proxy 設定。"
 
-#: clientgui/ProxyPage.cpp:332
+#: clientgui/ProxyPage.cpp:331
 msgid "Proxy configuration"
 msgstr "Proxy 組態設定"
 
-#: clientgui/ProxyPage.cpp:335
+#: clientgui/ProxyPage.cpp:334
 msgid "HTTP proxy"
 msgstr "HTTP Proxy"
 
-#: clientgui/ProxyPage.cpp:338
-#: clientgui/ProxyPage.cpp:358
+#: clientgui/ProxyPage.cpp:337
+#: clientgui/ProxyPage.cpp:357
 msgid "Server:"
 msgstr "伺服器:"
 
-#: clientgui/ProxyPage.cpp:351
+#: clientgui/ProxyPage.cpp:350
 msgid "Autodetect"
 msgstr "自動偵測"
 
-#: clientgui/ProxyPage.cpp:355
+#: clientgui/ProxyPage.cpp:354
 msgid "SOCKS proxy"
 msgstr "SOCKS Proxy"
 
-#: clientgui/sg_BoincSimpleGUI.cpp:128
-#, c-format
+#: clientgui/sg_BoincSimpleGUI.cpp:118
+msgid "Advanced View...\tCtrl+Shift+A"
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:119
+msgid "Display the advanced (accessible) graphical interface."
+msgstr ""
+
+#: clientgui/sg_BoincSimpleGUI.cpp:146
+#, c-format
 msgid "&%s"
 msgstr "&%s"
 
-#: clientgui/sg_ClientStateIndicator.cpp:288
+#: clientgui/sg_ClientStateIndicator.cpp:288
 msgid "Retrieving current status."
 msgstr "取回目前狀態中。"
 
-#: clientgui/sg_ClientStateIndicator.cpp:291
+#: clientgui/sg_ClientStateIndicator.cpp:291
 msgid "You don't have any projects.  Please Add a Project."
 msgstr "你沒有任何計畫,請加入計畫。"
 
-#: clientgui/sg_ClientStateIndicator.cpp:294
+#: clientgui/sg_ClientStateIndicator.cpp:294
 msgid "Downloading work from the server."
 msgstr "正從伺服器下載工作。"
 
-#: clientgui/sg_ClientStateIndicator.cpp:299
+#: clientgui/sg_ClientStateIndicator.cpp:299
 msgid "Processing Suspended:  Running On Batteries."
 msgstr "處理已暫止: 正以電池供電"
 
-#: clientgui/sg_ClientStateIndicator.cpp:301
+#: clientgui/sg_ClientStateIndicator.cpp:301
 msgid "Processing Suspended:  User Active."
 msgstr "處理已暫止: 使用者正在操作"
 
-#: clientgui/sg_ClientStateIndicator.cpp:303
+#: clientgui/sg_ClientStateIndicator.cpp:303
 msgid "Processing Suspended:  User paused processing."
 msgstr "處理已暫止: 被使用者暫停"
 
-#: clientgui/sg_ClientStateIndicator.cpp:305
+#: clientgui/sg_ClientStateIndicator.cpp:305
 msgid "Processing Suspended:  Time of Day."
 msgstr "處理已暫止: 不在設定時間內"
 
-#: clientgui/sg_ClientStateIndicator.cpp:307
+#: clientgui/sg_ClientStateIndicator.cpp:307
 msgid "Processing Suspended:  Benchmarks Running."
 msgstr "處理已暫止: 正在執行效能測試"
 
-#: clientgui/sg_ClientStateIndicator.cpp:309
+#: clientgui/sg_ClientStateIndicator.cpp:309
 msgid "Processing Suspended."
 msgstr "處理已暫止。"
 
-#: clientgui/sg_ClientStateIndicator.cpp:313
+#: clientgui/sg_ClientStateIndicator.cpp:313
 msgid "Waiting to contact project servers."
 msgstr "正在等待連到計畫伺服器。"
 
-#: clientgui/sg_ClientStateIndicator.cpp:317
-#: clientgui/sg_ClientStateIndicator.cpp:325
+#: clientgui/sg_ClientStateIndicator.cpp:317
+#: clientgui/sg_ClientStateIndicator.cpp:325
 msgid "Retrieving current status"
 msgstr "取回目前狀態中"
 
-#: clientgui/sg_ClientStateIndicator.cpp:320
+#: clientgui/sg_ClientStateIndicator.cpp:320
 msgid "No work available to process"
 msgstr "無工作可用"
 
-#: clientgui/sg_ClientStateIndicator.cpp:322
+#: clientgui/sg_ClientStateIndicator.cpp:322
 msgid "Unable to connect to the core client"
 msgstr "無法連到核心用戶端"
 
-#: clientgui/sg_DlgMessages.cpp:107
-#: clientgui/ViewMessages.cpp:117
-#: clientgui/ViewMessagesGrid.cpp:128
-#: clientgui/ViewProjects.cpp:218
-#: clientgui/ViewProjectsBase.cpp:151
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:381
-#: clientgui/ViewStatistics.cpp:1772
-#: clientgui/ViewTransfers.cpp:181
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:214
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/sg_DlgMessages.cpp:107
 msgid "Project"
 msgstr "計畫"
 
-#: clientgui/sg_DlgMessages.cpp:108
-#: clientgui/ViewMessages.cpp:118
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:108
 msgid "Time"
 msgstr "時間"
 
-#: clientgui/sg_DlgMessages.cpp:109
-#: clientgui/ViewMessages.cpp:119
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/sg_DlgMessages.cpp:109
 msgid "Message"
 msgstr "訊息"
 
-#: clientgui/sg_DlgMessages.cpp:177
-#: clientgui/sg_DlgMessages.cpp:181
-#: clientgui/ViewMessages.cpp:89
-#: clientgui/ViewMessagesGrid.cpp:102
+#: clientgui/sg_DlgMessages.cpp:177
+#: clientgui/sg_DlgMessages.cpp:181
 msgid "Copy all the messages to the clipboard."
 msgstr "複製全部訊息到剪貼簿。"
 
-#: clientgui/sg_DlgMessages.cpp:202
-#: clientgui/sg_DlgMessages.cpp:210
-#: clientgui/ViewMessages.cpp:97
-#: clientgui/ViewMessagesGrid.cpp:110
+#: clientgui/sg_DlgMessages.cpp:202
+#: clientgui/sg_DlgMessages.cpp:210
 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 "只複製已選取的訊息到剪貼簿,您可以在選取訊息時按住 Shift 或 Command 鍵以同時選取多個訊息。"
 
-#: clientgui/sg_DlgMessages.cpp:204
-#: clientgui/sg_DlgMessages.cpp:212
-#: clientgui/ViewMessages.cpp:99
-#: clientgui/ViewMessagesGrid.cpp:112
+#: clientgui/sg_DlgMessages.cpp:204
+#: clientgui/sg_DlgMessages.cpp:212
 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 "只複製已選取的訊息到剪貼簿, 您可以在選取訊息時按住 Shift 或 Ctrl 鍵以同時選取多個訊息。"
 
-#: clientgui/sg_DlgMessages.cpp:252
-#: clientgui/sg_DlgPreferences.cpp:509
-#: clientgui/sg_ProjectsComponent.cpp:141
+#: clientgui/sg_DlgMessages.cpp:252
+#: clientgui/sg_DlgPreferences.cpp:509
 msgid "Get help with BOINC"
 msgstr "取得 BOINC 說明"
 
-#: clientgui/sg_DlgMessages.cpp:754
-#, c-format
+#: clientgui/sg_DlgMessages.cpp:754
+#, c-format
 msgid "%s - Messages"
 msgstr "%s - 訊息"
 
-#: clientgui/sg_DlgPreferences.cpp:95
+#: clientgui/sg_DlgPreferences.cpp:95
 msgid "100 MB"
 msgstr "100 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:96
+#: clientgui/sg_DlgPreferences.cpp:96
 msgid "200 MB"
 msgstr "200 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:97
+#: clientgui/sg_DlgPreferences.cpp:97
 msgid "500 MB"
 msgstr "500 MB"
 
-#: clientgui/sg_DlgPreferences.cpp:98
+#: clientgui/sg_DlgPreferences.cpp:98
 msgid "1 GB"
 msgstr "1 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:99
+#: clientgui/sg_DlgPreferences.cpp:99
 msgid "2 GB"
 msgstr "2 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:100
+#: clientgui/sg_DlgPreferences.cpp:100
 msgid "5 GB"
 msgstr "5 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:101
+#: clientgui/sg_DlgPreferences.cpp:101
 msgid "10 GB"
 msgstr "10 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:102
+#: clientgui/sg_DlgPreferences.cpp:102
 msgid "20 GB"
 msgstr "20 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:103
+#: clientgui/sg_DlgPreferences.cpp:103
 msgid "50 GB"
 msgstr "50 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:104
+#: clientgui/sg_DlgPreferences.cpp:104
 msgid "100 GB"
 msgstr "100 GB"
 
-#: clientgui/sg_DlgPreferences.cpp:135
+#: clientgui/sg_DlgPreferences.cpp:135
 msgid "10%"
 msgstr "10%"
 
-#: clientgui/sg_DlgPreferences.cpp:136
+#: clientgui/sg_DlgPreferences.cpp:136
 msgid "20%"
 msgstr "20%"
 
-#: clientgui/sg_DlgPreferences.cpp:137
+#: clientgui/sg_DlgPreferences.cpp:137
 msgid "30%"
 msgstr "30%"
 
-#: clientgui/sg_DlgPreferences.cpp:138
+#: clientgui/sg_DlgPreferences.cpp:138
 msgid "40%"
 msgstr "40%"
 
-#: clientgui/sg_DlgPreferences.cpp:139
+#: clientgui/sg_DlgPreferences.cpp:139
 msgid "50%"
 msgstr "50%"
 
-#: clientgui/sg_DlgPreferences.cpp:140
+#: clientgui/sg_DlgPreferences.cpp:140
 msgid "60%"
 msgstr "60%"
 
-#: clientgui/sg_DlgPreferences.cpp:141
+#: clientgui/sg_DlgPreferences.cpp:141
 msgid "70%"
 msgstr "70%"
 
-#: clientgui/sg_DlgPreferences.cpp:142
+#: clientgui/sg_DlgPreferences.cpp:142
 msgid "80%"
 msgstr "80%"
 
-#: clientgui/sg_DlgPreferences.cpp:143
+#: clientgui/sg_DlgPreferences.cpp:143
 msgid "90%"
 msgstr "90%"
 
-#: clientgui/sg_DlgPreferences.cpp:144
+#: clientgui/sg_DlgPreferences.cpp:144
 msgid "100%"
 msgstr "100%"
 
-#: clientgui/sg_DlgPreferences.cpp:169
+#: clientgui/sg_DlgPreferences.cpp:169
 msgid "1"
 msgstr "1"
 
-#: clientgui/sg_DlgPreferences.cpp:170
+#: clientgui/sg_DlgPreferences.cpp:170
 msgid "3"
 msgstr "3"
 
-#: clientgui/sg_DlgPreferences.cpp:171
+#: clientgui/sg_DlgPreferences.cpp:171
 msgid "5"
 msgstr "5"
 
-#: clientgui/sg_DlgPreferences.cpp:172
+#: clientgui/sg_DlgPreferences.cpp:172
 msgid "10"
 msgstr "10"
 
-#: clientgui/sg_DlgPreferences.cpp:173
+#: clientgui/sg_DlgPreferences.cpp:173
 msgid "15"
 msgstr "15"
 
-#: clientgui/sg_DlgPreferences.cpp:174
+#: clientgui/sg_DlgPreferences.cpp:174
 msgid "30"
 msgstr "30"
 
-#: clientgui/sg_DlgPreferences.cpp:175
+#: clientgui/sg_DlgPreferences.cpp:175
 msgid "60"
 msgstr "60"
 
-#: clientgui/sg_DlgPreferences.cpp:284
+#: clientgui/sg_DlgPreferences.cpp:284
 msgid "Skin"
 msgstr "面板"
 
-#: clientgui/sg_DlgPreferences.cpp:291
+#: clientgui/sg_DlgPreferences.cpp:291
 msgid "Skin:"
 msgstr "面板:"
 
-#: clientgui/sg_DlgPreferences.cpp:307
+#: clientgui/sg_DlgPreferences.cpp:307
 msgid "Preferences"
 msgstr "偏好設定"
 
-#: clientgui/sg_DlgPreferences.cpp:324
+#: clientgui/sg_DlgPreferences.cpp:324
 msgid "I want to customize my preferences for this computer only."
 msgstr "我要自訂只適合這台電腦的偏好設定。"
 
-#: clientgui/sg_DlgPreferences.cpp:333
+#: clientgui/sg_DlgPreferences.cpp:333
 msgid "Customized Preferences"
 msgstr "本機自訂偏好設定"
 
-#: clientgui/sg_DlgPreferences.cpp:349
+#: clientgui/sg_DlgPreferences.cpp:349
 msgid "Do work only between:"
 msgstr "只在此時段執行工作:"
 
-#: clientgui/sg_DlgPreferences.cpp:371
+#: clientgui/sg_DlgPreferences.cpp:371
 msgid "Connect to internet only between:"
 msgstr "只在此時段連上網路:"
 
-#: clientgui/sg_DlgPreferences.cpp:393
-#: clientgui/sg_DlgPreferences.cpp:410
+#: clientgui/sg_DlgPreferences.cpp:393
+#: clientgui/sg_DlgPreferences.cpp:410
 msgid "Use no more than:"
 msgstr "資源耗用不超過:"
 
-#: clientgui/sg_DlgPreferences.cpp:406
+#: clientgui/sg_DlgPreferences.cpp:406
 msgid "of disk space"
 msgstr "磁碟空間"
 
-#: clientgui/sg_DlgPreferences.cpp:423
+#: clientgui/sg_DlgPreferences.cpp:423
 msgid "of the processor"
 msgstr "/CPU 使用率"
 
-#: clientgui/sg_DlgPreferences.cpp:427
+#: clientgui/sg_DlgPreferences.cpp:427
 msgid "Do work while on battery?"
 msgstr "以電池供電時要執行工作嗎?"
 
-#: clientgui/sg_DlgPreferences.cpp:440
+#: clientgui/sg_DlgPreferences.cpp:440
 msgid "Do work after idle for:"
 msgstr "閒置多久後執行工作:"
 
-#: clientgui/sg_DlgPreferences.cpp:678
-#: clientgui/sg_DlgPreferences.cpp:681
-#: clientgui/sg_DlgPreferences.cpp:749
-#: clientgui/sg_DlgPreferences.cpp:753
-#: clientgui/sg_DlgPreferences.cpp:765
-#: clientgui/sg_DlgPreferences.cpp:769
-#: clientgui/sg_DlgPreferences.cpp:927
-#: clientgui/sg_DlgPreferences.cpp:938
+#: clientgui/sg_DlgPreferences.cpp:678
+#: clientgui/sg_DlgPreferences.cpp:681
+#: clientgui/sg_DlgPreferences.cpp:749
+#: clientgui/sg_DlgPreferences.cpp:753
+#: clientgui/sg_DlgPreferences.cpp:765
+#: clientgui/sg_DlgPreferences.cpp:769
+#: clientgui/sg_DlgPreferences.cpp:927
+#: clientgui/sg_DlgPreferences.cpp:938
 msgid "Anytime"
 msgstr "隨時"
 
-#: clientgui/sg_DlgPreferences.cpp:785
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:785
+#, c-format
 msgid "%d MB"
 msgstr "%d MB"
 
-#: clientgui/sg_DlgPreferences.cpp:787
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:787
+#, c-format
 msgid "%4.2f GB"
 msgstr "%4.2f GB"
 
-#: clientgui/sg_DlgPreferences.cpp:828
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:828
+#, c-format
 msgid "%d%%"
 msgstr "%d%%"
 
-#: clientgui/sg_DlgPreferences.cpp:864
+#: clientgui/sg_DlgPreferences.cpp:864
 msgid "0 (Run Always)"
 msgstr "0 (持續執行)"
 
-#: clientgui/sg_DlgPreferences.cpp:867
-#, c-format
+#: clientgui/sg_DlgPreferences.cpp:867
+#, c-format
 msgid "%d"
 msgstr "%d"
 
-#: clientgui/sg_ImageButton.cpp:90
+#: clientgui/sg_ImageButton.cpp:90
 msgid "Paused: Other work running"
 msgstr "已暫停: 正運行其他工作"
 
-#: clientgui/sg_ImageButton.cpp:92
+#: clientgui/sg_ImageButton.cpp:92
 msgid "Paused: User initiatied.  Click 'Resume' to continue"
 msgstr "已暫停: 使用者已初始。按「繼續」繼續工作"
 
-#: clientgui/sg_ImageButton.cpp:94
+#: clientgui/sg_ImageButton.cpp:94
 msgid "Paused: User active"
 msgstr "已暫停: 使用者正在操作"
 
-#: clientgui/sg_ImageButton.cpp:96
+#: clientgui/sg_ImageButton.cpp:96
 msgid "Paused: Computer on battery"
 msgstr "已暫停: 電腦以電池供電"
 
-#: clientgui/sg_ImageButton.cpp:98
+#: clientgui/sg_ImageButton.cpp:98
 msgid "Paused: Time of Day"
 msgstr "已暫停: 不在設定時間內"
 
-#: clientgui/sg_ImageButton.cpp:100
+#: clientgui/sg_ImageButton.cpp:100
 msgid "Paused: Benchmarks running"
 msgstr "已暫停: 正在執行效能測試"
 
-#: clientgui/sg_ImageButton.cpp:102
+#: clientgui/sg_ImageButton.cpp:102
 msgid "Paused"
 msgstr "已暫停"
 
-#: clientgui/sg_ImageButton.cpp:104
+#: clientgui/sg_ImageButton.cpp:104
 msgid "Paused: Application start delayed"
 msgstr ""
 
-#: clientgui/sg_ImageButton.cpp:132
+#: clientgui/sg_ImageButton.cpp:132
 msgid "Click to show project graphics"
 msgstr "按一下顯示計畫圖形"
 
-#: clientgui/sg_ProjectsComponent.cpp:106
+#: clientgui/sg_ProjectsComponent.cpp:106
 msgid "Attach to an additional project"
 msgstr "加入其他計畫"
 
-#: clientgui/sg_ProjectsComponent.cpp:123
+#: clientgui/sg_ProjectsComponent.cpp:123
 msgid "Synchronize projects with account manager system"
 msgstr "與帳號管理系統同步計畫"
 
-#: clientgui/sg_ProjectsComponent.cpp:194
-#: clientgui/sg_ProjectsComponent.cpp:205
+#: clientgui/sg_ProjectsComponent.cpp:194
+#: clientgui/sg_ProjectsComponent.cpp:205
 msgid "Open a window to view messages"
 msgstr "開啟視窗以檢視訊息"
 
-#: clientgui/sg_ProjectsComponent.cpp:223
+#: clientgui/sg_ProjectsComponent.cpp:223
 msgid "Stop all activity"
 msgstr "停止所有活動"
 
-#: clientgui/sg_ProjectsComponent.cpp:235
+#: clientgui/sg_ProjectsComponent.cpp:235
 msgid "Resume activity"
 msgstr "繼續活動"
 
-#: clientgui/sg_ProjectsComponent.cpp:252
+#: clientgui/sg_ProjectsComponent.cpp:252
 msgid "Open a window to set your preferences"
 msgstr "開新視窗設置你的偏好設定"
 
-#: clientgui/sg_ProjectsComponent.cpp:269
+#: clientgui/sg_ProjectsComponent.cpp:269
 msgid "Switch to the BOINC advanced view"
 msgstr "切換到 BOINC 進階介面"
 
-#: clientgui/sg_ProjectsComponent.cpp:296
+#: clientgui/sg_ProjectsComponent.cpp:296
 msgid "My Projects:"
 msgstr "我的計畫:"
 
-#: clientgui/sg_StatImageLoader.cpp:101
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:101
+#, c-format
 msgid "%s. Work done by %s: %0.2f"
 msgstr "%s,%s 已完成: %0.2f"
 
-#: clientgui/sg_StatImageLoader.cpp:154
+#: clientgui/sg_StatImageLoader.cpp:154
 msgid "Remove Project"
 msgstr "移除計畫"
 
-#: clientgui/sg_StatImageLoader.cpp:217
-#: clientgui/ViewProjects.cpp:490
-#: clientgui/ViewProjectsBase.cpp:343
-#: clientgui/ViewProjectsGrid.cpp:418
-#, c-format
+#: clientgui/sg_StatImageLoader.cpp:217
+#: clientgui/ViewProjects.cpp:490
+#, c-format
 msgid "Are you sure you want to detach from project '%s'?"
 msgstr "您確定從計畫「%s」中退出嗎?"
 
-#: clientgui/sg_StatImageLoader.cpp:223
-#: clientgui/ViewProjects.cpp:496
-#: clientgui/ViewProjectsBase.cpp:349
-#: clientgui/ViewProjectsGrid.cpp:424
+#: clientgui/sg_StatImageLoader.cpp:223
+#: clientgui/ViewProjects.cpp:496
 msgid "Detach from Project"
 msgstr "退出計畫"
 
-#: clientgui/sg_ViewTabPage.cpp:138
-#: clientgui/sg_ViewTabPage.cpp:278
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:138
+#: clientgui/sg_ViewTabPage.cpp:278
+#, c-format
 msgid "%.1lf"
 msgstr "%.1lf"
 
-#: clientgui/sg_ViewTabPage.cpp:407
-#, c-format
+#: clientgui/sg_ViewTabPage.cpp:407
+#, c-format
 msgid "%d hr %d min %d sec"
 msgstr "%d 時 %d 分 %d 秒"
 
-#: clientgui/sg_ViewTabPage.cpp:421
-#: clientgui/ViewWorkGrid.cpp:258
+#: clientgui/sg_ViewTabPage.cpp:421
 msgid "Are you sure you want to display graphics on a remote machine?"
 msgstr "您確定要顯示遠端電腦的圖形嗎?"
 
-#: clientgui/sg_ViewTabPage.cpp:422
-#: clientgui/ViewWork.cpp:183
-#: clientgui/ViewWorkGrid.cpp:114
-#: clientgui/ViewWorkGrid.cpp:259
+#: clientgui/sg_ViewTabPage.cpp:422
 msgid "Show graphics"
 msgstr "顯示圖形"
 
-#: clientgui/sg_ViewTabPage.cpp:444
+#: clientgui/sg_ViewTabPage.cpp:444
 msgid "Application: "
 msgstr "應用程式:"
 
-#: clientgui/sg_ViewTabPage.cpp:447
-#: clientgui/sg_ViewTabPage.cpp:451
+#: clientgui/sg_ViewTabPage.cpp:447
+#: clientgui/sg_ViewTabPage.cpp:451
 msgid "Time Remaining: "
 msgstr "時間剩下: "
 
-#: clientgui/sg_ViewTabPage.cpp:450
+#: clientgui/sg_ViewTabPage.cpp:450
 msgid "Elapsed Time: "
 msgstr "剩餘時間:"
 
-#: clientgui/TermsOfUsePage.cpp:213
+#: clientgui/TermsOfUsePage.cpp:218
 msgid "Terms of Use"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:217
+#: clientgui/TermsOfUsePage.cpp:222
 msgid "Please read the following terms of use:"
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:226
+#: clientgui/TermsOfUsePage.cpp:231
 msgid "I agree to the terms of use."
 msgstr ""
 
-#: clientgui/TermsOfUsePage.cpp:232
+#: clientgui/TermsOfUsePage.cpp:237
 msgid "I do not agree with the terms of use."
 msgstr ""
 
-#: clientgui/UnavailablePage.cpp:184
+#: clientgui/UnavailablePage.cpp:183
 msgid "Project temporarily unavailable"
 msgstr "計畫暫時無法使用"
 
-#: clientgui/UnavailablePage.cpp:187
+#: clientgui/UnavailablePage.cpp:186
 msgid ""
 "The project is temporarily unavailable.\n"
 "\n"
@@ -2729,11 +2782,11 @@ msgstr ""
 "\n"
 "請稍後重試。"
 
-#: clientgui/UnavailablePage.cpp:191
+#: clientgui/UnavailablePage.cpp:190
 msgid "Account manager temporarily unavailable"
 msgstr "帳號管理暫時無法使用"
 
-#: clientgui/UnavailablePage.cpp:194
+#: clientgui/UnavailablePage.cpp:193
 msgid ""
 "The account manager is temporarily unavailable.\n"
 "\n"
@@ -2743,32 +2796,32 @@ msgstr ""
 "\n"
 "請稍後重試。"
 
-#: clientgui/ValidateAccountKey.cpp:68
+#: clientgui/ValidateAccountKey.cpp:68
 msgid "Please specify an account key to continue."
 msgstr "請輸入帳號金鑰以繼續。"
 
-#: clientgui/ValidateAccountKey.cpp:71
+#: clientgui/ValidateAccountKey.cpp:71
 msgid "Invalid Account Key; please enter a valid Account Key"
 msgstr "無效的帳號金鑰;請輸入有效的帳號金鑰"
 
-#: clientgui/ValidateAccountKey.cpp:82
-#: clientgui/ValidateEmailAddress.cpp:86
+#: clientgui/ValidateAccountKey.cpp:82
+#: clientgui/ValidateEmailAddress.cpp:86
 msgid "Validation conflict"
 msgstr "驗證衝突"
 
-#: clientgui/ValidateEmailAddress.cpp:72
+#: clientgui/ValidateEmailAddress.cpp:72
 msgid "Please specify an email address"
 msgstr "請輸入電子郵件地址"
 
-#: clientgui/ValidateEmailAddress.cpp:75
+#: clientgui/ValidateEmailAddress.cpp:75
 msgid "Invalid email address; please enter a valid email address"
 msgstr "無效的電子郵件位址;請輸入有效的電子郵件位址"
 
-#: clientgui/ValidateURL.cpp:69
+#: clientgui/ValidateURL.cpp:69
 msgid "Missing URL"
 msgstr "缺少網址"
 
-#: clientgui/ValidateURL.cpp:70
+#: clientgui/ValidateURL.cpp:70
 msgid ""
 "Please specify a URL.\n"
 "For example:\n"
@@ -2778,18 +2831,18 @@ msgstr ""
 "例如:\n"
 "http://www.example.com/"
 
-#: clientgui/ValidateURL.cpp:83
-#: clientgui/ValidateURL.cpp:87
-#: clientgui/ValidateURL.cpp:91
-#: clientgui/ValidateURL.cpp:103
-#: clientgui/ValidateURL.cpp:107
-#: clientgui/ValidateURL.cpp:110
+#: clientgui/ValidateURL.cpp:83
+#: clientgui/ValidateURL.cpp:87
+#: clientgui/ValidateURL.cpp:91
+#: clientgui/ValidateURL.cpp:103
+#: clientgui/ValidateURL.cpp:107
+#: clientgui/ValidateURL.cpp:110
 msgid "Invalid URL"
 msgstr "無效網址"
 
-#: clientgui/ValidateURL.cpp:84
-#: clientgui/ValidateURL.cpp:88
-#: clientgui/ValidateURL.cpp:92
+#: clientgui/ValidateURL.cpp:84
+#: clientgui/ValidateURL.cpp:88
+#: clientgui/ValidateURL.cpp:92
 msgid ""
 "Please specify a valid URL.\n"
 "For example:\n"
@@ -2799,602 +2852,500 @@ msgstr ""
 "例如:\n"
 "http://boincproject.example.com"
 
-#: clientgui/ValidateURL.cpp:104
-#: clientgui/ValidateURL.cpp:108
-#, c-format
+#: clientgui/ValidateURL.cpp:104
+#: clientgui/ValidateURL.cpp:108
+#, c-format
 msgid "'%s' does not contain a valid host name."
 msgstr "「%s」不是有效的主機名稱。"
 
-#: clientgui/ValidateURL.cpp:111
-#, c-format
+#: clientgui/ValidateURL.cpp:111
+#, c-format
 msgid "'%s' does not contain a valid path."
 msgstr "「%s」不是有效的路徑。"
 
-#: clientgui/ViewMessages.cpp:84
-#: clientgui/ViewMessagesGrid.cpp:97
-#: clientgui/ViewProjects.cpp:169
-#: clientgui/ViewProjectsBase.cpp:103
-#: clientgui/ViewProjectsGrid.cpp:116
-#: clientgui/ViewStatistics.cpp:1741
-#: clientgui/ViewTransfers.cpp:159
-#: clientgui/ViewTransfersGrid.cpp:102
-#: clientgui/ViewWork.cpp:179
-#: clientgui/ViewWorkGrid.cpp:110
+#: clientgui/ViewMessages.cpp:84
+#: clientgui/ViewMessagesGrid.cpp:97
+#: clientgui/ViewProjects.cpp:169
 msgid "Commands"
 msgstr "命令"
 
-#: clientgui/ViewMessages.cpp:88
-#: clientgui/ViewMessagesGrid.cpp:101
+#: clientgui/ViewMessages.cpp:88
+#: clientgui/ViewMessagesGrid.cpp:101
 msgid "Copy all messages"
 msgstr "複製所有訊息"
 
-#: clientgui/ViewMessages.cpp:95
-#: clientgui/ViewMessagesGrid.cpp:108
+#: clientgui/ViewMessages.cpp:95
+#: clientgui/ViewMessagesGrid.cpp:108
 msgid "Copy selected messages"
 msgstr "複製選取的訊息"
 
-#: clientgui/ViewMessages.cpp:106
-#: clientgui/ViewMessages.cpp:502
+#: clientgui/ViewMessages.cpp:106
+#: clientgui/ViewMessages.cpp:502
 msgid "Show only this project"
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:107
-#: clientgui/ViewMessages.cpp:503
+#: clientgui/ViewMessages.cpp:107
+#: clientgui/ViewMessages.cpp:503
 msgid "Show only the messages for the selected project."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:164
-#: clientgui/ViewMessagesGrid.cpp:157
+#: clientgui/ViewMessages.cpp:164
+#: clientgui/ViewMessagesGrid.cpp:157
 msgid "Messages"
 msgstr "訊息"
 
-#: clientgui/ViewMessages.cpp:187
-#: clientgui/ViewMessagesGrid.cpp:179
+#: clientgui/ViewMessages.cpp:187
+#: clientgui/ViewMessagesGrid.cpp:179
 msgid "Copying all messages to the clipboard..."
 msgstr "複製全部訊息到剪貼簿..."
 
-#: clientgui/ViewMessages.cpp:223
+#: clientgui/ViewMessages.cpp:223
 #, fuzzy
 msgid "Copying selected messages to the clipboard..."
 msgstr "複製所選訊息到剪貼簿..."
 
-#: clientgui/ViewMessages.cpp:286
+#: clientgui/ViewMessages.cpp:286
 msgid "Filtering messages..."
 msgstr ""
 
-#: clientgui/ViewMessages.cpp:494
+#: clientgui/ViewMessages.cpp:494
 #, fuzzy
 msgid "Show all messages"
 msgstr "複製所有訊息"
 
-#: clientgui/ViewMessages.cpp:495
+#: clientgui/ViewMessages.cpp:495
 msgid "Show messages for all projects."
 msgstr ""
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "ID"
 msgstr "ID"
 
-#: clientgui/ViewMessagesGrid.cpp:128
+#: clientgui/ViewMessagesGrid.cpp:128
 msgid "Priority"
 msgstr "優先順序"
 
-#: clientgui/ViewMessagesGrid.cpp:151
+#: clientgui/ViewMessagesGrid.cpp:151
 msgid "MessagesGrid"
 msgstr "MessagesGrid"
 
-#: clientgui/ViewMessagesGrid.cpp:209
+#: clientgui/ViewMessagesGrid.cpp:209
 msgid "Copying selected messages to Clipboard..."
 msgstr "複製所選訊息到剪貼簿..."
 
-#: clientgui/ViewMessagesGrid.cpp:396
+#: clientgui/ViewMessagesGrid.cpp:396
 msgid "Info"
 msgstr "資訊"
 
-#: clientgui/ViewMessagesGrid.cpp:399
+#: clientgui/ViewMessagesGrid.cpp:399
 msgid "Warning"
 msgstr "警告"
 
-#: clientgui/ViewMessagesGrid.cpp:403
+#: clientgui/ViewMessagesGrid.cpp:403
 msgid "Error"
 msgstr "錯誤"
 
-#: clientgui/ViewNews.cpp:76
+#: clientgui/ViewNews.cpp:76
 msgid "News Feeds"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:80
+#: clientgui/ViewNews.cpp:80
 msgid "BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:81
+#: clientgui/ViewNews.cpp:81
 msgid "Display the latest news about BOINC"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:87
+#: clientgui/ViewNews.cpp:87
 msgid "BOINC Website"
 msgstr ""
 
-#: clientgui/ViewNews.cpp:88
+#: clientgui/ViewNews.cpp:88
 msgid "Display the latest news about BOINC from the BOINC website"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:173
-#: clientgui/ViewProjectsBase.cpp:107
-#: clientgui/ViewProjectsGrid.cpp:120
+#: clientgui/ViewProjects.cpp:173
 msgid "Update"
 msgstr "æ›´æ–°"
 
-#: clientgui/ViewProjects.cpp:174
-#: clientgui/ViewProjectsBase.cpp:108
-#: clientgui/ViewProjectsGrid.cpp:121
+#: clientgui/ViewProjects.cpp:174
 msgid "Report all completed tasks, get latest credit, get latest preferences, and possibly get more tasks."
 msgstr "回報所有已完成的工作;取得最新的積分與偏好設定資訊且儘可能的取得工作。"
 
-#: clientgui/ViewProjects.cpp:180
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:115
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:127
-#: clientgui/ViewProjectsGrid.cpp:560
-#: clientgui/ViewWork.cpp:190
-#: clientgui/ViewWork.cpp:629
-#: clientgui/ViewWorkGrid.cpp:121
-#: clientgui/ViewWorkGrid.cpp:450
+#: clientgui/ViewProjects.cpp:180
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend"
 msgstr "æš«æ­¢"
 
-#: clientgui/ViewProjects.cpp:181
-#: clientgui/ViewProjects.cpp:706
-#: clientgui/ViewProjectsBase.cpp:116
-#: clientgui/ViewProjectsBase.cpp:560
-#: clientgui/ViewProjectsGrid.cpp:128
-#: clientgui/ViewProjectsGrid.cpp:560
+#: clientgui/ViewProjects.cpp:181
+#: clientgui/ViewProjects.cpp:707
 msgid "Suspend tasks for this project."
 msgstr "暫止此計畫的工作。"
 
-#: clientgui/ViewProjects.cpp:187
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:122
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:134
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:187
+#: clientgui/ViewProjects.cpp:726
 msgid "No new tasks"
 msgstr "不要新工作"
 
-#: clientgui/ViewProjects.cpp:188
-#: clientgui/ViewProjectsBase.cpp:123
-#: clientgui/ViewProjectsGrid.cpp:135
+#: clientgui/ViewProjects.cpp:188
 msgid "Don't get new tasks for this project."
 msgstr "不要取得新工作給此計畫。"
 
-#: clientgui/ViewProjects.cpp:194
-#: clientgui/ViewProjectsBase.cpp:129
-#: clientgui/ViewProjectsGrid.cpp:141
+#: clientgui/ViewProjects.cpp:194
 msgid "Reset project"
 msgstr "重新開始計畫"
 
-#: clientgui/ViewProjects.cpp:195
-#: clientgui/ViewProjectsBase.cpp:130
-#: clientgui/ViewProjectsGrid.cpp:142
+#: clientgui/ViewProjects.cpp:195
 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 "刪除所有和此計畫相關的檔案和工作後取得新的工作。 在重新開始之前您可以先更新計畫來回報已完成的工作。"
 
-#: clientgui/ViewProjects.cpp:201
-#: clientgui/ViewProjectsBase.cpp:139
-#: clientgui/ViewProjectsGrid.cpp:148
+#: clientgui/ViewProjects.cpp:201
 msgid "Detach"
 msgstr "退出"
 
-#: clientgui/ViewProjects.cpp:202
-#: clientgui/ViewProjectsBase.cpp:140
-#: clientgui/ViewProjectsGrid.cpp:149
+#: clientgui/ViewProjects.cpp:202
 msgid "Detach computer from this project.  Tasks in progress will be lost (use 'Update' first to report any completed tasks)."
 msgstr "從計畫中退出這台電腦。進行中的工作將會遺失。(在退出之前您可以先按一下「更新」來回報已完成的工作。)"
 
-#: clientgui/ViewProjects.cpp:208
-#: clientgui/ViewWork.cpp:204
+#: clientgui/ViewProjects.cpp:208
 msgid "Properties"
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:209
+#: clientgui/ViewProjects.cpp:209
 msgid "Show project details."
 msgstr ""
 
-#: clientgui/ViewProjects.cpp:219
-#: clientgui/ViewProjectsBase.cpp:152
-#: clientgui/ViewProjectsGrid.cpp:163
-#: clientgui/ViewStatistics.cpp:396
+#: clientgui/ViewProjects.cpp:219
 msgid "Account"
 msgstr "帳號"
 
-#: clientgui/ViewProjects.cpp:221
-#: clientgui/ViewProjectsBase.cpp:154
-#: clientgui/ViewProjectsGrid.cpp:163
+#: clientgui/ViewProjects.cpp:221
 msgid "Work done"
 msgstr "運算完成"
 
-#: clientgui/ViewProjects.cpp:222
-#: clientgui/ViewProjectsBase.cpp:155
-#: clientgui/ViewProjectsGrid.cpp:164
+#: clientgui/ViewProjects.cpp:222
 msgid "Avg. work done"
 msgstr "平均完成"
 
-#: clientgui/ViewProjects.cpp:224
-#: clientgui/ViewProjectsBase.cpp:157
-#: clientgui/ViewProjectsGrid.cpp:164
-#: clientgui/ViewTransfers.cpp:187
-#: clientgui/ViewTransfersGrid.cpp:130
-#: clientgui/ViewWork.cpp:221
-#: clientgui/ViewWorkGrid.cpp:148
+#: clientgui/ViewProjects.cpp:224
 msgid "Status"
 msgstr "狀態"
 
-#: clientgui/ViewProjects.cpp:249
-#: clientgui/ViewProjectsBase.cpp:170
-#: clientgui/ViewProjectsBase.cpp:176
-#: clientgui/ViewProjectsGrid.cpp:199
+#: clientgui/ViewProjects.cpp:249
 msgid "Projects"
 msgstr "計畫"
 
-#: clientgui/ViewProjects.cpp:296
-#: clientgui/ViewProjectsBase.cpp:197
-#: clientgui/ViewProjectsGrid.cpp:223
+#: clientgui/ViewProjects.cpp:296
 msgid "Updating project..."
 msgstr "正在更新計畫..."
 
-#: clientgui/ViewProjects.cpp:338
-#: clientgui/ViewProjectsBase.cpp:224
-#: clientgui/ViewProjectsGrid.cpp:271
+#: clientgui/ViewProjects.cpp:338
 msgid "Resuming project..."
 msgstr "正在繼續計畫..."
 
-#: clientgui/ViewProjects.cpp:342
-#: clientgui/ViewProjectsBase.cpp:228
-#: clientgui/ViewProjectsGrid.cpp:274
+#: clientgui/ViewProjects.cpp:342
 msgid "Suspending project..."
 msgstr "正在暫止計畫..."
 
-#: clientgui/ViewProjects.cpp:379
-#: clientgui/ViewProjectsBase.cpp:255
-#: clientgui/ViewProjectsGrid.cpp:315
+#: clientgui/ViewProjects.cpp:379
 msgid "Telling project to allow additional task downloads..."
 msgstr "通知計畫可以下載額外的工作..."
 
-#: clientgui/ViewProjects.cpp:383
-#: clientgui/ViewProjectsBase.cpp:259
-#: clientgui/ViewProjectsGrid.cpp:318
+#: clientgui/ViewProjects.cpp:383
 msgid "Telling project to not fetch any additional tasks..."
 msgstr "通知計畫不要取得額外的工作..."
 
-#: clientgui/ViewProjects.cpp:419
-#: clientgui/ViewProjectsBase.cpp:291
-#: clientgui/ViewProjectsGrid.cpp:354
+#: clientgui/ViewProjects.cpp:419
 msgid "Resetting project..."
 msgstr "正在重新設定計畫..."
 
-#: clientgui/ViewProjects.cpp:432
-#: clientgui/ViewProjectsBase.cpp:296
-#: clientgui/ViewProjectsGrid.cpp:363
-#, c-format
+#: clientgui/ViewProjects.cpp:432
+#, c-format
 msgid "Are you sure you want to reset project '%s'?"
 msgstr "您確定要重新開始計畫「%s」嗎?"
 
-#: clientgui/ViewProjects.cpp:438
-#: clientgui/ViewProjectsBase.cpp:302
-#: clientgui/ViewProjectsGrid.cpp:369
+#: clientgui/ViewProjects.cpp:438
 msgid "Reset Project"
 msgstr "重新開始計畫"
 
-#: clientgui/ViewProjects.cpp:477
-#: clientgui/ViewProjectsBase.cpp:338
-#: clientgui/ViewProjectsGrid.cpp:409
+#: clientgui/ViewProjects.cpp:477
 msgid "Detaching from project..."
 msgstr "正在退出計畫..."
 
-#: clientgui/ViewProjects.cpp:537
-#: clientgui/ViewProjectsBase.cpp:376
-#: clientgui/ViewProjectsGrid.cpp:453
-#: clientgui/ViewWork.cpp:457
-#: clientgui/ViewWorkGrid.cpp:367
+#: clientgui/ViewProjects.cpp:537
 msgid "Launching browser..."
 msgstr "啟動瀏覽器..."
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
-#: clientgui/ViewWork.cpp:623
-#: clientgui/ViewWorkGrid.cpp:444
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume"
 msgstr "繼續"
 
-#: clientgui/ViewProjects.cpp:702
-#: clientgui/ViewProjectsBase.cpp:556
-#: clientgui/ViewProjectsGrid.cpp:556
+#: clientgui/ViewProjects.cpp:703
 msgid "Resume tasks for this project."
 msgstr "繼續此計畫的工作。"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow new tasks"
 msgstr "允許新工作"
 
-#: clientgui/ViewProjects.cpp:721
-#: clientgui/ViewProjectsBase.cpp:568
-#: clientgui/ViewProjectsGrid.cpp:575
+#: clientgui/ViewProjects.cpp:722
 msgid "Allow fetching new tasks for this project."
 msgstr "允許此計畫取得新工作。"
 
-#: clientgui/ViewProjects.cpp:725
-#: clientgui/ViewProjectsBase.cpp:572
-#: clientgui/ViewProjectsGrid.cpp:579
+#: clientgui/ViewProjects.cpp:726
 msgid "Don't fetch new tasks for this project."
 msgstr "不要取得新工作給此計畫。"
 
-#: clientgui/ViewProjects.cpp:1051
-#: clientgui/ViewProjectsBase.cpp:674
-#: clientgui/ViewProjectsGrid.cpp:728
+#: clientgui/ViewProjects.cpp:1052
 msgid "Suspended by user"
 msgstr "被使用者暫止"
 
-#: clientgui/ViewProjects.cpp:1054
-#: clientgui/ViewProjectsBase.cpp:677
-#: clientgui/ViewProjectsGrid.cpp:731
+#: clientgui/ViewProjects.cpp:1055
 msgid "Won't get new tasks"
 msgstr "無法取得新工作"
 
-#: clientgui/ViewProjects.cpp:1057
-#: clientgui/ViewProjectsBase.cpp:680
-#: clientgui/ViewProjectsGrid.cpp:734
+#: clientgui/ViewProjects.cpp:1058
 msgid "Project ended - OK to detach"
 msgstr "計畫已結束 - 按 OK 退出"
 
-#: clientgui/ViewProjects.cpp:1060
-#: clientgui/ViewProjectsBase.cpp:683
-#: clientgui/ViewProjectsGrid.cpp:737
+#: clientgui/ViewProjects.cpp:1061
 msgid "Will detach when tasks done"
 msgstr "工作完成後退出"
 
-#: clientgui/ViewProjects.cpp:1063
-#: clientgui/ViewProjectsBase.cpp:686
-#: clientgui/ViewProjectsGrid.cpp:740
+#: clientgui/ViewProjects.cpp:1064
 msgid "Scheduler request pending"
 msgstr "排程器請求中"
 
-#: clientgui/ViewProjects.cpp:1067
-#: clientgui/ViewProjectsBase.cpp:690
-#: clientgui/ViewProjectsGrid.cpp:744
+#: clientgui/ViewProjects.cpp:1068
 msgid "Scheduler request in progress"
 msgstr "排程器請求進行中"
 
-#: clientgui/ViewProjects.cpp:1073
-#: clientgui/ViewProjectsBase.cpp:696
-#: clientgui/ViewProjectsGrid.cpp:750
+#: clientgui/ViewProjects.cpp:1074
 msgid "Communication deferred "
 msgstr "已擱置通訊 "
 
-#: clientgui/ViewProjectsGrid.cpp:193
+#: clientgui/ViewProjectsGrid.cpp:193
 msgid "ProjectsGrid"
 msgstr "ProjectsGrid"
 
-#: clientgui/ViewResources.cpp:61
+#: clientgui/ViewResources.cpp:61
 #, fuzzy
 msgid "Total disk usage"
 msgstr "總磁碟空間"
 
-#: clientgui/ViewResources.cpp:82
+#: clientgui/ViewResources.cpp:82
 #, fuzzy
 msgid "Disk usage by BOINC projects"
 msgstr "BOINC 計畫所用的磁碟空間"
 
-#: clientgui/ViewResources.cpp:117
+#: clientgui/ViewResources.cpp:117
 msgid "Disk"
 msgstr "磁碟"
 
-#: clientgui/ViewResources.cpp:223
+#: clientgui/ViewResources.cpp:223
 #, fuzzy
 msgid "not attached to any BOINC project: 0 bytes"
 msgstr "未加入任何 BOINC 計畫 - 0 位元組"
 
-#: clientgui/ViewResources.cpp:260
+#: clientgui/ViewResources.cpp:260
 #, fuzzy
 msgid "used by BOINC: "
 msgstr "BOINC 所使用 - "
 
-#: clientgui/ViewResources.cpp:270
+#: clientgui/ViewResources.cpp:270
 msgid "free, available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:280
+#: clientgui/ViewResources.cpp:280
 msgid "free, not available to BOINC: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:290
+#: clientgui/ViewResources.cpp:290
 msgid "free: "
 msgstr ""
 
-#: clientgui/ViewResources.cpp:300
+#: clientgui/ViewResources.cpp:300
 #, fuzzy
 msgid "used by other programs: "
 msgstr "其他程式所使用 - "
 
-#: clientgui/ViewStatistics.cpp:1142
+#: clientgui/ViewStatistics.cpp:1142
 msgid "User Total"
 msgstr "使用者總計"
 
-#: clientgui/ViewStatistics.cpp:1143
+#: clientgui/ViewStatistics.cpp:1143
 msgid "User Average"
 msgstr "使用者平均"
 
-#: clientgui/ViewStatistics.cpp:1144
+#: clientgui/ViewStatistics.cpp:1144
 msgid "Host Total"
 msgstr "此主機總計"
 
-#: clientgui/ViewStatistics.cpp:1145
+#: clientgui/ViewStatistics.cpp:1145
 msgid "Host Average"
 msgstr "此主機平均"
 
-#: clientgui/ViewStatistics.cpp:1283
-#, c-format
+#: clientgui/ViewStatistics.cpp:1283
+#, c-format
 msgid "Last update: %.0f days ago"
 msgstr "上次更新: %.0f 天前"
 
-#: clientgui/ViewStatistics.cpp:1745
+#: clientgui/ViewStatistics.cpp:1745
 msgid "Show user total"
 msgstr "顯示使用者總計"
 
-#: clientgui/ViewStatistics.cpp:1746
+#: clientgui/ViewStatistics.cpp:1746
 msgid "Show total credit for user"
 msgstr "顯示使用者的總積分"
 
-#: clientgui/ViewStatistics.cpp:1752
+#: clientgui/ViewStatistics.cpp:1752
 msgid "Show user average"
 msgstr "顯示使用者平均"
 
-#: clientgui/ViewStatistics.cpp:1753
+#: clientgui/ViewStatistics.cpp:1753
 msgid "Show average credit for user"
 msgstr "顯示使用者的平均積分"
 
-#: clientgui/ViewStatistics.cpp:1759
+#: clientgui/ViewStatistics.cpp:1759
 msgid "Show host total"
 msgstr "顯示此主機總計"
 
-#: clientgui/ViewStatistics.cpp:1760
+#: clientgui/ViewStatistics.cpp:1760
 msgid "Show total credit for host"
 msgstr "顯示主機的總積分"
 
-#: clientgui/ViewStatistics.cpp:1766
+#: clientgui/ViewStatistics.cpp:1766
 msgid "Show host average"
 msgstr "顯示此主機平均"
 
-#: clientgui/ViewStatistics.cpp:1767
+#: clientgui/ViewStatistics.cpp:1767
 msgid "Show average credit for host"
 msgstr "顯示主機的平均積分"
 
-#: clientgui/ViewStatistics.cpp:1776
+#: clientgui/ViewStatistics.cpp:1776
 msgid "< &Previous project"
 msgstr "< 上一個計畫(&P)"
 
-#: clientgui/ViewStatistics.cpp:1777
+#: clientgui/ViewStatistics.cpp:1777
 msgid "Show chart for previous project"
 msgstr "顯示上個計畫的統計圖"
 
-#: clientgui/ViewStatistics.cpp:1782
+#: clientgui/ViewStatistics.cpp:1782
 msgid "&Next project >"
 msgstr "下一個計畫(&N) >"
 
-#: clientgui/ViewStatistics.cpp:1783
+#: clientgui/ViewStatistics.cpp:1783
 msgid "Show chart for next project"
 msgstr "顯示下個計畫的統計圖"
 
-#: clientgui/ViewStatistics.cpp:1788
+#: clientgui/ViewStatistics.cpp:1788
 msgid "Mode view"
 msgstr "模式檢視"
 
-#: clientgui/ViewStatistics.cpp:1791
+#: clientgui/ViewStatistics.cpp:1791
 msgid "All projects"
 msgstr "所有計畫"
 
-#: clientgui/ViewStatistics.cpp:1792
+#: clientgui/ViewStatistics.cpp:1792
 msgid "Show all projects, one chart per project"
 msgstr "顯示所選計畫於個別統計圖"
 
-#: clientgui/ViewStatistics.cpp:1798
+#: clientgui/ViewStatistics.cpp:1798
 msgid "One project"
 msgstr "單一計畫"
 
-#: clientgui/ViewStatistics.cpp:1799
+#: clientgui/ViewStatistics.cpp:1799
 msgid "Show one chart with selected project"
 msgstr "顯示所選計畫於同一統計圖"
 
-#: clientgui/ViewStatistics.cpp:1805
+#: clientgui/ViewStatistics.cpp:1805
 msgid "All projects(sum)"
 msgstr "所有計畫 (總計)"
 
-#: clientgui/ViewStatistics.cpp:1806
+#: clientgui/ViewStatistics.cpp:1806
 msgid "Show one chart with all projects"
 msgstr "顯示所有計畫於同一統計圖"
 
-#: clientgui/ViewStatistics.cpp:1826
+#: clientgui/ViewStatistics.cpp:1833
 msgid "Statistics"
 msgstr "統計"
 
-#: clientgui/ViewStatistics.cpp:1846
-#: clientgui/ViewStatistics.cpp:1867
-#: clientgui/ViewStatistics.cpp:1888
-#: clientgui/ViewStatistics.cpp:1910
-#: clientgui/ViewStatistics.cpp:1931
-#: clientgui/ViewStatistics.cpp:1952
-#: clientgui/ViewStatistics.cpp:1973
-#: clientgui/ViewStatistics.cpp:1994
-#: clientgui/ViewStatistics.cpp:2017
+#: clientgui/ViewStatistics.cpp:1853
+#: clientgui/ViewStatistics.cpp:1874
+#: clientgui/ViewStatistics.cpp:1895
+#: clientgui/ViewStatistics.cpp:1917
+#: clientgui/ViewStatistics.cpp:1938
+#: clientgui/ViewStatistics.cpp:1959
+#: clientgui/ViewStatistics.cpp:1980
+#: clientgui/ViewStatistics.cpp:2001
+#: clientgui/ViewStatistics.cpp:2024
 msgid "Updating charts..."
 msgstr "更新圖表中..."
 
-#: clientgui/ViewTransfers.cpp:163
-#: clientgui/ViewTransfersGrid.cpp:106
+#: clientgui/ViewTransfers.cpp:163
+#: clientgui/ViewTransfersGrid.cpp:106
 msgid "Retry Now"
 msgstr "立即重試"
 
-#: clientgui/ViewTransfers.cpp:164
-#: clientgui/ViewTransfersGrid.cpp:107
+#: clientgui/ViewTransfers.cpp:164
+#: clientgui/ViewTransfersGrid.cpp:107
 msgid "Click 'Retry now' to transfer the file now"
 msgstr "按一下「立即重試」可以立即上傳檔案。"
 
-#: clientgui/ViewTransfers.cpp:170
-#: clientgui/ViewTransfersGrid.cpp:113
+#: clientgui/ViewTransfers.cpp:170
+#: clientgui/ViewTransfersGrid.cpp:113
 msgid "Abort Transfer"
 msgstr "中止檔案傳送"
 
-#: clientgui/ViewTransfers.cpp:171
-#: clientgui/ViewTransfersGrid.cpp:114
+#: clientgui/ViewTransfers.cpp:171
+#: clientgui/ViewTransfersGrid.cpp:114
 msgid "Click 'Abort transfer' to delete the file from the transfer queue. This will prevent you from being granted credit for this result."
 msgstr "按一下「中止傳送」可以從上傳佇列中刪除這個檔案。 這個動作會使您無法從這個運算結果中獲取積分。"
 
-#: clientgui/ViewTransfers.cpp:182
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:182
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "File"
 msgstr "檔案"
 
-#: clientgui/ViewTransfers.cpp:183
-#: clientgui/ViewTransfersGrid.cpp:129
-#: clientgui/ViewWork.cpp:218
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewTransfers.cpp:183
+#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewWork.cpp:226
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "Progress"
 msgstr "進度"
 
-#: clientgui/ViewTransfers.cpp:184
-#: clientgui/ViewTransfersGrid.cpp:129
+#: clientgui/ViewTransfers.cpp:184
+#: clientgui/ViewTransfersGrid.cpp:129
 msgid "Size"
 msgstr "大小"
 
-#: clientgui/ViewTransfers.cpp:185
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:185
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Elapsed Time"
 msgstr "剩餘時間"
 
-#: clientgui/ViewTransfers.cpp:186
-#: clientgui/ViewTransfersGrid.cpp:130
+#: clientgui/ViewTransfers.cpp:186
+#: clientgui/ViewTransfersGrid.cpp:130
 msgid "Speed"
 msgstr "速度"
 
-#: clientgui/ViewTransfers.cpp:212
-#: clientgui/ViewTransfersGrid.cpp:167
+#: clientgui/ViewTransfers.cpp:212
+#: clientgui/ViewTransfersGrid.cpp:167
 msgid "Transfers"
 msgstr "傳送"
 
-#: clientgui/ViewTransfers.cpp:271
-#: clientgui/ViewTransfersGrid.cpp:190
+#: clientgui/ViewTransfers.cpp:271
+#: clientgui/ViewTransfersGrid.cpp:190
 msgid "Retrying transfer now..."
 msgstr "立即重試檔案傳送..."
 
-#: clientgui/ViewTransfers.cpp:309
+#: clientgui/ViewTransfers.cpp:309
 msgid "Aborting transfer..."
 msgstr "中止檔案傳送中..."
 
-#: clientgui/ViewTransfers.cpp:322
-#, c-format
+#: clientgui/ViewTransfers.cpp:322
+#, 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"
@@ -3403,34 +3354,42 @@ msgstr ""
 "您確定要中止「%s」 的檔案傳輸嗎?\n"
 "提示: 終止傳輸會使此工作無效且不會收到任何積分。"
 
-#: clientgui/ViewTransfers.cpp:328
+#: clientgui/ViewTransfers.cpp:328
 msgid "Abort File Transfer"
 msgstr "中止檔案傳送"
 
-#: clientgui/ViewTransfers.cpp:750
-#: clientgui/ViewTransfersGrid.cpp:419
+#: clientgui/ViewTransfers.cpp:751
+#: clientgui/ViewTransfersGrid.cpp:419
 msgid "Retry in "
 msgstr "重試於 "
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Upload pending"
 msgstr "上傳資料中"
 
-#: clientgui/ViewTransfers.cpp:762
-#: clientgui/ViewTransfersGrid.cpp:431
+#: clientgui/ViewTransfers.cpp:763
+#: clientgui/ViewTransfersGrid.cpp:431
 msgid "Download pending"
 msgstr "下載資料中"
 
-#: clientgui/ViewTransfersGrid.cpp:161
+#: clientgui/ViewTransfers.cpp:770
+msgid " (project backoff: "
+msgstr ""
+
+#: clientgui/ViewTransfers.cpp:770
+msgid ")"
+msgstr ""
+
+#: clientgui/ViewTransfersGrid.cpp:161
 msgid "TransfersGrid"
 msgstr "TransfersGrid"
 
-#: clientgui/ViewTransfersGrid.cpp:228
+#: clientgui/ViewTransfersGrid.cpp:228
 msgid "Aborting transfer(s)..."
 msgstr "中止檔案傳送中..."
 
-#: clientgui/ViewTransfersGrid.cpp:230
+#: clientgui/ViewTransfersGrid.cpp:230
 msgid ""
 "Are you sure you want to abort this file(s) transfer ?\n"
 "NOTE: Aborting a transfer will invalidate a task and you\n"
@@ -3439,75 +3398,80 @@ msgstr ""
 "您確定要中止「%s」 的檔案傳輸嗎?\n"
 "提示: 終止傳輸會使此工作無效且不會收到任何積分。"
 
-#: clientgui/ViewTransfersGrid.cpp:231
+#: clientgui/ViewTransfersGrid.cpp:231
 msgid "Abort File Transfer(s)"
 msgstr "中止檔案傳送"
 
-#: clientgui/ViewWork.cpp:184
-#: clientgui/ViewWorkGrid.cpp:115
+#: clientgui/ViewWork.cpp:184
+#: clientgui/ViewWork.cpp:709
+msgid "Show active tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:185
+#: clientgui/ViewWork.cpp:710
+msgid "Show only active tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:192
+#: clientgui/ViewWorkGrid.cpp:115
 msgid "Show application graphics in a window."
 msgstr "於新視窗中顯示應用程式的圖形。"
 
-#: clientgui/ViewWork.cpp:191
-#: clientgui/ViewWorkGrid.cpp:122
+#: clientgui/ViewWork.cpp:199
+#: clientgui/ViewWorkGrid.cpp:122
 msgid "Suspend work for this result."
 msgstr "暫止這個結果的工作。"
 
-#: clientgui/ViewWork.cpp:197
-#: clientgui/ViewWorkGrid.cpp:128
+#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWorkGrid.cpp:128
 msgid "Abort"
 msgstr "中止"
 
-#: clientgui/ViewWork.cpp:198
-#: clientgui/ViewWorkGrid.cpp:129
+#: clientgui/ViewWork.cpp:206
+#: clientgui/ViewWorkGrid.cpp:129
 msgid "Abandon work on the result. You will get no credit for it."
 msgstr "放棄這個結果的工作。您將不會取得任何積分。"
 
-#: clientgui/ViewWork.cpp:205
+#: clientgui/ViewWork.cpp:213
 msgid "Show task details."
 msgstr ""
 
-#: clientgui/ViewWork.cpp:216
-#: clientgui/ViewWorkGrid.cpp:146
+#: clientgui/ViewWork.cpp:224
+#: clientgui/ViewWorkGrid.cpp:146
 msgid "Name"
 msgstr "名稱"
 
-#: clientgui/ViewWork.cpp:217
+#: clientgui/ViewWork.cpp:225
 msgid "Elapsed"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:219
-#: clientgui/ViewWorkGrid.cpp:147
+#: clientgui/ViewWork.cpp:227
+#: clientgui/ViewWorkGrid.cpp:147
 msgid "To completion"
 msgstr "剩餘時間"
 
-#: clientgui/ViewWork.cpp:246
-#: clientgui/ViewWorkGrid.cpp:190
+#: clientgui/ViewWork.cpp:254
+#: clientgui/ViewWorkGrid.cpp:190
 msgid "Tasks"
 msgstr "工作"
 
-#: clientgui/ViewWork.cpp:315
-#: clientgui/ViewWorkGrid.cpp:220
+#: clientgui/ViewWork.cpp:342
+#: clientgui/ViewWorkGrid.cpp:220
 msgid "Resuming task..."
 msgstr "繼續工作中..."
 
-#: clientgui/ViewWork.cpp:318
-#: clientgui/ViewWorkGrid.cpp:223
+#: clientgui/ViewWork.cpp:345
+#: clientgui/ViewWorkGrid.cpp:223
 msgid "Suspending task..."
 msgstr "暫止工作中..."
 
-#: clientgui/ViewWork.cpp:346
-#: clientgui/ViewWorkGrid.cpp:251
+#: clientgui/ViewWork.cpp:373
+#: clientgui/ViewWorkGrid.cpp:251
 msgid "Showing graphics for task..."
 msgstr "顯示此工作圖形..."
 
-#: clientgui/ViewWork.cpp:390
-#: clientgui/ViewWorkGrid.cpp:313
-msgid "Aborting result..."
-msgstr "中止結果中..."
-
-#: clientgui/ViewWork.cpp:403
-#, c-format
+#: clientgui/ViewWork.cpp:426
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s, Status: %s)"
@@ -3515,36 +3479,62 @@ msgstr ""
 "您確定要中止這個工作「%s」嗎?\n"
 "(進度: %s,狀態: %s)"
 
-#: clientgui/ViewWork.cpp:411
-#: clientgui/ViewWorkGrid.cpp:335
+#: clientgui/ViewWork.cpp:432
+#, c-format
+msgid "Are you sure you want to abort these %d tasks?"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:437
+#: clientgui/ViewWorkGrid.cpp:335
 msgid "Abort task"
 msgstr "中止工作"
 
-#: clientgui/ViewWork.cpp:624
-#: clientgui/ViewWorkGrid.cpp:445
+#: clientgui/ViewWork.cpp:446
+#: clientgui/ViewWorkGrid.cpp:313
+msgid "Aborting result..."
+msgstr "中止結果中..."
+
+#: clientgui/ViewWork.cpp:703
+msgid "Show all tasks"
+msgstr ""
+
+#: clientgui/ViewWork.cpp:704
+msgid "Show all tasks."
+msgstr ""
+
+#: clientgui/ViewWork.cpp:728
+#: clientgui/ViewWorkGrid.cpp:445
 msgid "Resume work for this task."
 msgstr "繼續這個工作的動作。"
 
-#: clientgui/ViewWork.cpp:630
-#: clientgui/ViewWorkGrid.cpp:451
+#: clientgui/ViewWork.cpp:734
+#: clientgui/ViewWorkGrid.cpp:451
 msgid "Suspend work for this task."
 msgstr "暫止這個工作的動作。"
 
-#: clientgui/ViewWork.cpp:1041
+#: clientgui/ViewWork.cpp:1108
+msgid "GPU missing, "
+msgstr ""
+
+#: clientgui/ViewWork.cpp:1149
 msgid " - an exclusive app is running"
 msgstr ""
 
-#: clientgui/ViewWork.cpp:1060
-#: clientgui/ViewWorkGrid.cpp:822
+#: clientgui/ViewWork.cpp:1168
+#: clientgui/ViewWorkGrid.cpp:822
 msgid " (non-CPU-intensive)"
 msgstr " (非 CPU 密集型)"
 
-#: clientgui/ViewWorkGrid.cpp:184
+#: clientgui/ViewWork.cpp:1202
+msgid "Aborted: not started by deadline"
+msgstr ""
+
+#: clientgui/ViewWorkGrid.cpp:184
 msgid "TasksGrid"
 msgstr "TasksGrid"
 
-#: clientgui/ViewWorkGrid.cpp:327
-#, c-format
+#: clientgui/ViewWorkGrid.cpp:327
+#, c-format
 msgid ""
 "Are you sure you want to abort this task '%s'?\n"
 "(Progress: %s %%, Status: %s)"
@@ -3552,12 +3542,12 @@ msgstr ""
 "您確定要中止工作「%s」嗎?\n"
 "(進度: %s,狀態: %s)"
 
-#: clientgui/WelcomePage.cpp:222
-msgid "Change Research Applications at World Community Grid"
+#: clientgui/WelcomePage.cpp:256
+msgid "Attach to project or account manager"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:336
-#, c-format
+#: clientgui/WelcomePage.cpp:264
+#, c-format
 msgid ""
 "If possible, add projects at the\n"
 "%s web site.\n"
@@ -3569,13 +3559,13 @@ msgstr ""
 "\n"
 "透過精靈加入的計畫可能不會於 %s 出現或管理。"
 
-#: clientgui/WelcomePage.cpp:350
+#: clientgui/WelcomePage.cpp:277
 msgid ""
-"We'll now guide you through the process of attaching\n"
-"to a project."
-msgstr "現在我們會引導您進行加入計畫的步驟。"
+"We'll guide you through the process of attaching\n"
+"to a project or account manager."
+msgstr ""
 
-#: clientgui/WelcomePage.cpp:354
+#: clientgui/WelcomePage.cpp:281
 msgid ""
 "You have selected to attach to a new BOINC project.  Attaching to a new\n"
 "project means that you will be connecting your computer to a new website\n"
@@ -3591,140 +3581,252 @@ msgid ""
 "World Community Grid then please click on the following button:"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:362
-#, c-format
-msgid "&Stop using%s"
-msgstr "停止以 %s(&S)"
-
-#: clientgui/WelcomePage.cpp:369
-#, c-format
-msgid ""
-"We'll now remove this computer from %s.  From now on,\n"
-"attach and detach projects directly from this computer.\n"
-msgstr ""
-"我們會從 %s 移除這台電腦。\n"
-"從現在起,這台電腦能直接加入或退出計畫。\n"
-
-#: clientgui/WelcomePage.cpp:380
-msgid "Account manager"
-msgstr "帳號管理員(&A)"
-
-#: clientgui/WelcomePage.cpp:383
-msgid ""
-"We'll now guide you through the process of attaching\n"
-"to an account manager.\n"
-"\n"
-"If you want to attach to a single project, click Cancel,\n"
-"then select the 'Attach to project' menu item instead."
-msgstr ""
-"現在我們會引導您進行加入帳號管理員的步驟。\n"
-"\n"
-"如果你只想加入單一計畫,請按「取消」,\n"
-"然後從功能表裡選擇「加入計畫」。"
-
-#: clientgui/WelcomePage.cpp:392
-msgid "Debug Flags"
-msgstr "除錯旗標"
-
-#: clientgui/WelcomePage.cpp:395
-msgid "Project Properties Failure"
-msgstr "計畫內容失敗"
-
-#: clientgui/WelcomePage.cpp:398
-msgid "Project Communication Failure"
-msgstr ""
-
-#: clientgui/WelcomePage.cpp:401
-msgid "Project Properties URL Failure"
-msgstr "計畫內容網址失敗"
-
-#: clientgui/WelcomePage.cpp:404
-msgid "Account Creation Disabled"
-msgstr "帳號建立已停止。"
-
-#: clientgui/WelcomePage.cpp:407
-msgid "Client Account Creation Disabled"
-msgstr "用戶端帳號建立已停止"
-
-#: clientgui/WelcomePage.cpp:410
-msgid "Account Already Exists"
-msgstr "帳號已存在。"
-
-#: clientgui/WelcomePage.cpp:413
-msgid "Project Already Attached"
-msgstr "計畫已加入。"
-
-#: clientgui/WelcomePage.cpp:416
-msgid "Project Attach Failure"
-msgstr "加入計畫失敗"
-
-#: clientgui/WelcomePage.cpp:419
-msgid "Failure Communicating with Reference Site"
+#: clientgui/WelcomePage.cpp:284
+msgid "Change Research Applications at World Community Grid"
 msgstr ""
 
-#: clientgui/WelcomePage.cpp:422
-msgid "Net Detection Failure"
-msgstr "網路偵測失敗"
-
-#: clientgui/WelcomePage.cpp:427
+#: clientgui/WelcomePage.cpp:301
 msgid "To continue, click Next."
 msgstr "請按「下一步」繼續。"
 
-#: clientgui/WizardAccountManager.cpp:445
-#: clientgui/WizardAttachProject.cpp:454
+#: clientgui/WizardAttachProject.cpp:610
 msgid "Do you really want to cancel?"
 msgstr "您真的要取消嗎?"
 
-#: clientgui/WizardAccountManager.cpp:446
-#: clientgui/WizardAttachProject.cpp:455
+#: clientgui/WizardAttachProject.cpp:611
 msgid "Question"
 msgstr "問題"
 
-#: clientgui/wizardex.cpp:402
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:377
+#: clientgui/wizardex.cpp:553
 msgid "&Next >"
 msgstr "下一步(&N) >"
 
-#: clientgui/wizardex.cpp:408
+#: clientgui/wizardex.cpp:383
 msgid "< &Back"
 msgstr "< 上一步(&B)"
 
-#: clientgui/wizardex.cpp:604
+#: clientgui/wizardex.cpp:553
 msgid "&Finish"
 msgstr "完成(&F)"
 
-#: clientgui/common/wxFlatNotebook.cpp:182
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:182
+#, c-format
 msgid "New page inserted. Index = %i"
 msgstr "已插入新頁面。索引值 = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:187
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:187
+#, c-format
 msgid "New page appended. Index = %i"
 msgstr "已附加新頁面。索引值 = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2048
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2048
+#, c-format
 msgid "Old Page Index = %i"
 msgstr "舊頁面索引值 = %i"
 
-#: clientgui/common/wxFlatNotebook.cpp:2053
-#, c-format
+#: clientgui/common/wxFlatNotebook.cpp:2053
+#, c-format
 msgid "OnDropTarget: index by HitTest = %i"
 msgstr "OnDropTarget: index by HitTest = %i"
 
-#: clientgui/common/wxPieCtrl.cpp:66
+#: clientgui/common/wxPieCtrl.cpp:66
 msgid "Pie Ctrl"
 msgstr "Pie Ctrl"
 
-#: clientgui/DlgAdvPreferences.h:29
+#: clientgui/mac/MacAccessiblity.cpp:184
+msgid "for accessibility support, please select advanced from the view menu or type command shift a"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:245
+msgid "This panel contains graphs showing user totals for projects"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:528
+#: clientgui/mac/MacAccessiblity.cpp:636
+msgid "blank"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:530
+msgid "list of "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:533
+msgid " is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:605
+#, c-format
+msgid "%d of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:607
+msgid "current sort column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " descending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:609
+msgid " ascending order "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:611
+msgid "column "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:618
+msgid "list is empty"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:621
+#: clientgui/mac/MacAccessiblity.cpp:1198
+msgid "selected "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:626
+#, c-format
+msgid "row %d "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:629
+#, c-format
+msgid "of %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:632
+#, c-format
+msgid "column %d; "
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1160
+msgid "list of projects or account managers"
+msgstr ""
+
+#: clientgui/mac/MacAccessiblity.cpp:1202
+#, c-format
+msgid "row %d of %d; "
+msgstr ""
+
+#: clientgui/DlgAdvPreferences.h:29
 msgid "specify work start and stop hours in format HH:MM-HH:MM"
 msgstr "用 HH:MM-HH:MM 的格式指定工作運行的開始及結束時間"
 
-#: clientgui/DlgAdvPreferences.h:30
+#: clientgui/DlgAdvPreferences.h:30
 msgid "specify network usage start and stop hours in format HH:MM-HH:MM"
 msgstr "用 HH:MM-HH:MM 的格式指定網路使用的開始及結束時間"
 
+#, fuzzy
+#~ msgid "&Close Window\tCtrl+W"
+#~ msgstr "關閉視窗(&C)\tCTRL+W"
+
+#~ msgid "User information"
+#~ msgstr "使用者資訊"
+
+#~ msgid "Account Manager URL"
+#~ msgstr "帳號管理員網址"
+
+#~ msgid "Enter the URL of the account manager's web site."
+#~ msgstr "請輸入帳號管理網站的網址。"
+
+#~ msgid "Close BOINC Manager Window."
+#~ msgstr "關閉 BOINC 管理員"
+
+#~ msgid "Exit the %s"
+#~ msgstr "離開 %s"
+
+#, fuzzy
+#~ msgid ""
+#~ "Advanced views allow you to sort various columns and displays graphical "
+#~ "progress bars."
+#~ msgstr "格線介面可讓你排序不同欄位並顯示圖形進度列。"
+
+#~ msgid "Attach to a project"
+#~ msgstr "加入計畫"
+
+#~ msgid "Attach to &account manager..."
+#~ msgstr "加入帳號管理(&A)..."
+
+#~ msgid "Attach to an account manager"
+#~ msgstr "加入帳號管理"
+
+#~ msgid "Attach to &project"
+#~ msgstr "加入計畫(&A)"
+
+#~ msgid "Attaching to project..."
+#~ msgstr "正在加入計畫..."
+
+#~ msgid "Removal from %s completed."
+#~ msgstr "從 %s 移除已完成。"
+
+#~ msgid "Removal succeeded!"
+#~ msgstr "成功移除!"
+
+#~ msgid "Write to disk at most every"
+#~ msgstr "寫入磁碟最多每"
+
+#, fuzzy
+#~ msgid "Already Attached to Project"
+#~ msgstr "已加入計畫"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to a project."
+#~ msgstr "現在我們會引導您進行加入計畫的步驟。"
+
+#~ msgid "&Stop using%s"
+#~ msgstr "停止以 %s(&S)"
+
+#~ msgid ""
+#~ "We'll now remove this computer from %s.  From now on,\n"
+#~ "attach and detach projects directly from this computer.\n"
+#~ msgstr ""
+#~ "我們會從 %s 移除這台電腦。\n"
+#~ "從現在起,這台電腦能直接加入或退出計畫。\n"
+
+#~ msgid "Account manager"
+#~ msgstr "帳號管理員(&A)"
+
+#~ msgid ""
+#~ "We'll now guide you through the process of attaching\n"
+#~ "to an account manager.\n"
+#~ "\n"
+#~ "If you want to attach to a single project, click Cancel,\n"
+#~ "then select the 'Attach to project' menu item instead."
+#~ msgstr ""
+#~ "現在我們會引導您進行加入帳號管理員的步驟。\n"
+#~ "\n"
+#~ "如果你只想加入單一計畫,請按「取消」,\n"
+#~ "然後從功能表裡選擇「加入計畫」。"
+
+#~ msgid "Debug Flags"
+#~ msgstr "除錯旗標"
+
+#~ msgid "Project Properties Failure"
+#~ msgstr "計畫內容失敗"
+
+#~ msgid "Project Properties URL Failure"
+#~ msgstr "計畫內容網址失敗"
+
+#~ msgid "Account Creation Disabled"
+#~ msgstr "帳號建立已停止。"
+
+#~ msgid "Client Account Creation Disabled"
+#~ msgstr "用戶端帳號建立已停止"
+
+#~ msgid "Account Already Exists"
+#~ msgstr "帳號已存在。"
+
+#~ msgid "Project Already Attached"
+#~ msgstr "計畫已加入。"
+
+#~ msgid "Project Attach Failure"
+#~ msgstr "加入計畫失敗"
+
+#~ msgid "Net Detection Failure"
+#~ msgstr "網路偵測失敗"
+
 #~ msgid ""
 #~ "You can copy and paste the URL from your browser's\n"
 #~ "address bar."
@@ -3766,13 +3868,14 @@ msgstr "用 HH:MM-HH:MM 的格式指定網路使用的開始及結束時間"
 #~ msgid "&Accessible View"
 #~ msgstr "親和力介面(&S)"
 
-#~ msgid "Accessible views are compatible with accessibility aids such as screen readers."
+#~ msgid ""
+#~ "Accessible views are compatible with accessibility aids such as screen "
+#~ "readers."
 #~ msgstr "親和力介面能相容於類似螢幕閱讀器等親和力輔助工具。"
 
 #~ msgid "&Grid View"
 #~ msgstr "格線介面(&V)"
 
-#, c-format
 #~ msgid ""
 #~ "%s is going to shutdown the core client it is currently connected to.\n"
 #~ "NOTE: Choosing 'OK' will cause the select new computer dialog to appear \n"
@@ -3782,14 +3885,6 @@ msgstr "用 HH:MM-HH:MM 的格式指定網路使用的開始及結束時間"
 #~ "提示: 選擇「確定」會出現選擇新電腦的視窗,\n"
 #~ "你可以加入不同的核心用戶端。"
 
-#, c-format
-#~ msgid ""
-#~ "BOINC ownership or permissions are not set properly; please reinstall BOINC.\n"
-#~ "(Error code %d)"
-#~ msgstr ""
-#~ "BOINC 的所有權或權限未正確設定,請重新安裝 BOINC。\n"
-#~ "(錯誤碼 %d)"
-
 #~ msgid "processors"
 #~ msgstr "個處理器"
 
@@ -3805,7 +3900,9 @@ msgstr "用 HH:MM-HH:MM 的格式指定網路使用的開始及結束時間"
 #~ msgid "Reminder Frequency:"
 #~ msgstr "提示頻率:"
 
-#~ msgid "How often, in minutes, should the manager remind you of possible connection events."
+#~ msgid ""
+#~ "How often, in minutes, should the manager remind you of possible "
+#~ "connection events."
 #~ msgstr "設定 BOINC 管理員要隔多久才提示您重要訊息。(以分鐘計)"
 
 #~ msgid ""
diff --git a/locale/zh_TW/BOINC-Web.po b/locale/zh_TW/BOINC-Web.po
index 0615892..7d24cbd 100644
--- a/locale/zh_TW/BOINC-Web.po
+++ b/locale/zh_TW/BOINC-Web.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: BOINC translation team <boinc_loc at ssl.berkeley.edu>\n"
-"POT-Creation-Date: 2009-05-05 13:41 PDT\n"
+"POT-Creation-Date: 2009-07-23 22:09 PDT\n"
 "PO-Revision-Date: 2008-01-01 00:32+0800\n"
 "Last-Translator: Jose Sun <josesun at gmail.com>\n"
 "Language-Team: \n"
@@ -18,386 +18,312 @@ msgstr ""
 "X-Poedit-Country: UNITED STATES\n"
 "X-Poedit-KeywordsList: tra\n"
 
+#: poll.inc:18
 msgid "[check all that apply]"
 msgstr ""
 
-"
-
+#: poll.inc:47
 msgid "Other:"
 msgstr ""
 
-"
-
+#: poll_data.inc:19
 msgid "Yes - I have been running BOINC on my computer for..."
 msgstr ""
 
-"
-
+#: poll_data.inc:22
 msgid "less than a week"
 msgstr ""
 
-"
-
+#: poll_data.inc:23
 msgid "less than a month"
 msgstr ""
 
-"
-
+#: poll_data.inc:24
 msgid "less than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:25
 msgid "more than a year"
 msgstr ""
 
-"
-
+#: poll_data.inc:31
 msgid "No - I used to run BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:34
 msgid "I lost interest"
 msgstr ""
 
-"
-
+#: poll_data.inc:35
 msgid "it was too complicated"
 msgstr ""
 
-"
-
+#: poll_data.inc:36
 msgid "I stopped it and forgot to start again"
 msgstr ""
 
-"
-
+#: poll_data.inc:37
 msgid "it caused problems on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:38
 msgid "it used too much electricity"
 msgstr ""
 
-"
-
+#: poll_data.inc:39
 msgid "I switched to a non-BOINC computing project"
 msgstr ""
 
-"
-
+#: poll_data.inc:45
 msgid "No - I tried running BOINC, but..."
 msgstr ""
 
-"
-
+#: poll_data.inc:48
 msgid "the software didn't install correctly"
 msgstr ""
 
-"
-
+#: poll_data.inc:49
 msgid "I couldn't figure out how to use the software"
 msgstr ""
 
-"
-
+#: poll_data.inc:50
 msgid "I had network communication problems"
 msgstr ""
 
-"
-
+#: poll_data.inc:51
 msgid "I couldn't attach to a project"
 msgstr ""
 
-"
-
+#: poll_data.inc:52
 msgid "I attached to a project, but never got any work"
 msgstr ""
 
-"
-
+#: poll_data.inc:58
 msgid "No - I never tried running BOINC, because..."
 msgstr ""
 
-"
-
+#: poll_data.inc:61
 msgid "I was concerned about security"
 msgstr ""
 
-"
-
+#: poll_data.inc:62
 msgid "I wasn't interested in any of the projects"
 msgstr ""
 
-"
-
+#: poll_data.inc:63
 msgid "I don't have permission to run it on my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:64
 msgid "No version was available for my computer"
 msgstr ""
 
-"
-
+#: poll_data.inc:75
 msgid "What kind of computers do you have running BOINC?"
 msgstr ""
 
-"
-
+#: poll_data.inc:85
 msgid "Where are they?"
 msgstr ""
 
-"
-
+#: poll_data.inc:87
 msgid "Home"
 msgstr ""
 
-"
-
+#: poll_data.inc:88
 msgid "Work"
 msgstr ""
 
-"
-
+#: poll_data.inc:89
 msgid "School"
 msgstr ""
 
-"
-
+#: poll_data.inc:96
 msgid "How many computers?"
 msgstr ""
 
-"
-
+#: poll_data.inc:107
 msgid "On average, how many hours per day are they powered on?"
 msgstr ""
 
-"
-
+#: poll_data.inc:119
 msgid "Age"
 msgstr ""
 
-"
-
+#: poll_data.inc:129
 msgid "Sex"
 msgstr ""
 
-"
-
+#: poll_data.inc:131
 msgid "Male"
 msgstr ""
 
-"
-
+#: poll_data.inc:132
 msgid "Female"
 msgstr ""
 
-"
-
+#: poll_data.inc:137
 msgid "Your level of computer expertise"
 msgstr ""
 
-"
-
+#: poll_data.inc:139
 msgid "Beginner"
 msgstr ""
 
-"
-
+#: poll_data.inc:140
 msgid "Intermediate"
 msgstr ""
 
-"
-
+#: poll_data.inc:141
 msgid "Advanced"
 msgstr ""
 
-"
-
+#: poll_data.inc:149
 msgid "Where did you learn about BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:151
 msgid "TV/radio/newspaper"
 msgstr ""
 
-"
-
+#: poll_data.inc:152
 msgid "From friends, relatives, or coworkers"
 msgstr ""
 
-"
-
+#: poll_data.inc:153
 msgid "Team message boards or web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:154 poll_data.inc:210
 msgid "The BOINC web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:155
 msgid "Other web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:161
 msgid ""
 "Which are the most important factors when you decide whether to participate "
 "in a BOINC project?"
 msgstr ""
 
-"
-
+#: poll_data.inc:163
 msgid "Nice-looking screensaver graphics"
 msgstr ""
 
-"
-
+#: poll_data.inc:164
 msgid "Fair and quick granting of credit for work done"
 msgstr ""
 
-"
-
+#: poll_data.inc:165
 msgid "Getting more credit from this project than from others"
 msgstr ""
 
-"
-
+#: poll_data.inc:166
 msgid "Helpful and friendly message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:167
 msgid "Participation by project staff on the message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:168
 msgid "Informative project web site"
 msgstr ""
 
-"
-
+#: poll_data.inc:169
 msgid "The science is important and beneficial"
 msgstr ""
 
-"
-
+#: poll_data.inc:170
 msgid "Non-profit, and results are public"
 msgstr ""
 
-"
-
+#: poll_data.inc:171
 msgid "Personal recognition if my computer finds something"
 msgstr ""
 
-"
-
+#: poll_data.inc:172
 msgid "Publication by the project in scientific journals"
 msgstr ""
 
-"
-
+#: poll_data.inc:173
 msgid "Periodic email newsletters from the project"
 msgstr ""
 
-"
-
+#: poll_data.inc:180
 msgid "How many BOINC projects do you participate in?"
 msgstr ""
 
-"
-
+#: poll_data.inc:190
 msgid "Do you run BOINC as a screensaver?"
 msgstr ""
 
-"
-
+#: poll_data.inc:192
 msgid "Yes"
 msgstr ""
 
-"
-
+#: poll_data.inc:193
 msgid "No"
 msgstr ""
 
-"
-
+#: poll_data.inc:198
 msgid "Your usage of project messages boards:"
 msgstr ""
 
-"
-
+#: poll_data.inc:200
 msgid "to read information"
 msgstr ""
 
-"
-
+#: poll_data.inc:201
 msgid "to read and post information"
 msgstr ""
 
-"
-
+#: poll_data.inc:202
 msgid "None"
 msgstr ""
 
-"
-
+#: poll_data.inc:206
 msgid ""
 "Where do you get information to help resolve problems with BOINC and/or "
 "BOINC projects?"
 msgstr ""
 
-"
-
+#: poll_data.inc:208
 msgid "The project message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:209
 msgid "The BOINC message boards"
 msgstr ""
 
-"
-
+#: poll_data.inc:211
 msgid "BOINC mailing lists"
 msgstr ""
 
-"
-
+#: poll_data.inc:212
 msgid "The Unofficial BOINC Wiki"
 msgstr ""
 
-"
-
+#: poll_data.inc:213
 msgid "Team web sites"
 msgstr ""
 
-"
-
+#: poll_data.inc:214
 msgid "Google or other search engines"
 msgstr ""
 
-"
-
+#: download.php:40
 msgid "Download BOINC"
 msgstr ""
 
-"
-
+#: download.php:42
 #, php-format
 msgid "%s for %s (%s MB)"
 msgstr ""
 
-"
-
+#: download.php:89
 msgid ""
 "BOINC is a program that lets you donate your idle computer time to science "
 "projects like SETI at home, Climateprediction.net, Rosetta at home, World "
@@ -405,41 +331,34 @@ msgid ""
 "computer, you can connect it to as many of these projects as you like."
 msgstr ""
 
-"
-
+#: download.php:114
 #, php-format
 msgid ""
 "Note: if your computer is equipped with an NVIDIA Graphics Processing Unit "
 "(GPU), you may be able to %suse it to compute faster%s"
 msgstr ""
 
-"
-
+#: download.php:120
 msgid "System requirements"
 msgstr ""
 
-"
-
+#: download.php:121
 msgid "Release notes"
 msgstr ""
 
-"
-
+#: download.php:122 index.php:89
 msgid "Help"
 msgstr ""
 
-"
-
+#: download.php:123
 msgid "All versions"
 msgstr ""
 
-"
-
+#: download.php:141
 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 "
@@ -448,8 +367,7 @@ msgid ""
 "problems you might have."
 msgstr ""
 
-"
-
+#: help.php:21
 #, php-format
 msgid ""
 "BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. "
@@ -458,8 +376,7 @@ msgid ""
 "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 "
@@ -467,20 +384,17 @@ msgid ""
 "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 "
@@ -488,30 +402,70 @@ msgid ""
 "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 ""
 
-"
+#: index.php:23
+msgid "Computing power"
+msgstr ""
 
-msgid "Volunteer"
+#: index.php:25
+msgid "Top 100 volunteers"
 msgstr ""
 
-"
+#: index.php:26
+msgid "Statistics"
+msgstr ""
 
-msgid "Download"
+#: index.php:53
+msgid "Active:"
 msgstr ""
 
-"
+#: index.php:53
+msgid "volunteers,"
+msgstr ""
 
-msgid "Documentation"
+#: index.php:53
+msgid "computers.\n"
+msgstr ""
+
+#: index.php:54
+msgid "24-hour average:"
+msgstr ""
+
+#: index.php:54
+msgid "TeraFLOPS."
 msgstr ""
 
-"
+#: index.php:66
+msgid "News"
+msgstr ""
+
+#: index.php:72
+msgid "... more"
+msgstr ""
 
+#: index.php:76
+#, php-format
+msgid "News is available as an %sRSS feed%s"
+msgstr ""
+
+#: index.php:86
+msgid "Volunteer"
+msgstr ""
+
+#: index.php:88
+msgid "Download"
+msgstr ""
+
+#: index.php:90 index.php:125 index.php:163
+msgid "Documentation"
+msgstr ""
+
+#: index.php:96
 #, php-format
 msgid ""
 " Use the idle time on your computer (Windows, Mac, or Linux) to cure "
@@ -520,28 +474,92 @@ msgid ""
 "sDownload%s and run BOINC software  %sEnter%s an email address and password. "
 msgstr ""
 
-"
-
+#: index.php:107
 #, php-format
 msgid ""
 "Or, if you run several projects, try an %saccount manager%s such as %"
 "sGridRepublic%s or %sBAM!%s. "
 msgstr ""
 
-"
+#: index.php:123
+msgid "Compute with BOINC"
+msgstr ""
+
+#: index.php:126
+msgid "Software updates"
+msgstr ""
+
+#: index.php:153
+msgid "The BOINC project"
+msgstr ""
+
+#: index.php:158
+msgid "Help wanted!"
+msgstr ""
+
+#: index.php:160
+msgid "Programming"
+msgstr ""
+
+#: index.php:161
+msgid "Translation"
+msgstr ""
+
+#: index.php:162
+msgid "Testing"
+msgstr ""
+
+#: index.php:165
+msgid "Software development"
+msgstr ""
 
+#: index.php:166
+msgid "APIs for add-on software"
+msgstr ""
+
+#: index.php:167
+msgid "Personnel and contributors"
+msgstr ""
+
+#: index.php:168
+msgid "Message boards"
+msgstr ""
+
+#: index.php:169
+msgid "Email lists"
+msgstr ""
+
+#: index.php:170
+msgid "Events"
+msgstr ""
+
+#: index.php:171
+msgid "Conferences"
+msgstr ""
+
+#: index.php:172
+msgid "Papers and talks"
+msgstr ""
+
+#: index.php:173
+msgid "Logos and graphics"
+msgstr ""
+
+#: index.php:206
+msgid "Browser default"
+msgstr ""
+
+#: index.php:250
 #, php-format
 msgid ""
 "Open-source software for %svolunteer computing%s and %sgrid computing%s."
 msgstr ""
 
-"
-
+#: poll.php:9
 msgid "BOINC user survey"
 msgstr ""
 
-"
-
+#: poll.php:19
 msgid ""
 "Several volunteer computing projects, including Climateprediction.net, "
 "Einstein at home, and SETI at home, use software called BOINC.  If you participate "
@@ -554,84 +572,68 @@ msgid ""
 "href=poll_results.php>here</a>. "
 msgstr ""
 
-"
-
+#: poll.php:25
 msgid "Do you run BOINC?"
 msgstr ""
 
-"
-
+#: poll.php:30
 msgid "Your participation"
 msgstr ""
 
-"
-
+#: poll.php:32
 msgid "Your computers"
 msgstr ""
 
-"
-
+#: poll.php:34
 msgid "You"
 msgstr ""
 
-"
-
+#: poll.php:39
 msgid "Nationality"
 msgstr ""
 
-"
-
+#: poll.php:44
 msgid "Comments"
 msgstr ""
 
-"
-
+#: poll.php:46
 msgid ""
 "Please suggest ways that BOINC, and the projects that use it, could be "
 "improved:"
 msgstr ""
 
-"
-
+#: poll.php:50
 msgid "When done click:"
 msgstr ""
 
-"
-
+#: poll_action.php:9
 msgid "Error - results not recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:10
 msgid ""
 "An internal error has prevented us from recording your survey response.  "
 "Please try again later."
 msgstr ""
 
-"
-
+#: poll_action.php:32
 msgid "Survey response recorded"
 msgstr ""
 
-"
-
+#: poll_action.php:33
 msgid "Thank you for completing the BOINC user survey."
 msgstr ""
 
-"
-
+#: poll_results.php:195
 msgid "Survey results"
 msgstr ""
 
-"
-
+#: poll_results.php:196
 msgid ""
 "These are the current results of the <a href=poll.php>BOINC user survey</"
 "a>.  This page is updated every hour."
 msgstr ""
 
-"
-
 # The charset used for the text in this file (please try to use UTF-8 if possible)
 # #########################################
 # Language: English (International)
diff --git a/locale/zh_TW/pootle-boincclient610-zh_TW.prefs b/locale/zh_TW/pootle-boincclient610-zh_TW.prefs
new file mode 100644
index 0000000..7d34510
--- /dev/null
+++ b/locale/zh_TW/pootle-boincclient610-zh_TW.prefs
@@ -0,0 +1,6 @@
+# Pootle preferences for project boinctrunk, language zh_TW
+
+rights:
+  default = u'view, suggest, archive, pocompile'
+  nobody = u'view, pocompile'
+  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/locale/zh_TW/pootle-boinctrunk-zh_TW.prefs b/locale/zh_TW/pootle-boinctrunk-zh_TW.prefs
deleted file mode 100644
index 70572ea..0000000
--- a/locale/zh_TW/pootle-boinctrunk-zh_TW.prefs
+++ /dev/null
@@ -1,6 +0,0 @@
-# Pootle preferences for project boinctrunk, language zh_TW
-
-rights:
-  default = u'view, suggest, archive, pocompile'
-  nobody = u'view'
-  romw = u'view, suggest, translate, overwrite, review, archive, pocompile, assign, admin, commit'
diff --git a/samples/example_app/uc2.cpp b/samples/example_app/uc2.cpp
index 08ebd2c..ee63e59 100755
--- a/samples/example_app/uc2.cpp
+++ b/samples/example_app/uc2.cpp
@@ -305,5 +305,3 @@ int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR Args, int WinMode
 }
 #endif
 
-const char *BOINC_RCSID_33ac47a071 = "$Id: upper_case.C 12135 2007-02-21 20:04:14Z davea $";
-
diff --git a/samples/worker/worker.cpp b/samples/worker/worker.cpp
index 059023f..6e521a8 100644
--- a/samples/worker/worker.cpp
+++ b/samples/worker/worker.cpp
@@ -66,7 +66,7 @@ int main(int argc, char** argv) {
     fgets(buf, 256, stdin);
     fputs(buf, stdout);
 
-    int start = time(0);
+    int start = (int)time(0);
     int nsec = 10;
     if (argc > 1) nsec = atoi(argv[1]);
 
diff --git a/sched/handle_request.cpp b/sched/handle_request.cpp
index 2f114b2..3022178 100644
--- a/sched/handle_request.cpp
+++ b/sched/handle_request.cpp
@@ -340,7 +340,7 @@ int authenticate_user() {
             );
             goto make_new_host;
         }
-        
+
     } else {
         // Here no hostid was given, or the ID was bad.
         // Look up the user, then create a new host record
@@ -487,7 +487,7 @@ got_host:
             user.update_field(buf);
         }
     }
-    
+
     return 0;
 }
 
@@ -584,7 +584,7 @@ int send_result_abort() {
     DB_IN_PROGRESS_RESULT result;
     std::string result_names;
     unsigned int i;
-    
+
     if (g_request->other_results.size() == 0) {
         return 0;
     }
@@ -594,6 +594,7 @@ int send_result_abort() {
     for (i=0; i<g_request->other_results.size(); i++) {
         OTHER_RESULT& orp=g_request->other_results[i];
         orp.abort = true;
+            // if the host has a result not in the DB, abort it
         orp.abort_if_not_started = false;
         orp.reason = ABORT_REASON_NOT_FOUND;
         if (i > 0) result_names.append(", ");
@@ -615,7 +616,7 @@ int send_result_abort() {
                     orp.abort = true;
                     orp.abort_if_not_started = false;
                     orp.reason = ABORT_REASON_WU_CANCELLED;
-                } else if ( result.assimilate_state == ASSIMILATE_DONE ) {
+                } else if (result.assimilate_state == ASSIMILATE_DONE) {
                     // if the WU has been assimilated, abort if not started
                     //
                     orp.abort = false;
@@ -654,8 +655,8 @@ int send_result_abort() {
             log_messages.printf(MSG_NORMAL,
                 "[HOST#%d]: Send result_abort for result %s; reason: %s\n",
                 g_reply->host.id, orp.name, reason_str(orp.reason)
-            ); 
-            // send user message 
+            );
+            // send user message
             char buf[256];
             sprintf(buf, "Result %s is no longer usable", orp.name);
             g_reply->insert_message(USER_MESSAGE(buf, "high"));
@@ -664,10 +665,10 @@ int send_result_abort() {
             log_messages.printf(MSG_NORMAL,
                 "[HOST#%d]: Send result_abort_if_unstarted for result %s; reason %d\n",
                 g_reply->host.id, orp.name, orp.reason
-            ); 
+            );
         }
     }
-    
+
     return aborts_sent;
 }
 
@@ -857,11 +858,11 @@ void warn_user_if_core_client_upgrade_scheduled() {
         remaining /= 3600;
 
         if (0 < remaining) {
-            
+
             char msg[512];
             int days  = remaining / 24;
             int hours = remaining % 24;
-      
+
             sprintf(msg,
                 "Starting in %d days and %d hours, project will require a minimum "
                 "BOINC core client version of %d.%d.0.  You are currently using "
@@ -1275,7 +1276,7 @@ void process_request(char* code_sign_key) {
             send_result_abort();
         }
     }
-    
+
     if (requesting_work()) {
         if (!send_code_sign_key(code_sign_key)) {
             ok_to_send_work = false;
@@ -1400,4 +1401,4 @@ void handle_request(FILE* fin, FILE* fout, char* code_sign_key) {
     }
 }
 
-const char *BOINC_RCSID_2ac231f9de = "$Id: handle_request.cpp 18851 2009-08-17 17:07:38Z davea $";
+const char *BOINC_RCSID_2ac231f9de = "$Id: handle_request.cpp 20161 2010-01-14 21:18:06Z romw $";
diff --git a/sched/sched_types.cpp b/sched/sched_types.cpp
index b5692f7..0bf07e2 100644
--- a/sched/sched_types.cpp
+++ b/sched/sched_types.cpp
@@ -350,7 +350,9 @@ const char* SCHEDULER_REQUEST::parse(FILE* fin) {
             continue;
         }
         if (match_tag(buf, "coprocs")) {
-            coprocs.parse(fin);
+            MIOFILE mf;
+            mf.init_file(fin);
+            coprocs.parse(mf);
             coproc_cuda = (COPROC_CUDA*)coprocs.lookup("CUDA");
             coproc_ati = (COPROC_ATI*)coprocs.lookup("ATI");
             continue;
@@ -1226,4 +1228,4 @@ void PROJECT_FILES::init() {
     read_file_malloc(config.project_path("project_files.xml"), text);
 }
 
-const char *BOINC_RCSID_ea659117b3 = "$Id: sched_types.cpp 18910 2009-08-25 18:44:19Z romw $";
+const char *BOINC_RCSID_ea659117b3 = "$Id: sched_types.cpp 19823 2009-12-08 19:22:08Z romw $";
diff --git a/version.h b/version.h
new file mode 100644
index 0000000..f65a2a3
--- /dev/null
+++ b/version.h
@@ -0,0 +1,43 @@
+/* Platform independent version definitions... */
+
+#ifndef BOINC_VERSION_H
+#define BOINC_VERSION_H
+
+/* Major part of BOINC version number */
+#define BOINC_MAJOR_VERSION 6
+
+/* Minor part of BOINC version number */
+#define BOINC_MINOR_VERSION 10
+
+/* Release part of BOINC version number */
+#define BOINC_RELEASE 44
+
+/* String representation of BOINC version number */
+#define BOINC_VERSION_STRING "6.10.44"
+
+/* Package is a pre-release (Alpha/Beta) package */
+/* #define BOINC_PRERELEASE 1 */
+
+#if (defined(_WIN32) || defined(__APPLE__))
+/* Name of package */
+#define PACKAGE "boinc"
+
+/* Define to the address where bug reports for this package should be sent. */
+#define PACKAGE_BUGREPORT ""
+
+/* Define to the full name of this package. */
+#define PACKAGE_NAME "BOINC"
+
+/* Define to the full name and version of this package. */
+#define PACKAGE_STRING "BOINC 6.10.44"
+
+/* Define to the one symbol short name of this package. */
+#define PACKAGE_TARNAME "boinc"
+
+/* Define to the version of this package. */
+#define PACKAGE_VERSION "6.10.44"
+
+#endif /* #if (defined(_WIN32) || defined(__APPLE__)) */
+
+#endif /* #ifndef BOINC_VERSION_H */
+

-- 
BOINC packaging



More information about the pkg-boinc-commits mailing list